/* =============================================
   Consultoria Vols — Styles
   ============================================= */

:root {
  --blue-900: #001B48;
  --blue-800: #002B6B;
  --blue-700: #0044AA;
  --blue-600: #0056D2;
  --blue-500: #1A6FE8;
  --blue-400: #4A9AFF;
  --blue-100: #E8F1FD;
  --blue-50: #F0F6FF;
  --green: #25D366;
  --green-dark: #1DA851;
  --white: #FFFFFF;
  --gray-50: #F5F7FA;
  --gray-100: #EEF1F6;
  --gray-200: #DDE3EC;
  --gray-400: #94A3B8;
  --gray-600: #64748B;
  --gray-800: #1E293B;
  --shadow-sm: 0 2px 8px rgba(0, 27, 72, 0.06);
  --shadow-md: 0 8px 30px rgba(0, 27, 72, 0.1);
  --shadow-lg: 0 20px 60px rgba(0, 27, 72, 0.15);
  --radius: 12px;
  --radius-lg: 16px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--gray-800);
  background: var(--white);
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition), opacity var(--transition);
}

ul { list-style: none; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 28px;
  border-radius: 50px;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 600;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn--sm { padding: 10px 22px; font-size: 14px; }
.btn--lg { padding: 16px 32px; font-size: 16px; }
.btn--full { width: 100%; }

.btn--primary {
  background: var(--blue-600);
  color: var(--white);
  border-color: var(--blue-600);
}
.btn--primary:hover {
  background: var(--blue-700);
  border-color: var(--blue-700);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 86, 210, 0.35);
}

.btn--whatsapp {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}
.btn--whatsapp:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.btn--outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn--outline-white:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn--white {
  background: var(--white);
  color: var(--green-dark);
  border-color: var(--white);
}
.btn--white:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* ---- Tags ---- */
.tag {
  display: inline-block;
  padding: 6px 16px;
  background: var(--blue-100);
  color: var(--blue-600);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 50px;
  margin-bottom: 16px;
}

.tag--light {
  background: rgba(255,255,255,0.15);
  color: var(--white);
  backdrop-filter: blur(4px);
}

.tag--light-outline {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.3);
  color: rgba(255,255,255,0.9);
}

/* ---- Section Headers ---- */
.section { padding: 90px 0; }
.section-header { text-align: center; max-width: 640px; margin: 0 auto 56px; }
.section-header--left { text-align: left; margin-left: 0; }
.section-header--light .section-title { color: var(--white); }
.section-header--light .section-subtitle { color: rgba(255,255,255,0.75); }

.section-title {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  line-height: 1.2;
  color: var(--blue-900);
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 17px;
  color: var(--gray-600);
  line-height: 1.7;
}
.section-subtitle--light { color: rgba(255,255,255,0.7); }

/* ---- Reveal Animations ---- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal--delay { transition-delay: 0.15s; }
.reveal--delay-2 { transition-delay: 0.3s; }
.reveal--delay-3 { transition-delay: 0.45s; }

/* ---- Top Bar ---- */
.top-bar {
  background: var(--blue-900);
  color: rgba(255,255,255,0.85);
  font-size: 13px;
  padding: 8px 0;
}

.top-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.top-bar__text {
  display: flex;
  align-items: center;
  gap: 8px;
}

.top-bar__contacts {
  display: flex;
  align-items: center;
  gap: 20px;
}

.top-bar__link {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.85);
}
.top-bar__link:hover { color: var(--white); }

/* ---- Header ---- */
.header {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 1px 0 var(--gray-100);
  transition: box-shadow var(--transition);
}

.header.scrolled {
  box-shadow: var(--shadow-sm);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.logo__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--blue-600);
  color: var(--white);
  font-weight: 800;
  font-size: 14px;
  border-radius: 8px;
}

.logo__text {
  font-weight: 700;
  font-size: 17px;
  color: var(--blue-900);
}

.logo--footer .logo__text { color: var(--white); }

.nav__list {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav__link {
  font-size: 15px;
  font-weight: 500;
  color: var(--gray-600);
  position: relative;
  padding: 4px 0;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--blue-600);
  transition: width var(--transition);
}

