/* =====================================================================
   Integral Cleaning Mallorca — styles.css
   Design system (UI/UX Pro Max): "Mediterranean Luxury"
   Palette: Navy #0B2545 · Gold #C9A24B · Off-white #FBFAF7
   Type: Playfair Display (headings) + Inter (body)
   ===================================================================== */

/* -------------------- Tokens -------------------- */
:root {
  --navy-900: #071A33;
  --navy-800: #0B2545;
  --navy-700: #13315C;
  --navy-600: #1C3D6E;
  --gold-500: #C9A24B;
  --gold-400: #D8B86A;
  --gold-300: #E6CE96;
  --paper:    #FBFAF7;
  --paper-2:  #F3F0E9;
  --white:    #FFFFFF;
  --ink:      #0B1B33;
  --muted:    #5A6577;
  --muted-light: rgba(255,255,255,0.78);
  --line:     #E7E2D7;
  --line-dark: rgba(255,255,255,0.14);

  --wa: #25D366;
  --wa-dark: #1da851;

  --container: 1180px;
  --radius: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 4px 16px rgba(11,37,69,0.07);
  --shadow-md: 0 14px 40px rgba(11,37,69,0.12);
  --shadow-gold: 0 10px 30px rgba(201,162,75,0.35);

  --ff-head: 'Playfair Display', Georgia, serif;
  --ff-body: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;

  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

/* -------------------- Reset -------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--ff-body);
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

::selection { background: var(--gold-300); color: var(--navy-900); }

:focus-visible {
  outline: 3px solid var(--gold-400);
  outline-offset: 3px;
  border-radius: 4px;
}

/* -------------------- Layout helpers -------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 24px;
}

.section { padding: clamp(64px, 9vw, 120px) 0; }

.section--navy {
  background: linear-gradient(160deg, var(--navy-800), var(--navy-900));
  color: var(--white);
}
.section--soft { background: var(--paper-2); }

.section__head {
  max-width: 720px;
  margin: 0 auto clamp(40px, 6vw, 64px);
  text-align: center;
}

.eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-500);
  margin-bottom: 14px;
}
.eyebrow--gold { color: var(--gold-400); }

.section__title {
  font-family: var(--ff-head);
  font-weight: 600;
  font-size: clamp(1.9rem, 4.2vw, 3rem);
  line-height: 1.12;
  color: var(--navy-800);
  letter-spacing: -0.01em;
}
.section__title--light { color: var(--white); }

.section__lead {
  margin-top: 18px;
  font-size: 1.06rem;
  color: var(--muted);
}
.section__lead--light { color: var(--muted-light); }

/* Decorative gold divider under section titles */
.section__head .section__title::after {
  content: "";
  display: block;
  width: 64px;
  height: 2px;
  margin: 22px auto 0;
  background: linear-gradient(90deg, transparent, var(--gold-500), transparent);
}

/* -------------------- Buttons -------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--ff-body);
  font-weight: 600;
  font-size: 0.98rem;
  letter-spacing: 0.01em;
  padding: 13px 26px;
  border-radius: 999px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: background-color .25s var(--ease), color .25s var(--ease),
              border-color .25s var(--ease), box-shadow .25s var(--ease);
  white-space: nowrap;
}
.btn--lg { padding: 16px 34px; font-size: 1.02rem; }
.btn--block { width: 100%; }

.btn--gold {
  background: var(--gold-500);
  color: var(--navy-900);
  box-shadow: var(--shadow-gold);
}
.btn--gold:hover { background: var(--gold-400); }

.btn--navy {
  background: var(--navy-800);
  color: var(--white);
}
.btn--navy:hover { background: var(--navy-700); }

.btn--ghost {
  background: rgba(255,255,255,0.06);
  color: var(--white);
  border-color: rgba(255,255,255,0.55);
  backdrop-filter: blur(4px);
}
.btn--ghost:hover { background: rgba(255,255,255,0.16); border-color: var(--white); }

.icon-wa { flex-shrink: 0; }

/* -------------------- Navbar -------------------- */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  transition: background-color .3s var(--ease), box-shadow .3s var(--ease), padding .3s var(--ease);
  padding: 8px 0;
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  gap: 18px;
}
/* Keep brand, language switch and CTA at their natural width so they never
   steal space from the links and force them to wrap. */
