/* ==========================================================================
   VARIABLES Y CONFIGURACIÓN GLOBAL
   ========================================================================== */
:root {
  --primary-color: #1a1a1a;
  --secondary-color: #4a4a4a;
  --accent-color: #0056b3;
  --accent-light: #4d94ff;
  --light-color: #f8f9fa;
  --border-color: #e0e0e0;
  --text-light: #6c757d;
  --white: #ffffff;

  --bg: #ffffff;
  --text: #1f2933;
  --muted: #6b7280;
  --primary: #9ecae3;
  --border: #e5e7eb;
  --shadow: 0 20px 45px rgba(0, 0, 0, 0.12);

  --shadow-soft: 0 8px 25px rgba(0, 0, 0, 0.08);
  --shadow-hover: 0 15px 35px rgba(0, 0, 0, 0.15);

  --success-color: #28a745;
  --font-primary: "Inter", "Segoe UI", sans-serif;
  --section-padding: 8rem 0;
}

/* ==========================================================================
   RESET
   ========================================================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  font-family: var(--font-primary);
  scroll-behavior: smooth;
}

body {
  color: var(--primary-color);
  background-color: #fff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  padding-top: 80px;
}

/* ==========================================================================
   CONTENEDORES
   ========================================================================== */
.container {
  max-width: 120rem;
  margin: 0 auto;
  padding: 0 2rem;
}

.page-container {
  padding-top: 80px;
}

/* ==========================================================================
   NAVBAR
   ========================================================================== */
.navbar {
  position: fixed;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1250px;
  background: var(--bg);
  border-radius: 14px;
  box-shadow: var(--shadow);
  z-index: 1000;
  transition:
    transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 1;
  pointer-events: all;
}

.navbar.hidden {
  transform: translate(-50%, -120%);
  opacity: 0;
  pointer-events: none;
}

.navbar-inner {
  display: flex;
  align-items: center;
  padding: 14px 26px;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-img {
  height: 36px;
  width: auto;
  border-radius: 8px;
}

.logo-text {
  font-weight: 700;
  font-size: 1.5rem;
  text-transform: uppercase;
  color: var(--text);
  white-space: nowrap;
}

.menu-desktop {
  display: flex;
  align-items: center;
  gap: 22px;
  list-style: none;
  flex: 1;
}

.menu-desktop a {
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  color: black;
  transition: color 0.2s ease;
}

.menu-desktop a:hover {
  color: var(--accent-light);
}

.menu-desktop .active {
  color: var(--accent-light);
  position: relative;
}

.menu-desktop .active::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: -5px;
  width: 100%;
  height: 2px;
  background-color: var(--accent-light);
}

/* Dropdown desktop */
.desktop-dropdown {
  position: relative;
}

.desktop-dropdown > a::after {
  content: "▾";
  font-size: 0.9rem;
  margin-left: 6px;
}

.desktop-dropdown .dropdown {
  position: absolute;
  top: 120%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--bg);
  border-radius: 12px;
  box-shadow: var(--shadow);
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s ease;
  overflow: hidden;
}

.desktop-dropdown:hover .dropdown {
  opacity: 1;
  visibility: visible;
}

.dropdown a {
  display: block;
  padding: 14px 22px;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--text);
  text-decoration: none;
  transition: background 0.2s ease;
}

.dropdown a:hover {
  background: #f1f5f9;
}

/* Botones navbar */
.btn-outline {
  padding: 8px 18px;
  background: #ffffff;
  border: 1.5px solid #000;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  color: #000;
  transition:
    background 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.15s ease;
}

.btn-outline:hover,
.btn-outline:focus-visible,
.btn-outline:active {
  background: var(--primary);
  color: #000;
  border-color: #000;
  box-shadow:
    0 0 0 3px rgba(0, 0, 0, 0.15),
    0 8px 20px rgb(0, 0, 0);
  transform: translateY(-1px);
}

.btn-outline:focus {
  outline: none;
}

.btn-primary {
  padding: 8px 18px;
  background: var(--primary);
  border: 1.5px solid #000;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  color: #000;
  transition:
    box-shadow 0.25s ease,
    transform 0.15s ease,
    filter 0.2s ease;
}

.btn-primary:hover,
.btn-primary:focus-visible,
.btn-primary:active {
  background: white;
  filter: brightness(0.95);
  box-shadow:
    0 0 0 2px rgba(0, 0, 0, 0.2),
    0 6px 18px rgb(0, 0, 0);
  transform: translateY(-1px);
}

.btn-primary:focus {
  outline: none;
}

/* ==========================================================================
   MENÚ MOBILE
   ========================================================================== */
.menu-btn {
  display: none;
  font-size: 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--bg);
  transform: translateX(100%);
  transition: transform 0.4s ease;
  z-index: 1100;
  display: flex;
  flex-direction: column;
}

.mobile-menu.active {
  transform: translateX(0);
}

