/* ============================================================
   IMPREXA — hoja de estilos
   ============================================================ */

:root {
  /* Paleta "playa" — inspirada en tres tablas de surf: arena/crema,
     turquesa con centro color mantequilla, y rosa empolvado. */
  --teal: #46a59b;
  --teal-dark: #1d6259;
  --teal-ink: #123b36;
  --orange: #c97a90;
  --orange-dark: #a85d74;
  --forest: #1e3937;
  --forest-deep: #142623;
  --kraft: #f4eee1;
  --kraft-line: #e3d6be;
  --cream: #fbf8f1;
  --paper: #fffdf9;
  --ink: #23241f;
  --ink-soft: #524f47;
  --white: #ffffff;
  --radius-lg: 22px;
  --radius-md: 14px;
  --radius-sm: 8px;
  --shadow-soft: 0 18px 40px -22px rgba(20, 38, 35, 0.35);
  --shadow-tight: 0 8px 20px -12px rgba(20, 38, 35, 0.3);
  --maxw: 1220px;
  --font-display: "Fraunces", "Cardo", Georgia, serif;
  --font-body: "Inter", "Segoe UI", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html { overflow-x: hidden; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  width: 100%;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--forest-deep);
  line-height: 1.15;
  margin: 0 0 .5em;
  font-weight: 600;
}
h1 { font-size: clamp(2.1rem, 4.5vw, 3.4rem); }
h2 { font-size: clamp(1.7rem, 3.2vw, 2.4rem); }
h3 { font-size: 1.3rem; }
p { margin: 0 0 1em; color: var(--ink-soft); }
.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--teal-dark);
  background: rgba(47, 136, 128, .12);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.eyebrow::before { content: "\2022"; color: var(--orange); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .95rem;
  padding: 14px 26px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
}
.btn-primary { background: var(--orange); color: var(--white); box-shadow: var(--shadow-tight); }
.btn-primary:hover { background: var(--orange-dark); transform: translateY(-2px); }
.btn-outline { background: transparent; border-color: var(--forest); color: var(--forest); }
.btn-outline:hover { background: var(--forest); color: var(--white); }
.btn-ghost-light { background: transparent; border-color: rgba(255,255,255,.55); color: var(--white); }
.btn-ghost-light:hover { background: var(--white); color: var(--forest-deep); }
.btn-block { width: 100%; }

/* ---------- Top bar ---------- */
.topbar {
  background: var(--forest-deep);
  color: rgba(255,255,255,.85);
  font-size: .82rem;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding-top: 8px;
  padding-bottom: 8px;
  flex-wrap: wrap;
}
.topbar a { color: rgba(255,255,255,.85); }
.topbar a:hover { color: var(--orange); }
.topbar-links { display: flex; gap: 20px; flex-wrap: wrap; }
.topbar-links span, .topbar-links a { display: inline-flex; align-items: center; gap: 6px; }
.topbar svg { width: 14px; height: 14px; flex: none; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 90;
  background: rgba(251, 248, 241, .92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--kraft-line);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 12px;
  padding-bottom: 12px;
}
.brand { display: flex; align-items: center; gap: 10px; }
.brand img { height: 46px; width: auto; }
.main-nav { display: flex; align-items: center; gap: 4px; }
.main-nav > ul { display: flex; align-items: center; gap: 2px; }
.main-nav a.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 600;
  font-size: .95rem;
  color: var(--forest-deep);
}
.main-nav a.nav-link:hover { background: rgba(47,136,128,.12); color: var(--teal-dark); }
.has-dropdown { position: relative; }
.has-dropdown .caret { width: 9px; height: 9px; margin-top: -2px; }
.dropdown-panel {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 560px;
  background: var(--paper);
  border: 1px solid var(--kraft-line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  padding: 18px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px 18px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .18s ease, transform .18s ease, visibility .18s;
}
.has-dropdown:hover .dropdown-panel,
.has-dropdown:focus-within .dropdown-panel {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.dropdown-panel a {
  display: block;
  padding: 9px 10px;
  border-radius: var(--radius-sm);
  font-size: .88rem;
  font-weight: 600;
  color: var(--ink-soft);
  border-bottom: 1px dashed transparent;
}
.dropdown-panel a:hover { background: var(--kraft); color: var(--teal-ink); }
.header-cta { display: flex; align-items: center; gap: 10px; }
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--forest-deep);
  margin: 5px 0;
  border-radius: 2px;
  transition: transform .2s ease, opacity .2s ease;
}