.brand,
.lang-switch,
.nav__cta { flex-shrink: 0; }
.nav.is-scrolled {
  background: rgba(7,26,51,0.92);
  backdrop-filter: blur(12px);
  box-shadow: 0 6px 24px rgba(0,0,0,0.22);
}

.brand { display: inline-flex; align-items: center; gap: 12px; color: var(--white); }
.brand__mark { color: var(--gold-500); display: inline-flex; }
.brand__text { display: flex; flex-direction: column; line-height: 1.05; }
.brand__name { font-family: var(--ff-head); font-size: 1.18rem; font-weight: 600; }
.brand__sub { font-size: 0.62rem; letter-spacing: 0.36em; color: var(--gold-400); font-weight: 600; }

.nav__links {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 24px;
}
.nav__links a {
  color: rgba(255,255,255,0.88);
  font-size: 0.92rem;
  font-weight: 500;
  white-space: nowrap;
  position: relative;
  padding: 4px 0;
  transition: color .2s var(--ease);
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: -2px;
  width: 0; height: 2px; background: var(--gold-500);
  transition: width .25s var(--ease);
}
.nav__links a:hover { color: var(--white); }
.nav__links a:hover::after { width: 100%; }

.nav__cta { padding: 10px 20px; font-size: 0.9rem; }

/* Language switch (ES · EN · DE) — discreet, inherits the light navbar palette */
.lang-switch { display: inline-flex; align-items: center; gap: 5px; }
.lang-switch__btn {
  background: none;
  border: 0;
  cursor: pointer;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.62);
  padding: 4px 2px;
  transition: color .2s var(--ease);
}
.lang-switch__btn:hover { color: rgba(255,255,255,0.95); }
.lang-switch__btn.is-active { color: var(--gold-400); }
.lang-switch__sep { color: rgba(255,255,255,0.3); font-size: 0.7rem; user-select: none; }

/* Tight desktop range (above the mobile breakpoint): keep everything on one
   clean line by trimming spacing and the CTA before the menu collapses. */
@media (max-width: 1040px) and (min-width: 761px) {
  .nav__inner { gap: 14px; }
  .nav__links { gap: 16px; }
  .nav__links a { font-size: 0.86rem; }
  .nav__cta { padding: 9px 14px; }
  .nav__cta .icon-wa { display: none; }
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 8px;
}
.nav__toggle span {
  width: 26px; height: 2px; background: var(--white); border-radius: 2px;
  transition: transform .3s var(--ease), opacity .2s var(--ease);
}
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none; /* hidden by default; shown only on mobile when toggled */
  flex-direction: column;
  gap: 6px;
  padding: 14px 24px 22px;
  background: rgba(7,26,51,0.98);
  backdrop-filter: blur(12px);
}
/* Respect the [hidden] attribute toggled by JS, but only render on small screens */
.mobile-menu[hidden] { display: none; }
.mobile-menu a {
  color: rgba(255,255,255,0.9);
  font-weight: 500;
  padding: 12px 4px;
  border-bottom: 1px solid var(--line-dark);
}
.mobile-menu a:last-child { border: 0; margin-top: 10px; justify-content: center; }
.mobile-menu .btn { color: var(--navy-900); }