.mobile-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 24px;
  border-bottom: 1px solid var(--border);
}

.close-btn {
  font-size: 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text);
}

.mobile-links {
  list-style: none;
  padding: 24px;
  flex: 1;
}

.mobile-links li {
  border-bottom: 1px solid var(--border);
}

.mobile-links a,
.accordion-btn {
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 18px 0;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  color: var(--text);
  background: white;
  border: none;
  cursor: pointer;
}

.accordion-content {
  display: none;
  padding-left: 12px;
}

.accordion-content a {
  display: block;
  padding: 14px 0;
  font-size: 0.95rem;
  font-weight: 500;
}

.accordion.active .accordion-content {
  display: block;
}

.plus {
  font-size: 1.4rem;
  transition: transform 0.3s ease;
}

.accordion.active .plus {
  transform: rotate(45deg);
}

.mobile-actions {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  z-index: 1050;
}

.overlay.active {
  opacity: 1;
  visibility: visible;
}

/* ==========================================================================
   HERO
   ========================================================================== */
.diplomas-hero {
  position: relative;
  height: 85vh;
  min-height: 700px;
  overflow: hidden;
  margin-top: -160px;
}

.diplomas-hero .hero-background {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.diplomas-hero .hero-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.diplomas-hero .hero-overlay {
  position: absolute;
  inset: 0;
}

.diplomas-hero .hero-container {
  position: relative;
  z-index: 2;
  height: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
}

.hero-content {
  max-width: 800px;
  color: #fff;
  padding: 4rem 0;
  margin-left: -7.7%;
  margin-top: -2.5%;
}

.diplomas-hero .hero-title {
  font-size: 6.5rem;
  font-weight: 900;
  margin-bottom: 2rem;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: -1px;
  color: #fff;
}

.diplomas-hero .hero-description {
  font-size: 1.8rem;
  margin-bottom: 4rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
  max-width: 600px;
}

/* ==========================================================================
   SECCIONES CON FONDO
   ========================================================================== */
.intro-diplomas,
.diplomas-destacados,
.info-general-standalone,
.faculty-section,
.faq-section {
  position: relative;
  overflow: hidden;
}

.intro-diplomas,
.diplomas-destacados {
  padding: var(--section-padding);
}

.section-background {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.section-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}



.intro-diplomas .container,
.diplomas-destacados .container,
.info-general-standalone .container,
.faculty-section .container,
.faq-section .container {
  position: relative;
  z-index: 2;
}

/* ==========================================================================
   INTRO
   ========================================================================== */
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.intro-title {
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--primary-color);
  margin-bottom: 2rem;
  line-height: 1.2;
}

.intro-lead {
  font-size: 1.8rem;
  color: var(--secondary-color);
  line-height: 1.7;
  margin-bottom: 3rem;
}

