@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

:root {
  --celeste: #01b7df;
  --fucsia: #593c81;
  --gris1: #bcbbbc;
  --blanco: #ffffff;
  --negro: #1a1a2e;
  --gris-oscuro: #2d2d3f;
  --gris-claro: #f5f5f7;
  --celeste-light: rgba(1, 183, 223, 0.1);
  --fucsia-light: rgba(89, 60, 129, 0.1);
  --gradient-main: linear-gradient(135deg, var(--celeste), var(--fucsia));
  --gradient-hero: linear-gradient(135deg, #0a0a1a 0%, #1a1a3e 50%, #2a1a4e 100%);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.16);
  --shadow-glow-celeste: 0 0 30px rgba(1, 183, 223, 0.3);
  --shadow-glow-fucsia: 0 0 30px rgba(89, 60, 129, 0.3);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--negro);
  background: var(--blanco);
  overflow-x: hidden;
  line-height: 1.7;
}

/* ===================== NAVBAR ===================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1rem 0;
  transition: var(--transition);
  background: transparent;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-sm);
  padding: 0.5rem 0;
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-logo img {
  height: 50px;
  transition: var(--transition);
}

.navbar.scrolled .navbar-logo img {
  height: 40px;
}

.navbar-menu {
  display: flex;
  list-style: none;
  gap: 0.5rem;
  align-items: center;
}

.navbar-menu a {
  text-decoration: none;
  color: var(--blanco);
  font-weight: 500;
  font-size: 0.9rem;
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  transition: var(--transition);
  position: relative;
}

.navbar.scrolled .navbar-menu a {
  color: var(--negro);
}

.navbar-menu a:hover,
.navbar-menu a.active {
  background: var(--celeste);
  color: var(--blanco) !important;
}

.navbar-menu .btn-cta-nav {
  background: var(--gradient-main);
  color: var(--blanco) !important;
  font-weight: 600;
  padding: 0.6rem 1.5rem;
}

.navbar-menu .btn-cta-nav:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow-celeste);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
  background: none;
  border: none;
  padding: 5px;
}

.hamburger span {
  width: 28px;
  height: 3px;
  background: var(--blanco);
  border-radius: 3px;
  transition: var(--transition);
}

.navbar.scrolled .hamburger span {
  background: var(--negro);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}

/* ===================== CONTAINER ===================== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ===================== HERO ===================== */
.hero {
  min-height: 100vh;
  background: var(--gradient-hero);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 6rem 0 4rem;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(1, 183, 223, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  animation: pulse 8s ease-in-out infinite;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(89, 60, 129, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  animation: pulse 10s ease-in-out infinite reverse;
}

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

.hero .container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-content {
  color: var(--blanco);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(1, 183, 223, 0.15);
  border: 1px solid rgba(1, 183, 223, 0.3);
  color: var(--celeste);
  padding: 0.4rem 1.2rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
}

.hero-title {
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

.hero-title .highlight {
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.15rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
  line-height: 1.8;
}

.hero-cta-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 2rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-stat {
  text-align: center;
}

.hero-stat .number {
  font-size: 1.8rem;
  font-weight: 800;
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-stat .label {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 400;
}

.hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.hero-image-wrapper {
  position: relative;
  width: 380px;
  height: 480px;
}

.hero-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
  position: relative;
  z-index: 2;
  box-shadow: var(--shadow-lg);
}

.hero-image-wrapper::before {
  content: '';
  position: absolute;
  top: -15px;
  right: -15px;
  width: 100%;
  height: 100%;
  border: 2px solid var(--celeste);
  border-radius: var(--radius-lg);
  z-index: 1;
}

.hero-image-wrapper::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: -15px;
  width: 100%;
  height: 100%;
  border: 2px solid var(--fucsia);
  border-radius: var(--radius-lg);
  z-index: 1;
}

.hero-floating-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius);
  padding: 1rem 1.3rem;
  z-index: 3;
  color: var(--blanco);
  animation: float 6s ease-in-out infinite;
}

.hero-floating-card.card-1 {
  bottom: 30px;
  left: -40px;
  animation-delay: 0s;
}

.hero-floating-card.card-2 {
  top: 40px;
  right: -30px;
  animation-delay: 3s;
}

.hero-floating-card .card-icon {
  font-size: 1.5rem;
  margin-bottom: 0.3rem;
}