/* -------------------- Hero -------------------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  color: var(--white);
  overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0;
  background: url('../assets/hero.jpg') center/cover no-repeat;
  transform: scale(1.05);
}
.hero__overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(7,26,51,0.55) 0%, rgba(7,26,51,0.38) 40%, rgba(7,26,51,0.85) 100%),
    linear-gradient(90deg, rgba(7,26,51,0.90) 0%, rgba(7,26,51,0.55) 50%, rgba(7,26,51,0.20) 100%);
}
.hero__content { position: relative; z-index: 2; max-width: 760px; padding-top: 90px; padding-bottom: 60px; }

.hero__eyebrow {
  font-size: 0.82rem; font-weight: 600; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--gold-400); margin-bottom: 20px;
}
.hero__title {
  font-family: var(--ff-head);
  font-weight: 600;
  font-size: clamp(2.6rem, 6.2vw, 4.7rem);
  line-height: 1.05;
  letter-spacing: -0.015em;
  text-shadow: 0 2px 30px rgba(0,0,0,0.35);
}
.hero__lead {
  margin-top: 24px;
  max-width: 600px;
  font-size: 1.14rem;
  color: rgba(255,255,255,0.9);
}
.hero__cta { margin-top: 36px; display: flex; flex-wrap: wrap; gap: 16px; }

.hero__stats {
  margin-top: 54px;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.18);
}
.hero__stats li { display: flex; flex-direction: column; }
.hero__stats strong {
  font-family: var(--ff-head);
  font-size: 2rem; font-weight: 600; color: var(--gold-400); line-height: 1;
}
.hero__stats span { font-size: 0.9rem; color: rgba(255,255,255,0.78); margin-top: 6px; }

.hero__scroll {
  position: absolute; left: 50%; bottom: 26px; transform: translateX(-50%);
  z-index: 2; color: rgba(255,255,255,0.75);
  animation: bob 2.4s var(--ease) infinite;
}
@keyframes bob { 0%,100% { transform: translate(-50%, 0); } 50% { transform: translate(-50%, 8px); } }

/* -------------------- Trust strip -------------------- */
.trust {
  background: var(--navy-900);
  color: var(--white);
  border-top: 1px solid rgba(255,255,255,0.06);
}
.trust__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px 48px;
  padding: 22px 24px;
}
.trust__item { display: flex; align-items: center; gap: 12px; font-size: 0.95rem; color: rgba(255,255,255,0.9); }
.trust__item svg { color: var(--gold-400); flex-shrink: 0; }

/* -------------------- Grids -------------------- */
.grid { display: grid; gap: 26px; }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }

/* -------------------- Service cards -------------------- */
.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px 28px;
  box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
  position: relative;
  overflow: hidden;
}
.card::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 3px;
  background: linear-gradient(90deg, var(--gold-500), var(--gold-300));
  transform: scaleX(0); transform-origin: left; transition: transform .35s var(--ease);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--gold-300); }
.card:hover::before { transform: scaleX(1); }

.card__icon {
  width: 60px; height: 60px;
  display: grid; place-items: center;
  border-radius: 14px;
  background: linear-gradient(150deg, rgba(201,162,75,0.16), rgba(201,162,75,0.06));
  color: var(--gold-500);
  margin-bottom: 22px;
}
.card__title {
  font-family: var(--ff-head); font-weight: 600; font-size: 1.4rem;
  color: var(--navy-800); margin-bottom: 10px;
}
.card__text { font-size: 0.98rem; color: var(--muted); }

/* Secondary services note under the main services grid */
.svc-extra { margin-top: 52px; text-align: center; }
.svc-extra .eyebrow { margin-bottom: 18px; }

/* -------------------- Features (why choose us) -------------------- */
.feature {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: transform .3s var(--ease), background-color .3s var(--ease), border-color .3s var(--ease);
}
.feature:hover { transform: translateY(-5px); background: rgba(255,255,255,0.07); border-color: rgba(201,162,75,0.4); }
.feature__icon {
  width: 54px; height: 54px;
  display: grid; place-items: center;
  border-radius: 13px;
  background: rgba(201,162,75,0.14);
  color: var(--gold-400);
  margin-bottom: 20px;
}
.feature__title {
  font-family: var(--ff-head); font-weight: 600; font-size: 1.28rem;
  color: var(--white); margin-bottom: 10px;
}
.feature__text { font-size: 0.97rem; color: var(--muted-light); }

/* -------------------- Coverage zones -------------------- */
.zones {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  max-width: 880px;
  margin: 0 auto;
}
.zone {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--white);
  border: 1px solid var(--line);
  font-weight: 500;
  font-size: 0.98rem;
  color: var(--navy-800);
  box-shadow: var(--shadow-sm);
  transition: transform .25s var(--ease), border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.zone svg { color: var(--gold-500); }
.zone:hover { transform: translateY(-3px); border-color: var(--gold-400); box-shadow: var(--shadow-md); }
.zone--more {
  background: var(--navy-800); color: var(--gold-300); border-color: var(--navy-800);
  font-style: italic;
}

