/* =============================================================
   1. Tokens
   ============================================================= */
:root {
  --bg:        #eef3f3;
  --bg-2:      #e2ece9;
  --paper:     #ffffff;
  --glass:     rgba(255, 255, 255, 0.55);
  --glass-2:   rgba(255, 255, 255, 0.3);
  --glass-border: rgba(255, 255, 255, 0.6);
  --ink:       #10202a;
  --ink-soft:  #2c3e42;
  --ink-mute:  #5c6f72;
  --accent:    #17a06b;
  --accent-2:  #0f7a51;
  --navy:      #142033;
  --mesh-1:    #bfe8dc;
  --mesh-2:    #cfe3f2;
  --mesh-3:    #eef8f1;
  --mesh-4:    #d7f0e6;
  --line:      rgba(16, 32, 42, 0.1);

  --sans:  "Manrope", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  --body:  "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;

  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
  --ease-soft:   cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);

  --nav-h: 104px;
  --steel: linear-gradient(90deg, transparent, #90a4ae, #cfd8dc, #90a4ae, transparent);
}

/* =============================================================
   2. Reset & base
   ============================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; }
html {
  -webkit-text-size-adjust: 100%;
  tab-size: 2;
  scroll-behavior: smooth;
  overflow-x: clip;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
body {
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-soft);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
  overscroll-behavior-y: none;
}
img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
button { font: inherit; color: inherit; cursor: pointer; border: 0; background: none; }
a { color: inherit; text-decoration: none; }
p { text-wrap: pretty; }
h1, h2, h3, h4 { text-wrap: balance; line-height: 1.05; letter-spacing: -0.02em; font-family: var(--sans); color: var(--ink); }
ul { list-style: none; padding: 0; }
::selection { background: var(--accent); color: #fff; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 4px; }

.skip-link {
  position: fixed; top: -100px; left: 1rem;
  padding: .6rem 1rem; background: var(--navy); color: #fff;
  z-index: 9999; border-radius: 8px; font-weight: 600;
  transition: top .3s var(--ease-out);
}
.skip-link:focus { top: 1rem; }

/* =============================================================
   3. Utilities
   ============================================================= */
.container { max-width: 1200px; margin-inline: auto; padding-inline: 1.25rem; }
.section { padding-block: 5rem; position: relative; }
@media (min-width: 960px) { .section { padding-block: 7.5rem; } }

.kicker {
  font-family: var(--sans);
  font-weight: 700;
  font-size: .8rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: .9rem;
}
.section-title {
  font-size: clamp(1.8rem, 4.4vw, 2.8rem);
  font-weight: 800;
  max-width: 22ch;
}
.section-sub {
  margin-top: 1rem;
  max-width: 58ch;
  color: var(--ink-mute);
  font-size: 1.05rem;
}

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

/* Glass card */
.glass-card {
  background: rgba(255,255,255,0.78);
  border: 1px solid var(--glass-border);
  border-radius: 22px;
  box-shadow: 0 20px 50px -25px rgba(16, 32, 42, 0.25);
}
@supports (backdrop-filter: blur(20px)) {
  .glass-card {
    background: var(--glass);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
  }
}

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .85rem 1.5rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: .95rem;
  font-family: var(--sans);
  white-space: nowrap;
  transition: transform .35s var(--ease-out), box-shadow .35s var(--ease-out), background .35s var(--ease-out);
}
.btn-lg { padding: 1.05rem 2rem; font-size: 1.02rem; }
.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 14px 30px -10px rgba(23, 160, 107, 0.55);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 18px 36px -10px rgba(23, 160, 107, 0.65); }
.btn-glass {
  background: rgba(255,255,255,0.6);
  color: var(--ink);
  border: 1px solid var(--glass-border);
}
@supports (backdrop-filter: blur(14px)) {
  .btn-glass { backdrop-filter: blur(14px) saturate(160%); -webkit-backdrop-filter: blur(14px) saturate(160%); }
}
.btn-glass:hover { transform: translateY(-2px); background: rgba(255,255,255,0.8); }
.icon-wa { width: 1.1em; height: 1.1em; fill: currentColor; flex-shrink: 0; }

