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

/* ===== VARIABLES ===== */
:root {
  --blue: #003E7E;
  --blue-d: #002A56;
  --blue-l: #E8F0FA;
  --blue-xl: #F4F8FD;
  --accent: #00B4D8;
  --accent-d: #0096B7;
  --white: #FFFFFF;
  --dark: #0A1628;
  --dark2: #111D33;
  --gray1: #F8FAFC;
  --gray2: #94A3B8;
  --gray3: #64748B;
  --gray4: #CBD5E1;
  --text: #1E293B;
  --gold: #F59E0B;
  --green: #10B981;
  --r: 1rem;
  --r2: 1.25rem;
}

/* ===== RESET ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { border: none; cursor: pointer; font-family: inherit; }
.container { max-width: 1180px; margin: 0 auto; padding: 0 1.5rem; }

/* ===== ANIMATIONS ===== */
@keyframes fadeUp { from { opacity: 0; transform: translateY(40px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes slideLeft { from { opacity: 0; transform: translateX(60px); } to { opacity: 1; transform: translateX(0); } }
@keyframes slideRight { from { opacity: 0; transform: translateX(-60px); } to { opacity: 1; transform: translateX(0); } }
@keyframes pulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.05); } }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes glow { 0%, 100% { box-shadow: 0 0 20px rgba(0,180,216,.2); } 50% { box-shadow: 0 0 40px rgba(0,180,216,.4); } }
@keyframes countUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

.reveal { opacity: 0; transform: translateY(35px); transition: all .7s cubic-bezier(.16,1,.3,1); }
.reveal.vis { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-40px); transition: all .7s cubic-bezier(.16,1,.3,1); }
.reveal-left.vis { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(40px); transition: all .7s cubic-bezier(.16,1,.3,1); }
.reveal-right.vis { opacity: 1; transform: translateX(0); }
.delay-1 { transition-delay: .1s !important; }
.delay-2 { transition-delay: .2s !important; }
.delay-3 { transition-delay: .3s !important; }
.delay-4 { transition-delay: .4s !important; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(10,22,40,.95); backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: all .3s;
}
.navbar .container { display: flex; justify-content: space-between; align-items: center; height: 64px; }
.nav-brand { display: flex; align-items: center; gap: .6rem; }
.nav-brand img { height: 30px; filter: brightness(0) invert(1); opacity: .9; }
.nav-brand span { color: #fff; font-weight: 700; font-size: .82rem; letter-spacing: .02em; }
.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links a { color: rgba(255,255,255,.7); font-size: .82rem; font-weight: 500; transition: color .3s; }
.nav-links a:hover { color: var(--accent); }
.nav-cta {
  display: inline-flex; align-items: center; gap: .4rem;
  background: var(--accent); color: #fff; font-weight: 700; font-size: .75rem;
  padding: .55rem 1.2rem; border-radius: 99px; letter-spacing: .04em;
  text-transform: uppercase; transition: all .3s;
}
.nav-cta:hover { background: var(--accent-d); transform: translateY(-2px); }
.nav-cta svg { width: 14px; height: 14px; }

/* ===== HERO ===== */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  background: var(--dark); overflow: hidden; padding-top: 64px;
}
.hero-bg-video {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  object-fit: cover; opacity: .3; z-index: 0;
}
.hero-overlay {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 1;
  background: linear-gradient(160deg, rgba(10,22,40,.85) 0%, rgba(0,42,86,.7) 50%, rgba(0,62,126,.6) 100%);
}
.hero::before {
  content: ''; position: absolute; top: -50%; right: -20%; width: 80vw; height: 80vw;
  border-radius: 50%; background: radial-gradient(circle, rgba(0,180,216,.1) 0%, transparent 70%);
  animation: float 8s ease-in-out infinite; z-index: 1;
}
.hero::after {
  content: ''; position: absolute; bottom: -30%; left: -10%; width: 60vw; height: 60vw;
  border-radius: 50%; background: radial-gradient(circle, rgba(0,62,126,.2) 0%, transparent 70%);
  animation: float 10s ease-in-out infinite reverse; z-index: 1;
}
.hero .container { position: relative; z-index: 2; text-align: center; padding: 5rem 1.5rem; }
.hero-overline {
  display: inline-flex; align-items: center; gap: .5rem;
  color: var(--accent); font-size: .7rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .2em;
  margin-bottom: 2rem; animation: fadeIn 1s ease-out;
}
.hero-overline .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); animation: pulse 2s infinite; }
.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem); font-weight: 900; color: #fff;
  line-height: 1.08; margin-bottom: 1.5rem; letter-spacing: -.03em;
  animation: fadeUp .8s ease-out;
}
.hero h1 .gradient-text {
  background: linear-gradient(135deg, var(--accent) 0%, #48CAE4 50%, #90E0EF 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.25rem); color: rgba(255,255,255,.6);
  max-width: 600px; margin: 0 auto 3rem; font-weight: 300; line-height: 1.7;
  animation: fadeUp 1s ease-out .2s both;
}
.hero-cta-row {
  display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap;
  animation: fadeUp 1s ease-out .4s both;
}
.btn-primary {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--accent); color: #fff; font-weight: 700; font-size: .9rem;
  padding: .9rem 2rem; border-radius: var(--r); transition: all .3s;
  box-shadow: 0 8px 30px rgba(0,180,216,.3);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 14px 40px rgba(0,180,216,.4); }