/* -------------------- Testimonials -------------------- */
.quote {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 30px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
}
.quote::before {
  content: "\201C";
  position: absolute; top: 8px; right: 26px;
  font-family: var(--ff-head);
  font-size: 5rem; line-height: 1; color: var(--gold-300);
  opacity: 0.5;
}
.quote__stars { display: flex; gap: 3px; color: var(--gold-500); }
.quote__text { font-size: 1.04rem; color: var(--ink); font-style: italic; line-height: 1.6; }
.quote__author { display: flex; align-items: center; gap: 14px; margin-top: 4px; }
.quote__author strong { display: block; color: var(--navy-800); font-weight: 600; }
.quote__avatar {
  width: 46px; height: 46px; border-radius: 50%;
  display: grid; place-items: center; flex-shrink: 0;
  background: linear-gradient(150deg, var(--navy-700), var(--navy-800));
  color: var(--gold-300); font-weight: 600; font-size: 0.95rem;
}
.quote__role { font-size: 0.86rem; color: var(--muted); }

/* -------------------- Contact -------------------- */
.contact {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: start;
}
.contact__list { margin: 32px 0 28px; display: flex; flex-direction: column; gap: 18px; }
.contact__list li { display: flex; align-items: center; gap: 16px; }
.contact__ic {
  width: 46px; height: 46px; flex-shrink: 0;
  display: grid; place-items: center; border-radius: 12px;
  background: rgba(201,162,75,0.14); color: var(--gold-400);
}
.contact__label { display: block; font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold-400); margin-bottom: 2px; }
.contact__list a { color: var(--white); font-weight: 500; transition: color .2s var(--ease); }
.contact__list a:hover { color: var(--gold-300); }
.contact__plain { color: var(--white); font-weight: 500; }