.intro-features {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.feature {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}

.feature i {
  color: var(--success-color);
  font-size: 1.8rem;
  margin-top: 0.3rem;
  flex-shrink: 0;
}

.feature span {
  font-size: 1.6rem;
  color: var(--primary-color);
  line-height: 1.6;
}

.intro-card {
  background: var(--white);
  padding: 4rem;
  border-radius: 20px;
  box-shadow: var(--shadow);
  border: 2px solid var(--primary);
  position: relative;
}

.card-header {
  margin-bottom: 2rem;
}

.card-header i {
  font-size: 3rem;
  color: var(--primary);
}

.card-quote {
  font-size: 1.8rem;
  font-style: italic;
  color: var(--primary-color);
  line-height: 1.6;
  margin-bottom: 2rem;
}

.card-author {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.author-line {
  width: 40px;
  height: 2px;
  background: var(--primary);
}

.author-text {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ==========================================================================
   CONTADOR
   ========================================================================== */
.countdown-section {
  padding: 80px 20px;
}

.countdown-card {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  min-height: 460px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.16);
  text-align: center;
}

.countdown-card-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.countdown-card-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.countdown-card-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.countdown-card-content {
  position: relative;
  z-index: 2;
  padding: 60px 40px;
  min-height: 460px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.countdown-header h2 {
  font-size: 3.4rem;
  font-weight: 900;
  margin-bottom: 14px;
  color: #ffffff;
  letter-spacing: 1px;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.countdown-header p {
  color: rgba(255, 255, 255, 0.94);
  max-width: 760px;
  margin: 0 auto 34px;
  font-size: 1.95rem;
  line-height: 1.55;
  text-shadow: 0 3px 10px rgba(0, 0, 0, 0.22);
}

.countdown-timer {
  display: flex;
  justify-content: center;
  gap: 22px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.time-box {
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 18px;
  padding: 22px 26px;
  min-width: 120px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.14);
}

.time-box span {
  display: block;
  font-size: 4.1rem;
  font-weight: 900;
  color: #ffffff;
  line-height: 1;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.18);
}

.time-box small {
  display: block;
  margin-top: 8px;
  font-size: 1.2rem;
  letter-spacing: 1.2px;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 700;
}

.countdown-date {
  font-size: 2rem;
  color: #ffffff;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.22);
}

.countdown-date strong {
  font-weight: 800;
}

/* ==========================================================================
   SECCIÓN DIPLOMADO
   ========================================================================== */
.diplomas-destacados {
  padding: 8rem 0 5rem 0;
  margin: 0;
  background-color: white;
}

.diplomas-destacados-header {
  text-align: center;
  margin-bottom: 3rem;
}

.diplomas-destacados-title {
  font-size: 4rem;
  font-weight: 900;
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1.5rem;
}

.diplomas-destacados-subtitle {
  font-size: 1.8rem;
  color: var(--secondary-color);
  max-width: 600px;
  margin: 0 auto;
}

.diplomas-destacados-carousel-wrapper {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

.diplomas-destacados-carousel-container {
  overflow: hidden;
  border-radius: 18px;
  box-shadow: var(--shadow);
  background: var(--white);
}

.diplomas-destacados-carousel-track {
  display: flex;
  transform: none !important;
}

.diploma-destacado-card {
  flex: 0 0 100%;
  min-width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  height: auto;
  border-radius: 18px;
  overflow: hidden;
  opacity: 1 !important;
  background: var(--white);
}

.diploma-corner-number {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 8rem;
  font-weight: 900;
  color: rgba(0, 86, 179, 0.1);
  line-height: 1;
  z-index: 1;
  pointer-events: none;
  user-select: none;
}

.diploma-destacado-info {
  padding: 3rem;
  color: var(--text);
  display: flex;
  flex-direction: column;
  gap: 2rem;
  position: relative;
  z-index: 2;
}

.diploma-header-info {
  position: relative;
  text-align: left;
  border-bottom: 2px solid var(--border-color);
  padding-bottom: 2rem;
  z-index: 2;
}

.diploma-title {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 2rem;
  line-height: 1.3;
  position: relative;
  z-index: 2;
}

.diploma-meta-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
}

.diploma-meta-left {
  flex: 1;
}

.diploma-level {
  display: inline-block;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
  background: var(--primary);
  padding: 8px 20px;
  border-radius: 20px;
  text-align: center;
  max-width: 300px;
  border: 1px solid black;
}

.diploma-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 1rem;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.4rem;
  color: var(--primary-color);
  background: var(--light-color);
  padding: 10px 18px;
  border-radius: 10px;
  border: 1px solid var(--border-color);
}

.meta-item i {
  color: var(--primary);
  font-size: 1.2rem;
}

.diploma-description {
  background: var(--light-color);
  padding: 2rem;
  border-radius: 12px;
  border-left: 4px solid var(--primary);
}

.diploma-description h4 {
  font-size: 1.8rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-weight: 700;
}

.diploma-description p {
  font-size: 1.5rem;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 0;
}

/* ==========================================================================
   MÓDULOS
   ========================================================================== */
.diploma-modules h4 {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
}

.diploma-modules h4 i {
  color: var(--primary);
}

.modules-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.8rem;
}

.module-item {
  display: flex;
  gap: 1rem;
  background: var(--white);
  padding: 1.8rem;
  border-radius: 16px;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.04);
}

.module-card-button {
  width: 100%;
  text-align: left;
  cursor: pointer;
  background: var(--white);
  appearance: none;
  -webkit-appearance: none;
  min-height: 150px;
  align-items: flex-start;
}

.module-card-button:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
  border-color: var(--primary);
}

.module-card-button:focus {
  outline: 3px solid rgba(158, 202, 227, 0.7);
  outline-offset: 2px;
}

.module-number {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  background: var(--primary);
  color: var(--primary-color);
  border-radius: 50%;
  font-weight: 700;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.module-content {
  flex: 1;
}

.module-content h5 {
  font-size: 1.6rem;
  color: var(--primary-color);
  margin: 0;
  font-weight: 700;
  line-height: 1.45;
}

/* ==========================================================================
   BOTONES WHATSAPP
   ========================================================================== */
.diploma-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 2rem;
  border-top: 2px solid var(--border-color);
  margin-top: 1rem;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.btn-whatsapp-contacto {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #25d366;
  color: #fff;
  text-decoration: none;
  padding: 18px 30px;
  border-radius: 999px;
  font-weight: 500;
  font-size: 1.25rem;
  border: none;
  transition: all 0.25s ease;
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.22);
}

.btn-whatsapp-contacto i {
  font-size: 2rem;
}

.btn-whatsapp-contacto:hover {
  background: #1ebe5d;
  transform: translateY(-2px);
  color: #fff;
}

.btn-whatsapp-contacto:visited,
.btn-whatsapp-contacto:focus,
.btn-whatsapp-contacto:active {
  color: #fff;
  text-decoration: none;
}

.btn-whatsapp-big {
  font-size: 1.9rem !important;
  font-weight: 800 !important;
  padding: 2rem 3.8rem !important;
  min-height: 72px;
  box-shadow: 0 14px 34px rgba(37, 211, 102, 0.28);
}