.nav__link:hover,
.nav__link.active {
  color: var(--blue-600);
}
.nav__link:hover::after,
.nav__link.active::after { width: 100%; }

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--blue-900);
  transition: all var(--transition);
  border-radius: 2px;
}

.menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ---- Hero ---- */
.hero {
  position: relative;
  background: linear-gradient(135deg, var(--blue-700) 0%, var(--blue-600) 50%, var(--blue-500) 100%);
  padding: 60px 0 80px;
  overflow: hidden;
}

.hero__bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero__shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.08;
  background: var(--white);
  animation: float 8s ease-in-out infinite;
}

.hero__shape--1 {
  width: 400px;
  height: 400px;
  top: -100px;
  right: -100px;
  animation-delay: 0s;
}

.hero__shape--2 {
  width: 300px;
  height: 300px;
  bottom: -80px;
  left: -60px;
  animation-delay: 2s;
}

.hero__shape--3 {
  width: 200px;
  height: 200px;
  top: 40%;
  left: 30%;
  animation-delay: 4s;
}

@keyframes float {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-20px) scale(1.05); }
}

.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.hero__content { color: var(--white); }

.hero__title {
  font-size: clamp(32px, 4.5vw, 48px);
  font-weight: 800;
  line-height: 1.15;
  margin: 20px 0 20px;
}

.hero__title strong {
  color: var(--blue-400);
  font-weight: 800;
}

.hero__subtitle {
  font-size: 17px;
  line-height: 1.7;
  opacity: 0.9;
  margin-bottom: 32px;
  max-width: 520px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 32px;
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.hero__trust li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  opacity: 0.85;
}

.hero__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0;
  width: 100%;
  max-width: 660px;
  min-height: 420px;
  margin-left: auto;
}

.hero-card {
  flex: 0 0 290px;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 26px;
  box-shadow: var(--shadow-lg);
  animation: cardFloat 4s ease-in-out infinite;
  position: relative;
  z-index: 2;
  margin-right: 0;
}

.hero-card__icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--blue-600);
  color: var(--white);
  border-radius: 50%;
  margin-bottom: 16px;
}

@keyframes cardFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.hero-card__title {
  font-size: 20px;
  font-weight: 700;
  color: var(--blue-900);
  margin-bottom: 18px;
  line-height: 1.3;
}

.hero-card__list {
  margin-bottom: 22px;
}

.hero-card__list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--gray-600);
  margin-bottom: 12px;
  line-height: 1.5;
}

.hero-card__list li:last-child { margin-bottom: 0; }

.hero-card__list li svg { flex-shrink: 0; margin-top: 2px; }

.hero-card__btn {
  font-size: 14px;
  padding: 14px 20px;
}

.hero__figure {
  position: relative;
  flex-shrink: 0;
  width: 330px;
  height: 430px;
  margin-left: -34px;
  margin-bottom: 0;
  z-index: 3;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  overflow: visible;
}

.hero__woman {
  position: relative;
  z-index: 2;
  width: auto;
  height: 100%;
  max-height: 430px;
  max-width: 100%;
  object-fit: contain;
  object-position: right bottom;
  filter: drop-shadow(0 12px 28px rgba(0, 27, 72, 0.18));
  pointer-events: none;
  user-select: none;
}

.hero__halo {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  top: 42%;
  right: 0;
  left: auto;
  transform: translate(8%, -50%);
}

.hero__halo--1 {
  width: 340px;
  height: 340px;
  background: rgba(255, 255, 255, 0.12);
  border: 2px solid rgba(255, 255, 255, 0.25);
  z-index: 0;
  animation: haloPulse 5s ease-in-out infinite;
}

.hero__halo--2 {
  width: 280px;
  height: 280px;
  background: rgba(255, 255, 255, 0.08);
  border: 2px solid rgba(255, 255, 255, 0.4);
  z-index: 0;
  animation: haloPulse 5s ease-in-out infinite 0.8s;
}