.btn-primary svg { width: 18px; height: 18px; }
.btn-ghost {
  display: inline-flex; align-items: center; gap: .5rem;
  border: 1.5px solid rgba(255,255,255,.2); color: rgba(255,255,255,.8);
  font-weight: 600; font-size: .85rem; padding: .85rem 1.75rem;
  border-radius: var(--r); transition: all .3s;
}
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }
.hero-stats-row {
  display: flex; justify-content: center; gap: 3rem; margin-top: 4rem;
  animation: fadeUp 1s ease-out .6s both;
}
.hero-stat { text-align: center; }
.hero-stat .num { display: block; font-size: 2.2rem; font-weight: 900; color: #fff; line-height: 1; }
.hero-stat .lab { font-size: .7rem; color: var(--accent); text-transform: uppercase; letter-spacing: .1em; font-weight: 600; margin-top: .25rem; }
.hero-scroll {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,.3); animation: float 2s ease-in-out infinite; z-index: 5;
}
.hero-scroll i { width: 24px; height: 24px; }

/* ===== MARQUEE BAR ===== */
.marquee-bar { background: var(--blue); padding: .6rem 0; overflow: hidden; white-space: nowrap; }
.marquee-track {
  display: flex; gap: 3rem; animation: marquee 25s linear infinite;
}
.marquee-item {
  display: flex; align-items: center; gap: .4rem;
  color: rgba(255,255,255,.85); font-size: .72rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: .08em; flex-shrink: 0;
}
.marquee-item i { width: 14px; height: 14px; color: var(--accent); }

/* ===== SECTIONS ===== */
.section { padding: 5.5rem 0; }
.section-alt { background: var(--gray1); }
.section-dark { background: var(--dark); }
.section-blue { background: linear-gradient(160deg, var(--blue-d), var(--blue)); }
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-header .chip {
  display: inline-flex; align-items: center; gap: .4rem;
  background: var(--blue-l); color: var(--blue); font-size: .7rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .12em; padding: .4rem 1rem;
  border-radius: 99px; margin-bottom: 1rem;
}
.section-header .chip i { width: 14px; height: 14px; }
.section-header h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 800; line-height: 1.1;
  margin-bottom: .75rem; letter-spacing: -.02em;
}
.section-header h2 .hl { color: var(--blue); }
.section-header p { font-size: 1.05rem; color: var(--gray3); max-width: 550px; margin: 0 auto; line-height: 1.7; }

/* ===== QUESTION CARDS ===== */
.q-grid-v3 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
.q-card-v3 {
  background: var(--white); border: 1px solid #E2E8F0;
  border-radius: var(--r2); padding: 1.75rem; display: flex; gap: 1rem;
  align-items: flex-start; transition: all .4s cubic-bezier(.16,1,.3,1);
  position: relative; cursor: default;
}
.q-card-v3:hover { transform: translateY(-6px) scale(1.01); box-shadow: 0 20px 50px rgba(0,62,126,.1); border-color: var(--blue); }
.q-card-v3 .q-num {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--blue-l); color: var(--blue);
  display: flex; align-items: center; justify-content: center;
  font-size: .8rem; font-weight: 800; flex-shrink: 0;
  transition: all .3s;
}
.q-card-v3:hover .q-num { background: var(--blue); color: #fff; }
.q-card-v3 p { font-size: .95rem; color: var(--gray3); line-height: 1.65; }
.q-card-v3 p strong { color: var(--blue); font-weight: 700; }
.q-cta-card {
  grid-column: 1 / -1; position: relative;
  background: url('personasaludable5.jpg') center/cover no-repeat;
  border: none; color: #fff; border-radius: var(--r2); padding: 2.5rem;
  text-align: center; display: flex; flex-direction: column; align-items: center; gap: 1.5rem;
  overflow: hidden;
}
.q-cta-card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(0,42,86,.9), rgba(0,62,126,.85));
  z-index: 0;
}
.q-cta-card > * { position: relative; z-index: 1; }
.q-cta-card p { color: rgba(255,255,255,.85); font-size: 1.1rem; max-width: 600px; line-height: 1.7; }
.q-cta-card p strong { color: var(--accent); }
.q-cta-card:hover { transform: translateY(-4px); }