.btn-whatsapp-big i {
  font-size: 2.4rem !important;
}

.btn-whatsapp-bottom {
  margin-top: 1rem;
  font-size: 1.6rem !important;
  font-weight: 700 !important;
  padding: 1.8rem 3.2rem !important;
}

.btn-whatsapp-bottom i {
  font-size: 2rem !important;
}

/* ==========================================================================
   PERFIL DEL PROGRAMA
   ========================================================================== */
.info-general-standalone {
  padding: 7rem 0;
}

.info-general-standalone-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 5rem;
  align-items: center;
}

.info-general-standalone-title {
  font-size: 4rem;
  font-weight: 900;
  color: var(--primary-color);
  text-transform: uppercase;
  line-height: 1.15;
  margin-bottom: 2rem;
}

.info-general-standalone-text {
  font-size: 1.8rem;
  line-height: 1.8;
  color: var(--primary-color);
  margin-bottom: 3rem;
  max-width: 68rem;
}

.info-general-standalone-list {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}

.info-general-item {
  display: flex;
  align-items: flex-start;
  gap: 1.3rem;
}

.info-general-item i {
  color: #28a745;
  font-size: 1.8rem;
  margin-top: 0.4rem;
  flex-shrink: 0;
}

.info-general-item span {
  font-size: 1.55rem;
  line-height: 1.75;
  color: var(--primary-color);
}

.info-general-standalone-card {
  background: #fff;
  border: 1.5px solid #9ecae3;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  padding: 3.5rem;
}

.info-card-icon {
  margin-bottom: 1.6rem;
}

.info-card-icon i {
  font-size: 3rem;
  color: #9ecae3;
}

.info-general-quote {
  font-size: 1.9rem;
  font-style: italic;
  line-height: 1.8;
  color: var(--primary-color);
  margin-bottom: 2.4rem;
}

.info-general-card-footer {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  margin-bottom: 2.4rem;
}

.info-general-line {
  width: 42px;
  height: 2px;
  background: #9ecae3;
}

.info-general-card-footer p {
  font-size: 1.35rem;
  color: var(--text-light);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.info-general-cta-btn {
  font-size: 1.5rem;
  font-weight: 800;
  padding: 1.8rem 3rem;
  width: 100%;
  justify-content: center;
}

.info-general-cta-btn i {
  font-size: 2rem;
}

/* ==========================================================================
   MODAL DE MÓDULO
   ========================================================================== */
.module-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(6px);
  opacity: 0;
  visibility: hidden;
  transition: 0.25s ease;
  z-index: 99990;
}

.module-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  width: min(760px, 92vw);
  max-height: 85vh;
  overflow-y: auto;
  transform: translate(-50%, -50%) scale(0.96);
  background: #fff;
  border-radius: 24px;
  border: 2px solid #dfe7ee;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
  padding: 2.8rem;
  opacity: 0;
  visibility: hidden;
  transition: 0.25s ease;
  z-index: 99999;
}

.module-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.module-modal.active {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1);
}

.module-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--border-color);
  background: #fff;
  cursor: pointer;
  font-size: 1.6rem;
  color: var(--primary-color);
  transition: 0.2s ease;
}

.module-modal-close:hover {
  background: var(--light-color);
  transform: rotate(90deg);
}

.module-modal-badge {
  display: inline-block;
  padding: 0.7rem 1.6rem;
  background: var(--primary);
  border: 1px solid #000;
  border-radius: 999px;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 1.6rem;
}

.module-modal-title {
  font-size: 2.4rem;
  line-height: 1.35;
  color: var(--primary-color);
  margin-bottom: 2rem;
  font-weight: 800;
  padding-right: 4rem;
}

.module-modal-body h4 {
  font-size: 1.7rem;
  margin-bottom: 1.4rem;
  color: var(--primary-color);
}

.module-modal-body ul {
  margin: 0;
  padding-left: 2.2rem;
}