.hero__halo--3 {
  width: 400px;
  height: 400px;
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.18);
  z-index: 0;
  animation: haloPulse 5s ease-in-out infinite 1.6s;
}

@keyframes haloPulse {
  0%, 100% {
    transform: translate(8%, -50%) scale(1);
    opacity: 0.7;
  }
  50% {
    transform: translate(8%, -50%) scale(1.06);
    opacity: 1;
  }
}

/* ---- Benefits Bar ---- */
.benefits-bar {
  background: var(--gray-50);
  padding: 40px 0;
  border-bottom: 1px solid var(--gray-100);
}

.benefits-bar__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.benefit-item__icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--blue-50);
  border-radius: var(--radius);
  transition: transform var(--transition), background var(--transition);
}

.benefit-item:hover .benefit-item__icon {
  transform: scale(1.08);
  background: var(--blue-100);
}

.benefit-item__title {
  font-size: 16px;
  font-weight: 700;
  color: var(--blue-900);
  margin-bottom: 6px;
}

.benefit-item__text {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.6;
}

/* ---- Services ---- */
.services { background: var(--white); }

.services__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--blue-600);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

.service-card:hover::before { transform: scaleX(1); }

.service-card__icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--blue-50);
  border-radius: var(--radius);
  margin-bottom: 20px;
  transition: background var(--transition);
}

.service-card:hover .service-card__icon { background: var(--blue-100); }

.service-card__title {
  font-size: 18px;
  font-weight: 700;
  color: var(--blue-900);
  margin-bottom: 12px;
}

.service-card__text {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.65;
  margin-bottom: 20px;
}

.service-card__link {
  font-size: 14px;
  font-weight: 600;
  color: var(--blue-600);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--transition);
}

.service-card__link:hover { gap: 10px; }

/* ---- Process ---- */
.process {
  background: linear-gradient(160deg, var(--blue-900) 0%, var(--blue-800) 100%);
  position: relative;
  overflow: hidden;
}

.process::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(74, 154, 255, 0.12) 0%, transparent 50%);
  pointer-events: none;
}

.process__timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}

.process__line {
  position: absolute;
  top: 28px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: rgba(255,255,255,0.2);
  z-index: 0;
}

.process-step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.process-step__number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--blue-600);
  color: var(--white);
  font-size: 22px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  border: 3px solid rgba(255,255,255,0.2);
  transition: transform var(--transition), box-shadow var(--transition);
}

.process-step:hover .process-step__number {
  transform: scale(1.1);
  box-shadow: 0 0 30px rgba(0, 86, 210, 0.5);
}

.process-step__title {
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.process-step__text {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  line-height: 1.65;
  max-width: 240px;
  margin: 0 auto;
}

/* ---- Stats ---- */
.stats { background: var(--white); }

.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-bottom: 48px;
}

.stat-item {
  text-align: center;
  padding: 24px;
}

.stat-item__number {
  display: block;
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 800;
  color: var(--blue-600);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-item__label {
  font-size: 15px;
  color: var(--gray-600);
  font-weight: 500;
}

.about-text {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding: 32px;
  background: var(--gray-50);
  border-radius: var(--radius-lg);
  font-size: 16px;
  color: var(--gray-600);
  line-height: 1.75;
}

.about-text strong { color: var(--blue-900); }

/* ---- Blog ---- */
.blog { background: var(--gray-50); }

.blog__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.blog-card__image {
  overflow: hidden;
  aspect-ratio: 16/10;
}

.blog-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-card:hover .blog-card__image img {
  transform: scale(1.06);
}

.blog-card__body { padding: 24px; }

.blog-card__category {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--blue-600);
  background: var(--blue-50);
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 12px;
}

.blog-card__title {
  font-size: 17px;
  font-weight: 700;
  color: var(--blue-900);
  line-height: 1.4;
  margin-bottom: 10px;
}

.blog-card__excerpt {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: 16px;
}

.blog-card__link {
  font-size: 14px;
  font-weight: 600;
  color: var(--blue-600);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--transition);
}

.blog-card__link:hover { gap: 10px; }

/* ---- FAQ ---- */
.faq { background: var(--white); }