/* =============================================================
   4. Nav
   ============================================================= */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding-block: 1.1rem;
  transition: padding .35s var(--ease-out), background .35s var(--ease-out), box-shadow .35s var(--ease-out);
}
.nav-inner {
  max-width: 1200px; margin-inline: auto; padding-inline: 1.25rem;
  display: flex; align-items: center; gap: 1.25rem;
  background: rgba(255,255,255,0.55);
  border: 1px solid var(--glass-border);
  border-radius: 999px;
  padding-block: .4rem .4rem;
  padding-inline: .7rem 1rem;
  box-shadow: 0 12px 34px -20px rgba(16,32,42,0.35);
  transition: background .35s var(--ease-out), box-shadow .35s var(--ease-out);
}
@supports (backdrop-filter: blur(18px)) {
  .nav-inner { backdrop-filter: blur(18px) saturate(180%); -webkit-backdrop-filter: blur(18px) saturate(180%); }
}
.nav.is-scrolled .nav-inner { background: rgba(255,255,255,0.82); box-shadow: 0 14px 34px -18px rgba(16,32,42,0.4); }

.nav-brand { display: flex; align-items: center; }

.logo-crop { display: block; overflow: hidden; }
.logo-crop img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; }

.logo-crop-nav { height: 46px; width: 165px; }
@media (min-width: 540px) { .logo-crop-nav { height: 58px; width: 210px; } }

.logo-crop-footer { height: 42px; width: 152px; margin-bottom: .9rem; }

.nav-links { display: none; align-items: center; gap: 1.8rem; margin-inline: auto; }
@media (min-width: 960px) { .nav-links { display: flex; } }
.nav-link {
  position: relative;
  font-weight: 600; font-size: .93rem; color: var(--ink-soft);
  padding-block: .3rem;
}
.nav-link::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: -2px; height: 2px;
  background: var(--accent);
  transition: right .35s var(--ease-out);
}
.nav-link:hover::after { right: 0; }

.btn-nav { flex-shrink: 0; padding: .65rem 1.15rem; font-size: .88rem; }
.btn-nav span { display: none; }
@media (min-width: 540px) { .btn-nav span { display: inline; } }

.nav-toggle {
  display: flex; flex-direction: column; justify-content: center; gap: 5px;
  width: 34px; height: 34px; flex-shrink: 0;
}
@media (min-width: 960px) { .nav-toggle { display: none; } }
.nav-toggle span { display: block; width: 100%; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .3s var(--ease-out), opacity .3s var(--ease-out); }
.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); }

.nav-mobile {
  display: none;
  position: fixed; top: calc(var(--nav-h) + 8px); left: 1.25rem; right: 1.25rem; z-index: 99;
  background: rgba(255,255,255,0.92);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 1rem;
  box-shadow: 0 20px 40px -20px rgba(16,32,42,0.4);
}
@supports (backdrop-filter: blur(20px)) {
  .nav-mobile { backdrop-filter: blur(20px) saturate(180%); }
}
.nav.is-open .nav-mobile { display: flex; flex-direction: column; gap: .2rem; }
.nav-mobile a { padding: .8rem .5rem; font-weight: 600; border-radius: 10px; }
.nav-mobile a:hover { background: rgba(23,160,107,0.08); }

/* =============================================================
   5. Hero
   ============================================================= */
.hero {
  position: relative;
  padding-top: calc(var(--nav-h) + 3rem);
  padding-bottom: 4rem;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: clip;
}
.hero-mesh {
  position: absolute; inset: -10% -10% -10% -10%; z-index: -1;
  background:
    radial-gradient(at 18% 22%, var(--mesh-1) 0%, transparent 52%),
    radial-gradient(at 82% 18%, var(--mesh-2) 0%, transparent 55%),
    radial-gradient(at 50% 92%, var(--mesh-4) 0%, transparent 55%),
    var(--bg);
  filter: blur(60px) saturate(140%);
  animation: meshDrift 34s ease-in-out infinite;
}
@keyframes meshDrift {
  0%, 100% { transform: scale(1) rotate(0deg); }
  50%      { transform: scale(1.18) rotate(6deg); }
}

.hero-inner {
  max-width: 1200px; margin-inline: auto; padding-inline: 1.25rem;
  display: grid; gap: 3rem;
  align-items: center;
}
@media (min-width: 960px) { .hero-inner { grid-template-columns: 1.05fr .95fr; gap: 2rem; } }

.hero-title {
  font-size: clamp(2.2rem, 6vw, 3.6rem);
  font-weight: 800;
  max-width: 15ch;
  margin-top: .4rem;
}
.hero-sub { margin-top: 1.2rem; font-size: 1.1rem; max-width: 46ch; color: var(--ink-mute); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2rem; }
.hero-badges { display: flex; flex-wrap: wrap; gap: .6rem 1.4rem; margin-top: 2.2rem; }
.hero-badges li {
  font-size: .85rem; font-weight: 600; color: var(--ink-soft);
  display: flex; align-items: center; gap: .5rem;
}
.hero-badges li::before {
  content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--accent); flex-shrink: 0;
}