.module-modal-body li {
  font-size: 1.5rem;
  line-height: 1.7;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

/* ==========================================================================
   PROFESORES DEL DIPLOMADO
   ========================================================================== */
.faculty-section {
  padding: 8rem 0;
}

.faculty-header {
  text-align: center;
  margin-bottom: 4rem;
}

.faculty-title {
  font-size: 3.8rem;
  font-weight: 900;
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.2rem;
}

.faculty-subtitle {
  font-size: 1.7rem;
  color: var(--secondary-color);
  max-width: 80rem;
  margin: 0 auto;
  line-height: 1.7;
}

.faculty-grid {
  display: grid;
  grid-template-columns: repeat(24, 1fr);
  gap: 2.4rem;
  max-width: 1280px;
  margin: 0 auto;
  align-items: stretch;
}

.faculty-card {
  grid-column: span 6;
  width: 100%;
  height: 100%;
  min-height: 52rem;
  max-width: 100%;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  padding: 2.2rem 2rem;
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
  display: flex;
  flex-direction: column;
}

.faculty-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.faculty-card:nth-child(5) {
  grid-column: 4 / span 6;
}

.faculty-card:nth-child(6) {
  grid-column: 10 / span 6;
}

.faculty-card:nth-child(7) {
  grid-column: 16 / span 6;
}

.faculty-photo-wrap {
  width: 18rem;
  height: 18rem;
  margin: 0 auto 1.8rem;
  border-radius: 50%;
  padding: 0.6rem;
  background: var(--primary);
  box-shadow: 0 10px 25px rgba(11, 124, 183, 0.18);
  flex-shrink: 0;
}

.faculty-photo {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  background: #f2f6f9;
}

.faculty-content {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.faculty-content h3 {
  font-size: 2rem;
  font-weight: 900;
  color: var(--primary-color);
  text-transform: uppercase;
  line-height: 1.25;
  margin-bottom: 1.2rem;
  min-height: 5.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.faculty-content ul {
  list-style: disc;
  padding-left: 2rem;
  text-align: left;
  margin: 0;
  flex: 1;
}

.faculty-content li {
  font-size: 1.45rem;
  color: var(--primary-color);
  line-height: 1.6;
  margin-bottom: 0.7rem;
}

/* ==========================================================================
   FAQS
   ========================================================================== */
.faq-section {
  padding: 8rem 0;
  background: transparent;
}

.faq-header,
.faq-groups,
.faq-pdf-card {
  position: relative;
  z-index: 2;
}

.faq-header {
  text-align: center;
  margin-bottom: 4rem;
}

.faq-title {
  font-size: 3.8rem;
  font-weight: 900;
  color: var(--primary-color);
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}

.faq-subtitle {
  font-size: 1.7rem;
  color: var(--secondary-color);
  max-width: 82rem;
  margin: 0 auto;
  line-height: 1.7;
}

.faq-groups {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2.4rem;
}

.faq-group {
  background: rgba(249, 251, 253, 0.94);
  border: 1px solid var(--border-color);
  border-radius: 22px;
  padding: 2.2rem;
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}

.faq-group h3 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 1.6rem;
}

.faq-item {
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid #e6edf3;
  border-radius: 14px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.faq-item:last-child {
  margin-bottom: 0;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--primary-color);
  line-height: 1.5;
  padding: 1.5rem 4.8rem 1.5rem 1.6rem;
  position: relative;
  user-select: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 1.6rem;
  transform: translateY(-50%);
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #eef6fb;
  color: #0b7cb7;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-answer {
  padding: 0 1.6rem 1.6rem 1.6rem;
}

.faq-answer p,
.faq-answer li {
  font-size: 1.4rem;
  color: var(--primary-color);
  line-height: 1.7;
}

.faq-answer ul {
  padding-left: 1.8rem;
  margin-top: 0.6rem;
}

.faq-answer li {
  margin-bottom: 0.6rem;
}

/* ==========================================================================
   TARJETA PDF
   ========================================================================== */
.faq-pdf-card {
  margin-top: 3rem;
  background: linear-gradient(135deg, #f4fbff 0%, #eef7fc 100%);
  border: 1px solid #d9e9f2;
  border-radius: 22px;
  padding: 2.8rem;
  text-align: center;
  box-shadow: var(--shadow-soft);
}

.faq-pdf-card h3 {
  font-size: 2.3rem;
  font-weight: 900;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.faq-pdf-card p {
  font-size: 1.55rem;
  color: var(--secondary-color);
  max-width: 75rem;
  margin: 0 auto 1.8rem;
  line-height: 1.7;
}

.faq-pdf-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #ffffff;
  color: #000000;
  text-decoration: none;
  padding: 1.6rem 2.6rem;
  border-radius: 999px;
  font-weight: 800;
  font-size: 1.5rem;
  border: 2px solid #d62828;
  transition: all 0.25s ease;
  box-shadow: 0 8px 20px rgba(214, 40, 40, 0.18);
  position: relative;
  overflow: hidden;
}

.faq-pdf-btn i {
  font-size: 2rem;
  color: #d62828;
}

/* Hover general */
.faq-pdf-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(214, 40, 40, 0.25);
}

/* EFECTO BRILLO */
.faq-pdf-btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.8),
    transparent
  );
  transform: skewX(-25deg);
  transition: left 0.5s ease;
}

