* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Roboto", sans-serif;
  line-height: 1.6;
  color: var(--color-dark);
  /* background-color: #942121 !important; */
}

/* Mejoras globales de espaciado y responsividad */
section {
  padding: 4rem 0;
}

.container {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

/* Mejorar espaciado en móviles */
@media (max-width: 768px) {
  section {
    padding: 3rem 0;
  }

  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

:root {
  --color-primary: #f6b81a;
  --color-secondary: #19355a;
  --color-accent: #277e86;
  --color-light: #f4f4f4;
  --color-dark: #1c1c1c;
}

/* Navbar */
.navbar {
  background: #f6b81a;
  background: linear-gradient(
    90deg,
    rgba(246, 184, 26, 1) 0%,
    rgba(25, 53, 90, 1) 80%,
    rgba(39, 126, 134, 1) 100%
  );
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 60px;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar .container-fluid {
  padding-left: 2rem;
  padding-right: 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.navbar-brand {
  color: #fff !important;
  font-size: 1.5rem;
  font-weight: 700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.nav-link {
  color: #fff !important;
  font-weight: 600;
  text-transform: uppercase;
  margin: 0 0.5rem;
  font-size: 1rem;
  transition: all 0.3s ease;
  border-radius: 5px;
  padding: 0.5rem 1rem;
}

.nav-link:hover {
  background-color: rgba(255, 255, 255, 0.2);
  color: #fff !important;
  transform: translateY(-2px);
}

.navbar-toggler {
  border-color: rgba(255, 255, 255, 0.5);
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Contador */
.contador {
  background: linear-gradient(135deg, #2d1b4e 0%, #4a1a5c 50%, #6a1b7a 100%);
  padding: 0.05rem 0;
  text-align: center;
  color: #fff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
  position: fixed;
  top: 60px;
  left: 0;
  right: 0;
  z-index: 1001;
  width: 100%;
  display: block;
  visibility: visible;
  opacity: 1;
  border-bottom: 2px solid var(--color-primary);
  border-top: 1px solid rgba(246, 184, 26, 0.3);
}

.contador-contenido {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.1rem clamp(1rem, 3vw, 1.5rem);
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: clamp(0.4rem, 1.2vw, 0.6rem);
  flex-wrap: wrap;
}

/* Tablets y pantallas medianas */
@media (max-width: 992px) and (min-width: 769px) {
  .contador {
    padding: 0.05rem 0;
  }

  .contador-contenido {
    grid-template-columns: 1fr auto;
    gap: 0.8rem;
    padding: 0 1rem;
  }

  .contador-header-desktop {
    grid-column: 1 / -1;
    justify-content: center;
  }

  .contador-texto {
    font-size: 0.85rem;
  }

  .contador-tiempo-wrapper {
    grid-column: 1 / -1;
    justify-content: center;
    gap: 0.5rem;
  }

  .contador-numero {
    font-size: 1.6rem;
    padding: 0.3rem 0.7rem;
    min-width: 48px;
  }

  .contador-label {
    font-size: 0.65rem;
  }

  .contador-separador {
    font-size: 1.3rem;
    margin: 0 0.2rem;
  }

  .contador-precio-wrapper {
    grid-column: 1;
    justify-self: start;
  }

  .contador-precio {
    padding: 0.3rem 0.7rem;
  }

  .contador-precio-new {
    font-size: 1.3rem;
  }

  .contador-precio-badge {
    font-size: 0.6rem;
    padding: 0.12rem 0.4rem;
  }

  .btn-comprar-contador {
    grid-column: 2;
    justify-self: end;
    padding: 0.5rem 1.2rem;
    font-size: 0.8rem;
  }
}

.contador-header-desktop {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  flex-shrink: 0;
}

.contador-icon {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(246, 184, 26, 0.2);
  border-radius: 50%;
  color: var(--color-primary);
  animation: pulse-icon 2s ease-in-out infinite;
}

@keyframes pulse-icon {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.8;
  }
}

.contador-texto {
  font-size: clamp(0.75rem, 1.5vw, 0.9rem);
  font-weight: 600;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  text-transform: uppercase;
  letter-spacing: 1px;
  white-space: nowrap;
  color: rgba(255, 255, 255, 0.95);
}

.contador-tiempo-wrapper {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  flex: 1;
  justify-content: center;
}

.contador-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.05rem;
  min-width: 60px;
}

.contador-numero {
  font-size: clamp(1.1rem, 2.8vw, 1.5rem);
  font-weight: 700;
  font-family: "Courier New", monospace;
  color: var(--color-primary);
  text-shadow: 0 0 10px rgba(246, 184, 26, 0.5);
  background: rgba(0, 0, 0, 0.2);
  padding: clamp(0.15rem, 0.6vw, 0.2rem) clamp(0.4rem, 1.2vw, 0.6rem);
  border-radius: 5px;
  min-width: clamp(42px, 7vw, 48px);
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid rgba(246, 184, 26, 0.3);
  line-height: 1.1;
}

.contador-numero.pulse {
  animation: pulse-number 0.3s ease;
}

@keyframes pulse-number {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(246, 184, 26, 0.8);
  }
  100% {
    transform: scale(1);
  }
}

.contador-label {
  font-size: 0.6rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  color: rgba(255, 255, 255, 0.8);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
  line-height: 1;
  margin-top: -2px;
}

.contador-separador {
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  font-weight: 700;
  color: var(--color-primary);
  text-shadow: 0 0 10px rgba(246, 184, 26, 0.5);
  margin: 0 clamp(0.2rem, 1vw, 0.3rem);
  animation: blink 1s ease-in-out infinite;
}

.contador-precio-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contador-precio {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.05rem;
  padding: 0.15rem 0.5rem;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  border: 2px solid rgba(246, 184, 26, 0.3);
}

.contador-precio-old {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: line-through;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contador-precio-new {
  font-size: clamp(0.85rem, 2vw, 1.2rem);
  font-weight: 700;
  color: var(--color-primary);
  text-shadow: 0 0 10px rgba(246, 184, 26, 0.6);
  line-height: 1;
  font-family: "Courier New", monospace;
}

.contador-precio-badge {
  font-size: 0.55rem;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(135deg, #dc2626 0%, #991b1b 100%);
  padding: 0.08rem 0.35rem;
  border-radius: 5px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  box-shadow: 0 2px 8px rgba(220, 38, 38, 0.4);
  line-height: 1.1;
}

@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}

.btn-comprar-contador {
  background: linear-gradient(135deg, var(--color-primary) 0%, #ffa500 100%);
  border: none;
  padding: clamp(0.35rem, 1vw, 0.45rem) clamp(0.8rem, 2.2vw, 1.2rem);
  font-size: clamp(0.65rem, 1.6vw, 0.8rem);
  font-weight: 700;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(246, 184, 26, 0.4);
  color: #fff;
  text-decoration: none;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: clamp(0.25rem, 0.8vw, 0.4rem);
  flex-shrink: 0;
  line-height: 1.1;
}

.btn-comprar-contador svg {
  transition: transform 0.3s ease;
}

.btn-comprar-contador:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(246, 184, 26, 0.6);
  background: linear-gradient(135deg, #ffa500 0%, var(--color-primary) 100%);
  color: #fff;
}

.btn-comprar-contador:hover svg {
  transform: translateX(3px);
}

/* Estados de urgencia del contador */
.contador.urgente {
  background: linear-gradient(135deg, #d97706 0%, var(--color-secondary) 100%);
  animation: shake-soft 2s ease-in-out infinite;
}

.contador.muy-urgente {
  background: linear-gradient(135deg, #dc2626 0%, #991b1b 100%);
  animation: shake-medium 1.5s ease-in-out infinite;
  border-bottom-color: #fbbf24;
}

.contador.extremo {
  background: linear-gradient(135deg, #dc2626 0%, #7f1d1d 100%);
  animation: shake-hard 1s ease-in-out infinite;
  border-bottom-color: #fbbf24;
  box-shadow: 0 4px 30px rgba(220, 38, 38, 0.6);
}

@keyframes shake-soft {
  0%,
  100% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-2px);
  }
  75% {
    transform: translateX(2px);
  }
}

@keyframes shake-medium {
  0%,
  100% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-3px);
  }
  75% {
    transform: translateX(3px);
  }
}

@keyframes shake-hard {
  0%,
  100% {
    transform: translateX(0);
  }
  10%,
  30%,
  50%,
  70%,
  90% {
    transform: translateX(-4px);
  }
  20%,
  40%,
  60%,
  80% {
    transform: translateX(4px);
  }
}

/* Efectos en números cuando es urgente */
.contador-numero.urgente-pulse {
  color: #fbbf24;
  border-color: #fbbf24;
  box-shadow: 0 0 15px rgba(251, 191, 36, 0.6);
}

.contador-numero.muy-urgente-pulse {
  color: #fbbf24;
  border-color: #fbbf24;
  background: rgba(220, 38, 38, 0.3);
  box-shadow: 0 0 20px rgba(251, 191, 36, 0.8);
  animation: glow-urgent 0.5s ease;
}

.contador-numero.extremo-pulse {
  color: #fef3c7;
  border-color: #fbbf24;
  background: rgba(220, 38, 38, 0.4);
  box-shadow: 0 0 25px rgba(251, 191, 36, 1);
  animation: glow-extreme 0.3s ease;
}

@keyframes glow-urgent {
  0%,
  100% {
    box-shadow: 0 0 20px rgba(251, 191, 36, 0.8);
  }
  50% {
    box-shadow: 0 0 30px rgba(251, 191, 36, 1);
  }
}

@keyframes glow-extreme {
  0%,
  100% {
    box-shadow: 0 0 25px rgba(251, 191, 36, 1);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 0 40px rgba(251, 191, 36, 1);
    transform: scale(1.05);
  }
}

/* Separador parpadea más rápido cuando es urgente */
.contador.urgente .contador-separador,
.contador.muy-urgente .contador-separador,
.contador.extremo .contador-separador {
  animation: blink-fast 0.5s ease-in-out infinite;
}

@keyframes blink-fast {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.2;
  }
}

/* Botón más llamativo cuando es urgente */
.contador.urgente .btn-comprar-contador,
.contador.muy-urgente .btn-comprar-contador,
.contador.extremo .btn-comprar-contador {
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
  box-shadow: 0 6px 25px rgba(251, 191, 36, 0.7);
  animation: pulse-button 1.5s ease-in-out infinite;
}

.contador.extremo .btn-comprar-contador {
  animation: pulse-button-fast 1s ease-in-out infinite;
}

@keyframes pulse-button {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 6px 25px rgba(251, 191, 36, 0.7);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 8px 35px rgba(251, 191, 36, 1);
  }
}

@keyframes pulse-button-fast {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 6px 25px rgba(251, 191, 36, 0.7);
  }
  50% {
    transform: scale(1.08);
    box-shadow: 0 10px 40px rgba(251, 191, 36, 1);
  }
}

/* Icono más animado cuando es urgente */
.contador.urgente .contador-icon,
.contador.muy-urgente .contador-icon,
.contador.extremo .contador-icon {
  background: rgba(251, 191, 36, 0.3);
  animation: pulse-icon-fast 1s ease-in-out infinite;
}

.contador.extremo .contador-icon {
  animation: pulse-icon-extreme 0.5s ease-in-out infinite;
}

@keyframes pulse-icon-fast {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.15);
  }
}