/* ===== ABOUT ===== */
.about-layout { display: grid; grid-template-columns: .45fr .55fr; gap: 4rem; align-items: center; }
.about-img-wrap { position: relative; }
.about-img-wrap img { border-radius: var(--r2); box-shadow: 0 30px 60px rgba(0,62,126,.15); }
.about-img-wrap .float-badge {
  position: absolute; bottom: -1.5rem; right: -1rem;
  background: var(--blue); color: #fff; border-radius: var(--r);
  padding: .85rem 1.25rem; display: flex; align-items: center; gap: .6rem;
  box-shadow: 0 10px 30px rgba(0,62,126,.3); animation: float 4s ease-in-out infinite;
}
.about-img-wrap .float-badge i { width: 22px; height: 22px; color: var(--accent); }
.about-img-wrap .float-badge span { font-weight: 700; font-size: .8rem; }
.about-content h2 { font-size: clamp(1.8rem, 4vw, 2.5rem); font-weight: 800; margin-bottom: 1.25rem; line-height: 1.15; }
.about-content h2 .hl { color: var(--blue); }
.about-content p { color: var(--gray3); font-size: 1rem; line-height: 1.8; margin-bottom: .85rem; }
.id-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 1.75rem; }
.id-pill {
  background: var(--blue-xl); border-radius: var(--r); padding: 1.1rem;
  border-left: 3px solid var(--blue);
}
.id-pill .nm { font-size: .75rem; color: var(--gray3); font-weight: 600; }
.id-pill .nid { font-size: 1.2rem; font-weight: 900; color: var(--dark); margin: .15rem 0; }
.id-pill .tag { font-size: .65rem; color: var(--blue); font-weight: 700; text-transform: uppercase; letter-spacing: .1em; }