/* ACTIVAR BRILLO EN HOVER */
.faq-pdf-btn:hover::after {
  left: 120%;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
  background-color: #0046a5;
  color: white;
  padding: 8rem 0 4rem;
  position: relative;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 5rem;
  margin-bottom: 4rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.footer-logo span {
  font-size: 2.4rem;
  font-weight: 800;
}

.footer-section p {
  font-size: 1.5rem;
  color: white;
  margin-bottom: 2.5rem;
  line-height: 1.7;
  max-width: 35rem;
}

.social-links {
  display: flex;
  gap: 1.5rem;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4.5rem;
  height: 4.5rem;
  background-color: black;
  border-radius: 50%;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1.8rem;
}

.social-links a:hover {
  background-color: white;
  color: black;
  transform: translateY(-3px);
}

.footer-section h4 {
  font-size: 1.7rem;
  font-weight: 700;
  margin-bottom: 2.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: white;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 1.5rem;
}

.footer-section ul li a {
  color: white;
  text-decoration: none;
  font-size: 1.4rem;
  transition: all 0.3s ease;
}

.footer-section ul li a:hover {
  color: #9ecae3;
  transform: translateX(5px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 3rem;
  text-align: center;
}

.footer-bottom p {
  font-size: 1.4rem;
  color: rgba(255, 255, 255, 0.8);
}

/* ==========================================================================
   MODAL ARTÍCULOS
   ========================================================================== */
.articulos-soon-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(10px);
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.25s ease,
    visibility 0.25s ease;
  z-index: 99990;
}

.articulos-soon-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(0.96);
  width: min(680px, 92vw);
  background: #fff;
  border-radius: 24px;
  border: 2px solid #000;
  box-shadow: var(--shadow, 0 20px 45px rgba(0, 0, 0, 0.12));
  padding: 28px;
  opacity: 0;
  visibility: hidden;
  transition:
    transform 0.25s ease,
    opacity 0.25s ease,
    visibility 0.25s ease;
  z-index: 99999;
  overflow: hidden;
}

.articulos-soon-modal::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(158, 202, 227, 0.35), rgba(0, 0, 0, 0) 55%);
  pointer-events: none;
  z-index: 0;
}

.articulos-soon-ribbon {
  position: absolute;
  top: 18px;
  right: -70px;
  width: 260px;
  height: 56px;
  transform: rotate(35deg);
  z-index: 3;
  pointer-events: none;
  filter: drop-shadow(0 14px 18px rgba(0, 0, 0, 0.2));
}

.articulos-soon-ribbon span {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #63df63 0%, #34c84c 55%, #1fa833 100%);
  color: #fff;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 2px;
  box-shadow:
    inset 0 2px 0 rgba(255, 255, 255, 0.35),
    inset 0 -2px 0 rgba(0, 0, 0, 0.15);
}

.articulos-soon-overlay.active {
  opacity: 1;
  visibility: visible;
}

.articulos-soon-modal.active {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1);
}

.articulos-soon-title {
  position: relative;
  z-index: 1;
  margin-top: 18px;
  font-size: 2.4rem;
  font-weight: 900;
  color: #000;
  text-transform: uppercase;
  line-height: 1.15;
}

.articulos-soon-desc {
  position: relative;
  z-index: 1;
  margin-top: 12px;
  font-size: 1.55rem;
  color: #111;
  line-height: 1.7;
  font-weight: 600;
  max-width: 62ch;
}

.articulos-soon-actions {
  position: relative;
  z-index: 1;
  margin-top: 18px;
  display: flex;
  gap: 12px;
}

.articulos-soon-btn {
  width: 100%;
  padding: 14px 18px;
  border-radius: 999px;
  border: 2px solid #000;
  background: #9ecae3;
  color: #000;
  font-weight: 900;
  font-size: 1.4rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    box-shadow 0.25s ease,
    background 0.25s ease;
}

.articulos-soon-btn:hover {
  background: #fff;
  transform: translateY(-2px);
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.18);
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1200px) {
  .faculty-grid {
    grid-template-columns: repeat(12, 1fr);
    max-width: 980px;
  }

  .faculty-card {
    grid-column: span 4;
    min-height: 50rem;
  }

  .faculty-card:nth-child(5) {
    grid-column: 2 / span 4;
  }

  .faculty-card:nth-child(6) {
    grid-column: 5 / span 4;
  }

  .faculty-card:nth-child(7) {
    grid-column: 8 / span 4;
  }

  .faculty-photo-wrap {
    width: 16rem;
    height: 16rem;
  }
}

@media (max-width: 1024px) {
  .menu-desktop,
  .actions-desktop {
    display: none;
  }

  .menu-btn {
    display: block;
    margin-left: auto;
  }

  .navbar {
    width: calc(100% - 32px);
    top: 12px;
  }

  .navbar-inner {
    padding: 12px 18px;
  }

  .diplomas-hero {
    height: 75vh;
    min-height: 620px;
  }

  .diplomas-hero .hero-title {
    font-size: 4rem;
  }

  .diplomas-hero .hero-description {
    font-size: 1.5rem;
  }

  .intro-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }

  .intro-title {
    font-size: 3rem;
  }

  .intro-lead {
    font-size: 1.6rem;
  }

  .footer-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
  }
}