.hero-floating-card .card-text {
  font-size: 0.75rem;
  font-weight: 600;
}

.hero-floating-card .card-sub {
  font-size: 0.65rem;
  opacity: 0.7;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* ===================== BUTTONS ===================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.btn-primary {
  background: var(--gradient-main);
  color: var(--blanco);
  box-shadow: 0 4px 15px rgba(1, 183, 223, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(1, 183, 223, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--blanco);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--celeste);
  color: var(--celeste);
}

.btn-secondary {
  background: var(--fucsia);
  color: var(--blanco);
}

.btn-secondary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-glow-fucsia);
}

.btn-white {
  background: var(--blanco);
  color: var(--fucsia);
  font-weight: 700;
}

.btn-white:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

/* ===================== SECTIONS ===================== */
.section {
  padding: 6rem 0;
}

.section-dark {
  background: var(--gradient-hero);
  color: var(--blanco);
}

.section-light {
  background: var(--gris-claro);
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
}

.section-badge {
  display: inline-block;
  background: var(--celeste-light);
  color: var(--celeste);
  padding: 0.4rem 1.2rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}

.section-dark .section-badge {
  background: rgba(1, 183, 223, 0.15);
  border: 1px solid rgba(1, 183, 223, 0.3);
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.section-title .highlight {
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--gris1);
  font-weight: 400;
}

/* ===================== QUE VAS A LOGRAR ===================== */
.logros-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.logro-card {
  background: var(--blanco);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: var(--transition);
  border: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
}

.logro-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-main);
  transform: scaleX(0);
  transition: var(--transition);
}

.logro-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

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

.logro-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.2rem;
}

.logro-icon.icon-1 { background: var(--celeste-light); }
.logro-icon.icon-2 { background: var(--fucsia-light); }
.logro-icon.icon-3 { background: rgba(255, 193, 7, 0.1); }
.logro-icon.icon-4 { background: rgba(76, 175, 80, 0.1); }
.logro-icon.icon-5 { background: rgba(233, 30, 99, 0.1); }

.logro-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.7rem;
  color: var(--negro);
}

.logro-card p {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.7;
}

/* ===================== PROGRAMA / CONTENIDO ===================== */
.programa-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.programa-sidebar {
  position: sticky;
  top: 100px;
}

.programa-sidebar h3 {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--blanco);
}

.programa-sidebar p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 2rem;
  line-height: 1.8;
}

.programa-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.programa-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: 1.2rem 1.5rem;
  transition: var(--transition);
  cursor: pointer;
}

.programa-item:hover {
  background: rgba(1, 183, 223, 0.1);
  border-color: rgba(1, 183, 223, 0.3);
  transform: translateX(5px);
}

.programa-item-header {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.programa-item-number {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--gradient-main);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--blanco);
  flex-shrink: 0;
}

.programa-item-title {
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
}

/* ===================== BENEFICIOS ===================== */
.beneficios-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.beneficio-card {
  display: flex;
  gap: 1.2rem;
  background: var(--blanco);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: var(--transition);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.beneficio-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.beneficio-number {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--gradient-main);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 800;
  color: var(--blanco);
  flex-shrink: 0;
}

.beneficio-card h4 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
  color: var(--negro);
}

.beneficio-card p {
  font-size: 0.85rem;
  color: #666;
  line-height: 1.6;
}

/* ===================== GARANTIA ===================== */
.garantia-section {
  background: var(--gradient-main);
  position: relative;
  overflow: hidden;
}

.garantia-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.garantia-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  color: var(--blanco);
}

.garantia-content h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
}

.garantia-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin: 2.5rem 0;
}

.garantia-card {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: left;
}

.garantia-card h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.garantia-card p {
  font-size: 0.88rem;
  opacity: 0.9;
  line-height: 1.7;
}

/* ===================== PRICING ===================== */
.pricing-wrapper {
  display: flex;
  justify-content: center;
}

.pricing-card {
  background: var(--blanco);
  border-radius: var(--radius-lg);
  padding: 3rem;
  text-align: center;
  max-width: 480px;
  width: 100%;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.pricing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: var(--gradient-main);
}