/* ===== BEFORE / AFTER ===== */
.before-after-section { margin-top: 2rem; }
.before-after-section h3 {
  font-size: 1.1rem; font-weight: 800; color: var(--blue);
  margin-bottom: 1rem; text-align: center;
}
.before-after-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.ba-card {
  position: relative; border-radius: var(--r2); overflow: hidden;
  box-shadow: 0 8px 25px rgba(0,62,126,.12); transition: all .4s;
}
.ba-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,62,126,.18); }
.ba-card img { width: 100%; height: 220px; object-fit: cover; display: block; }
.ba-label {
  position: absolute; top: .75rem; left: .75rem;
  padding: .3rem .85rem; border-radius: 99px; font-size: .65rem;
  font-weight: 800; text-transform: uppercase; letter-spacing: .1em;
  z-index: 2;
}
.ba-before { background: rgba(239,68,68,.9); color: #fff; }
.ba-after { background: rgba(16,185,129,.9); color: #fff; }

/* ===== MEDICAL ENDORSEMENT ===== */
.medicos-highlight {
  display: flex; align-items: center; justify-content: center; gap: .75rem;
  background: linear-gradient(135deg, var(--blue-d), var(--blue));
  color: #fff; padding: 1.1rem 2rem; border-radius: var(--r2);
  margin-bottom: 2.5rem; text-align: center;
  box-shadow: 0 8px 30px rgba(0,62,126,.25);
}
.medicos-highlight i { width: 24px; height: 24px; color: var(--accent); }
.medicos-highlight span {
  font-size: 1.15rem; font-weight: 900; letter-spacing: .08em;
  text-transform: uppercase;
}
.medicos-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem;
}
.medico-video-card {
  position: relative; border-radius: 1.25rem; overflow: hidden;
  background: var(--dark); cursor: pointer;
  box-shadow: 0 8px 30px rgba(0,0,0,.15);
  transition: all .4s cubic-bezier(.16,1,.3,1);
}
.medico-video-card:hover {
  box-shadow: 0 20px 50px rgba(0,62,126,.25);
  transform: translateY(-8px) scale(1.02);
}
.medico-video-card video {
  width: 100%; height: 420px; object-fit: cover;
  display: block; background: #000;
}
.medico-video-body {
  position: absolute; bottom: 0; left: 0; right: 0; padding: 1.5rem;
  background: linear-gradient(to top, rgba(0,0,0,.85) 0%, rgba(0,0,0,.3) 60%, transparent 100%);
  pointer-events: none;
}
.medico-badge {
  display: inline-flex; align-items: center; gap: .35rem;
  background: rgba(0,180,216,.2); border: 1px solid rgba(0,180,216,.35);
  color: var(--accent); font-size: .65rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .1em;
  padding: .3rem .75rem; border-radius: 99px; margin-bottom: .5rem;
}
.medico-badge i { width: 13px; height: 13px; }
.medico-desc {
  font-size: .9rem; color: rgba(255,255,255,.9); font-weight: 500; line-height: 1.5;
}
@media (max-width: 768px) {
  .medicos-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .medico-video-card video { height: 360px; }
  .medicos-highlight { padding: .85rem 1.25rem; }
  .medicos-highlight span { font-size: .95rem; }
}

/* ===== TESTIMONIALS ===== */
.testi-scroll-wrapper { position: relative; overflow: hidden; }
.testi-scroll {
  display: flex; gap: 1.25rem; overflow-x: auto; scroll-snap-type: x mandatory;
  padding: 1rem .5rem 2rem; -ms-overflow-style: none; scrollbar-width: none;
}
.testi-scroll::-webkit-scrollbar { display: none; }
.testi-slide {
  min-width: 260px; max-width: 260px; scroll-snap-align: start; flex-shrink: 0;
  background: var(--dark); border-radius: 1.25rem; overflow: hidden;
  transition: all .4s; position: relative;
  box-shadow: 0 8px 30px rgba(0,0,0,.15);
}
.testi-slide:hover { box-shadow: 0 20px 50px rgba(0,62,126,.25); transform: translateY(-8px) scale(1.02); }
.testi-slide video {
  width: 100%; height: 460px; object-fit: cover; background: #000;
  display: block; cursor: pointer; border-radius: 1.25rem;
}
.testi-slide .testi-body {
  position: absolute; bottom: 0; left: 0; right: 0; padding: 1.25rem;
  background: linear-gradient(to top, rgba(0,0,0,.85) 0%, rgba(0,0,0,.3) 60%, transparent 100%);
  border-radius: 0 0 1.25rem 1.25rem; pointer-events: none;
}
.play-btn {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 60px; height: 60px; border-radius: 50%;
  background: rgba(255,255,255,.9); color: var(--blue);
  display: flex; align-items: center; justify-content: center;
  z-index: 3; pointer-events: none;
  transition: opacity .3s ease, transform .3s ease;
  box-shadow: 0 4px 20px rgba(0,0,0,.3);
}
.play-btn svg { width: 24px; height: 24px; margin-left: 3px; }
.testi-slide:hover .play-btn { transform: translate(-50%, -50%) scale(1.1); }
.testi-slide { cursor: pointer; }
.testi-slide .stars { color: var(--gold); font-size: .75rem; letter-spacing: 2px; margin-bottom: .3rem; }
.testi-slide .testi-desc { font-size: .82rem; color: rgba(255,255,255,.9); line-height: 1.5; font-weight: 500; }
.testi-nav { display: flex; justify-content: center; gap: .75rem; margin-top: 2rem; }
.testi-nav button {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--blue); color: #fff;
  display: flex; align-items: center; justify-content: center;
  transition: all .3s; box-shadow: 0 4px 15px rgba(0,62,126,.2);
}
.testi-nav button:hover { background: var(--accent); transform: scale(1.1); }
.testi-nav button i { width: 20px; height: 20px; }