@media (max-width: 992px) {
  .diplomas-destacados-title {
    font-size: 3.2rem;
  }

  .diploma-corner-number {
    font-size: 6rem;
    top: 15px;
    right: 15px;
  }

  .diploma-title {
    font-size: 2.4rem;
  }

  .diploma-meta-container {
    flex-direction: column;
  }

  .diploma-level {
    max-width: 100%;
  }

  .modules-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .info-general-standalone-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .info-general-standalone-title {
    font-size: 3.2rem;
  }

  .info-general-standalone-text {
    max-width: 100%;
  }

  .faculty-title,
  .faq-title {
    font-size: 3.1rem;
  }

  .faculty-subtitle,
  .faq-subtitle {
    font-size: 1.55rem;
  }

  .faculty-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 760px;
  }

  .faculty-card,
  .faculty-card:nth-child(5),
  .faculty-card:nth-child(6),
  .faculty-card:nth-child(7) {
    grid-column: span 1;
    min-height: 48rem;
  }

  .faq-groups {
    grid-template-columns: 1fr;
  }

  .countdown-card {
    min-height: 420px;
  }

  .countdown-card-content {
    min-height: 420px;
    padding: 48px 28px;
  }

  .countdown-header h2 {
    font-size: 2.8rem;
  }

  .countdown-header p {
    font-size: 1.65rem;
  }

  .time-box span {
    font-size: 3.3rem;
  }
}

@media (max-width: 768px) {
  html {
    font-size: 55%;
  }

  .logo-text {
    font-size: 1.2rem;
  }

  .logo-img {
    height: 32px;
  }

  .navbar {
    border-radius: 16px;
  }

  .diplomas-hero {
    height: auto;
    min-height: 0;
    padding: 6rem 0 4rem;
    margin-top: -150px;
  }

  .hero-content {
    margin-top: 50px;
    padding: 0;
    text-align: left;
    margin-left: 5%;
    margin-right: 150px;
  }

  .diplomas-hero .hero-title {
    font-size: 2.6rem;
    line-height: 1.15;
  }

  .diplomas-hero .hero-description {
    font-size: 1.4rem;
  }

  .diplomas-destacados {
    padding: 6rem 0 4rem;
  }

  .diplomas-destacados-title {
    font-size: 2.8rem;
  }

  .diplomas-destacados-subtitle {
    font-size: 1.6rem;
    padding: 0 2rem;
  }

  .diploma-corner-number {
    font-size: 5rem;
    top: 10px;
    right: 10px;
  }

  .diploma-destacado-info {
    padding: 2rem;
  }

  .diploma-title {
    font-size: 2rem;
    margin-bottom: 1.5rem;
  }

  .diploma-level {
    font-size: 1.2rem;
    padding: 6px 15px;
  }

  .diploma-meta {
    gap: 1rem;
  }

  .meta-item {
    font-size: 1.2rem;
    padding: 8px 14px;
  }

  .modules-grid {
    grid-template-columns: 1fr;
  }

  .module-modal {
    width: 94vw;
    padding: 2.2rem 1.8rem;
    border-radius: 18px;
  }

  .module-modal-title {
    font-size: 2rem;
  }

  .module-modal-body li {
    font-size: 1.4rem;
  }

  .btn-whatsapp-big {
    width: 100%;
    justify-content: center;
  }

  .info-general-standalone {
    padding: 5rem 0;
  }

  .info-general-standalone-title {
    font-size: 2.8rem;
  }

  .info-general-standalone-text {
    font-size: 1.55rem;
  }

  .info-general-item span {
    font-size: 1.45rem;
  }

  .info-general-standalone-card {
    padding: 2.4rem;
  }

  .info-general-quote {
    font-size: 1.65rem;
  }

  .faculty-section,
  .faq-section {
    padding: 6rem 0;
  }

  .faculty-title,
  .faq-title {
    font-size: 2.7rem;
  }

  .faculty-subtitle,
  .faq-subtitle {
    font-size: 1.5rem;
    padding: 0 1rem;
  }

  .faculty-photo-wrap {
    width: 15rem;
    height: 15rem;
  }

  .faculty-content h3 {
    font-size: 1.8rem;
    min-height: 5rem;
  }

  .faculty-content li {
    font-size: 1.38rem;
  }

  .faq-group {
    padding: 1.8rem;
  }

  .faq-group h3 {
    font-size: 1.8rem;
  }

  .faq-pdf-card {
    padding: 2.2rem;
  }

  .countdown-section {
    padding: 60px 16px;
  }

  .countdown-card {
    min-height: 400px;
    border-radius: 20px;
  }

  .countdown-card-content {
    min-height: 400px;
    padding: 42px 20px;
  }

  .countdown-header h2 {
    font-size: 2.3rem;
  }

  .countdown-header p {
    font-size: 1.45rem;
    margin-bottom: 26px;
  }

  .countdown-timer {
    gap: 14px;
  }

  .time-box {
    min-width: 95px;
    padding: 18px 16px;
  }

  .time-box span {
    font-size: 2.8rem;
  }

  .time-box small {
    font-size: 1rem;
  }

  .countdown-date {
    font-size: 1.55rem;
  }
}