.pricing-badge {
  display: inline-block;
  background: rgba(233, 30, 99, 0.1);
  color: #e91e63;
  padding: 0.3rem 1rem;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.pricing-original {
  font-size: 1.1rem;
  color: var(--gris1);
  text-decoration: line-through;
  margin-bottom: 0.3rem;
}

.pricing-price {
  font-size: 3.5rem;
  font-weight: 900;
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.3rem;
}

.pricing-currency {
  font-size: 1.2rem;
  vertical-align: super;
}

.pricing-period {
  font-size: 0.85rem;
  color: var(--gris1);
  margin-bottom: 2rem;
}

.pricing-features {
  list-style: none;
  text-align: left;
  margin-bottom: 2rem;
}

.pricing-features li {
  padding: 0.6rem 0;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-features .check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(76, 175, 80, 0.1);
  color: #4caf50;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  flex-shrink: 0;
}

/* ===================== TESTIMONIOS ===================== */
.testimonios-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 1.5rem;
}

.testimonio-card {
  background: var(--blanco);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: var(--transition);
  border: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
}

.testimonio-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.testimonio-quote {
  font-size: 2.5rem;
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 0.8rem;
}

.testimonio-text {
  font-size: 0.92rem;
  color: #555;
  line-height: 1.8;
  margin-bottom: 1.2rem;
  font-style: italic;
}

.testimonio-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonio-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gradient-main);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blanco);
  font-weight: 700;
  font-size: 1.1rem;
}

.testimonio-name {
  font-weight: 600;
  font-size: 0.95rem;
}

.testimonio-condition {
  font-size: 0.8rem;
  color: var(--gris1);
}

.testimonio-stars {
  color: #f9a825;
  font-size: 0.8rem;
  letter-spacing: 2px;
}

/* ===================== CTA FINAL ===================== */
.cta-final {
  background: var(--gradient-hero);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.cta-final::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(1, 183, 223, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.cta-final .container {
  position: relative;
  z-index: 2;
}

.cta-final h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--blanco);
  margin-bottom: 1rem;
}

.cta-final p {
  color: rgba(255, 255, 255, 0.7);
  max-width: 600px;
  margin: 0 auto 2rem;
  font-size: 1.05rem;
}

/* ===================== FOOTER ===================== */
.footer {
  background: #0a0a1a;
  color: rgba(255, 255, 255, 0.7);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand img {
  height: 45px;
  margin-bottom: 1rem;
}

.footer-brand p {
  font-size: 0.85rem;
  line-height: 1.8;
  margin-bottom: 1.2rem;
}

.footer-social {
  display: flex;
  gap: 0.8rem;
}

.footer-social a {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 1rem;
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--celeste);
  border-color: var(--celeste);
  color: var(--blanco);
}

.footer h4 {
  color: var(--blanco);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 1.2rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.6rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 0.85rem;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--celeste);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  margin-bottom: 1rem;
  font-size: 0.85rem;
}

.footer-contact-item .icon {
  color: var(--celeste);
  font-size: 1rem;
  margin-top: 2px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
}

/* ===================== QUIEN SOY PAGE ===================== */
.page-hero {
  min-height: 50vh;
  background: var(--gradient-hero);
  display: flex;
  align-items: center;
  padding: 8rem 0 4rem;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(1, 183, 223, 0.12) 0%, transparent 70%);
  border-radius: 50%;
}

.page-hero .container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.page-hero-content {
  color: var(--blanco);
}

.page-hero-content h1 {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.page-hero-content p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.8;
}

.page-hero-image {
  display: flex;
  justify-content: center;
}

.page-hero-image img {
  width: 350px;
  height: 440px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 3px solid rgba(1, 183, 223, 0.3);
}