/* Quote Banner — Premium Redesign */
.testi-quote-banner {
  position: relative; overflow: hidden; margin-top: 3rem;
  border-radius: 1.25rem; padding: 3.5rem 2.5rem;
  background: url('personasaludable1.jpg') center/cover no-repeat;
  text-align: center;
}
.testi-quote-banner::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(0,42,86,.92) 0%, rgba(0,62,126,.88) 100%);
  z-index: 0;
}
.testi-quote-banner > * { position: relative; z-index: 1; }
.testi-quote-banner .qmark {
  font-size: 5rem; color: var(--accent); line-height: .8;
  font-weight: 900; opacity: .6; margin-bottom: .5rem;
  font-family: Georgia, serif;
}
.testi-quote-banner p {
  font-size: 1.2rem; max-width: 650px; margin: 0 auto;
  line-height: 1.8; color: rgba(255,255,255,.9); font-weight: 300;
}
.testi-quote-banner strong { color: var(--accent); font-weight: 700; }
.testi-quote-banner .qb-author {
  display: inline-flex; align-items: center; gap: .5rem;
  margin-top: 1.5rem; color: rgba(255,255,255,.5);
  font-size: .75rem; font-weight: 600; text-transform: uppercase; letter-spacing: .12em;
}
.testi-quote-banner .qb-author i { width: 16px; height: 16px; color: var(--accent); }

/* ===== PRODUCTS ===== */
.prod-grid-v3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.prod-card-v3 {
  background: var(--white); border: 1px solid #E2E8F0; border-radius: var(--r2);
  overflow: hidden; display: flex; flex-direction: column; transition: all .4s;
}
.prod-card-v3:hover { box-shadow: 0 20px 50px rgba(0,62,126,.12); transform: translateY(-8px); }
.prod-card-v3.featured { border: 2px solid var(--blue); position: relative; }
.prod-card-v3.featured .prod-badge-v3 {
  position: absolute; top: 1rem; right: 1rem; background: var(--blue); color: #fff;
  font-size: .6rem; font-weight: 800; padding: .25rem .7rem; border-radius: 99px;
  text-transform: uppercase; letter-spacing: .06em; z-index: 2;
}
.prod-top {
  background: linear-gradient(135deg, var(--blue-xl), var(--blue-l));
  padding: 2rem; display: flex; align-items: center; justify-content: center; height: 200px;
}
.prod-top img {
  max-height: 170px; object-fit: contain;
  filter: drop-shadow(0 10px 25px rgba(0,62,126,.1));
  transition: transform .5s cubic-bezier(.16,1,.3,1);
}
.prod-card-v3:hover .prod-top img { transform: scale(1.1) rotate(2deg); }
.prod-info { padding: 1.75rem; flex: 1; display: flex; flex-direction: column; }
.prod-info h3 { font-size: 1.25rem; font-weight: 800; margin-bottom: .15rem; }
.prod-info .prod-sub { font-size: .65rem; text-transform: uppercase; letter-spacing: .15em; color: var(--gray2); font-weight: 700; margin-bottom: 1.25rem; }
.prod-info ul { list-style: none; flex: 1; margin-bottom: 1.5rem; }
.prod-info ul li { display: flex; align-items: center; gap: .5rem; font-size: .88rem; color: var(--gray3); margin-bottom: .5rem; }
.prod-info ul li i { width: 16px; height: 16px; color: var(--blue); flex-shrink: 0; }
.prod-cta-btn {
  display: block; text-align: center; background: var(--dark);
  color: #fff; font-weight: 700; font-size: .8rem; padding: .85rem;
  border-radius: .7rem; text-transform: uppercase; letter-spacing: .06em;
  transition: all .3s;
}
.prod-cta-btn:hover { background: var(--blue); }

/* ===== CTA SECTION ===== */
.cta-section {
  position: relative; overflow: hidden; padding: 6rem 0;
  background: url('personasaludable7.jpg') center/cover no-repeat fixed;
}
.cta-section::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(0,42,86,.92), rgba(0,62,126,.88));
  z-index: 1;
}
.cta-section .container { position: relative; z-index: 2; text-align: center; }
.cta-section h2 { color: #fff; font-size: clamp(2rem, 5vw, 3rem); font-weight: 900; margin-bottom: .75rem; letter-spacing: -.02em; }
.cta-section h2 .hl { color: var(--accent); }
.cta-section > .container > p, .cta-section .sub-text { color: rgba(255,255,255,.6); font-size: 1.05rem; max-width: 500px; margin: 0 auto 2.5rem; line-height: 1.7; }
.cta-glass {
  background: rgba(255,255,255,.05); backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,.08); border-radius: var(--r2);
  padding: 2rem; max-width: 520px; margin: 0 auto 2.5rem; text-align: left;
}
.cta-glass ul { list-style: none; }
.cta-glass ul li {
  display: flex; align-items: center; gap: .65rem;
  color: rgba(255,255,255,.85); font-size: .9rem; margin-bottom: .7rem;
}
.cta-glass ul li:last-child { margin-bottom: 0; }
.cta-glass ul li i { width: 18px; height: 18px; color: var(--accent); flex-shrink: 0; }