.faq__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.accordion { max-width: 560px; }

.accordion__item {
  border-bottom: 1px solid var(--gray-100);
}

.accordion__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font);
  font-size: 16px;
  font-weight: 600;
  color: var(--blue-900);
  text-align: left;
  transition: color var(--transition);
}

.accordion__trigger:hover { color: var(--blue-600); }

.accordion__icon {
  flex-shrink: 0;
  transition: transform var(--transition);
}

.accordion__item.active .accordion__icon {
  transform: rotate(180deg);
}

.accordion__panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.accordion__item.active .accordion__panel {
  max-height: 300px;
  padding-bottom: 20px;
}

.accordion__panel p {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.7;
}

.faq__visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.faq__image {
  max-width: 420px;
  animation: faqFloat 5s ease-in-out infinite;
}

@keyframes faqFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* ---- Contact ---- */
.contact {
  background: linear-gradient(135deg, var(--blue-700) 0%, var(--blue-600) 100%);
  padding: 90px 0;
}

.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.contact__title {
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.2;
}

.contact__subtitle {
  font-size: 16px;
  color: rgba(255,255,255,0.8);
  margin-bottom: 32px;
  line-height: 1.7;
}

.contact__benefits { display: flex; flex-direction: column; gap: 16px; }

.contact__benefits li {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--white);
  font-size: 15px;
  font-weight: 500;
}

.contact__benefit-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.12);
  border-radius: 50%;
  color: var(--white);
  flex-shrink: 0;
}

.contact-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-lg);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--blue-900);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: 15px;
  color: var(--gray-800);
  transition: border-color var(--transition), box-shadow var(--transition);
  background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--blue-600);
  box-shadow: 0 0 0 3px rgba(0, 86, 210, 0.12);
}

.form-group textarea { resize: vertical; min-height: 100px; }

.form-group.has-error input,
.form-group.has-error textarea {
  border-color: #DC2626;
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

.field-error {
  display: block;
  margin-top: 6px;
  font-size: 12px;
  color: #DC2626;
  min-height: 16px;
}

.form-feedback {
  margin-top: 12px;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  min-height: 20px;
}

.form-feedback.success { color: var(--green-dark); }
.form-feedback.error { color: #DC2626; }

.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

/* ---- WhatsApp CTA ---- */
.whatsapp-cta {
  background: var(--green);
  padding: 32px 0;
}

.whatsapp-cta__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.whatsapp-cta__icon-wrap {
  color: var(--white);
  opacity: 0.9;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.08); }
}

.whatsapp-cta__text {
  font-size: 17px;
  font-weight: 600;
  color: var(--white);
  max-width: 500px;
}

/* ---- Footer ---- */
.footer {
  background: var(--blue-900);
  color: rgba(255,255,255,0.7);
  padding: 64px 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer__desc {
  font-size: 14px;
  line-height: 1.7;
  margin: 16px 0 24px;
}

.footer__social {
  display: flex;
  gap: 12px;
}

.footer__social-link {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.7);
  transition: all var(--transition);
}

.footer__social-link:hover {
  background: var(--blue-600);
  color: var(--white);
  transform: translateY(-2px);
}

.footer__heading {
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
}

.footer__links li { margin-bottom: 12px; }

.footer__links a {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  transition: color var(--transition), padding-left var(--transition);
}

.footer__links a:hover {
  color: var(--white);
  padding-left: 4px;
}

.footer__contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  margin-bottom: 14px;
  line-height: 1.5;
}

.footer__contact li svg { flex-shrink: 0; margin-top: 3px; opacity: 0.6; }
.footer__contact a:hover { color: var(--white); }

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  font-size: 13px;
  flex-wrap: wrap;
  gap: 12px;
}

.footer__legal {
  display: flex;
  gap: 24px;
}

.footer__legal a:hover { color: var(--white); }