/* ---------- Mobile nav ---------- */
@media (max-width: 980px) {
  .header-cta .btn-outline { display: none; }
  .nav-toggle { display: block; }
  .main-nav {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(88vw, 360px);
    height: 100vh;
    background: var(--paper);
    flex-direction: column;
    align-items: stretch;
    padding: 90px 22px 30px;
    transform: translateX(100%);
    transition: transform .28s ease;
    overflow-y: auto;
    box-shadow: -18px 0 40px rgba(20,38,35,.25);
    z-index: 210;
  }
  .main-nav.open { transform: translateX(0); }
  .main-nav > ul { flex-direction: column; align-items: stretch; gap: 4px; }
  .dropdown-panel {
    position: static;
    transform: none;
    min-width: 0;
    grid-template-columns: 1fr;
    box-shadow: none;
    border: none;
    display: none;
    opacity: 1; visibility: visible;
    padding: 6px 0 6px 14px;
  }
  .has-dropdown.open .dropdown-panel { display: grid; }
  /* La regla de escritorio de abajo centra el panel con translateX(-50%);
     sin esto, esa regla se filtra a móvil vía :focus-within al tocar el
     enlace y empuja el menú ~150px fuera de la pantalla. */
  .has-dropdown:hover .dropdown-panel,
  .has-dropdown:focus-within .dropdown-panel {
    transform: none;
  }
  .nav-scrim {
    position: fixed; inset: 0; background: rgba(20,38,35,.45);
    opacity: 0; visibility: hidden; transition: opacity .2s ease; z-index: 200;
  }
  .nav-scrim.show { opacity: 1; visibility: visible; }
}

/* En celular se oculta la barra superior (teléfono/correo/horario) para
   ganar espacio vertical; esa información ya está en el pie de página. */
@media (max-width: 640px) {
  .topbar { display: none; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 64px 0 90px;
  background: linear-gradient(180deg, var(--kraft) 0%, var(--cream) 100%);
  overflow: hidden;
}
.hero .container {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 48px;
  align-items: center;
}
.hero-copy p.lead { font-size: 1.12rem; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 24px; }
.hero-stats { display: flex; gap: 28px; margin-top: 38px; flex-wrap: wrap; }
.hero-stats div strong { display: block; font-family: var(--font-display); font-size: 1.9rem; color: var(--teal-dark); }
.hero-stats div span { font-size: .82rem; color: var(--ink-soft); }
.hero-media { position: relative; align-self: center; }
.hero-media img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  width: 100%;
  height: auto;
  display: block;
}
.hero-media .tag-float {
  position: absolute;
  bottom: -18px;
  left: -18px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  box-shadow: var(--shadow-tight);
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: .85rem;
  color: var(--forest-deep);
}
.hero-media .tag-float svg { width: 26px; height: 26px; flex: none; color: var(--teal); }
@media (max-width: 900px) {
  .hero .container { grid-template-columns: 1fr; }
  .hero-media { order: -1; }
}

/* ---------- Organic divider ---------- */
.leaf-divider { display: block; width: 100%; height: auto; }
.leaf-divider.flip { transform: scaleY(-1); }