.hero-figure { position: relative; }
.hero-img {
  width: 100%; aspect-ratio: 4 / 5; object-fit: cover;
  border-radius: 28px;
  box-shadow: 0 50px 80px -30px rgba(16, 32, 42, 0.4);
  border: 6px solid rgba(255,255,255,0.6);
}
.hero-figure-glow {
  position: absolute; inset: 6% -8% -8% 6%; z-index: -1;
  background: radial-gradient(circle, var(--mesh-2) 0%, transparent 70%);
  filter: blur(50px);
  opacity: .8;
}

/* =============================================================
   6. Services grid
   ============================================================= */
.grid-services {
  margin-top: 3rem;
  display: grid; gap: 1.8rem;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}
.service-card {
  padding: 1.5rem;
  transition: transform .5s var(--ease-out), box-shadow .5s var(--ease-out);
  will-change: transform;
}
.service-img { border-radius: 16px; overflow: clip; aspect-ratio: 5 / 4; margin-bottom: 1.2rem; }
.service-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease-out); }
.service-card:hover .service-img img { transform: scale(1.07); }
.service-card h3 { font-size: 1.1rem; margin-bottom: .4rem; }
.service-card p { font-size: .92rem; color: var(--ink-mute); }

/* =============================================================
   7. Vitrales gallery
   ============================================================= */
.section-vitrales { background: linear-gradient(180deg, transparent, var(--bg-2) 40%, transparent); }
.gallery {
  margin-top: 3rem;
  display: grid; gap: 1rem;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 720px) { .gallery { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1280px) { .gallery { grid-template-columns: repeat(5, 1fr); } }
.gallery-item {
  position: relative; border-radius: 18px; overflow: clip;
  aspect-ratio: 1 / 1;
  box-shadow: 0 16px 34px -20px rgba(16,32,42,0.35);
  will-change: transform;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease-out); }
.gallery-item:hover img { transform: scale(1.1); }
.gallery-item::after {
  content: "＋"; position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; color: #fff;
  background: rgba(16,32,42,0);
  transition: background .35s var(--ease-out), opacity .35s var(--ease-out);
  opacity: 0;
}
.gallery-item:hover::after { background: rgba(16,32,42,0.35); opacity: 1; }

/* =============================================================
   8. Nosotros
   ============================================================= */
.nosotros-grid { display: grid; gap: 3rem; align-items: center; }
@media (min-width: 960px) { .nosotros-grid { grid-template-columns: .85fr 1.15fr; } }
.nosotros-figure img {
  border-radius: 24px;
  aspect-ratio: 4 / 5; object-fit: cover;
  box-shadow: 0 40px 70px -30px rgba(16,32,42,0.4);
}

.vision-mission { margin-top: 2.2rem; display: grid; gap: 1rem; }
@media (min-width: 540px) { .vision-mission { grid-template-columns: repeat(2, 1fr); } }
.vm-card { padding: 1.5rem; border-left: 3px solid var(--accent); }
.vm-label {
  display: block; font-family: var(--sans); font-weight: 800; font-size: .78rem;
  letter-spacing: .08em; text-transform: uppercase; color: var(--accent-2);
  margin-bottom: .6rem;
}
.vm-card p { font-size: .92rem; color: var(--ink-soft); line-height: 1.55; }

/* =============================================================
   9. CTA final
   ============================================================= */
.cta-final { text-align: center; overflow: clip; }
.cta-mesh { animation-duration: 40s; }
.cta-final-inner { max-width: 720px; margin-inline: auto; display: flex; flex-direction: column; align-items: center; }
.cta-final .section-sub { margin-inline: auto; }
.cta-final .btn { margin-top: 2.2rem; }
.cta-area { margin-top: 1.2rem; font-size: .88rem; color: var(--ink-mute); }

/* =============================================================
   10. Footer
   ============================================================= */
.footer { padding-block: 3.5rem 2rem; border-top: 1px solid var(--line); }
.footer-inner {
  display: grid; gap: 2rem;
  grid-template-columns: 1fr;
}
@media (min-width: 720px) { .footer-inner { grid-template-columns: 1.2fr 1fr 1fr; align-items: start; } }
.footer-brand p { font-size: .88rem; color: var(--ink-mute); max-width: 32ch; }
.footer-links { display: flex; flex-direction: column; gap: .6rem; }
.footer-links a { font-size: .92rem; font-weight: 600; color: var(--ink-soft); }
.footer-links a:hover { color: var(--accent-2); }
.footer-contact a { font-weight: 700; color: var(--accent-2); }
.footer-copy { text-align: center; margin-top: 2.5rem; font-size: .8rem; color: var(--ink-mute); }