@keyframes pulse-icon-extreme {
  0%,
  100% {
    transform: scale(1) rotate(0deg);
  }
  25% {
    transform: scale(1.2) rotate(-5deg);
  }
  75% {
    transform: scale(1.2) rotate(5deg);
  }
}

/* Efectos en precio cuando es urgente */
.contador.urgente .contador-precio,
.contador.muy-urgente .contador-precio,
.contador.extremo .contador-precio {
  border-color: #fbbf24;
  background: rgba(220, 38, 38, 0.2);
  animation: pulse-precio 1.5s ease-in-out infinite;
}

.contador.extremo .contador-precio {
  animation: pulse-precio-fast 1s ease-in-out infinite;
  box-shadow: 0 0 20px rgba(251, 191, 36, 0.6);
}

@keyframes pulse-precio {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 10px rgba(251, 191, 36, 0.3);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(251, 191, 36, 0.6);
  }
}

@keyframes pulse-precio-fast {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 15px rgba(251, 191, 36, 0.5);
  }
  50% {
    transform: scale(1.08);
    box-shadow: 0 0 30px rgba(251, 191, 36, 0.9);
  }
}

.contador.urgente .contador-precio-new,
.contador.muy-urgente .contador-precio-new,
.contador.extremo .contador-precio-new {
  color: #fbbf24;
  text-shadow: 0 0 15px rgba(251, 191, 36, 0.8);
  animation: glow-precio 1s ease-in-out infinite;
}

.contador.extremo .contador-precio-new {
  animation: glow-precio-fast 0.5s ease-in-out infinite;
}

@keyframes glow-precio {
  0%,
  100% {
    text-shadow: 0 0 15px rgba(251, 191, 36, 0.8);
  }
  50% {
    text-shadow: 0 0 25px rgba(251, 191, 36, 1);
  }
}

@keyframes glow-precio-fast {
  0%,
  100% {
    text-shadow: 0 0 20px rgba(251, 191, 36, 1);
  }
  50% {
    text-shadow: 0 0 35px rgba(251, 191, 36, 1);
  }
}

.contador.urgente .contador-precio-badge,
.contador.muy-urgente .contador-precio-badge,
.contador.extremo .contador-precio-badge {
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
  color: #1c1c1c;
  box-shadow: 0 2px 12px rgba(251, 191, 36, 0.6);
  animation: pulse-badge 1s ease-in-out infinite;
}

.contador.extremo .contador-precio-badge {
  animation: pulse-badge-fast 0.5s ease-in-out infinite;
}

@keyframes pulse-badge {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

@keyframes pulse-badge-fast {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.15);
  }
}

/* Hero */
.hero {
  position: relative;
  padding: 0;
  background: linear-gradient(
    135deg,
    var(--color-secondary) 0%,
    var(--color-accent) 100%
  );
  background-image: linear-gradient(
      135deg,
      rgba(25, 53, 90, 0.85) 0%,
      rgba(39, 126, 134, 0.85) 100%
    ),
    url("../img/hero-img.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  min-height: auto;
  padding: 2rem 0;
  padding-top: calc(60px + 35px + 2rem);
  margin-top: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    circle at 30% 50%,
    rgba(246, 184, 26, 0.1) 0%,
    transparent 50%
  );
  pointer-events: none;
}

.hero-container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  /* gap: 4rem; */
  align-items: flex-start;
  padding: 0.5rem 0 2rem 0;
  margin-top: 1.5rem;
  width: 100%;
}

.hero-content {
  animation: fadeInUp 1s ease-out;
  max-width: 100%;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  width: 100%;
}

.hero-hook {
  position: relative;
  z-index: 3;
  width: auto;
  max-width: 90%;
  margin: 0 auto;
  font-size: 2.8rem;
  font-weight: 900;
  text-align: center;
  padding: 2rem 1rem 1rem 1rem;
  line-height: 1.2;
  animation: fadeInDown 0.8s ease-out;
  letter-spacing: -0.5px;
  word-wrap: break-word;
  overflow-wrap: break-word;
  box-sizing: border-box;
  color: #ffffff;
}

@media (max-width: 1200px) {
  .hero-hook {
    font-size: 2.5rem;
    max-width: 95%;
    padding: 1.5rem 1rem;
  }
}

.hero-hook-text {
  display: inline-block;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  letter-spacing: -0.5px;
  max-width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

@keyframes shimmer {
  0%,
  100% {
    background-position: 0% center;
  }
  50% {
    background-position: 100% center;
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-title {
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.4;
  margin: 0 auto 1.5rem auto;
  margin-top: 0;
  padding-top: 0;
  text-align: center;
  color: rgba(255, 255, 255, 0.95);
  max-width: 95%;
  width: auto;
  align-self: flex-start;
}

.hero-title-main {
  display: inline;
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
  letter-spacing: 0.5px;
  margin-right: 0.5rem;
  font-weight: 700;
}

.hero-title-accent {
  display: inline;
  color: var(--color-primary);
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
  letter-spacing: 0.5px;
  font-style: italic;
  font-weight: 700;
}

.hero-subtitle {
  font-size: 1.7rem;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.7;
  margin: 0 auto 2rem auto;
  text-align: center;
  font-weight: 400;
  max-width: 95%;
  width: auto;
  padding: 0 1.5rem;
  text-align-last: center;
}

/* Barra Divisoria con Subtítulo */
.hero-divider {
  background: linear-gradient(
    135deg,
    var(--color-secondary) 0%,
    var(--color-accent) 100%
  );
  padding: 2.5rem 1rem;
  position: relative;
  z-index: 1;
}

.hero-subtitle-divider {
  font-size: 2.2rem;
  color: #ffffff;
  line-height: 1.7;
  margin: 0 auto 1.2rem auto;
  text-align: center;
  font-weight: 700;
  max-width: 90%;
  width: auto;
  padding: 0 1.5rem;
  text-align-last: center;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle-divider-detail {
  font-size: 1.6rem;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.7;
  margin: 0 auto;
  text-align: center;
  font-weight: 500;
  max-width: 85%;
  width: auto;
  padding: 0 1.5rem;
  text-align-last: center;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

.highlight-yellow-divider {
  color: var(--color-primary);
  font-weight: 700;
  text-shadow: 0 0 15px rgba(246, 184, 26, 0.6), 2px 2px 4px rgba(0, 0, 0, 0.4);
  font-size: 1.1em;
  display: inline-block;
  padding: 0.2rem 0.4rem;
  background: rgba(246, 184, 26, 0.15);
  border-radius: 6px;
  border: 2px solid rgba(246, 184, 26, 0.4);
}

.hero-subtitle strong {
  color: var(--color-primary);
  font-weight: 600;
}

.hero-subtitle-note {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
  margin-bottom: 2rem;
  text-align: left;
  font-weight: 300;
  font-style: italic;
  padding-left: 1rem;
  border-left: 3px solid var(--color-primary);
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
  margin: 0 auto 3rem auto;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
  max-width: 95%;
}

.btn-hero-primary {
  background: linear-gradient(135deg, var(--color-primary) 0%, #ffa500 100%);
  border: none;
  padding: 1.2rem 3rem;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 8px 25px rgba(246, 184, 26, 0.4);
  color: #fff;
  text-decoration: none;
  display: inline-block;
  position: relative;
  overflow: hidden;
}

.btn-hero-primary::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn-hero-primary:hover::before {
  width: 300px;
  height: 300px;
}

.btn-hero-primary:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 12px 35px rgba(246, 184, 26, 0.6);
  background: linear-gradient(135deg, #ffa500 0%, var(--color-primary) 100%);
  color: #fff;
}

.btn-hero-secondary {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.8);
  padding: 1.2rem 3rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transition: all 0.4s ease;
  color: #fff;
  text-decoration: none;
  display: inline-block;
}

.btn-hero-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 255, 255, 0.2);
  color: #fff;
}

.hero-features {
  display: flex;
  gap: 0.8rem;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 95%;
  margin: 0 auto;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 0.2rem;
  box-sizing: border-box;
}

.hero-features::-webkit-scrollbar {
  display: none;
}

.hero-feature {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.85rem;
  font-weight: 500;
  white-space: nowrap;
  flex-shrink: 0;
  max-width: fit-content;
}

.hero-feature span:last-child {
  font-size: 0.85rem;
}

.hero-feature-icon {
  width: 22px;
  height: 22px;
  min-width: 22px;
  background: linear-gradient(135deg, var(--color-primary) 0%, #ffa500 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 0.75rem;
  box-shadow: 0 3px 10px rgba(246, 184, 26, 0.4);
  flex-shrink: 0;
}

.hero-image-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeInRight 1s ease-out;
}

.hero-image-glow {
  position: absolute;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle,
    rgba(246, 184, 26, 0.3) 0%,
    transparent 70%
  );
  border-radius: 50%;
  animation: pulse 3s ease-in-out infinite;
  z-index: 1;
}

.hero-image {
  width: 100%;
  max-width: 450px;
  height: auto;
  border-radius: 50%;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 0 0 40px rgba(246, 184, 26, 0.2);
  position: relative;
  z-index: 2;
  transition: transform 0.5s ease;
}

.hero-image:hover {
  transform: scale(1.05) rotate(5deg);
}

.hero-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}

.shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
  animation: float 20s infinite ease-in-out;
}