/* ---------- Section ---------- */
section.block { padding: 76px 0; }
.block-kraft { background: var(--kraft); }
.block-forest { background: var(--forest-deep); color: rgba(255,255,255,.86); }
.block-forest h2, .block-forest h3 { color: var(--white); }
.block-forest p { color: rgba(255,255,255,.78); }
.section-head { max-width: 680px; margin: 0 0 42px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

/* ---------- Feature grid / value props ---------- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.feature-card {
  background: var(--paper);
  border: 1px solid var(--kraft-line);
  border-radius: var(--radius-md);
  padding: 26px 22px;
  border-top: 4px solid var(--teal);
}
.feature-card:nth-child(2n) { border-top-color: var(--orange); }
.feature-card svg { width: 34px; height: 34px; color: var(--teal-dark); margin-bottom: 14px; }
.feature-card h3 { font-size: 1.05rem; margin-bottom: 6px; }
.feature-card p { font-size: .92rem; margin: 0; }
@media (max-width: 980px) { .feature-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .feature-grid { grid-template-columns: 1fr; } }

/* ---------- Category / product cards ---------- */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.cat-card {
  background: var(--paper);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--kraft-line);
  box-shadow: var(--shadow-tight);
  transition: transform .2s ease, box-shadow .2s ease;
  display: flex;
  flex-direction: column;
}
.cat-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-soft); }
.cat-card .cat-img { aspect-ratio: 4/3; overflow: hidden; }
.cat-card .cat-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.cat-card:hover .cat-img img { transform: scale(1.06); }
.cat-card .cat-body { padding: 20px 22px 24px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.cat-card h3 { font-size: 1.08rem; margin: 0; }
.cat-card p { font-size: .88rem; margin: 0; flex: 1; }
.cat-card .cat-link { font-weight: 700; font-size: .85rem; color: var(--teal-dark); display: inline-flex; align-items: center; gap: 6px; }
.cat-card .cat-link svg { width: 14px; height: 14px; transition: transform .2s ease; }
.cat-card:hover .cat-link svg { transform: translateX(4px); }
@media (max-width: 980px) { .cat-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px) { .cat-grid { grid-template-columns: 1fr; } }

/* ---------- Split content (image + text alt sections) ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.split.reverse .split-media { order: 2; }
.split-media img { border-radius: var(--radius-lg); box-shadow: var(--shadow-soft); width: 100%; object-fit: cover; }
.split-list { margin: 20px 0 0; display: flex; flex-direction: column; gap: 12px; }
.split-list li { display: flex; gap: 10px; align-items: flex-start; font-size: .96rem; color: var(--ink-soft); }
.split-list svg { width: 20px; height: 20px; color: var(--teal-dark); flex: none; margin-top: 2px; }
@media (max-width: 900px) {
  .split { grid-template-columns: 1fr; gap: 30px; }
  .split.reverse .split-media { order: -1; }
}

/* ---------- Process / numbered steps ---------- */
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.process-step .num { font-family: var(--font-display); font-size: 2.6rem; color: var(--orange); line-height: 1; margin-bottom: 10px; }
.process-step h3 { font-size: 1.05rem; }
.process-step p { font-size: .9rem; }
@media (max-width: 900px) { .process-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .process-grid { grid-template-columns: 1fr; } }

/* ---------- Trust strip ---------- */
.trust-strip { display: flex; flex-wrap: wrap; gap: 14px 34px; justify-content: center; }
.trust-strip div { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: .92rem; }
.trust-strip svg { width: 22px; height: 22px; color: var(--orange); }

/* ---------- CTA banner ---------- */
.cta-banner {
  background: var(--forest-deep);
  border-radius: var(--radius-lg);
  padding: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.cta-banner h2 { color: var(--white); margin-bottom: 6px; }
.cta-banner p { color: rgba(255,255,255,.78); margin: 0; max-width: 480px; }
.cta-banner .actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ---------- Breadcrumb ---------- */
.breadcrumb {
  font-size: .82rem;
  color: var(--ink-soft);
  padding: 18px 0;
}
.breadcrumb a { color: var(--teal-dark); font-weight: 600; }
.breadcrumb span.sep { margin: 0 8px; opacity: .5; }

/* ---------- Page hero (category pages) ---------- */
.page-hero {
  background: var(--forest-deep);
  color: var(--white);
  padding: 46px 0 100px;
  position: relative;
}
.page-hero h1 { color: var(--white); max-width: 780px; }
.page-hero p.lead { color: rgba(255,255,255,.82); max-width: 640px; font-size: 1.05rem; }
.page-hero-media {
  margin-top: -70px;
  position: relative;
  z-index: 2;
}
.page-hero-media img {
  width: 100%;
  height: 420px;
  object-fit: contain;
  background: var(--paper);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  padding: 22px;
  box-sizing: border-box;
}
@media (max-width: 640px) {
  .page-hero-media img { height: 280px; padding: 14px; }
}

/* ---------- Spec table ---------- */
.spec-list { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 30px; margin: 22px 0; }
.spec-list div { padding: 12px 0; border-bottom: 1px solid var(--kraft-line); display: flex; justify-content: space-between; gap: 12px; font-size: .92rem; }
.spec-list dt { font-weight: 700; color: var(--forest-deep); }
.spec-list dd { margin: 0; color: var(--ink-soft); text-align: right; }
@media (max-width: 640px) { .spec-list { grid-template-columns: 1fr; } }

/* ---------- Carrusel de galería (home) ---------- */
.block-carousel { padding: 76px 0; overflow: hidden; }
.carousel-head {
  max-width: var(--maxw);
  margin: 0 auto 30px;
  padding: 0 24px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.carousel-head h2 { margin-bottom: 6px; }
.carousel-head p { margin: 0; max-width: 480px; }
.carousel-nav { display: flex; gap: 10px; flex: none; }
.car-btn {
  width: 46px; height: 46px; border-radius: 999px;
  border: 1.5px solid var(--kraft-line);
  background: var(--paper);
  color: var(--forest-deep);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background .15s ease, border-color .15s ease, transform .15s ease;
}
.car-btn svg { width: 18px; height: 18px; }
.car-btn:hover { background: var(--forest-deep); border-color: var(--forest-deep); color: #fff; transform: translateY(-2px); }
.carousel-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding: 4px 24px 20px;
  max-width: var(--maxw);
  margin: 0 auto;
  scrollbar-width: thin;
  scrollbar-color: var(--kraft-line) transparent;
}
.carousel-track::-webkit-scrollbar { height: 7px; }
.carousel-track::-webkit-scrollbar-track { background: transparent; }
.carousel-track::-webkit-scrollbar-thumb { background: var(--kraft-line); border-radius: 999px; }
.car-slide {
  flex: 0 0 auto;
  width: 260px;
  aspect-ratio: 3/4;
  scroll-snap-align: start;
  margin: 0;
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-tight);
  background: var(--paper);
  transition: transform .25s ease, box-shadow .25s ease;
}
.car-slide:hover { transform: translateY(-6px); box-shadow: var(--shadow-soft); }
.car-slide img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.car-slide:hover img { transform: scale(1.06); }
.car-slide figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 16px 14px 14px;
  font-size: .82rem; font-weight: 700; color: #fff;
  background: linear-gradient(0deg, rgba(20,38,35,.88), rgba(20,38,35,0));
}
@media (max-width: 640px) {
  .car-slide { width: 190px; }
  .carousel-head { padding: 0 20px; }
  .carousel-track { padding: 4px 20px 20px; }
}

/* ---------- Blog ---------- */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.blog-card {
  background: var(--paper); border: 1px solid var(--kraft-line); border-radius: var(--radius-lg);
  overflow: hidden; display: flex; flex-direction: column; box-shadow: var(--shadow-tight);
}
.blog-card .b-img { aspect-ratio: 16/10; overflow: hidden; }
.blog-card .b-img img { width: 100%; height: 100%; object-fit: cover; }
.blog-card .b-body { padding: 20px 22px 26px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.blog-card .b-tag { font-size: .74rem; font-weight: 800; letter-spacing: .07em; text-transform: uppercase; color: var(--orange-dark); }
.blog-card h3 { font-size: 1.12rem; }
.blog-card p { font-size: .9rem; }
@media (max-width: 980px) { .blog-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .blog-grid { grid-template-columns: 1fr; } }
article.post-body { max-width: 760px; margin: 0 auto; }
article.post-body h2 { margin-top: 1.6em; }
article.post-body ul { list-style: disc; padding-left: 1.3em; margin-bottom: 1em; }
article.post-body ul li { margin-bottom: .4em; color: var(--ink-soft); }
article.post-body figure { margin: 28px 0; }
article.post-body figure img { border-radius: var(--radius-md); }
article.post-body figcaption { font-size: .82rem; color: var(--ink-soft); text-align: center; margin-top: 8px; }

/* ---------- Form ---------- */
.form-card {
  background: var(--paper);
  border-radius: var(--radius-lg);
  border: 1px solid var(--kraft-line);
  box-shadow: var(--shadow-soft);
  padding: 38px;
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-grid .full { grid-column: 1 / -1; }
.field label { display: block; font-weight: 700; font-size: .85rem; margin-bottom: 7px; color: var(--forest-deep); }
.field .hint { font-size: .76rem; color: var(--ink-soft); font-weight: 400; margin-left: 6px; }
.field input[type=text],
.field input[type=tel],
.field input[type=email],
.field input[type=number],
.field select,
.field textarea {
  width: 100%;
  border: 1.5px solid var(--kraft-line);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  font-family: var(--font-body);
  font-size: .95rem;
  background: var(--cream);
  color: var(--ink);
  transition: border-color .15s ease, background .15s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--teal); background: var(--white);
}
.field textarea { min-height: 120px; resize: vertical; }
.file-drop {
  border: 2px dashed var(--kraft-line);
  border-radius: var(--radius-md);
  padding: 22px;
  text-align: center;
  background: var(--cream);
  cursor: pointer;
  transition: border-color .15s ease;
}
.file-drop:hover { border-color: var(--teal); }
.file-drop svg { width: 30px; height: 30px; color: var(--teal-dark); margin-bottom: 8px; }
.file-drop input { display: none; }
.file-drop .file-name { font-weight: 700; font-size: .85rem; margin-top: 8px; color: var(--forest-deep); }
.captcha-box {
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
  background: var(--kraft); border-radius: var(--radius-sm); padding: 14px 16px;
}
.captcha-box .q { font-family: var(--font-display); font-weight: 700; font-size: 1.2rem; color: var(--forest-deep); }
.captcha-box input { width: 100px !important; text-align: center; font-weight: 700; }
.hp-field { position: absolute; left: -9999px; top: -9999px; opacity: 0; }
.form-note { font-size: .78rem; color: var(--ink-soft); margin-top: 6px; }
.form-status { padding: 14px 16px; border-radius: var(--radius-sm); font-weight: 700; font-size: .9rem; margin-bottom: 18px; display: none; }
.form-status.ok { display: block; background: rgba(47,136,128,.14); color: var(--teal-ink); }
.form-status.err { display: block; background: rgba(230,90,60,.14); color: #9c2f1a; }
@media (max-width: 720px) { .form-grid { grid-template-columns: 1fr; } .form-card { padding: 26px; } }

/* ---------- Contact info + map ---------- */
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 40px; align-items: start; }
.contact-info-card {
  background: var(--forest-deep); color: #fff; border-radius: var(--radius-lg); padding: 32px;
}
.contact-info-card h3 { color: #fff; }
.contact-info-card .row { display: flex; gap: 12px; margin-bottom: 18px; align-items: flex-start; }
.contact-info-card .row svg { width: 22px; height: 22px; color: var(--orange); flex: none; margin-top: 2px; }
.contact-info-card .row a, .contact-info-card .row span { color: rgba(255,255,255,.88); font-size: .94rem; }
.map-embed { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-soft); border: 1px solid var(--kraft-line); }
.map-embed iframe { width: 100%; height: 100%; min-height: 340px; border: 0; display: block; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }

/* ---------- Footer ---------- */
.site-footer { background: var(--forest-deep); color: rgba(255,255,255,.75); padding: 64px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1.1fr; gap: 40px; padding-bottom: 40px; }
.footer-brand img { height: 44px; margin-bottom: 14px; }
.footer-brand p { color: rgba(255,255,255,.68); font-size: .9rem; }
.footer-col h4 { color: #fff; font-size: .92rem; letter-spacing: .04em; text-transform: uppercase; margin-bottom: 16px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { color: rgba(255,255,255,.72); font-size: .9rem; }
.footer-col a:hover { color: var(--orange); }
.footer-social { display: flex; gap: 10px; margin-top: 16px; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 999px; background: rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
}
.footer-social a:hover { background: var(--teal); }
.footer-social svg { width: 18px; height: 18px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12);
  padding: 20px 0 26px;
  display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap;
  font-size: .8rem; color: rgba(255,255,255,.55);
}
.footer-legal-links a { color: rgba(255,255,255,.7); }
.footer-legal-links a:hover { color: var(--orange); text-decoration: underline; }
.footer-legal-links .sep { margin: 0 8px; opacity: .5; }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }

/* ---------- WhatsApp float ---------- */
.wa-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 150;
  width: 60px;
  height: 60px;
  border-radius: 999px;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 26px -8px rgba(0,0,0,.4);
  animation: wa-pulse 2.6s ease-in-out infinite;
}
.wa-float svg { width: 30px; height: 30px; color: #fff; }
@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 12px 26px -8px rgba(0,0,0,.4), 0 0 0 0 rgba(37,211,102,.5); }
  50% { box-shadow: 0 12px 26px -8px rgba(0,0,0,.4), 0 0 0 10px rgba(37,211,102,0); }
}

/* ---------- Utilities ---------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.badge-noindex { display: none; }
.skip-link {
  position: absolute; left: -9999px; top: 0; background: var(--forest-deep); color: #fff;
  padding: 10px 16px; z-index: 999; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }
