/* ===========================================================
   VariCentro Medicinal — Modern Redesign
   Author: redesign 2026
   =========================================================== */

:root {
  --teal-900: #0a4a52;
  --teal-700: #0e8a96;
  --teal-600: #10a3b1;
  --teal-500: #16bccb;
  --teal-50:  #ecfbfd;
  --gold-500: #fbd603;
  --gold-600: #e6c200;
  --ink:      #0f2a2e;
  --slate:    #5a6b6e;
  --mist:     #f4f8f9;
  --line:     #e4edee;
  --white:    #ffffff;
  --shadow-sm: 0 2px 10px rgba(10, 74, 82, .06);
  --shadow-md: 0 14px 40px rgba(10, 74, 82, .10);
  --shadow-lg: 0 30px 70px rgba(10, 74, 82, .16);
  --radius:   18px;
  --radius-lg: 28px;
  --maxw:     1180px;
  --ease:     cubic-bezier(.16, .84, .44, 1);
}

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

html { scroll-behavior: smooth; scroll-padding-top: 90px; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 { font-family: 'Poppins', sans-serif; line-height: 1.15; font-weight: 700; letter-spacing: -.02em; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* ---------- Section primitives ---------- */
section { padding: 100px 0; position: relative; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font: 600 13px/1 'Inter', sans-serif; letter-spacing: .12em; text-transform: uppercase;
  color: var(--teal-700); background: var(--teal-50);
  padding: 8px 16px; border-radius: 100px; margin-bottom: 18px;
}
.eyebrow i { font-size: 15px; }
.section-head { max-width: 640px; margin: 0 auto 56px; text-align: center; }
.section-head h2 { font-size: clamp(2rem, 4vw, 2.9rem); color: var(--ink); }
.section-head h2 span { color: var(--teal-600); }
.section-head p { color: var(--slate); margin-top: 16px; font-size: 1.08rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font: 600 .98rem 'Inter', sans-serif; padding: 15px 30px; border-radius: 100px;
  cursor: pointer; border: none; transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .25s;
}
.btn i { font-size: 1.15rem; }
.btn-primary { background: var(--teal-600); color: #fff; box-shadow: 0 10px 26px rgba(16,163,177,.35); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 16px 34px rgba(16,163,177,.45); background: var(--teal-700); }
.btn-gold { background: var(--gold-500); color: var(--ink); box-shadow: 0 10px 26px rgba(251,214,3,.4); }
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 16px 34px rgba(251,214,3,.55); }
.btn-ghost { background: rgba(255,255,255,.12); color: #fff; border: 1.5px solid rgba(255,255,255,.4); backdrop-filter: blur(6px); }
.btn-ghost:hover { background: rgba(255,255,255,.22); transform: translateY(-3px); }
.btn-wa { background: #25d366; color: #fff; box-shadow: 0 10px 26px rgba(37,211,102,.4); }
.btn-wa:hover { transform: translateY(-3px); box-shadow: 0 16px 34px rgba(37,211,102,.5); }

/* ===========================================================
   TOPBAR
   =========================================================== */
.topbar {
  background: var(--teal-600); color: #ffffff;
  font-size: .85rem; padding: 9px 0;
}
.topbar .container { display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.topbar a { color: #ffffff; transition: color .2s; }
.topbar a:hover { color: var(--gold-500); }
.topbar .ti i { color: #eafafb; }
.topbar .ti { display: inline-flex; align-items: center; gap: 7px; }
.topbar .info { display: flex; gap: 22px; flex-wrap: wrap; }
.topbar-right { display: flex; align-items: center; gap: 16px; }
.topbar .socials { display: flex; gap: 14px; font-size: 1rem; }
.lang-switch { display: flex; gap: 3px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.2); border-radius: 100px; padding: 3px; }
.lang-switch button { background: none; border: none; color: #ffffff; font: 600 .76rem 'Inter', sans-serif; letter-spacing: .04em; padding: 4px 11px; border-radius: 100px; cursor: pointer; transition: .2s; }
.lang-switch button:hover { color: #fff; }
.lang-switch button.active { background: var(--gold-500); color: var(--ink); }
@media (max-width: 700px) {
  .topbar .socials { display: none; }
  .topbar .container { flex-direction: column; gap: 8px; justify-content: center; }
  .topbar .info { justify-content: center; gap: 14px; font-size: .8rem; }
}

/* ===========================================================
   HEADER / NAV
   =========================================================== */
.header {
  position: sticky; top: 0; z-index: 100;
  background: #ffffff;
  border-bottom: 1px solid var(--line); transition: box-shadow .3s, padding .3s;
}
.header.scrolled { box-shadow: var(--shadow-sm); }
.header .container { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.brand { display: flex; align-items: center; }
.brand img { height: 54px; width: auto; }
.nav ul { display: flex; align-items: center; gap: 4px; }
.nav a {
  position: relative; font-weight: 500; font-size: .96rem; color: var(--ink);
  padding: 10px 16px; border-radius: 10px; transition: color .2s, background .2s;
}
.nav a::after {
  content: ''; position: absolute; left: 16px; right: 16px; bottom: 6px; height: 2px;
  background: var(--teal-600); transform: scaleX(0); transform-origin: left; transition: transform .3s var(--ease);
}
.nav a:hover, .nav a.active { color: var(--teal-700); }
.nav a:hover::after, .nav a.active::after { transform: scaleX(1); }
.nav .nav-cta { margin-left: 14px; color: #ffffff; height: 54px; padding: 0 28px; font-size: 1rem; border-radius: 14px; }
.nav .nav-cta:hover { color: #ffffff; }
.nav .nav-cta i.bi-whatsapp { color: #25d366; font-size: 1.3rem; }
.nav-toggle { display: none; font-size: 1.7rem; background: none; border: none; color: var(--ink); cursor: pointer; }

@media (max-width: 960px) {
  .nav-toggle { display: block; }
  .nav {
    position: fixed; inset: 0 0 0 auto; z-index: 130; width: min(84vw, 340px); height: 100%;
    background: #ffffff; box-shadow: -20px 0 60px rgba(10,42,46,.28); transform: translateX(100%);
    transition: transform .4s var(--ease); padding: 88px 22px 30px; overflow-y: auto;
  }
  .nav.open { transform: translateX(0); }
  .nav ul { flex-direction: column; align-items: stretch; gap: 6px; }
  .nav a { display: block; padding: 14px 16px; font-size: 1.05rem; border-radius: 12px; color: var(--ink); }
  .nav a.active { background: var(--teal-50); color: var(--teal-700); }
  .nav a::after { display: none; }
  .nav .nav-cta { display: inline-flex; align-items: center; justify-content: center; margin: 18px 0 0; height: 54px; }
  body.nav-open { overflow: hidden; }
  .nav-backdrop { position: fixed; inset: 0; background: rgba(7,30,33,.55); opacity: 0; visibility: hidden; transition: .3s; z-index: 90; }
  .nav-backdrop.show { opacity: 1; visibility: visible; }
}

/* ===========================================================
   HERO
   =========================================================== */
.hero { padding: 0; min-height: 92vh; display: flex; align-items: center; position: relative; overflow: hidden; }
.hero-slides { position: absolute; inset: 0; z-index: 0; }
.hero-slide {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  opacity: 0; transform: scale(1.08); transition: opacity 1.4s ease, transform 7s linear;
}
.hero-slide.active { opacity: 1; transform: scale(1); }
.hero::before {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(105deg, rgba(7,40,45,.92) 0%, rgba(10,74,82,.78) 42%, rgba(10,74,82,.30) 100%);
}
.hero .container { position: relative; z-index: 2; padding-top: 60px; padding-bottom: 60px; }
.hero-content { max-width: 680px; color: #fff; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px; font: 600 .82rem/1 'Inter';
  letter-spacing: .1em; text-transform: uppercase; color: var(--gold-500);
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.22);
  padding: 9px 18px; border-radius: 100px; margin-bottom: 24px; backdrop-filter: blur(6px);
}
.hero h1 { font-size: clamp(2.4rem, 5.6vw, 4.2rem); line-height: 1.05; }
.hero h1 span { color: var(--gold-500); display: block; }
.hero p { font-size: clamp(1.05rem, 2vw, 1.3rem); color: #d7eef0; margin: 22px 0 36px; max-width: 540px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-trust { display: flex; gap: 28px; margin-top: 44px; flex-wrap: wrap; }
.hero-trust div { color: #eafafb; }
.hero-trust strong { display: block; font: 700 1.9rem 'Poppins'; color: #fff; }
.hero-trust span { font-size: .85rem; color: #a9d6da; letter-spacing: .02em; }
.hero-dots { position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%); z-index: 3; display: flex; gap: 10px; }
.hero-dots button { width: 10px; height: 10px; border-radius: 50%; border: none; background: rgba(255,255,255,.4); cursor: pointer; transition: .3s; }
.hero-dots button.active { background: var(--gold-500); width: 28px; border-radius: 6px; }

/* ===========================================================
   STATS STRIP
   =========================================================== */
.stats { padding: 0; margin-top: -52px; position: relative; z-index: 5; }
.stats .wrap {
  background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow-md);
  display: grid; grid-template-columns: repeat(4, 1fr); padding: 36px 20px; border: 1px solid var(--line);
}
.stats .item { text-align: center; padding: 8px 16px; border-right: 1px solid var(--line); }
.stats .item:last-child { border-right: none; }
.stats .item i { font-size: 1.7rem; color: var(--teal-600); }
.stats .item strong { display: block; font: 700 2.1rem 'Poppins'; color: var(--ink); margin-top: 6px; }
.stats .item span { color: var(--slate); font-size: .92rem; }
@media (max-width: 760px) {
  .stats .wrap { grid-template-columns: repeat(2, 1fr); gap: 4px; }
  .stats .item:nth-child(2) { border-right: none; }
  .stats .item:nth-child(1), .stats .item:nth-child(2) { border-bottom: 1px solid var(--line); padding-bottom: 22px; margin-bottom: 14px; }
}

/* ===========================================================
   ABOUT
   =========================================================== */
.about .grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-media { position: relative; }
.about-media img { border-radius: var(--radius-lg); box-shadow: var(--shadow-md); aspect-ratio: 4/3.4; object-fit: cover; }
.about-media .float {
  position: absolute; bottom: -26px; left: -26px; background: var(--teal-600); color: #fff;
  padding: 22px 26px; border-radius: var(--radius); box-shadow: var(--shadow-lg);
}
.about-media .float strong { font: 700 2.2rem 'Poppins'; display: block; }
.about-media .float span { font-size: .85rem; color: #d3f3f6; }
.about-media .blob { position: absolute; inset: -30px -30px auto auto; width: 180px; height: 180px; background: radial-gradient(circle, var(--gold-500) 0%, transparent 70%); opacity: .35; filter: blur(10px); z-index: -1; }
.about-text h2 { font-size: clamp(1.9rem, 3.6vw, 2.7rem); color: var(--ink); margin-bottom: 18px; }
.about-text h2 span { color: var(--teal-600); }
.about-text .lead { color: var(--slate); font-size: 1.12rem; margin-bottom: 26px; }
.about-feats { display: grid; gap: 16px; }
.about-feats li { display: flex; gap: 14px; align-items: flex-start; }
.about-feats .ico { flex: none; width: 44px; height: 44px; border-radius: 12px; background: var(--teal-50); color: var(--teal-600); display: grid; place-items: center; font-size: 1.3rem; }
.about-feats h4 { font-size: 1.05rem; margin-bottom: 2px; }
.about-feats p { color: var(--slate); font-size: .95rem; }
@media (max-width: 860px) { .about .grid { grid-template-columns: 1fr; gap: 56px; } .about-media .float { left: 16px; } }

/* ===========================================================
   SERVICES
   =========================================================== */
.services { background: var(--mist); }
.svc-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }
.svc-card {
  border-radius: var(--radius-lg); padding: 38px; border: 1px solid var(--line);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .3s; position: relative; overflow: hidden;
  background-image: linear-gradient(155deg, rgba(255,255,255,.97) 0%, rgba(255,255,255,.93) 48%, rgba(236,251,253,.84) 100%), var(--bg);
  background-size: cover; background-position: center;
}
.svc-card > * { position: relative; z-index: 2; }
/* overlay de foto que se intensifica en hover */
.svc-card::after {
  content: ''; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background-image: linear-gradient(155deg, rgba(255,255,255,.78) 0%, rgba(236,251,253,.55) 100%), var(--bg);
  background-size: cover; background-position: center; opacity: 0; transition: opacity .5s var(--ease);
}
.svc-card:hover::after { opacity: 1; }
.svc-card::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 4px; z-index: 3; background: var(--teal-600); transform: scaleX(0); transform-origin: left; transition: transform .4s var(--ease); }
.svc-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); border-color: transparent; }
.svc-card:hover::before { transform: scaleX(1); }
.svc-card:nth-child(2)::before { background: var(--gold-500); }
.svc-ico { width: 64px; height: 64px; border-radius: 18px; display: grid; place-items: center; font-size: 1.8rem; margin-bottom: 22px; background: linear-gradient(135deg, var(--teal-600), var(--teal-500)); color: #fff; }
.svc-card:nth-child(2) .svc-ico { background: linear-gradient(135deg, var(--gold-500), var(--gold-600)); color: var(--ink); }
.svc-card h3 { font-size: 1.4rem; margin-bottom: 12px; }
.svc-card p { color: var(--slate); }
.svc-card .more { display: inline-flex; align-items: center; gap: 7px; margin-top: 20px; color: var(--teal-700); font-weight: 600; font-size: .95rem; }
.svc-card .more i { transition: transform .3s; }
.svc-card:hover .more i { transform: translateX(5px); }
@media (max-width: 760px) { .svc-grid { grid-template-columns: 1fr; } .svc-card { padding: 30px; } }

/* ===========================================================
   PORTFOLIO / GALLERY
   =========================================================== */
.filters { display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; margin-bottom: 40px; }
.filters button {
  font: 600 .92rem 'Inter'; padding: 10px 22px; border-radius: 100px; cursor: pointer;
  border: 1.5px solid var(--line); background: #fff; color: var(--slate); transition: .25s;
}
.filters button:hover { border-color: var(--teal-500); color: var(--teal-700); }
.filters button.active { background: var(--teal-600); border-color: var(--teal-600); color: #fff; }
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.gal-item { position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 1/1; cursor: pointer; box-shadow: var(--shadow-sm); }
.gal-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.gal-item::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(10,42,46,.78), transparent 55%); opacity: 0; transition: .4s; }
.gal-item .cap { position: absolute; left: 22px; bottom: 18px; z-index: 2; color: #fff; transform: translateY(12px); opacity: 0; transition: .4s var(--ease); }
.gal-item .cap span { font: 600 .75rem 'Inter'; letter-spacing: .1em; text-transform: uppercase; color: var(--gold-500); }
.gal-item .cap h4 { font-size: 1.15rem; }
.gal-item:hover img { transform: scale(1.1); }
.gal-item:hover::after { opacity: 1; }
.gal-item:hover .cap { transform: translateY(0); opacity: 1; }
.gal-item.hide { display: none; }
@media (max-width: 860px) { .gallery { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .gallery { grid-template-columns: 1fr; } }

/* Lightbox */
.lightbox { position: fixed; inset: 0; background: rgba(7,30,33,.92); z-index: 200; display: none; place-items: center; padding: 30px; }
.lightbox.show { display: grid; }
.lightbox img { max-width: 90vw; max-height: 86vh; border-radius: 14px; box-shadow: var(--shadow-lg); }
.lightbox .close { position: absolute; top: 26px; right: 30px; color: #fff; font-size: 2.4rem; cursor: pointer; line-height: 1; }

/* ===========================================================
   FAQ
   =========================================================== */
.faq { background: linear-gradient(180deg, var(--teal-900), #073238); color: #fff; }
.faq .section-head h2 { color: #fff; }
.faq .section-head h2 span { color: var(--gold-500); }
.faq .section-head p { color: #a9d6da; }
.faq-list { max-width: 820px; margin: 0 auto; display: grid; gap: 14px; }
.faq-item { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius); overflow: hidden; transition: background .3s; }
.faq-item.open { background: rgba(255,255,255,.09); }
.faq-q { width: 100%; text-align: left; background: none; border: none; color: #fff; cursor: pointer;
  font: 600 1.08rem 'Poppins'; padding: 22px 26px; display: flex; justify-content: space-between; align-items: center; gap: 18px; }
.faq-q i { flex: none; font-size: 1.4rem; color: var(--gold-500); transition: transform .35s var(--ease); }
.faq-item.open .faq-q i { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .45s var(--ease); }
.faq-a-inner { padding: 0 26px 24px; color: #c4e3e6; line-height: 1.7; }
.faq-a-inner ul { margin-top: 10px; display: grid; gap: 8px; }
.faq-a-inner li { display: flex; gap: 10px; }
.faq-a-inner li i { color: var(--gold-500); flex: none; margin-top: 4px; }

/* ===========================================================
   CONTACT
   =========================================================== */
.contact-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: 30px; align-items: stretch; }
.contact-cards { display: grid; gap: 16px; align-content: start; }
.c-card { display: flex; gap: 16px; align-items: flex-start; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow-sm); transition: transform .3s; }
.c-card:hover { transform: translateY(-4px); }
.c-card .ico { flex: none; width: 50px; height: 50px; border-radius: 14px; background: var(--teal-50); color: var(--teal-600); display: grid; place-items: center; font-size: 1.4rem; }
.c-card h4 { font-size: 1.05rem; margin-bottom: 4px; }
.c-card p, .c-card address { color: var(--slate); font-style: normal; font-size: .95rem; }
.addr-alias { color: var(--teal-700); font-size: .85rem; font-weight: 600; }
.phone-line { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.wa-badge { display: inline-flex; align-items: center; justify-content: center; width: 28px; height: 28px; border-radius: 8px; background: #25d366; color: #fff !important; font-size: 1rem; transition: transform .25s, box-shadow .25s; box-shadow: 0 4px 12px rgba(37,211,102,.35); }
.wa-badge:hover { transform: translateY(-2px); box-shadow: 0 7px 16px rgba(37,211,102,.45); }
.c-card a { color: var(--teal-700); }
.contact-form { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 38px; box-shadow: var(--shadow-sm); }
.contact-form h3 { font-size: 1.5rem; margin-bottom: 6px; }
.contact-form > p { color: var(--slate); margin-bottom: 24px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-weight: 600; font-size: .88rem; margin-bottom: 7px; color: var(--ink); }
.field input, .field textarea {
  width: 100%; padding: 13px 16px; border: 1.5px solid var(--line); border-radius: 12px;
  font: 400 .98rem 'Inter'; color: var(--ink); transition: border-color .25s, box-shadow .25s; background: var(--mist);
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--teal-500); box-shadow: 0 0 0 4px var(--teal-50); background: #fff; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
/* Honeypot anti-spam: fuera de pantalla, no display:none para que los bots lo rellenen */
.vc-hp { position: absolute !important; left: -9999px !important; top: -9999px !important; width: 1px; height: 1px; opacity: 0; pointer-events: none; }
/* Form status messages (used by php-email-form/validate.js) */
.php-email-form .loading,
.php-email-form .error-message,
.php-email-form .sent-message { display: none; margin-top: 16px; padding: 13px 16px; border-radius: 12px; font-size: .95rem; font-weight: 500; }
.php-email-form .loading.d-block,
.php-email-form .error-message.d-block,
.php-email-form .sent-message.d-block { display: block !important; }
.php-email-form .loading { background: var(--mist); color: var(--slate); text-align: center; }
.php-email-form .loading::before { content: ''; display: inline-block; width: 16px; height: 16px; margin-right: 8px; border: 3px solid var(--line); border-top-color: var(--teal-600); border-radius: 50%; vertical-align: -3px; animation: spin .8s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.php-email-form .error-message { background: #fdecec; color: #c0392b; border: 1px solid #f5c6c6; }
.php-email-form .sent-message { background: #e9f9ef; color: #1e8449; border: 1px solid #bfe6cd; text-align: center; }

.map-wrap { margin-top: 40px; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--line); }
.map-wrap iframe { width: 100%; height: 360px; border: 0; display: block; filter: grayscale(.2); }
.map-actions { display: flex; gap: 12px; padding: 16px; background: #fff; border-bottom: 1px solid var(--line); flex-wrap: wrap; }
.map-btn { display: inline-flex; align-items: center; gap: 8px; font: 600 .92rem 'Inter'; padding: 11px 20px; border-radius: 100px; transition: transform .3s var(--ease), box-shadow .3s; }
.map-btn i { font-size: 1.1rem; }
.map-btn.gmaps { background: var(--teal-600); color: #fff; box-shadow: 0 8px 20px rgba(16,163,177,.3); }
.map-btn.waze { background: #33ccff; color: #06282c; box-shadow: 0 8px 20px rgba(51,204,255,.35); }
.map-btn:hover { transform: translateY(-3px); }
@media (max-width: 520px) { .map-btn { flex: 1; justify-content: center; } }
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } .field-row { grid-template-columns: 1fr; } }

/* ===========================================================
   FOOTER
   =========================================================== */
.footer { background: #06282c; color: #9fc4c8; padding: 70px 0 30px; }
.footer .top { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 40px; padding-bottom: 44px; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer-logo { height: 60px; width: auto; margin-bottom: 18px; }
.footer .brand-col p { max-width: 320px; font-size: .95rem; }
.footer h5 { color: #fff; font: 700 1.05rem 'Poppins'; margin-bottom: 18px; }
.footer ul { display: grid; gap: 11px; }
.footer ul a { font-size: .95rem; transition: color .2s; }
.footer ul a:hover { color: var(--gold-500); }
.footer .socials { display: flex; gap: 12px; margin-top: 18px; }
.footer .socials a { width: 40px; height: 40px; border-radius: 11px; background: rgba(255,255,255,.08); display: grid; place-items: center; color: #fff; font-size: 1.1rem; transition: .25s; }
.footer .socials a:hover { background: var(--teal-600); transform: translateY(-3px); }
.footer .bottom { padding-top: 26px; text-align: center; font-size: .9rem; }
.footer .bottom strong { color: #fff; }
@media (max-width: 760px) { .footer .top { grid-template-columns: 1fr; gap: 32px; } }

/* ===========================================================
   FLOAT WHATSAPP + BACK TO TOP
   =========================================================== */
.wa-float { position: fixed; right: 22px; bottom: 22px; z-index: 90; width: 58px; height: 58px; border-radius: 50%;
  background: #25d366; color: #fff; display: grid; place-items: center; font-size: 1.8rem; box-shadow: 0 12px 30px rgba(37,211,102,.45); transition: transform .3s; }
.wa-float:hover { transform: scale(1.1); }
.wa-float::after { content: ''; position: absolute; inset: 0; border-radius: 50%; border: 2px solid #25d366; animation: pulse 2s infinite; }
@keyframes pulse { 0% { transform: scale(1); opacity: .8; } 100% { transform: scale(1.6); opacity: 0; } }
.to-top { position: fixed; right: 24px; bottom: 92px; z-index: 89; width: 46px; height: 46px; border-radius: 12px;
  background: var(--teal-600); color: #fff; display: grid; place-items: center; font-size: 1.4rem; cursor: pointer;
  opacity: 0; visibility: hidden; transform: translateY(12px); transition: .35s; border: none; }
.to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }

/* ===========================================================
   SCROLL REVEAL
   =========================================================== */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
[data-delay="1"] { transition-delay: .08s; }
[data-delay="2"] { transition-delay: .16s; }
[data-delay="3"] { transition-delay: .24s; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } .hero-slide { transition: opacity .5s; } }