.shape-1 {
  width: 300px;
  height: 300px;
  background: var(--color-primary);
  top: 10%;
  right: 10%;
  animation-delay: 0s;
}

.shape-2 {
  width: 200px;
  height: 200px;
  background: var(--color-accent);
  bottom: 20%;
  left: 5%;
  animation-delay: 5s;
}

.shape-3 {
  width: 150px;
  height: 150px;
  background: #fff;
  top: 60%;
  right: 20%;
  animation-delay: 10s;
}

/* Animaciones */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.3;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.5;
  }
}

@keyframes float {
  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
  33% {
    transform: translate(30px, -30px) rotate(120deg);
  }
  66% {
    transform: translate(-20px, 20px) rotate(240deg);
  }
}

/* Asegurar que todas las imágenes sean responsivas */
img {
  max-width: 100%;
  height: auto;
}

/* Razones */
.razones {
  padding: 5rem 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.razones::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(
    90deg,
    var(--color-primary) 0%,
    var(--color-accent) 100%
  );
}

.razones-header {
  text-align: center;
  margin-bottom: 3rem;
}

.razones h2 {
  font-size: 3rem;
  font-weight: 800;
  color: var(--color-secondary);
  margin-bottom: 1rem;
  line-height: 1.2;
  position: relative;
}

.razones h2::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--color-primary) 0%,
    var(--color-accent) 100%
  );
  border-radius: 2px;
}

.razones-subtitle {
  font-size: 1.2rem;
  color: var(--color-dark);
  opacity: 0.8;
  margin-top: 2rem;
  font-weight: 400;
}

.razones-content {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.razones-row-1 {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: start;
}

.razones-row-2 {
  display: flex;
  justify-content: center;
  width: 100%;
}

.razones-row-2 .razones-cta-card {
  width: 100%;
  max-width: 100%;
  margin: 0;
}

/* Grid de Razones */
.razones-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
}

.razon-card {
  background: #fff;
  border-radius: 15px;
  padding: 1.5rem;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  border: 2px solid transparent;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.razon-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--color-primary) 0%,
    var(--color-accent) 100%
  );
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.razon-card:hover::before {
  transform: scaleX(1);
}

.razon-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(246, 184, 26, 0.2);
  border-color: rgba(246, 184, 26, 0.3);
}

.razon-icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    rgba(246, 184, 26, 0.1) 0%,
    rgba(39, 126, 134, 0.1) 100%
  );
  border-radius: 12px;
  color: var(--color-accent);
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.razon-card:hover .razon-icon {
  background: linear-gradient(
    135deg,
    var(--color-primary) 0%,
    var(--color-accent) 100%
  );
  color: #fff;
  transform: scale(1.1) rotate(5deg);
}

.razon-content {
  flex: 1;
}

.razon-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-secondary);
  margin: 0 0 0.5rem 0;
  line-height: 1.3;
  transition: color 0.3s ease;
}

.razon-card:hover .razon-title {
  color: var(--color-accent);
}

.razon-description {
  font-size: 0.9rem;
  color: var(--color-dark);
  opacity: 0.8;
  line-height: 1.6;
  margin: 0;
}

/* Clases comunes para cartas CTA */
.cta-card {
  background: linear-gradient(
    135deg,
    var(--color-secondary) 0%,
    var(--color-accent) 100%
  );
  border-radius: 25px;
  padding: 2.5rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  position: relative;
  overflow: hidden;
}

.cta-card::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(246, 184, 26, 0.1) 0%,
    transparent 70%
  );
  animation: rotate 20s linear infinite;
}

.cta-header {
  position: relative;
  z-index: 2;
  text-align: center;
  margin-bottom: 2rem;
}

.cta-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 0.5rem 0;
  line-height: 1.3;
}

.cta-description,
.cta-subtitle {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  line-height: 1.6;
}

.cta-price {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.cta-price-old {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: line-through;
}

.cta-price-new {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-primary);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.cta-price-discount {
  display: inline-block;
  padding: 0.3rem 0.8rem;
  background: var(--color-primary);
  color: #fff;
  border-radius: 15px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-cta {
  position: relative;
  z-index: 2;
  background: linear-gradient(135deg, var(--color-primary) 0%, #ffa500 100%);
  border: none;
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transition: all 0.4s ease;
  box-shadow: 0 8px 25px rgba(246, 184, 26, 0.4);
  color: #fff;
  text-decoration: none;
  display: block;
  width: 100%;
  text-align: center;
  margin-bottom: 1.5rem;
}

.btn-cta:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 35px rgba(246, 184, 26, 0.6);
  background: linear-gradient(135deg, #ffa500 0%, var(--color-primary) 100%);
  color: #fff;
}

.cta-tarjetas {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 250px;
  margin: 0 auto;
}

/* CTA Container */
.razones-cta-container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  position: sticky;
  top: 100px;
}

.razones-cta-card {
  background: linear-gradient(
    135deg,
    var(--color-secondary) 0%,
    var(--color-accent) 100%
  );
  border-radius: 25px;
  padding: 2.5rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  position: relative;
  overflow: hidden;
}

.razones-cta-card::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(246, 184, 26, 0.1) 0%,
    transparent 70%
  );
  animation: rotate 20s linear infinite;
}

.razones-cta-header {
  position: relative;
  z-index: 2;
  text-align: center;
  margin-bottom: 2rem;
}

.razones-cta-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 0.5rem 0;
}

.razones-cta-subtitle {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

.razones-price {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.razones-price-old {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: line-through;
}

.razones-price-new {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-primary);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.razones-price-discount {
  display: inline-block;
  padding: 0.3rem 0.8rem;
  background: var(--color-primary);
  color: #fff;
  border-radius: 15px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-razones-cta {
  position: relative;
  z-index: 2;
  background: linear-gradient(135deg, var(--color-primary) 0%, #ffa500 100%);
  border: none;
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transition: all 0.4s ease;
  box-shadow: 0 8px 25px rgba(246, 184, 26, 0.4);
  color: #fff;
  text-decoration: none;
  display: block;
  width: 100%;
  text-align: center;
  margin-bottom: 1.5rem;
}

.btn-razones-cta:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 35px rgba(246, 184, 26, 0.6);
  background: linear-gradient(135deg, #ffa500 0%, var(--color-primary) 100%);
  color: #fff;
}

.razones-guarantee {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.razones-guarantee svg {
  color: var(--color-primary);
  flex-shrink: 0;
}

.razones-tarjetas {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 250px;
  margin: 0 auto;
}

/* Video Container */
.razones-video-container {
  position: relative;
}

.razones-video-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.razones-video {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
}

.razones-video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
  pointer-events: none;
}

.razones-video-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.9);
  padding: 0.6rem 1.2rem;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-secondary);
  backdrop-filter: blur(10px);
}

.razones-video-badge svg {
  color: var(--color-primary);
}

.comprar {
  height: 50%;
  width: 80%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.comprar p {
  font-size: 4rem;
  font-weight: 700;
  color: var(--color-primary);
  margin: 0;
  padding: 0;
}

.tarjetas {
  width: 80%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tarjetas img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-primary) 0%, #ffa500 100%);
  width: 100%;
  border: none;
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(246, 184, 26, 0.6);
  background: linear-gradient(135deg, #ffa500 0%, var(--color-primary) 100%);
}

.video {
  width: 80%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video video {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 30px;
}

/* Lo que logrará */
/* Material de Apoyo */
.material-apoyo {
  padding: 4.5rem 0;
  background: linear-gradient(
    135deg,
    var(--color-secondary) 0%,
    var(--color-accent) 50%,
    var(--color-primary) 100%
  );
  position: relative;
  overflow: hidden;
}

.material-apoyo-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
}

.material-apoyo-left {
  flex: 1;
  text-align: left;
}

.material-apoyo-title {
  font-size: 3rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 2rem;
  text-align: left;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.material-apoyo-intro {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.7;
  margin: 0 0 1.8rem 0;
  max-width: 600px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.material-apoyo-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.material-apoyo-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  color: rgba(255, 255, 255, 1);
  font-size: 1.4rem;
  line-height: 1.6;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  border-left: 4px solid var(--color-primary);
  transition: all 0.3s ease;
  margin-bottom: 1rem;
}

.material-apoyo-item:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(5px);
  box-shadow: 0 5px 15px rgba(246, 184, 26, 0.2);
}

.material-apoyo-item-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  background: rgba(246, 184, 26, 0.15);
  border-radius: 10px;
  margin-top: 2px;
}

.material-apoyo-item-icon svg {
  width: 24px;
  height: 24px;
}

.material-apoyo-item-text {
  flex: 1;
  font-weight: 600;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.material-apoyo-image-wrapper {
  position: relative;
  flex-shrink: 0;
  z-index: 3;
}

.material-apoyo-image {
  width: 100%;
  max-width: 450px;
  height: auto;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.material-apoyo-image:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.lo-que-lograra {
  padding: 4.5rem 0;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  position: relative;
  overflow: hidden;
}

.lo-que-lograra::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(
    90deg,
    var(--color-accent) 0%,
    var(--color-primary) 100%
  );
}

.lo-que-lograra h1 {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--color-secondary);
  margin-bottom: 3.5rem;
  text-align: center;
  line-height: 1.2;
  position: relative;
}

.lo-que-lograra h1::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--color-primary) 0%,
    var(--color-accent) 100%
  );
  border-radius: 2px;
}

.lo-que-lograra-image-wrapper {
  position: relative;
  padding: 1rem;
  background: linear-gradient(
    135deg,
    rgba(246, 184, 26, 0.1) 0%,
    rgba(39, 126, 134, 0.1) 100%
  );
  border-radius: 20px;
  overflow: hidden;
}

.lo-que-lograra-image-wrapper::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(246, 184, 26, 0.15) 0%,
    transparent 70%
  );
  animation: rotate 20s linear infinite;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.lo-que-lograra-image {
  width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  position: relative;
  z-index: 1;
  transition: transform 0.5s ease;
}

.lo-que-lograra-image:hover {
  transform: scale(1.05);
}

.lo-que-lograra-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  height: 100%;
  justify-content: center;
}

.lo-que-lograra-list li {
  padding: 0.8rem 1.2rem;
  background: #fff;
  border-left: 5px solid var(--color-accent);
  border-radius: 10px;
  font-size: 1.1rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--color-dark);
  font-weight: 500;
  position: relative;
  overflow: hidden;
}

.lo-que-lograra-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0;
  background: linear-gradient(
    135deg,
    var(--color-accent) 0%,
    var(--color-primary) 100%
  );
  transition: width 0.4s ease;
  opacity: 0.1;
}

.lo-que-lograra-list li:hover::before {
  width: 100%;
}

.check-icon {
  min-width: 32px;
  width: 32px;
  height: 32px;
  background: linear-gradient(
    135deg,
    var(--color-accent) 0%,
    var(--color-primary) 100%
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
  box-shadow: 0 4px 12px rgba(39, 126, 134, 0.3);
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.lo-que-lograra-list li:hover .check-icon {
  transform: scale(1.15) rotate(5deg);
  box-shadow: 0 6px 20px rgba(39, 126, 134, 0.4);
}

.lo-que-lograra-list li:hover {
  transform: translateX(12px) translateY(-3px);
  box-shadow: 0 8px 25px rgba(39, 126, 134, 0.2);
  border-left-color: var(--color-primary);
  background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
}

.lo-que-lograra-list li span:last-child {
  flex: 1;
  line-height: 1.6;
}

/* Contenido curso */
.contenido-curso {
  padding: 5rem 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.contenido-curso::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(
    90deg,
    var(--color-primary) 0%,
    var(--color-accent) 100%
  );
}

.contenido-curso-header {
  text-align: center;
  margin-bottom: 3rem;
}

.contenido-curso h1 {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--color-secondary);
  margin-bottom: 1rem;
  text-align: center;
  line-height: 1.2;
  position: relative;
}

.contenido-curso h1::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--color-primary) 0%,
    var(--color-accent) 100%
  );
  border-radius: 2px;
}

.contenido-curso-subtitle {
  font-size: 1rem;
  color: var(--color-dark);
  opacity: 0.8;
  margin-top: 2rem;
  font-weight: 400;
}

/* Stats del curso */
.contenido-curso-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-top: 3rem;
  flex-wrap: wrap;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.stat-number {
  font-size: 2.2rem;
  font-weight: 700;
  background: linear-gradient(
    135deg,
    var(--color-primary) 0%,
    var(--color-accent) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--color-dark);
  opacity: 0.7;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

/* Grid de módulos */
.modulos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.8rem;
  margin-bottom: 4rem;
}

/* Cards de módulos */
.modulo-card {
  background: #fff;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  border: 2px solid transparent;
}

.modulo-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--color-primary) 0%,
    var(--color-accent) 100%
  );
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.modulo-card:hover::before {
  transform: scaleX(1);
}

.modulo-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(246, 184, 26, 0.2);
  border-color: rgba(246, 184, 26, 0.3);
}

.modulo-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.modulo-number-wrapper {
  position: relative;
}

.modulo-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--color-primary) 0%, #ffa500 100%);
  border-radius: 15px;
  color: #fff;
  font-weight: 700;
  font-size: 1.5rem;
  box-shadow: 0 5px 20px rgba(246, 184, 26, 0.3);
  transition: all 0.3s ease;
}

.modulo-card:hover .modulo-number {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 8px 30px rgba(246, 184, 26, 0.5);
}

.modulo-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    rgba(246, 184, 26, 0.1) 0%,
    rgba(39, 126, 134, 0.1) 100%
  );
  border-radius: 12px;
  color: var(--color-accent);
  transition: all 0.3s ease;
}

.modulo-card:hover .modulo-icon {
  background: linear-gradient(
    135deg,
    var(--color-primary) 0%,
    var(--color-accent) 100%
  );
  color: #fff;
  transform: scale(1.1);
}

.modulo-card-body {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.modulo-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-secondary);
  margin: 0;
  line-height: 1.3;
  transition: color 0.3s ease;
}

.modulo-card:hover .modulo-title {
  color: var(--color-accent);
}

.modulo-description {
  font-size: 0.85rem;
  color: var(--color-dark);
  opacity: 0.8;
  line-height: 1.7;
  margin: 0;
}

.modulo-details {
  display: flex;
  gap: 1.5rem;
  margin-top: 0.5rem;
  flex-wrap: wrap;
}

.modulo-detail-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--color-dark);
  opacity: 0.7;
}

.modulo-detail-item svg {
  color: var(--color-primary);
  flex-shrink: 0;
}

.modulo-topics {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.modulo-topic-tag {
  display: inline-block;
  padding: 0.35rem 0.7rem;
  background: linear-gradient(
    135deg,
    rgba(246, 184, 26, 0.1) 0%,
    rgba(39, 126, 134, 0.1) 100%
  );
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.modulo-card:hover .modulo-topic-tag {
  background: linear-gradient(
    135deg,
    var(--color-primary) 0%,
    var(--color-accent) 100%
  );
  color: #fff;
  transform: translateY(-2px);
}

/* CTA Section */
.contenido-curso-cta {
  margin-top: 4rem;
  padding: 3.5rem 2rem;
  background: linear-gradient(
    135deg,
    var(--color-secondary) 0%,
    var(--color-accent) 100%
  );
  border-radius: 30px;
  position: relative;
  overflow: hidden;
}

.contenido-curso-cta::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(246, 184, 26, 0.1) 0%,
    transparent 70%
  );
  animation: rotate 20s linear infinite;
}

.curso-cta-content {
  position: relative;
  z-index: 2;
}

.curso-cta-title {
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.curso-cta-description {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.curso-cta-price {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.curso-price-old {
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: line-through;
}

.curso-price-new {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-primary);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.curso-price-discount {
  display: inline-block;
  padding: 0.4rem 1rem;
  background: var(--color-primary);
  color: #fff;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-curso-cta {
  background: linear-gradient(135deg, var(--color-primary) 0%, #ffa500 100%);
  border: none;
  padding: 1.2rem 3rem;
  font-size: 1.2rem;
  font-weight: 700;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transition: all 0.4s ease;
  box-shadow: 0 8px 25px rgba(246, 184, 26, 0.4);
  color: #fff;
  text-decoration: none;
  display: inline-block;
  margin-bottom: 1.5rem;
  width: 100%;
  max-width: 400px;
  text-align: center;
}

.btn-curso-cta:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 12px 35px rgba(246, 184, 26, 0.6);
  background: linear-gradient(135deg, #ffa500 0%, var(--color-primary) 100%);
  color: #fff;
}

.curso-cta-guarantee {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.curso-cta-guarantee svg {
  color: var(--color-primary);
  flex-shrink: 0;
}

.curso-cta-content .tarjetas {
  width: 100%;
  max-width: 300px;
  margin-top: 1rem;
}

.curso-cta-video {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.curso-video {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
}

.curso-video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
  pointer-events: none;
}

.curso-video-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.9);
  padding: 0.6rem 1.2rem;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-secondary);
  backdrop-filter: blur(10px);
}

.curso-video-badge svg {
  color: var(--color-primary);
}

/* Sobre mi */
.sobre-mi {
  padding: 4.5rem 0;
  background: linear-gradient(
    135deg,
    var(--color-secondary) 0%,
    var(--color-accent) 100%
  );
  color: #fff;
}

.sobre-mi h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 3rem;
  text-align: center;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.sobre-mi img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.sobre-mi p {
  font-size: 1.2rem;
  line-height: 1.8;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  backdrop-filter: blur(10px);
}

/* Marcas */
.marcas {
  padding: 1rem 0;
  background: var(--color-light);
}

.marcas h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-secondary);
  margin-bottom: 3rem;
  text-align: center;
}

.marcas ul {
  list-style: none;
  padding: 0;
  flex-wrap: wrap;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  width: 100%;
}

.marcas ul li {
  padding: 0.5rem;
  background: transparent;
  border-radius: 10px;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-secondary);
  box-shadow: none;
  transition: all 0.3s ease;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
}

.marca-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
}

.marca-link-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

.marca-link-wrapper:hover {
  transform: translateY(-5px);
}

.marca-item img {
  width: 150px;
  height: 150px;
  object-fit: contain;
  transition: all 0.3s ease;
}

.marca-link-wrapper:hover img {
  filter: brightness(1.1);
  transform: scale(1.05);
}

.marca-link {
  color: var(--color-secondary);
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 600;
  transition: all 0.3s ease;
  text-align: center;
  text-transform: none;
}

.marca-link-wrapper:hover .marca-link {
  color: var(--color-primary);
  text-decoration: underline;
}

.marcas ul li:hover {
  transform: translateY(-5px) scale(1.1);
}

.marcas ul li:hover img {
  filter: brightness(1.1);
}

/* Testimonios y preguntas frecuentes */
/* Testimonios y Preguntas Frecuentes */
.testimonios-y-preguntas-frecuentes {
  padding: 5rem 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.testimonios-y-preguntas-frecuentes::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(
    90deg,
    var(--color-primary) 0%,
    var(--color-accent) 100%
  );
}

/* Section Header */
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h1,
.section-header h2 {
  font-size: 3rem;
  font-weight: 800;
  color: var(--color-secondary);
  margin-bottom: 1rem;
  line-height: 1.2;
  position: relative;
}

.section-header h1::after,
.section-header h2::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--color-primary) 0%,
    var(--color-accent) 100%
  );
  border-radius: 2px;
}

.section-subtitle {
  font-size: 1.2rem;
  color: var(--color-dark);
  opacity: 0.8;
  margin-top: 2rem;
  font-weight: 400;
}

/* Contenedor principal de testimonios y FAQ */
.testimonios-faq-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 4rem;
  align-items: start;
}

/* Testimonios Section */
.testimonios-section {
  margin-bottom: 0;
}

.testimonios-section-title {
  margin-bottom: 1.2rem;
}

.testimonios-section-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-secondary);
  margin-bottom: 1.5rem;
  text-align: left;
  position: relative;
  padding-bottom: 0.8rem;
}

.testimonios-section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--color-primary) 0%,
    var(--color-accent) 100%
  );
  border-radius: 2px;
}

.testimonios-grid {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.testimonio-card {
  background: #fff;
  border-radius: 20px;
  padding: 1.5rem;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  border: 2px solid transparent;
}

.testimonio-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--color-primary) 0%,
    var(--color-accent) 100%
  );
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.testimonio-card:hover::before {
  transform: scaleX(1);
}

.testimonio-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(246, 184, 26, 0.2);
  border-color: rgba(246, 184, 26, 0.3);
}

.testimonio-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.testimonio-avatar {
  flex-shrink: 0;
}

.testimonio-avatar-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--color-primary);
  display: block;
}

.avatar-placeholder {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    var(--color-primary) 0%,
    var(--color-accent) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 1.2rem;
  box-shadow: 0 5px 15px rgba(246, 184, 26, 0.3);
}

.testimonio-info {
  flex: 1;
}

.testimonio-name {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-secondary);
  margin: 0 0 0.3rem 0;
}

.testimonio-location {
  font-size: 0.9rem;
  color: var(--color-dark);
  opacity: 0.7;
  margin: 0;
}

.testimonio-rating {
  display: flex;
  gap: 0.3rem;
  margin-bottom: 1rem;
  color: var(--color-primary);
}

.testimonio-text {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-dark);
  opacity: 0.85;
  margin: 0 0 1.5rem 0;
  font-style: normal;
}

.testimonio-verified {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--color-accent);
  font-weight: 600;
}

.testimonio-verified svg {
  color: var(--color-primary);
  flex-shrink: 0;
}

/* FAQ Section */
.faq-section {
  margin-bottom: 0;
}

.faq-section-title {
  margin-bottom: 0.8rem;
}

.faq-section-subtitle {
  margin-bottom: 1.2rem;
}

.faq-section-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-secondary);
  margin-bottom: 0.5rem;
  text-align: left;
  position: relative;
  padding-bottom: 0.8rem;
}

.faq-section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--color-primary) 0%,
    var(--color-accent) 100%
  );
  border-radius: 2px;
}

.faq-section-subtitle {
  font-size: 0.95rem;
  color: var(--color-dark);
  opacity: 0.7;
  margin-bottom: 1.5rem;
  text-align: left;
}

.faq-container {
  max-width: 100%;
  margin: 0;
}

.faq-item {
  background: #fff;
  border-radius: 15px;
  margin-bottom: 1.2rem;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.faq-item:hover {
  box-shadow: 0 8px 25px rgba(246, 184, 26, 0.15);
  border-color: rgba(246, 184, 26, 0.2);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  background: #fff;
}

.faq-question:hover {
  background: linear-gradient(
    135deg,
    rgba(246, 184, 26, 0.05) 0%,
    rgba(39, 126, 134, 0.05) 100%
  );
}

.faq-question h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--color-secondary);
  margin: 0;
  flex: 1;
  padding-right: 1rem;
  line-height: 1.4;
}

.faq-icon {
  width: 24px;
  height: 24px;
  color: var(--color-primary);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 2rem;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 2rem 1.5rem 2rem;
}

.faq-answer p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-dark);
  opacity: 0.8;
  margin: 0;
  padding-top: 1rem;
}

/* Testimonios CTA */
.testimonios-cta {
  margin-top: 4rem;
  padding: 3.5rem 2rem;
  background: linear-gradient(
    135deg,
    var(--color-secondary) 0%,
    var(--color-accent) 100%
  );
  border-radius: 30px;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.testimonios-cta::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(246, 184, 26, 0.1) 0%,
    transparent 70%
  );
  animation: rotate 20s linear infinite;
}

.testimonios-cta-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  margin: 0 auto;
}

.testimonios-cta-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.testimonios-cta-description {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.testimonios-cta-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.testimonios-price-old {
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: line-through;
}

.testimonios-price-new {
  font-size: 3rem;
  font-weight: 700;
  color: var(--color-primary);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.testimonios-price-discount {
  display: inline-block;
  padding: 0.4rem 1rem;
  background: var(--color-primary);
  color: #fff;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-testimonios-cta {
  background: linear-gradient(135deg, var(--color-primary) 0%, #ffa500 100%);
  border: none;
  padding: 1.2rem 3rem;
  font-size: 1.2rem;
  font-weight: 700;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transition: all 0.4s ease;
  box-shadow: 0 8px 25px rgba(246, 184, 26, 0.4);
  color: #fff;
  text-decoration: none;
  display: inline-block;
  margin-bottom: 1.5rem;
  width: 100%;
  max-width: 400px;
}

.btn-testimonios-cta:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 12px 35px rgba(246, 184, 26, 0.6);
  background: linear-gradient(135deg, #ffa500 0%, var(--color-primary) 100%);
  color: #fff;
}

.testimonios-cta-guarantee {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.testimonios-cta-guarantee svg {
  color: var(--color-primary);
  flex-shrink: 0;
}

.testimonios-tarjetas {
  width: 100%;
  max-width: 300px;
  margin: 1rem auto 0;
}

/* Footer */
footer {
  background: linear-gradient(
    135deg,
    var(--color-secondary) 0%,
    var(--color-dark) 100%
  );
  color: #fff;
  padding: 4rem 0 1.5rem;
  position: relative;
  overflow: hidden;
}

footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--color-primary) 0%,
    var(--color-accent) 100%
  );
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-section {
  display: flex;
  flex-direction: column;
}

/* Footer Brand */
.footer-brand {
  max-width: 350px;
}

.footer-brand-title {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--color-primary) 0%, #ffa500 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-brand-description {
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 1.5rem;
}

.footer-logo {
  margin-top: auto;
}

.footer-logo-img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.8;
  transition: all 0.3s ease;
}

.footer-logo-img:hover {
  opacity: 1;
  transform: scale(1.1);
}

/* Footer Section Titles */
.footer-section-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--color-primary) 0%,
    var(--color-accent) 100%
  );
  border-radius: 2px;
}

/* Footer Links */
.footer-links-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-link {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  display: inline-block;
  position: relative;
  padding-left: 0;
}

.footer-link::before {
  content: "→";
  position: absolute;
  left: -20px;
  opacity: 0;
  transition: all 0.3s ease;
  color: var(--color-primary);
}

.footer-link:hover {
  color: var(--color-primary);
  padding-left: 20px;
  transform: translateX(5px);
}

.footer-link:hover::before {
  opacity: 1;
  left: 0;
}