/* Credenciales */
.credentials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.credential-card {
  background: var(--blanco);
  border-radius: var(--radius);
  padding: 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  transition: var(--transition);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.credential-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.credential-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: var(--celeste-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.credential-card h4 {
  font-size: 0.92rem;
  font-weight: 600;
  margin-bottom: 0.2rem;
  color: var(--negro);
}

.credential-card p {
  font-size: 0.8rem;
  color: #888;
}

/* Testimonios page extras */
.testimonios-page-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 1.5rem;
}

.testimonio-card-large {
  background: var(--blanco);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: var(--transition);
}

.testimonio-card-large:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.testimonio-card-large .testimonio-condition-tag {
  display: inline-block;
  background: var(--celeste-light);
  color: var(--celeste);
  padding: 0.2rem 0.8rem;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

/* ===================== SCROLL ANIMATIONS ===================== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-in-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ===================== VIDEO EMBED ===================== */
.video-section-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

.video-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: #000;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.video-container-border {
  padding: 4px;
  background: var(--gradient-main);
  border-radius: calc(var(--radius-lg) + 4px);
  box-shadow: var(--shadow-lg), 0 0 40px rgba(1, 183, 223, 0.15);
}

.video-container-border .video-container {
  box-shadow: none;
}

.video-caption {
  text-align: center;
  margin-top: 1.2rem;
  font-size: 0.88rem;
  color: var(--gris1);
  font-weight: 400;
}

.section-dark .video-caption {
  color: rgba(255, 255, 255, 0.6);
}

.video-highlight-card {
  background: var(--blanco);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.video-highlight-card .video-container {
  border-radius: 0;
  box-shadow: none;
}

.video-highlight-info {
  padding: 2rem;
}

.video-highlight-info h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  color: var(--negro);
}

.video-highlight-info p {
  font-size: 0.92rem;
  color: #666;
  line-height: 1.7;
  margin-bottom: 1.2rem;
}

/* ===================== WHATSAPP & ACTION BUTTONS ===================== */
.btn-whatsapp {
  background: #25d366;
  color: var(--blanco);
  font-weight: 600;
}

.btn-whatsapp:hover {
  background: #1fb855;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.35);
}

.btn-hotmart {
  background: #f04f23;
  color: var(--blanco);
  font-weight: 700;
}

.btn-hotmart:hover {
  background: #d94520;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(240, 79, 35, 0.35);
}

.btn-curso {
  background: var(--fucsia);
  color: var(--blanco);
  font-weight: 600;
}

.btn-curso:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-glow-fucsia);
}

.action-buttons-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 1.5rem;
}

.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: var(--transition);
  text-decoration: none;
  color: var(--blanco);
  font-size: 1.8rem;
  animation: whatsapp-pulse 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-float .tooltip {
  position: absolute;
  right: 70px;
  background: var(--negro);
  color: var(--blanco);
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}

.whatsapp-float:hover .tooltip {
  opacity: 1;
}

@keyframes whatsapp-pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.6), 0 0 0 10px rgba(37, 211, 102, 0.1); }
}

/* ===================== FAQ ACCORDION ===================== */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: var(--blanco);
  border-radius: var(--radius);
  border: 1px solid rgba(0, 0, 0, 0.06);
  overflow: hidden;
  transition: var(--transition);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.faq-item:hover {
  box-shadow: var(--shadow-md);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.3rem 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--negro);
  text-align: left;
  transition: var(--transition);
}

.faq-question:hover {
  color: var(--celeste);
}

.faq-question .faq-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--gradient-main);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blanco);
  font-size: 1.2rem;
  font-weight: 700;
  transition: transform 0.3s ease;
}

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

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

.faq-item.active .faq-answer {
  max-height: 600px;
}

.faq-answer-inner {
  padding: 0 1.5rem 1.5rem;
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--gris2);
}

.faq-answer-inner ul {
  list-style: none;
  padding: 0;
  margin: 0.8rem 0 0;
}

.faq-answer-inner ul li {
  padding: 0.4rem 0;
  padding-left: 1.5rem;
  position: relative;
}

.faq-answer-inner ul li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: var(--celeste);
  font-weight: 700;
}

.faq-answer-inner a {
  color: var(--celeste);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: var(--transition);
}

.faq-answer-inner a:hover {
  border-bottom-color: var(--celeste);
}

.faq-category {
  margin-bottom: 3rem;
}

.faq-category-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--negro);
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 3px solid var(--celeste);
  display: inline-block;
}

.faq-contact-card {
  max-width: 600px;
  margin: 2rem auto 0;
  background: var(--blanco);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  box-shadow: var(--shadow-lg);
  border: 2px solid transparent;
  background-clip: padding-box;
}

.faq-contact-card h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--negro);
}