.contact__form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 38px 34px;
  box-shadow: var(--shadow-md);
}
.contact__form-title {
  font-family: var(--ff-head); font-weight: 600; font-size: 1.5rem;
  color: var(--navy-800); margin-bottom: 22px;
}
.field { margin-bottom: 18px; }
.field label {
  display: block; font-size: 0.85rem; font-weight: 600;
  color: var(--navy-800); margin-bottom: 7px;
}
.field input, .field textarea {
  width: 100%;
  font-family: var(--ff-body); font-size: 1rem;
  padding: 13px 15px;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  background: var(--paper);
  color: var(--ink);
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease), background-color .2s var(--ease);
}
.field input::placeholder, .field textarea::placeholder { color: #9aa3b1; }
.field input:focus, .field textarea:focus {
  outline: none; border-color: var(--gold-500); background: var(--white);
  box-shadow: 0 0 0 4px rgba(201,162,75,0.16);
}
.field textarea { resize: vertical; min-height: 96px; }
.field input.invalid, .field textarea.invalid { border-color: #d9534f; box-shadow: 0 0 0 4px rgba(217,83,79,0.12); }

.form-note { margin-top: 14px; font-size: 0.92rem; font-weight: 500; }
.form-note.ok { color: var(--wa-dark); }
.form-note.err { color: #d9534f; }
.form-fine { margin-top: 16px; font-size: 0.84rem; color: var(--muted); text-align: center; }
.form-fine a { color: var(--navy-700); font-weight: 600; text-decoration: underline; text-decoration-color: var(--gold-300); }

/* -------------------- Legal pages -------------------- */
.legal__hero {
  background: linear-gradient(160deg, var(--navy-800), var(--navy-900));
  color: var(--white);
  padding: clamp(118px, 16vw, 168px) 0 clamp(46px, 7vw, 78px);
  text-align: center;
}
.legal__title {
  font-family: var(--ff-head); font-weight: 600;
  font-size: clamp(2rem, 5vw, 3.1rem); line-height: 1.14;
  letter-spacing: -0.01em; margin-top: 10px;
}
.legal__updated { margin-top: 16px; font-size: 0.9rem; color: var(--muted-light); }

.legal__content { max-width: 820px; }
.legal__content > * + * { margin-top: 18px; }
.legal__content h2 {
  font-family: var(--ff-head); font-weight: 600;
  font-size: clamp(1.4rem, 3vw, 1.9rem); color: var(--navy-800);
  margin-top: 48px; line-height: 1.2;
}
.legal__content h2:first-child { margin-top: 0; }
.legal__content h3 {
  font-weight: 700; font-size: 1.05rem;
  color: var(--navy-800); margin-top: 26px;
}
.legal__content p, .legal__content li { color: var(--ink); font-size: 1.02rem; }
.legal__content ul { padding-left: 0; margin-top: 12px; display: flex; flex-direction: column; gap: 10px; }
.legal__content ul li { position: relative; padding-left: 26px; }
.legal__content ul li::before {
  content: ""; position: absolute; left: 4px; top: 11px;
  width: 7px; height: 7px; border-radius: 50%; background: var(--gold-500);
}
.legal__content a {
  color: var(--navy-700); font-weight: 600;
  text-decoration: underline; text-decoration-color: var(--gold-300); text-underline-offset: 2px;
}
.legal__content a:hover { color: var(--gold-500); }
.legal__content strong { color: var(--navy-800); font-weight: 700; }

.legal__box {
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-left: 3px solid var(--gold-500);
  border-radius: var(--radius);
  padding: 22px 24px;
  margin-top: 24px;
}
.legal__box > * + * { margin-top: 10px; }

.legal-table { width: 100%; border-collapse: collapse; margin-top: 20px; font-size: 0.98rem; }
.legal-table th, .legal-table td { text-align: left; vertical-align: top; padding: 14px 16px; border-bottom: 1px solid var(--line); }
.legal-table th { width: 34%; color: var(--navy-800); font-weight: 700; background: var(--paper-2); }
.legal-table tr:last-child th, .legal-table tr:last-child td { border-bottom: 0; }

.legal__back { display: inline-flex; align-items: center; gap: 8px; margin-top: 48px; font-weight: 600; color: var(--navy-700); }
.legal__back:hover { color: var(--gold-500); }

@media (max-width: 560px) {
  .legal-table, .legal-table tbody, .legal-table tr, .legal-table th, .legal-table td { display: block; width: 100%; }
  .legal-table th { border-bottom: 0; }
  .legal-table td { padding-top: 0; }
}

/* Legal links row in the footer */
.footer__legal { display: flex; gap: 18px; flex-wrap: wrap; justify-content: center; }
.footer__legal a { color: rgba(255,255,255,0.55); transition: color .2s var(--ease); }
.footer__legal a:hover { color: var(--gold-300); }

/* -------------------- Footer -------------------- */
.footer { background: var(--navy-900); color: rgba(255,255,255,0.85); }
.footer__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr;
  gap: 40px;
  padding: 60px 24px 44px;
}
.footer__brand { display: flex; gap: 14px; align-items: flex-start; }
.footer__brand .brand__mark { color: var(--gold-500); }
.footer__name { font-family: var(--ff-head); font-size: 1.2rem; font-weight: 600; color: var(--white); }
.footer__tag { font-size: 0.92rem; color: rgba(255,255,255,0.65); margin-top: 4px; max-width: 280px; }
.footer__nav { display: flex; flex-direction: column; gap: 12px; }
.footer__nav a { color: rgba(255,255,255,0.78); font-size: 0.95rem; transition: color .2s var(--ease); width: fit-content; }
.footer__nav a:hover { color: var(--gold-300); }
.footer__contact { display: flex; flex-direction: column; gap: 10px; }
.footer__contact a, .footer__contact span { color: rgba(255,255,255,0.78); font-size: 0.95rem; transition: color .2s var(--ease); width: fit-content; }
.footer__contact a:hover { color: var(--gold-300); }
.footer__bottom { border-top: 1px solid rgba(255,255,255,0.1); }
.footer__bottom-inner {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px;
  padding: 22px 24px; font-size: 0.85rem; color: rgba(255,255,255,0.55);
}
.footer__credit {
  text-align: center;
  padding: 0 24px 14px;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.25);
}
.footer__credit a {
  color: rgba(255,255,255,0.25);
  transition: color .2s var(--ease);
}
.footer__credit a:hover { color: rgba(255,255,255,0.55); }

/* -------------------- Floating WhatsApp -------------------- */
.wa-float {
  position: fixed;
  right: 22px; bottom: 22px;
  z-index: 60;
  width: 60px; height: 60px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--wa);
  color: var(--white);
  box-shadow: 0 8px 24px rgba(37,211,102,0.45);
  transition: transform .25s var(--ease), background-color .25s var(--ease);
  animation: waPulse 2.6s ease-out infinite;
}
.wa-float:hover { transform: scale(1.08); background: var(--wa-dark); }
@keyframes waPulse {
  0% { box-shadow: 0 8px 24px rgba(37,211,102,0.45), 0 0 0 0 rgba(37,211,102,0.45); }
  70% { box-shadow: 0 8px 24px rgba(37,211,102,0.45), 0 0 0 16px rgba(37,211,102,0); }
  100% { box-shadow: 0 8px 24px rgba(37,211,102,0.45), 0 0 0 0 rgba(37,211,102,0); }
}