/* =============================================================
   11. WhatsApp bubble
   ============================================================= */
.wa-bubble {
  position: fixed; right: 1.25rem; bottom: 1.25rem; z-index: 90;
  width: 58px; height: 58px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--accent);
  color: #fff;
  box-shadow: 0 16px 34px -12px rgba(23, 160, 107, 0.65);
  animation: waPulse 2.6s ease-in-out infinite;
  transition: transform .3s var(--ease-out);
}
.wa-bubble .icon-wa { width: 28px; height: 28px; }
.wa-bubble:hover { transform: scale(1.08); }
@keyframes waPulse {
  0%, 100% { box-shadow: 0 16px 34px -12px rgba(23,160,107,0.65), 0 0 0 0 rgba(23,160,107,0.4); }
  50%      { box-shadow: 0 16px 34px -12px rgba(23,160,107,0.65), 0 0 0 12px rgba(23,160,107,0); }
}
@media (prefers-reduced-motion: reduce) {
  .wa-bubble { animation: none; }
}

/* =============================================================
   12. Lightbox
   ============================================================= */
.lightbox {
  position: fixed; top: 50%; left: 50%; margin: 0;
  transform: translate(-50%, -50%);
  border: 0; border-radius: 20px; padding: 0; width: min(92vw, 900px); max-width: min(92vw, 900px); max-height: 88vh;
  background: rgba(20, 32, 42, 0.96);
}
.lightbox::backdrop { background: rgba(10, 16, 20, 0.82); }
.lightbox[open] { display: flex; flex-direction: column; align-items: center; }
.lightbox img { max-height: 74vh; max-width: 100%; width: auto; margin-inline: auto; object-fit: contain; }
.lightbox-caption { color: #f2f6f5; text-align: center; padding: 1rem 1.5rem 1.4rem; font-size: .92rem; }
.lightbox-close {
  position: absolute; top: .8rem; right: .8rem;
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,0.14); color: #fff; font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
}
.lightbox-close:hover { background: rgba(255,255,255,0.25); }

/* =============================================================
   13. Responsive base tweaks
   ============================================================= */
@media (max-width: 539px) {
  .nav-inner { padding-inline: .5rem .7rem; }
  .hero { padding-top: calc(var(--nav-h) + 1.5rem); }
}

/* =============================================================
   14. Premium enhancements
   ============================================================= */
.kicker { position: relative; padding-left: 1.6rem; }
.kicker::before {
  content: ""; position: absolute; left: 0; top: 50%; transform: translateY(-50%);
  width: 1.1rem; height: 2px; background: var(--steel);
  background-color: var(--accent);
}

.hero-grain {
  position: absolute; inset: 0; z-index: -1; opacity: .05; mix-blend-mode: overlay; pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='120' height='120'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

.hero-title { font-size: clamp(2.4rem, 6.4vw, 3.9rem); }

.hero-tag {
  position: absolute; left: -1.4rem; bottom: 1.6rem;
  display: flex; align-items: center; gap: .7rem;
  padding: .8rem 1.2rem .8rem .9rem;
  border-radius: 16px;
  max-width: 230px;
}
.hero-tag-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--accent); flex-shrink: 0; box-shadow: 0 0 0 4px rgba(23,160,107,0.18); }
.hero-tag strong { display: block; font-size: .88rem; font-weight: 800; color: var(--ink); }
.hero-tag span { display: block; font-size: .76rem; color: var(--ink-mute); }
@media (max-width: 720px) { .hero-tag { left: .8rem; bottom: -1.2rem; } }

.btn-primary {
  background: linear-gradient(155deg, #1cb279, var(--accent) 55%, var(--accent-2));
}

/* Service card numbering */
.service-img { position: relative; }
.service-num {
  position: absolute; top: .7rem; right: .7rem;
  font-family: var(--sans); font-weight: 800; font-size: .72rem; letter-spacing: .04em;
  color: #fff; background: rgba(16,32,42,0.55);
  padding: .3rem .55rem; border-radius: 999px;
}
@supports (backdrop-filter: blur(8px)) {
  .service-num { backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); }
}
.service-tags { display: flex; flex-wrap: wrap; gap: .4rem; margin-top: .9rem; }
.service-tags li {
  font-size: .72rem; font-weight: 700; color: var(--accent-2);
  background: rgba(23,160,107,0.1);
  border: 1px solid rgba(23,160,107,0.22);
  padding: .28rem .6rem; border-radius: 999px;
}

/* Gallery caption overlay */
.gallery-caption {
  position: absolute; inset: auto 0 0 0; z-index: 1;
  padding: 1.6rem .9rem .8rem;
  background: linear-gradient(180deg, transparent, rgba(10,16,20,0.82));
  color: #fff; font-size: .78rem; font-weight: 600;
  opacity: 0; transform: translateY(6px);
  transition: opacity .35s var(--ease-out), transform .35s var(--ease-out);
}
.gallery-item:hover .gallery-caption, .gallery-item:focus-visible .gallery-caption { opacity: 1; transform: none; }
.gallery-item::after { display: none; }

/* Local / map section */
.local-grid {
  margin-top: 4.5rem;
  display: grid; gap: 1.4rem;
}
@media (min-width: 960px) { .local-grid { grid-template-columns: .9fr 1.1fr; } }
.local-info { padding: 2rem; }
.local-info h3 { font-size: 1.4rem; margin-top: .3rem; margin-bottom: 1.4rem; }
.local-list { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 1.6rem; }
.local-list li { display: flex; align-items: flex-start; gap: .8rem; font-size: .92rem; color: var(--ink-soft); }
.local-list a { font-weight: 700; color: var(--accent-2); }
.icon-sm { width: 20px; height: 20px; fill: var(--accent-2); flex-shrink: 0; }
.local-social { display: flex; gap: .7rem; }
.local-social a {
  width: 40px; height: 40px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(23,160,107,0.1);
  transition: background .3s var(--ease-out), transform .3s var(--ease-out);
}
.local-social a:hover { background: var(--accent); transform: translateY(-2px); }
.local-social a:hover .icon-sm { fill: #fff; }
.local-social .icon-sm { width: 18px; height: 18px; }

.local-map {
  border-radius: 22px; overflow: clip; min-height: 320px;
  border: 1px solid var(--glass-border);
  box-shadow: 0 20px 50px -25px rgba(16, 32, 42, 0.3);
}
.local-map iframe { width: 100%; height: 100%; min-height: 320px; border: 0; filter: saturate(0.9); }

/* Footer contact refinements */
.footer-contact { display: flex; flex-direction: column; gap: .55rem; align-items: flex-start; }
.footer-contact a { font-weight: 700; font-size: .9rem; }
.footer-address { font-size: .85rem; color: var(--ink-mute); }
.footer-social { display: flex; gap: .6rem; margin-top: .3rem; }
.footer-social a {
  width: 34px; height: 34px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(23,160,107,0.1);
  transition: background .3s var(--ease-out);
}
.footer-social a:hover { background: var(--accent); }
.footer-social a:hover .icon-sm { fill: #fff; }
.footer-social .icon-sm { width: 16px; height: 16px; }

/* =============================================================
   15. Mobile refinements
   ============================================================= */
@media (max-width: 639px) {
  :root { --nav-h: 92px; }

  .container { padding-inline: 1.1rem; }
  .section { padding-block: 3.5rem; }

  /* Buttons: allow wrap + full width so long WhatsApp CTAs never overflow */
  .btn { white-space: normal; text-align: center; justify-content: center; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; }
  .cta-final .btn { width: 100%; max-width: 380px; }

  .hero { padding-top: calc(var(--nav-h) + 1.25rem); padding-bottom: 3rem; min-height: auto; }
  .hero-title { font-size: clamp(2rem, 8vw, 2.6rem); max-width: none; }
  .hero-sub { max-width: none; }
  .hero-img { aspect-ratio: 4 / 3; border-radius: 20px; border-width: 4px; }
  .hero-figure-glow { display: none; }

  .kicker { font-size: .72rem; }
  .section-title { max-width: none; }

  .service-card { padding: 1.1rem; }
  .local-info { padding: 1.4rem; }
  .local-map, .local-map iframe { min-height: 260px; }

  .gallery { gap: .6rem; }

  .wa-bubble { width: 52px; height: 52px; right: 1rem; bottom: 1rem; }
  .wa-bubble .icon-wa { width: 25px; height: 25px; }

  .logo-crop-nav { height: 38px; width: 138px; }
  .nav-inner { gap: .6rem; }
}

@media (max-width: 380px) {
  .logo-crop-nav { width: 122px; }
  .hero-badges { gap: .5rem 1rem; }
}