.faq-contact-card .contact-methods {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.faq-contact-card .contact-method {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  color: var(--gris2);
}

.faq-contact-card .contact-method .icon {
  font-size: 1.2rem;
}

/* ===================== URGENCY COUNTDOWN BAR ===================== */
.urgency-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1100;
  background: linear-gradient(90deg, #e91e63, #f04f23, #e91e63);
  background-size: 200% 100%;
  animation: urgency-shimmer 3s ease-in-out infinite;
  color: #fff;
  padding: 0.55rem 1rem;
  text-align: center;
  font-size: 0.85rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  transition: transform 0.4s ease;
}

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

.urgency-bar .countdown {
  display: inline-flex;
  gap: 0.3rem;
  align-items: center;
}

.urgency-bar .cd-unit {
  background: rgba(0,0,0,0.25);
  padding: 0.15rem 0.4rem;
  border-radius: 4px;
  font-weight: 800;
  font-size: 0.9rem;
  min-width: 28px;
  text-align: center;
}

.urgency-bar .cd-sep {
  font-weight: 800;
}

.urgency-bar .urgency-close {
  position: absolute;
  right: 1rem;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.2rem;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.2s;
  padding: 0 0.3rem;
}

.urgency-bar .urgency-close:hover {
  opacity: 1;
}

.urgency-bar .urgency-cta {
  background: #fff;
  color: #e91e63;
  padding: 0.25rem 1rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.78rem;
  transition: transform 0.2s, box-shadow 0.2s;
}

.urgency-bar .urgency-cta:hover {
  transform: scale(1.05);
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

body.has-urgency-bar .navbar {
  top: 40px;
}

/* ===================== SOCIAL PROOF TOAST ===================== */
.social-proof-toast {
  position: fixed;
  bottom: 6rem;
  left: 1.5rem;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
  padding: 0.8rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  z-index: 999;
  transform: translateX(-120%);
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  max-width: 320px;
  border-left: 4px solid #4caf50;
}

.social-proof-toast.active {
  transform: translateX(0);
}

.social-proof-toast .sp-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(76, 175, 80, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.social-proof-toast .sp-content {
  flex: 1;
  min-width: 0;
}

.social-proof-toast .sp-text {
  font-size: 0.78rem;
  color: var(--negro);
  line-height: 1.4;
}

.social-proof-toast .sp-name {
  font-weight: 700;
}

.social-proof-toast .sp-time {
  font-size: 0.68rem;
  color: var(--gris1);
  margin-top: 2px;
}

.social-proof-toast .sp-close {
  background: none;
  border: none;
  color: var(--gris1);
  font-size: 1rem;
  cursor: pointer;
  padding: 0 0.2rem;
  flex-shrink: 0;
}

/* ===================== MICRO-TESTIMONIOS (Social proof near CTAs) ===================== */
.micro-proof {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 0.8rem;
  font-size: 0.78rem;
  color: var(--gris1);
}

.micro-proof .avatars {
  display: flex;
}

.micro-proof .avatars span {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--gradient-main);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.55rem;
  font-weight: 700;
  margin-left: -6px;
  border: 2px solid #fff;
}

.micro-proof .avatars span:first-child {
  margin-left: 0;
}

.micro-proof .stars {
  color: #f9a825;
  letter-spacing: 1px;
}

.section-dark .micro-proof {
  color: rgba(255,255,255,0.6);
}

.section-dark .micro-proof .avatars span {
  border-color: rgba(255,255,255,0.2);
}

/* ===================== TIMELINE (Before/After) ===================== */
.timeline-section {
  position: relative;
}

.timeline-wrapper {
  display: flex;
  justify-content: center;
  gap: 0;
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.timeline-wrapper::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 10%;
  right: 10%;
  height: 4px;
  background: var(--gradient-main);
  transform: translateY(-50%);
  border-radius: 2px;
}

.timeline-step {
  flex: 1;
  text-align: center;
  position: relative;
  z-index: 2;
  padding: 0 1rem;
}

.timeline-dot {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--gradient-main);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.3rem;
  font-weight: 800;
  margin: 0 auto 1.2rem;
  box-shadow: 0 0 0 6px rgba(1, 183, 223, 0.15);
}

.timeline-step h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--negro);
  margin-bottom: 0.7rem;
}

.timeline-step p {
  font-size: 0.8rem;
  color: #666;
  line-height: 1.8;
  margin-bottom: 0.8rem;
}

.timeline-step .timeline-tag {
  display: inline-block;
  background: var(--celeste-light);
  color: var(--celeste);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.2rem 0.8rem;
  border-radius: 50px;
  margin-bottom: 0.8rem;
}

.timeline-case {
  font-size: 0.75rem;
  color: var(--fucsia);
  font-weight: 600;
  margin-top: 0.4rem;
  font-style: italic;
}

/* ===================== TRUST BADGES ===================== */
.trust-badges {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(0,0,0,0.06);
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.72rem;
  color: #888;
  font-weight: 500;
}

.trust-badge .badge-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
}

.trust-badge .badge-icon.secure { background: rgba(76, 175, 80, 0.1); }
.trust-badge .badge-icon.guarantee { background: rgba(1, 183, 223, 0.1); }
.trust-badge .badge-icon.instant { background: rgba(255, 193, 7, 0.1); }
.trust-badge .badge-icon.platform { background: rgba(240, 79, 35, 0.1); }

.payment-methods {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.8rem;
  margin-top: 0.8rem;
  font-size: 0.7rem;
  color: var(--gris1);
}

.payment-methods .pay-icons {
  display: flex;
  gap: 0.4rem;
}

.payment-methods .pay-icon {
  background: var(--gris-claro);
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  font-size: 0.68rem;
  font-weight: 700;
  color: #555;
}

/* ===================== PRICE COMPARISON (Anchoring) ===================== */
.price-comparison {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  max-width: 600px;
  margin: 0 auto 2.5rem;
}

.price-compare-item {
  text-align: center;
  padding: 1.2rem 1rem;
  border-radius: var(--radius);
  border: 1px solid rgba(0,0,0,0.06);
  background: var(--gris-claro);
}

.price-compare-item.highlighted {
  background: var(--gradient-main);
  color: #fff;
  border-color: transparent;
  transform: scale(1.05);
  box-shadow: var(--shadow-md);
}

.price-compare-item .compare-label {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  opacity: 0.8;
  margin-bottom: 0.4rem;
}

.price-compare-item .compare-price {
  font-size: 1.5rem;
  font-weight: 800;
}

.price-compare-item .compare-detail {
  font-size: 0.68rem;
  opacity: 0.7;
  margin-top: 0.2rem;
}

.price-compare-item.highlighted .compare-detail {
  opacity: 0.9;
}

/* ===================== PARA QUIÉN ES / NO ES ===================== */
.target-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.target-card {
  border-radius: var(--radius-lg);
  padding: 2rem;
}

.target-card.target-yes {
  background: rgba(76, 175, 80, 0.05);
  border: 2px solid rgba(76, 175, 80, 0.2);
}

.target-card.target-no {
  background: rgba(233, 30, 99, 0.05);
  border: 2px solid rgba(233, 30, 99, 0.15);
}

.target-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.target-yes h3 {
  color: #2e7d32;
}

.target-no h3 {
  color: #c62828;
}

.target-card ul {
  list-style: none;
  padding: 0;
}

.target-card ul li {
  padding: 0.5rem 0;
  padding-left: 1.8rem;
  position: relative;
  font-size: 0.9rem;
  color: #555;
  line-height: 1.6;
}

.target-yes ul li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: #4caf50;
  font-weight: 800;
  font-size: 1rem;
}

.target-no ul li::before {
  content: "\2717";
  position: absolute;
  left: 0;
  color: #e91e63;
  font-weight: 800;
  font-size: 1rem;
}

/* ===================== MOBILE STICKY CTA ===================== */
/* ===================== RESPONSIVE VISIBILITY ===================== */
.only-mobile { display: none; }
.only-desktop { display: block; }

@media (max-width: 768px) {
  .only-mobile { display: block; }
  .only-desktop { display: none; }
}

.mobile-sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 998;
  background: #fff;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
  padding: 0.6rem 1rem;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

elevenlabs-convai {
  position: fixed !important;
  bottom: 70px !important;
  z-index: 997 !important;
}

.mobile-sticky-cta.visible {
  transform: translateY(0);
}

.mobile-sticky-cta .sticky-inner {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.mobile-sticky-cta .sticky-text {
  flex: 1;
}

.mobile-sticky-cta .sticky-label {
  font-size: 0.68rem;
  color: #4caf50;
  font-weight: 700;
  text-transform: uppercase;
}

.mobile-sticky-cta .sticky-price {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--negro);
}

.mobile-sticky-cta .sticky-price .old {
  text-decoration: line-through;
  color: var(--gris1);
  font-weight: 400;
  font-size: 0.78rem;
  margin-left: 0.3rem;
}

.mobile-sticky-cta .btn-sticky {
  background: #f04f23;
  color: #fff;
  padding: 0.6rem 1.2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.82rem;
  white-space: nowrap;
  animation: sticky-pulse 2s infinite;
}

@keyframes sticky-pulse {
  0%, 100% { box-shadow: 0 2px 10px rgba(240, 79, 35, 0.3); }
  50% { box-shadow: 0 2px 20px rgba(240, 79, 35, 0.5); }
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 992px) {
  .hero .container,
  .page-hero .container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-cta-group {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-image-wrapper {
    width: 300px;
    height: 380px;
  }

  .hero-floating-card.card-1 {
    left: 0;
  }

  .hero-floating-card.card-2 {
    right: 0;
  }

  .programa-wrapper {
    grid-template-columns: 1fr;
  }

  .programa-sidebar {
    position: static;
  }

  .beneficios-grid {
    grid-template-columns: 1fr;
  }

  .garantia-cards {
    grid-template-columns: 1fr;
  }

  [style*="grid-template-columns: 1fr 1fr"][style*="gap: 3rem"] {
    grid-template-columns: 1fr !important;
  }

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

  .page-hero-image img {
    width: 280px;
    height: 350px;
  }
}

@media (max-width: 768px) {
  html {
    font-size: 15px;
  }

  .urgency-bar {
    font-size: 0.72rem;
    padding: 0.4rem 2.5rem 0.4rem 0.5rem;
    gap: 0.4rem;
    flex-wrap: wrap;
  }

  .urgency-bar .urgency-cta {
    display: none;
  }

  body.has-urgency-bar .navbar {
    top: 56px;
  }

  .mobile-sticky-cta {
    display: block;
  }

  .social-proof-toast {
    left: 0.5rem;
    right: 0.5rem;
    max-width: none;
    bottom: 5rem;
  }

  .timeline-wrapper {
    flex-direction: column;
    gap: 1.5rem;
  }

  .timeline-wrapper::before {
    top: 0;
    bottom: 0;
    left: 30px;
    right: auto;
    width: 4px;
    height: 100%;
    transform: none;
  }

  .timeline-step {
    text-align: left;
    padding-left: 70px;
  }

  .timeline-dot {
    position: absolute;
    left: 0;
    margin: 0;
    width: 50px;
    height: 50px;
    font-size: 1.1rem;
  }

  .target-grid {
    grid-template-columns: 1fr;
  }

  .price-comparison {
    grid-template-columns: 1fr;
  }

  .price-compare-item.highlighted {
    transform: none;
  }

  .navbar-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 350px;
    height: 100vh;
    height: 100dvh;
    background: var(--gradient-hero);
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    gap: 0;
    padding: 5rem 1.5rem 2rem;
    transition: var(--transition);
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.3);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .navbar-menu.active {
    right: 0;
  }

  .navbar-menu li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .navbar-menu li:last-child {
    border-bottom: none;
    margin-top: 0.5rem;
  }

  .navbar-menu a {
    color: var(--blanco) !important;
    font-size: 1rem;
    padding: 0.9rem 1rem;
    display: block;
    width: 100%;
    border-radius: 8px;
  }

  .navbar-menu a:hover,
  .navbar-menu a.active {
    background: rgba(255, 255, 255, 0.15);
  }

  .navbar-menu .btn-cta-nav {
    text-align: center;
    margin-top: 0.5rem;
    border-radius: 50px;
  }

  .hamburger {
    display: flex;
  }

  .hero {
    min-height: auto;
    padding: 7rem 0 3rem;
  }

  .hero-title {
    font-size: 2rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .hero-image {
    order: -1;
  }

  .hero-image-wrapper {
    width: 240px;
    height: 300px;
  }

  .hero-stats {
    gap: 1rem;
  }

  .hero-stat .number {
    font-size: 1.4rem;
  }

  .testimonios-grid,
  .testimonios-page-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

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

  .cta-final h2 {
    font-size: 1.8rem;
  }

  .garantia-content h2 {
    font-size: 1.8rem;
  }

  .pricing-price {
    font-size: 2.8rem;
  }

  .page-hero {
    min-height: auto;
    padding: 7rem 0 3rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1.2rem;
  }

  .hero-title {
    font-size: 1.7rem;
  }

  .hero-floating-card {
    display: none;
  }

  .logros-grid {
    grid-template-columns: 1fr;
  }

  .credentials-grid {
    grid-template-columns: 1fr;
  }
}