/* ---- Floating WhatsApp ---- */
.float-whatsapp {
  position: fixed;
  left: auto;
  top: auto;
  bottom: calc(28px + env(safe-area-inset-bottom, 0px));
  right: calc(28px + env(safe-area-inset-right, 0px));
  width: 60px;
  height: 60px;
  background: var(--green);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
  z-index: 99999;
  transition: transform var(--transition), box-shadow var(--transition);
  transform: translate3d(0, 0, 0);
  -webkit-transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  animation: whatsappBounce 3s ease-in-out infinite;
}

.float-whatsapp:hover {
  transform: translate3d(0, 0, 0) scale(1.1);
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.55);
}

@keyframes whatsappBounce {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(0, -6px, 0); }
}

@media (min-width: 769px) and (max-width: 1100px) {
  .hero__visual { max-width: 560px; min-height: 360px; }
  .hero-card { flex: 0 0 250px; padding: 22px 20px; }
  .hero-card__title { font-size: 17px; }
  .hero-card__list li { font-size: 12px; margin-bottom: 10px; }
  .hero__figure { width: 285px; height: 360px; margin-left: -28px; margin-bottom: 0; }
  .hero__woman { max-height: 360px; }
  .hero__halo--1 { width: 280px; height: 280px; }
  .hero__halo--2 { width: 230px; height: 230px; }
  .hero__halo--3 { width: 330px; height: 330px; }
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .hero__inner { grid-template-columns: 1fr; }
  .hero__visual {
    order: -1;
    flex-direction: column;
    max-width: 360px;
    margin: 0 auto;
    min-height: auto;
    gap: 24px;
  }
  .hero-card {
    flex: none;
    width: 100%;
    margin-right: 0;
    animation: none;
  }
  .hero__figure {
    width: 280px;
    height: 320px;
    margin-left: 0;
    order: -1;
  }
  .hero__woman { max-height: 320px; }
  .hero__halo--1 { width: 260px; height: 260px; }
  .hero__halo--2 { width: 210px; height: 210px; }
  .hero__halo--3 { width: 300px; height: 300px; }
  .process__timeline { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .process__line { display: none; }
  .footer__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }

  .nav {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 24px;
    box-shadow: var(--shadow-md);
    transform: translateY(-120%);
    opacity: 0;
    transition: all var(--transition);
    z-index: 999;
  }

  .nav.open {
    transform: translateY(0);
    opacity: 1;
  }

  .nav__list {
    flex-direction: column;
    gap: 16px;
  }

  .menu-toggle { display: flex; }
  .header__cta { display: none; }

  .benefits-bar__grid { grid-template-columns: 1fr; gap: 24px; }
  .services__grid { grid-template-columns: 1fr; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .blog__grid { grid-template-columns: 1fr; }
  .faq__inner { grid-template-columns: 1fr; }
  .faq__visual { order: -1; }
  .contact__inner { grid-template-columns: 1fr; }
  .process__timeline { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .whatsapp-cta__inner { flex-direction: column; text-align: center; }
  .top-bar__inner { justify-content: center; }
  .top-bar__text { display: none; }
}

@media (max-width: 480px) {
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; }
  .stats__grid { grid-template-columns: 1fr; }
  .contact-form { padding: 24px; }
}

/* ---- Floating WhatsApp: mobile fix (iOS/Android) ---- */
@media (max-width: 768px) {
  html {
    overflow-x: clip;
  }

  body {
    overflow-x: clip;
  }

  .float-whatsapp {
    position: fixed !important;
    left: auto !important;
    top: auto !important;
    right: calc(16px + env(safe-area-inset-right, 0px)) !important;
    bottom: calc(16px + env(safe-area-inset-bottom, 0px)) !important;
    width: 56px !important;
    height: 56px !important;
    min-width: 56px !important;
    min-height: 56px !important;
    margin: 0 !important;
    padding: 0 !important;
    z-index: 2147483647 !important;
    animation: none !important;
    transition: box-shadow 0.3s ease !important;
    transform: none !important;
    -webkit-transform: none !important;
    will-change: auto !important;
    contain: layout style;
  }

  .float-whatsapp svg {
    width: 26px;
    height: 26px;
  }

  .float-whatsapp:hover,
  .float-whatsapp:active {
    transform: none !important;
    -webkit-transform: none !important;
  }
}