/* Footer Contact */
.footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.footer-contact-link {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-contact-link:hover {
  color: var(--color-primary);
  text-decoration: underline;
}

.footer-contact-icon {
  font-size: 1.2rem;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(246, 184, 26, 0.2);
  border-radius: 50%;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.footer-contact-item:hover {
  color: #fff;
}

.footer-contact-item:hover .footer-contact-icon {
  background: var(--color-primary);
  transform: scale(1.1) rotate(5deg);
}

/* Footer Social */
.footer-social-description {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.footer-social-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-social-link {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.footer-social-link svg {
  width: 22px;
  height: 22px;
  transition: all 0.3s ease;
}

.footer-social-link:hover {
  background: var(--color-primary);
  transform: translateY(-5px) scale(1.1);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 5px 20px rgba(246, 184, 26, 0.4);
}

.footer-social-link:hover svg {
  transform: scale(1.1);
}

/* Footer Divider */
.footer-divider {
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.2) 50%,
    transparent 100%
  );
  margin: 2.5rem 0 2rem;
}

/* Footer Bottom */
.footer-bottom {
  padding-top: 1.5rem;
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-copyright {
  flex: 1;
  min-width: 250px;
}

.footer-copyright p {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

.footer-copyright strong {
  color: var(--color-primary);
  font-weight: 600;
}

.footer-heart {
  margin-top: 0.5rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer-legal {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-legal-link {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.85rem;
  transition: all 0.3s ease;
  position: relative;
}

.footer-legal-link::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-primary);
  transition: width 0.3s ease;
}

.footer-legal-link:hover {
  color: var(--color-primary);
}

.footer-legal-link:hover::after {
  width: 100%;
}

.footer-legal-separator {
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.85rem;
}

/* Responsive */
@media (max-width: 768px) {
  /* Navbar */
  .navbar {
    height: 55px;
  }

  .navbar .container-fluid {
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .navbar-brand {
    font-size: 1rem;
  }

  .navbar-toggler {
    border: 2px solid rgba(255, 255, 255, 0.6);
    padding: 0.4rem 0.6rem;
    border-radius: 5px;
    transition: all 0.3s ease;
  }

  .navbar-toggler:hover,
  .navbar-toggler:focus {
    border-color: rgba(255, 255, 255, 0.9);
    box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.25);
    outline: none;
  }

  .navbar-toggler-icon {
    width: 1.5em;
    height: 1.5em;
  }

  /* Menú colapsable mejorado para móviles */
  .navbar-collapse {
    background: linear-gradient(
      180deg,
      rgba(25, 53, 90, 0.98) 0%,
      rgba(39, 126, 134, 0.98) 100%
    );
    margin-top: 0.5rem;
    border-radius: 10px;
    padding: 0.75rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(246, 184, 26, 0.2);
  }

  .navbar-nav {
    gap: 0.3rem;
    width: 100%;
  }

  .nav-link {
    font-size: 0.9rem;
    margin: 0;
    padding: 0.7rem 1rem;
    text-align: center;
    width: 100%;
    border-radius: 6px;
    display: block;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  .nav-link:hover,
  .nav-link:focus,
  .nav-link.active {
    background: linear-gradient(
      135deg,
      rgba(246, 184, 26, 0.25) 0%,
      rgba(246, 184, 26, 0.15) 100%
    );
    color: var(--color-primary) !important;
    border-left-color: var(--color-primary);
    transform: translateX(3px);
  }

  /* Contador para móviles */
  .contador {
    padding: 0.05rem 0;
    top: 55px;
  }

  .contador-contenido {
    display: flex !important;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 0.3rem;
    padding: 0.15rem 0.4rem;
    flex-wrap: nowrap;
    max-width: 100%;
  }

  /* Ocultar header en móviles */
  .contador-header-desktop {
    display: none !important;
  }

  /* Tiempo compacto sin labels */
  .contador-tiempo-wrapper {
    display: flex;
    align-items: center;
    gap: 0.2rem;
    flex: 0 0 auto;
    order: 1;
  }

  .contador-item {
    min-width: auto;
    flex: 0 0 auto;
  }

  .contador-numero {
    font-size: 1.3rem;
    padding: 0.35rem 0.5rem;
    min-width: 42px;
    border-radius: 6px;
    margin: 0;
    font-size: clamp(1rem, 2.5vw, 1.3rem);
  }

  /* Ocultar labels en móviles */
  .contador-label {
    display: none;
  }

  .contador-separador {
    font-size: clamp(0.9rem, 2vw, 1.2rem);
    margin: 0 0.08rem;
    padding: 0;
    align-self: center;
  }

  /* Precio simplificado */
  .contador-precio-wrapper {
    order: 2;
    flex: 0 0 auto;
  }

  .contador-precio {
    padding: 0.15rem 0.3rem;
    display: flex;
    align-items: center;
    gap: 0.2rem;
    border-radius: 5px;
    flex-wrap: nowrap;
  }

  /* Ocultar precio viejo en móviles */
  .contador-precio-old {
    display: none;
  }

  .contador-precio-new {
    font-size: clamp(0.9rem, 2.5vw, 1.1rem);
    white-space: nowrap;
  }

  .contador-precio-badge {
    font-size: 0.45rem;
    padding: 0.08rem 0.3rem;
    border-radius: 5px;
    white-space: nowrap;
  }

  /* Botón compacto */
  .btn-comprar-contador {
    order: 3;
    padding: 0.3rem 0.6rem;
    font-size: clamp(0.55rem, 1.8vw, 0.65rem);
    flex: 0 0 auto;
    white-space: nowrap;
    border-radius: 12px;
    min-width: fit-content;
  }

  .btn-comprar-contador span {
    font-size: clamp(0.6rem, 1.8vw, 0.7rem);
  }

  .btn-comprar-contador svg {
    width: 12px;
    height: 12px;
    display: none; /* Ocultar flecha en móviles */
  }

  /* Hero */
  .hero {
    padding: 2.5rem 1rem;
    padding-top: calc(55px + 35px + 2.5rem);
    min-height: auto;
    background-attachment: scroll;
  }

  .hero-container {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
    padding: 0 0.5rem;
    margin-top: 0;
  }

  .hero-content {
    order: 2;
    width: 100%;
    padding: 0;
    max-width: 100%;
  }

  .hero-image-wrapper {
    order: 1;
  }

  .hero-hook {
    font-size: 1.8rem;
    text-align: center;
    margin: 0 auto;
    padding: 1.5rem 1rem;
    line-height: 1.2;
    white-space: normal;
    overflow: visible;
    text-overflow: clip;
    max-width: 95%;
    width: auto;
    word-wrap: break-word;
    overflow-wrap: break-word;
    box-sizing: border-box;
    color: #ffffff;
  }

  .hero-hook-text {
    display: inline-block;
    width: 100%;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  }

  .hero-title {
    font-size: 1.8rem;
    text-align: center;
    line-height: 1.4;
    margin: 0 auto 1.2rem auto;
    padding: 0 0.5rem;
    max-width: 95%;
    width: auto;
  }

  .hero-title-main {
    display: inline;
  }

  .hero-title-accent {
    display: inline;
  }

  .hero-subtitle {
    font-size: 1.4rem;
    text-align: center;
    margin: 0 auto 1.5rem auto;
    line-height: 1.7;
    padding: 0 1rem;
    max-width: 95%;
    width: auto;
    word-wrap: break-word;
    text-align-last: center;
  }

  .hero-divider {
    padding: 2rem 1rem;
  }

  .hero-subtitle-divider {
    font-size: 1.8rem;
    max-width: 95%;
    padding: 0 1rem;
    margin-bottom: 1rem;
  }

  .hero-subtitle-divider-detail {
    font-size: 1.3rem;
    max-width: 95%;
    padding: 0 1rem;
  }

  .highlight-yellow-divider {
    font-size: 1.1em;
    padding: 0.15rem 0.3rem;
  }

  .hero-subtitle strong {
    display: inline;
    font-size: 0.95rem;
  }

  .hero-subtitle-note {
    font-size: 0.8rem;
    text-align: center;
    margin-bottom: 1.5rem;
    padding-left: 0;
    border-left: none;
    border-top: 2px solid var(--color-primary);
    border-bottom: 2px solid var(--color-primary);
    padding: 0.7rem;
    border-radius: 8px;
  }

  .hero-buttons {
    justify-content: center;
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
    width: 100%;
  }

  .btn-hero-primary,
  .btn-hero-secondary {
    width: 100%;
    max-width: 100%;
    padding: 1rem 1.5rem;
    font-size: 0.95rem;
    text-align: center;
    white-space: normal;
    word-wrap: break-word;
  }

  .hero-content {
    max-width: 100%;
    overflow-x: hidden;
  }

  .hero-features {
    justify-content: flex-start;
    gap: 0.5rem;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: 0.2rem;
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
  }

  .hero-features::-webkit-scrollbar {
    display: none;
  }

  .hero-feature {
    font-size: 0.7rem;
    gap: 0.25rem;
    flex-shrink: 0;
  }

  .hero-feature span:last-child {
    font-size: 0.7rem;
  }

  .hero-feature-icon {
    width: 18px;
    height: 18px;
    min-width: 18px;
    font-size: 0.65rem;
  }

  .hero-image {
    max-width: 300px;
  }

  .hero-shapes {
    display: none;
  }

  /* Razones */
  .razones {
    padding: 2.5rem 1rem;
  }

  .razones-header {
    margin-bottom: 2rem;
  }

  .razones h2 {
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
  }

  .razones h2::after {
    width: 70px;
    height: 3px;
    bottom: -12px;
  }

  .razones-subtitle {
    font-size: 1rem;
    margin-top: 1.5rem;
  }

  .razones-content {
    gap: 2.5rem;
  }

  .razones-row-1 {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .razones-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
  }

  .razon-card {
    padding: 0.9rem;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.6rem;
  }

  .razon-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
  }

  .razon-icon svg {
    width: 20px;
    height: 20px;
  }

  .razon-title {
    font-size: 0.85rem;
    margin-bottom: 0.3rem;
  }

  .razon-description {
    font-size: 0.75rem;
    line-height: 1.4;
  }

  /* Estilos comunes CTA para tablets */
  .cta-card {
    padding: 2rem 1.5rem;
  }

  .cta-title {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
  }

  .cta-description,
  .cta-subtitle {
    font-size: 0.85rem;
  }

  .cta-price-new {
    font-size: 2rem;
  }

  .cta-price-old {
    font-size: 1.1rem;
  }

  .btn-cta {
    padding: 0.9rem 2rem;
    font-size: 1rem;
  }

  .razones-cta-container {
    position: static;
  }

  .razones-cta-card {
    padding: 2rem 1.5rem;
  }

  .razones-cta-title {
    font-size: 1.3rem;
  }

  .razones-cta-subtitle {
    font-size: 1rem;
  }

  .razones-price-new {
    font-size: 2rem;
  }

  .razones-price-old {
    font-size: 1.1rem;
  }

  .btn-razones-cta {
    padding: 0.9rem 2rem;
    font-size: 1rem;
  }

  /* Material de Apoyo */
  .material-apoyo {
    padding: 2rem 1rem;
  }

  .material-apoyo-content {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }

  .material-apoyo-left {
    text-align: center;
    width: 100%;
  }

  .material-apoyo-title {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    text-align: center;
    font-weight: 800;
  }

  .material-apoyo-intro {
    font-size: 1.1rem;
    line-height: 1.7;
    max-width: 100%;
    text-align: center;
    margin-bottom: 1.5rem;
  }

  .material-apoyo-list {
    gap: 1.1rem;
    align-items: flex-start;
  }

  .material-apoyo-item {
    font-size: 1.05rem;
    gap: 1rem;
  }

  .material-apoyo-item-icon {
    width: 22px;
    height: 22px;
    margin-top: 1px;
  }

  .material-apoyo-item-icon svg {
    width: 18px;
    height: 18px;
  }

  .material-apoyo-image-wrapper {
    order: -1;
    margin: 0 auto;
  }

  .material-apoyo-image {
    max-width: 300px;
    margin: 0 auto;
  }

  .material-apoyo-icon svg {
    width: 40px;
    height: 40px;
  }

  .material-apoyo-title {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 800;
  }

  .material-apoyo-description {
    font-size: 0.95rem;
    padding: 0 0.5rem;
  }

  /* Lo que logrará */
  .lo-que-lograra {
    padding: 2.5rem 1rem;
  }

  .lo-que-lograra h1 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    line-height: 1.3;
  }

  .lo-que-lograra h1::after {
    width: 60px;
    height: 3px;
    bottom: -12px;
  }

  .lo-que-lograra-image-wrapper {
    margin-bottom: 2rem;
    padding: 0.8rem;
  }

  .lo-que-lograra-list {
    gap: 0.5rem;
  }

  .lo-que-lograra-list li {
    font-size: 1rem;
    padding: 0.7rem 1rem;
    gap: 0.8rem;
  }

  .check-icon {
    width: 28px;
    height: 28px;
    font-size: 1rem;
    min-width: 28px;
  }

  .lo-que-lograra-list li:hover {
    transform: translateX(8px) translateY(-2px);
  }

  /* Contenido curso */
  .contenido-curso {
    padding: 2.5rem 1rem;
  }

  .contenido-curso-header {
    margin-bottom: 2rem;
  }

  .contenido-curso h1 {
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
  }

  .contenido-curso h1::after {
    width: 70px;
    height: 3px;
    bottom: -12px;
  }

  .contenido-curso-subtitle {
    font-size: 1rem;
    margin-top: 1.5rem;
  }

  .contenido-curso-stats {
    gap: 2rem;
    margin-top: 2rem;
  }

  .stat-number {
    font-size: 1.8rem;
  }

  .stat-label {
    font-size: 0.8rem;
  }

  .modulos-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
    margin-bottom: 2.5rem;
  }

  .modulo-card {
    padding: 1.3rem;
  }

  .modulo-card-header {
    margin-bottom: 1.2rem;
  }

  .modulo-number {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }

  .modulo-icon {
    width: 45px;
    height: 45px;
  }

  .modulo-icon svg {
    width: 24px;
    height: 24px;
  }

  .modulo-title {
    font-size: 1.05rem;
  }

  .modulo-description {
    font-size: 0.8rem;
  }

  .modulo-details {
    gap: 1rem;
  }

  .modulo-detail-item {
    font-size: 0.75rem;
  }

  .contenido-curso-cta {
    margin-top: 2.5rem;
    padding: 2rem 1.5rem;
    border-radius: 20px;
  }

  .curso-cta-title {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
    line-height: 1.3;
  }

  .curso-cta-description {
    font-size: 0.8rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
  }

  .curso-price-new {
    font-size: 2rem;
  }

  .curso-price-old {
    font-size: 1.2rem;
  }

  .btn-curso-cta {
    padding: 1rem 2rem;
    font-size: 1rem;
    width: 100%;
  }

  .curso-cta-content .tarjetas {
    max-width: 100%;
  }

  /* Sobre mi */
  .sobre-mi {
    padding: 2rem 1rem;
  }

  .sobre-mi h1 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
  }

  .sobre-mi p {
    font-size: 1rem;
    padding: 1.5rem;
    line-height: 1.6;
  }

  /* Marcas */
  .marcas {
    padding: 2rem 1rem;
  }

  .marcas h1 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
  }

  .marcas ul {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
  }

  .marcas ul li {
    width: calc(50% - 0.5rem);
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .marca-item {
    flex-direction: column;
    gap: 0.5rem;
  }

  .marca-link-wrapper {
    gap: 0.5rem;
  }

  .marca-item img {
    width: 100px;
    height: 100px;
    object-fit: contain;
  }

  .marca-link {
    font-size: 0.9rem;
  }

  /* Ajustes adicionales para mejor visualización en móviles */
  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .row {
    margin-left: 0;
    margin-right: 0;
  }

  [class*="col-"] {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }

  /* Testimonios y preguntas frecuentes */
  .testimonios-y-preguntas-frecuentes {
    padding: 3rem 1rem;
  }

  .section-header h1,
  .section-header h2 {
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
  }

  .section-header h1::after,
  .section-header h2::after {
    width: 70px;
    height: 3px;
    bottom: -12px;
  }

  .section-subtitle {
    font-size: 1rem;
    margin-top: 1.5rem;
  }

  .testimonios-faq-row {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .testimonios-section-title,
  .faq-section-title {
    text-align: center;
  }

  .testimonios-section-title::after,
  .faq-section-title::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .faq-section-subtitle {
    text-align: center;
  }

  .testimonios-grid {
    flex-direction: column;
    gap: 1.5rem;
  }

  .testimonio-card {
    padding: 1.5rem;
  }

  .testimonio-name {
    font-size: 1.1rem;
  }

  .testimonio-text {
    font-size: 0.95rem;
  }

  .faq-question {
    padding: 1.2rem 1.5rem;
  }

  .faq-question h3 {
    font-size: 1.1rem;
  }

  .faq-answer {
    padding: 0 1.5rem;
  }

  .faq-item.active .faq-answer {
    padding: 0 1.5rem 1.2rem 1.5rem;
  }

  .faq-answer p {
    font-size: 0.95rem;
  }

  .testimonios-cta {
    margin-top: 3rem;
    padding: 2rem 1.5rem;
    border-radius: 20px;
  }

  .testimonios-cta-title {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
    line-height: 1.3;
  }

  .testimonios-cta-description {
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
  }

  .testimonios-price-new {
    font-size: 2.2rem;
  }

  .testimonios-price-old {
    font-size: 1.2rem;
  }

  .btn-testimonios-cta {
    padding: 1rem 2rem;
    font-size: 1rem;
  }

  /* Footer */
  footer {
    padding: 3rem 1rem 1.5rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    margin-bottom: 2rem;
  }

  .footer-brand {
    max-width: 100%;
    text-align: center;
  }

  .footer-brand-title {
    font-size: 1.5rem;
  }

  .footer-brand-description {
    text-align: center;
  }

  .footer-logo {
    display: flex;
    justify-content: center;
    margin-top: 1.5rem;
  }

  .footer-section {
    text-align: center;
  }

  .footer-section-title {
    text-align: center;
  }

  .footer-section-title::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .footer-links-list {
    align-items: center;
  }

  .footer-link {
    text-align: center;
  }

  .footer-contact-list {
    align-items: center;
  }

  .footer-contact-item {
    justify-content: center;
  }

  .footer-social-list {
    justify-content: center;
  }

  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }

  .footer-copyright {
    min-width: 100%;
  }

  .footer-legal {
    justify-content: center;
    flex-wrap: wrap;
  }

  /* Botones generales */
  .btn-primary {
    padding: 0.8rem 2rem;
    font-size: 1rem;
  }
}

/* Responsive para tablets */
@media (min-width: 769px) and (max-width: 992px) {
  /* Contador para tablets */
  .contador {
    padding: 0.05rem 0;
  }

  .contador-contenido {
    padding: 0.1rem 1.2rem;
    gap: 0.5rem;
  }

  .contador-numero {
    font-size: 1.5rem;
    padding: 0.3rem 0.6rem;
  }

  .contador-separador {
    font-size: 1.2rem;
  }

  .contador-precio-new {
    font-size: 1.2rem;
  }

  .btn-comprar-contador {
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
  }

  .hero {
    padding: 2rem 1.5rem;
    padding-top: calc(60px + 35px + 2rem);
    min-height: auto;
  }

  .hero-container {
    gap: 3rem;
    margin-top: 0;
  }

  .hero-hook {
    font-size: 2.8rem;
    margin: 0 auto;
    padding: 1.5rem 1rem;
    line-height: 1.2;
    white-space: normal;
    overflow: visible;
    text-overflow: clip;
    max-width: 92%;
    width: auto;
    word-wrap: break-word;
    overflow-wrap: break-word;
    box-sizing: border-box;
    color: #ffffff;
  }

  .hero-divider {
    padding: 2.2rem 1.5rem;
  }

  .hero-subtitle-divider {
    font-size: 2rem;
    max-width: 92%;
    margin-bottom: 1rem;
  }

  .hero-subtitle-divider-detail {
    font-size: 1.4rem;
    max-width: 90%;
  }

  .highlight-yellow-divider {
    font-size: 1.1em;
    padding: 0.2rem 0.35rem;
  }

  .hero-title {
    font-size: 2rem;
    margin: 0 auto 1.3rem auto;
    max-width: 92%;
    width: auto;
    text-align: center;
  }

  .hero-subtitle {
    font-size: 1.5rem;
    margin: 0 auto 1.8rem auto;
    max-width: 92%;
    width: auto;
    text-align: center;
    text-align-last: center;
    line-height: 1.7;
  }

  .btn-hero-primary,
  .btn-hero-secondary {
    padding: 1rem 2.5rem;
    font-size: 1rem;
  }

  .comprar p {
    font-size: 3rem;
  }

  .razones {
    padding: 4rem 1.5rem;
  }

  .razones h2 {
    font-size: 2.5rem;
  }

  .razones-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .razones-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.3rem;
  }

  .razones-cta-container {
    position: static;
  }

  /* Material de Apoyo */
  .material-apoyo {
    padding: 2.5rem 1.5rem;
  }

  .material-apoyo-content {
    gap: 1.8rem;
  }

  .material-apoyo-title {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    font-weight: 800;
  }

  .material-apoyo-intro {
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
  }

  .material-apoyo-item {
    font-size: 1.1rem;
  }

  .material-apoyo-item-icon {
    width: 30px;
    height: 30px;
  }

  .material-apoyo-item-icon svg {
    width: 19px;
    height: 19px;
  }

  .lo-que-lograra {
    padding: 4rem 1.5rem;
  }

  .lo-que-lograra h1 {
    font-size: 2.2rem;
  }

  .contenido-curso {
    padding: 4rem 1.5rem;
  }

  .contenido-curso h1 {
    font-size: 2.2rem;
  }

  .contenido-curso-subtitle {
    font-size: 1.1rem;
  }

  .contenido-curso-stats {
    gap: 2.5rem;
  }

  .stat-number {
    font-size: 2.2rem;
  }

  .modulos-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.8rem;
  }

  .modulo-card {
    padding: 1.8rem;
  }

  .modulo-number {
    width: 55px;
    height: 55px;
    font-size: 1.3rem;
  }

  .modulo-title {
    font-size: 1.3rem;
  }

  .contenido-curso-cta {
    padding: 3rem 2rem;
  }

  .curso-cta-title {
    font-size: 1.9rem;
  }

  .sobre-mi {
    padding: 3.5rem 1.5rem;
  }

  .sobre-mi h1 {
    font-size: 2.2rem;
  }

  .sobre-mi p {
    font-size: 1.1rem;
    padding: 1.8rem;
  }

  .marcas {
    padding: 2.5rem 1.5rem;
  }

  .marcas h1 {
    font-size: 2.2rem;
  }

  .marcas ul {
    gap: 1.5rem;
  }

  .marca-item img {
    width: 140px;
    height: 140px;
  }

  .marca-link {
    font-size: 1rem;
  }

  .testimonios-y-preguntas-frecuentes {
    padding: 4rem 1.5rem;
  }

  .section-header h1,
  .section-header h2 {
    font-size: 2.5rem;
  }

  .testimonios-faq-row {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .testimonios-grid {
    flex-direction: column;
    gap: 1.5rem;
  }

  .testimonios-cta {
    padding: 3rem 2rem;
  }

  .testimonios-cta-title {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
    line-height: 1.3;
  }

  .testimonios-cta-description {
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
  }

  .contador-contenido {
    gap: 1.5rem;
    padding: 0 1.5rem;
  }

  .contador-texto {
    font-size: 1rem;
  }

  .contador-tiempo {
    font-size: 1.6rem;
  }

  .btn-comprar-contador {
    padding: 0.55rem 1.8rem;
    font-size: 0.95rem;
  }
}