/* -------------------- Reveal animation -------------------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }

/* -------------------- About (Quiénes Somos) -------------------- */
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

/* Left-aligned gold divider (overrides the centered .section__head version) */
.about__heading::after {
  content: "";
  display: block;
  width: 64px;
  height: 2px;
  margin: 22px 0 0;
  background: linear-gradient(90deg, var(--gold-500), transparent);
}

.about__body {
  margin-top: 26px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.about__body p { font-size: 1.04rem; color: var(--muted); line-height: 1.78; }

.about__stats {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 28px 48px;
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.about__stat { display: flex; flex-direction: column; }
.about__stat strong {
  font-family: var(--ff-head);
  font-size: 2rem;
  font-weight: 600;
  color: var(--navy-800);
  line-height: 1;
}
.about__stat span { font-size: 0.88rem; color: var(--muted); margin-top: 6px; }

.about__stat--place {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 999px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  font-size: 0.94rem;
  font-weight: 500;
  color: var(--navy-800);
}
.about__stat--place svg { color: var(--gold-500); flex-shrink: 0; }

/* Right decorative visual panel */
.about__visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: linear-gradient(155deg, var(--navy-700) 0%, var(--navy-900) 72%);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 24px;
  padding: 36px 36px 32px;
}
.about__visual-decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 20% 85%, rgba(201,162,75,0.2) 0%, transparent 52%),
    radial-gradient(ellipse at 78% 12%, rgba(28,61,110,0.55) 0%, transparent 48%);
}
.about__visual-decor::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    45deg,
    rgba(201,162,75,0.05) 0px,
    rgba(201,162,75,0.05) 1px,
    transparent 1px,
    transparent 30px
  );
}
.about__visual-decor::after {
  content: "\201C";
  position: absolute;
  top: 12px;
  left: 28px;
  font-family: var(--ff-head);
  font-size: 9rem;
  line-height: 1;
  color: rgba(201,162,75,0.18);
}
.about__ceo {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.about__ceo-photo {
  width: 100%;
  max-width: 200px;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.4), 0 0 0 3px rgba(201,162,75,0.28);
}
.about__ceo-name {
  font-family: var(--ff-head);
  font-size: 1.18rem;
  font-weight: 600;
  color: var(--white);
  text-align: center;
  line-height: 1.2;
}
.about__ceo-role {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-400);
  text-align: center;
}

.about__pull {
  position: relative;
  z-index: 1;
}
.about__pull p {
  font-family: var(--ff-head);
  font-size: clamp(1.12rem, 2vw, 1.42rem);
  font-style: italic;
  line-height: 1.5;
  color: rgba(255,255,255,0.92);
}
.about__visual-badge {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(201,162,75,0.14);
  border: 1px solid rgba(201,162,75,0.32);
  color: var(--gold-300);
  font-size: 0.87rem;
  font-weight: 500;
  width: fit-content;
}
.about__visual-badge svg { flex-shrink: 0; }

/* -------------------- Responsive -------------------- */
@media (max-width: 980px) {
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .contact { grid-template-columns: 1fr; gap: 40px; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .about { grid-template-columns: 1fr; gap: 48px; }
  .about__visual { aspect-ratio: 16 / 9; }
}

@media (max-width: 760px) {
  .nav__links, .nav__cta { display: none; }
  .nav__toggle { display: flex; }
  /* On small screens, reveal the menu when JS removes the [hidden] attribute */
  .mobile-menu:not([hidden]) { display: flex; }
  .grid--3 { grid-template-columns: 1fr; }
  .hero__stats { gap: 28px; }
  .hero__stats strong { font-size: 1.7rem; }
  .footer__inner { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom-inner { justify-content: flex-start; }
}

@media (max-width: 480px) {
  body { font-size: 16px; }
  .grid--4 { grid-template-columns: 1fr; }
  .hero__cta .btn { width: 100%; }
  .container { padding-inline: 18px; }
  .wa-float { width: 54px; height: 54px; right: 16px; bottom: 16px; }
}

/* -------------------- Reduced motion -------------------- */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero__bg { transform: none; }
}