@media (max-width: 576px) {
  .diplomas-destacados-title {
    font-size: 2.4rem;
    padding: 0 1rem;
  }

  .diplomas-destacados-subtitle {
    font-size: 1.4rem;
  }

  .diploma-corner-number {
    font-size: 4rem;
    top: 8px;
    right: 8px;
  }

  .diploma-destacado-info {
    padding: 1.5rem;
  }

  .diploma-title {
    font-size: 1.8rem;
    margin-bottom: 1rem;
  }

  .diploma-level {
    font-size: 1.1rem;
    margin-bottom: 1rem;
  }

  .diploma-meta {
    flex-direction: column;
    gap: 0.8rem;
  }

  .meta-item {
    width: 100%;
    justify-content: center;
  }

  .diploma-description h4 {
    font-size: 1.6rem;
  }

  .diploma-description p {
    font-size: 1.3rem;
  }

  .diploma-modules h4 {
    font-size: 1.6rem;
  }

  .module-item {
    padding: 1.4rem;
    min-height: auto;
  }

  .module-content h5 {
    font-size: 1.45rem;
  }

  .module-modal-title {
    font-size: 1.8rem;
  }

  .btn-whatsapp-big {
    font-size: 1.6rem !important;
    padding: 1.8rem 2.2rem !important;
  }

  .btn-whatsapp-big i {
    font-size: 2rem !important;
  }

  .faculty-grid {
    grid-template-columns: 1fr;
    max-width: 360px;
  }

  .faculty-card,
  .faculty-card:nth-child(5),
  .faculty-card:nth-child(6),
  .faculty-card:nth-child(7) {
    grid-column: span 1;
    min-height: auto;
  }

  .faculty-title,
  .faq-title {
    font-size: 2.3rem;
  }

  .faculty-card,
  .faq-group,
  .faq-pdf-card {
    padding: 1.6rem;
  }

  .faculty-photo-wrap {
    width: 13.5rem;
    height: 13.5rem;
  }

  .faculty-content h3 {
    min-height: auto;
  }

  .faculty-content li,
  .faq-answer p,
  .faq-answer li {
    font-size: 1.32rem;
  }

  .faq-item summary {
    font-size: 1.35rem;
    padding: 1.3rem 4.4rem 1.3rem 1.3rem;
  }

  .faq-item summary::after {
    right: 1.2rem;
    width: 2.5rem;
    height: 2.5rem;
    font-size: 1.6rem;
  }

  .faq-pdf-card h3 {
    font-size: 2rem;
  }

  .faq-pdf-card p {
    font-size: 1.4rem;
  }

  .faq-pdf-btn,
  .info-general-cta-btn {
    width: 100%;
    justify-content: center;
  }

  .info-general-standalone-title {
    font-size: 2.4rem;
  }

  .info-general-standalone-text {
    font-size: 1.4rem;
  }

  .info-general-item span {
    font-size: 1.35rem;
  }

  .info-general-quote {
    font-size: 1.5rem;
  }

  .info-general-cta-btn {
    font-size: 1.35rem;
    padding: 1.6rem 2rem;
  }

  .articulos-soon-modal {
    padding: 20px;
    border-radius: 18px;
  }

  .articulos-soon-title {
    font-size: 2rem;
  }

  .articulos-soon-desc {
    font-size: 1.35rem;
  }

  .articulos-soon-ribbon {
    top: 14px;
    right: -78px;
    width: 210px;
    height: 48px;
  }

  .articulos-soon-ribbon span {
    font-size: 1.15rem;
    letter-spacing: 1.6px;
  }
}

@media (max-width: 480px) {
  body {
    padding-top: 70px;
  }

  .logo-text {
    font-size: 1.05rem;
  }

  .logo-img {
    height: 28px;
  }

  .navbar {
    top: 10px;
    width: calc(100% - 20px);
  }

  .hero-content {
    margin-right: 5%;
  }

  .diplomas-hero .hero-title {
    font-size: 2rem;
  }

  .diplomas-hero .hero-description {
    font-size: 1.2rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }

  .social-links {
    justify-content: center;
  }

  .countdown-header h2 {
    font-size: 2rem;
  }

  .countdown-header p {
    font-size: 1.28rem;
  }

  .countdown-timer {
    gap: 10px;
  }

  .time-box {
    min-width: 78px;
    padding: 14px 12px;
    border-radius: 14px;
  }

  .time-box span {
    font-size: 2.2rem;
  }

  .time-box small {
    font-size: 0.9rem;
  }

  .countdown-date {
    font-size: 1.3rem;
  }
}

@media (max-width: 400px) {
  .diplomas-destacados-title {
    font-size: 2rem;
  }

  .diploma-corner-number {
    font-size: 3rem;
    top: 5px;
    right: 5px;
  }

  .diploma-title {
    font-size: 1.6rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}