/* Responsive para móviles pequeños */
@media (max-width: 576px) {
  .navbar {
    height: 50px;
  }

  .navbar .container-fluid {
    padding-left: 1.2rem !important;
    padding-right: 1.2rem !important;
  }

  .navbar-brand {
    font-size: 0.9rem;
  }

  .navbar-toggler {
    padding: 0.3rem 0.5rem;
    border-width: 2px;
  }

  .navbar-toggler-icon {
    width: 1.3em;
    height: 1.3em;
  }

  .navbar-collapse {
    margin-top: 0.4rem;
    padding: 0.6rem;
    border-radius: 8px;
  }

  .navbar-nav {
    gap: 0.25rem;
  }

  .nav-link {
    font-size: 0.85rem;
    padding: 0.6rem 0.9rem;
    letter-spacing: 0.3px;
  }

  /* Contador para móviles pequeños */
  .contador {
    padding: 0.05rem 0;
    top: 50px;
  }

  .contador-contenido {
    gap: 0.2rem;
    padding: 0.1rem 0.3rem;
    flex-wrap: nowrap;
    overflow: hidden;
  }

  .contador-tiempo-wrapper {
    gap: 0.1rem;
    flex: 1 1 auto;
    min-width: 0;
    overflow: hidden;
  }

  .contador-numero {
    font-size: clamp(0.9rem, 3vw, 1.1rem);
    padding: 0.3rem 0.4rem;
    min-width: 38px;
  }

  .contador-separador {
    font-size: clamp(0.8rem, 2vw, 1rem);
    margin: 0 0.05rem;
  }

  .contador-precio-wrapper {
    flex: 0 0 auto;
    min-width: 0;
    overflow: hidden;
  }

  .contador-precio {
    padding: 0.1rem 0.25rem;
    gap: 0.15rem;
  }

  .contador-precio-new {
    font-size: clamp(0.85rem, 2.5vw, 0.95rem);
  }

  .contador-precio-badge {
    font-size: clamp(0.35rem, 1.5vw, 0.4rem);
    padding: 0.05rem 0.2rem;
  }

  .btn-comprar-contador {
    padding: 0.25rem 0.5rem;
    font-size: clamp(0.5rem, 1.5vw, 0.6rem);
    flex: 0 0 auto;
    min-width: fit-content;
  }

  .btn-comprar-contador span {
    font-size: clamp(0.5rem, 1.5vw, 0.6rem);
  }

  .hero {
    padding: 2.5rem 1rem;
    padding-top: calc(50px + 30px + 2.5rem);
  }

  .hero-hook {
    font-size: 1.5rem;
    text-align: center;
    margin: 0 auto;
    padding: 1rem 0.5rem;
    line-height: 1.25;
    white-space: normal;
    overflow: visible;
    text-overflow: clip;
    max-width: 95%;
    width: auto;
    word-wrap: break-word;
    overflow-wrap: break-word;
    box-sizing: border-box;
    color: #ffffff;
  }

  .hero-hook-text {
    display: inline-block;
    width: 100%;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  }

  .hero-title {
    font-size: 1.5rem;
    margin: 0 auto 1rem auto;
    padding: 0 0.3rem;
    max-width: 95%;
    width: auto;
    text-align: center;
  }

  .hero-subtitle {
    font-size: 1.3rem;
    margin: 0 auto 1.2rem auto;
    text-align: center;
    padding: 0 0.5rem;
    max-width: 95%;
    width: auto;
    word-wrap: break-word;
    line-height: 1.7;
    text-align-last: center;
  }

  .hero-divider {
    padding: 1.8rem 0.5rem;
  }

  .hero-subtitle-divider {
    font-size: 1.6rem;
    max-width: 95%;
    padding: 0 0.5rem;
    margin-bottom: 0.9rem;
  }

  .hero-subtitle-divider-detail {
    font-size: 1.2rem;
    max-width: 95%;
    padding: 0 0.5rem;
  }

  .highlight-yellow-divider {
    font-size: 1.1em;
    padding: 0.1rem 0.25rem;
  }

  .hero-subtitle-note {
    font-size: 0.8rem;
    margin-bottom: 1.8rem;
    padding-left: 0;
    border-left: none;
    border-top: 2px solid var(--color-primary);
    border-bottom: 2px solid var(--color-primary);
    padding: 0.7rem;
    border-radius: 8px;
    text-align: center;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
    gap: 0.8rem;
    width: 100%;
  }

  .btn-hero-primary,
  .btn-hero-secondary {
    width: 100%;
    padding: 0.9rem 1.2rem;
    font-size: 0.85rem;
    text-align: center;
    white-space: normal;
    word-wrap: break-word;
  }

  .hero-content {
    max-width: 100%;
    overflow-x: hidden;
  }

  .hero-features {
    gap: 0.4rem;
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: 0.2rem;
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
  }

  .hero-features::-webkit-scrollbar {
    display: none;
  }

  .hero-feature {
    font-size: 0.65rem;
    gap: 0.2rem;
    flex-shrink: 0;
  }

  .hero-feature span:last-child {
    font-size: 0.65rem;
  }

  .hero-feature-icon {
    width: 16px;
    height: 16px;
    min-width: 16px;
    font-size: 0.6rem;
  }

  .hero-image {
    max-width: 250px;
  }

  .razones {
    padding: 2rem 1rem;
  }

  .razones h2 {
    font-size: 1.6rem;
    margin-bottom: 0.8rem;
  }

  .razones h2::after {
    width: 60px;
    height: 3px;
    bottom: -10px;
  }

  .razones-subtitle {
    font-size: 0.9rem;
    margin-top: 1.2rem;
  }

  .razones-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .razones-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.7rem;
  }

  .razon-card {
    padding: 0.8rem;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.5rem;
  }

  .razon-icon {
    width: 38px;
    height: 38px;
    min-width: 38px;
  }

  .razon-icon svg {
    width: 18px;
    height: 18px;
  }

  .razon-title {
    font-size: 0.8rem;
    margin-bottom: 0.25rem;
    line-height: 1.2;
  }

  .razon-description {
    font-size: 0.7rem;
    line-height: 1.3;
  }

  .razones-cta-container {
    position: static;
  }

  .razones-cta-card {
    padding: 1.5rem 1rem;
  }

  /* Estilos comunes CTA para móviles pequeños */
  .cta-card {
    padding: 1.5rem 1rem;
  }

  .cta-title {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
  }

  .cta-description,
  .cta-subtitle {
    font-size: 0.75rem;
  }

  .cta-price-new {
    font-size: 1.8rem;
  }

  .cta-price-old {
    font-size: 1rem;
  }

  .btn-cta {
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
  }

  .razones-cta-title {
    font-size: 1.2rem;
  }

  .razones-cta-subtitle {
    font-size: 1rem;
  }

  .razones-price-new {
    font-size: 1.8rem;
  }

  .razones-price-old {
    font-size: 1rem;
  }

  .btn-razones-cta {
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
  }

  .lo-que-lograra h1,
  .contenido-curso {
    padding: 2.5rem 1rem;
  }

  .contenido-curso .container {
    padding-left: 1rem;
    padding-right: 1rem;
    max-width: 100%;
    overflow-x: hidden;
  }

  .contenido-curso-header {
    margin-bottom: 2rem;
  }

  .contenido-curso h1 {
    font-size: 1.6rem;
    margin-bottom: 0.8rem;
  }

  .contenido-curso h1::after {
    width: 60px;
    height: 3px;
    bottom: -10px;
  }

  .contenido-curso-subtitle {
    font-size: 0.85rem;
    margin-top: 1.2rem;
    line-height: 1.5;
    padding: 0 0.5rem;
  }

  .contenido-curso-stats {
    gap: 1.2rem;
    margin-top: 1.8rem;
    justify-content: center;
    flex-wrap: wrap;
  }

  .stat-item {
    flex: 0 0 calc(50% - 0.6rem);
    min-width: 0;
  }

  .stat-number {
    font-size: 1.3rem;
  }

  .stat-label {
    font-size: 0.65rem;
  }

  .modulos-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
    margin-bottom: 2.5rem;
  }

  .modulo-card {
    padding: 1rem;
    border-radius: 16px;
  }

  .modulo-card-header {
    margin-bottom: 0.8rem;
  }

  .modulo-number {
    width: 40px;
    height: 40px;
    font-size: 0.9rem;
    border-radius: 12px;
  }

  .modulo-icon {
    width: 35px;
    height: 35px;
    border-radius: 10px;
  }

  .modulo-icon svg {
    width: 16px;
    height: 16px;
  }

  .modulo-card .modulo-title {
    font-size: 1rem !important;
    line-height: 1.3;
    margin-bottom: 0.5rem;
    font-weight: 700;
  }

  .modulo-card .modulo-description {
    font-size: 0.85rem !important;
    line-height: 1.6;
  }

  .modulo-details {
    gap: 1rem;
    margin-top: 0.8rem;
  }

  .modulo-detail-item {
    font-size: 0.7rem;
    gap: 0.4rem;
  }

  .modulo-detail-item svg {
    width: 14px;
    height: 14px;
  }

  .modulo-topics {
    gap: 0.4rem;
    margin-top: 0.8rem;
  }

  .modulo-topic-tag {
    padding: 0.25rem 0.5rem;
    font-size: 0.6rem;
    border-radius: 15px;
  }

  .contenido-curso-cta {
    margin-top: 2.5rem;
    padding: 2rem 1.2rem;
    border-radius: 20px;
  }

  /* Los estilos comunes .cta-title y .cta-description ya se aplican */
  .testimonios-cta {
    padding: 2rem 1.2rem;
    border-radius: 20px;
  }

  .curso-cta-price {
    gap: 0.8rem;
    margin-bottom: 1.5rem;
    justify-content: center;
  }

  .curso-price-old {
    font-size: 0.9rem;
  }

  .curso-price-new {
    font-size: 1.6rem;
  }

  .curso-price-discount {
    padding: 0.3rem 0.7rem;
    font-size: 0.75rem;
  }

  .btn-curso-cta {
    padding: 0.9rem 1.5rem;
    font-size: 0.95rem;
    width: 100%;
    max-width: 100%;
    margin-bottom: 1rem;
  }

  .curso-cta-guarantee {
    font-size: 0.8rem;
    margin-bottom: 1rem;
    gap: 0.4rem;
    justify-content: center;
  }

  .curso-cta-guarantee svg {
    width: 16px;
    height: 16px;
  }

  .curso-cta-content .tarjetas {
    max-width: 100%;
    margin-top: 1rem;
  }

  .curso-cta-video {
    margin-top: 1.5rem;
    border-radius: 15px;
  }

  .modulo-resumen p {
    font-size: 0.85rem;
  }

  .sobre-mi h1,
  .marcas h1,
  .testimonios-y-preguntas-frecuentes h1 {
    font-size: 1.5rem;
  }

  .comprar p {
    font-size: 2rem;
  }

  .contenido-curso p,
  .testimonios-y-preguntas-frecuentes > .container > div:last-child p {
    font-size: 1rem;
  }

  .hero .btn-primary,
  .btn-primary {
    padding: 0.7rem 1.5rem;
    font-size: 0.9rem;
  }
}