/* ===== FOOTER ===== */
.footer {
  background: var(--dark2); padding: 3.5rem 0 1.5rem; text-align: center;
  color: rgba(255,255,255,.6);
}
.footer-brand { display: flex; align-items: center; justify-content: center; gap: .5rem; margin-bottom: .5rem; }
.footer-brand img { height: 28px; filter: brightness(0) invert(1); opacity: .5; }
.footer-brand span { color: #fff; font-weight: 700; font-size: 1.1rem; }
.footer-role { color: var(--accent); font-size: .65rem; font-weight: 700; text-transform: uppercase; letter-spacing: .15em; margin-bottom: 1.5rem; }
.footer-nav { display: flex; justify-content: center; gap: 1.5rem; flex-wrap: wrap; margin-bottom: 1.5rem; }
.footer-nav a { display: flex; align-items: center; gap: .35rem; color: rgba(255,255,255,.5); font-weight: 600; font-size: .8rem; transition: color .3s; }
.footer-nav a:hover { color: var(--accent); }
.footer-nav a i { width: 14px; height: 14px; }
.footer-disc {
  max-width: 600px; margin: 0 auto; font-size: .68rem; line-height: 1.7;
  opacity: .4; border-top: 1px solid rgba(255,255,255,.06); padding-top: 1.25rem;
}
.footer-copy { margin-top: .75rem; font-size: .65rem; opacity: .3; }

/* ===== WHATSAPP ===== */
.wa-float {
  position: fixed; bottom: 1.75rem; right: 1.75rem; z-index: 100;
  width: 56px; height: 56px; border-radius: 50%; background: #25D366;
  display: flex; align-items: center; justify-content: center;
  color: #fff; box-shadow: 0 6px 20px rgba(37,211,102,.4);
  animation: glow 3s ease-in-out infinite; transition: transform .3s;
}
.wa-float:hover { transform: scale(1.12); }
.wa-float svg { width: 26px; height: 26px; }
.mobile-bar {
  display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 100;
  background: #fff; border-top: 1px solid #E2E8F0;
  box-shadow: 0 -4px 20px rgba(0,0,0,.06);
}
.mb-strip { background: var(--blue); text-align: center; padding: .25rem; color: #fff; font-size: .6rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; }
.mb-row { display: flex; justify-content: space-between; align-items: center; padding: .6rem 1.2rem; }
.mb-info .s1 { font-size: .55rem; color: var(--gray3); text-transform: uppercase; font-weight: 700; }
.mb-info .b1 { font-size: .8rem; font-weight: 800; color: var(--dark); }
.mb-btn {
  display: flex; align-items: center; gap: .3rem; background: #25D366; color: #fff;
  font-weight: 800; font-size: .72rem; padding: .5rem 1rem; border-radius: 99px;
}
.mb-btn svg { width: 14px; height: 14px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 968px) {
  .nav-links { display: none; }
  .about-layout { grid-template-columns: 1fr; text-align: center; }
  .about-img-wrap { max-width: 380px; margin: 0 auto; }
  .about-img-wrap .float-badge { right: auto; left: 50%; transform: translateX(-50%); bottom: -1.5rem; }
  .about-content { margin-top: 2.5rem; }
  .id-grid { max-width: 380px; margin: 1.75rem auto 0; }
  .prod-grid-v3 { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .q-grid-v3 { grid-template-columns: 1fr; }
  .q-cta-card { grid-column: auto; }
  .hero-stats-row { gap: 2rem; }
}
@media (max-width: 768px) {
  .wa-float { display: none; }
  .mobile-bar { display: block; }
  body { padding-bottom: 4.5rem; }
  .section { padding: 4rem 0; }
  .hero h1 { font-size: 2.2rem; }
  .hero-stats-row { flex-direction: column; gap: 1.5rem; align-items: center; }
  .testi-slide { min-width: 200px; max-width: 200px; }
  .testi-slide video { height: 360px; }
  .testi-quote-banner { padding: 2.5rem 1.5rem; }
  .testi-quote-banner .qmark { font-size: 3.5rem; }
  .testi-quote-banner p { font-size: 1rem; }
}
