:root {
  --bg: #071113;
  --bg-soft: #0b1719;
  --panel: #0e1b1e;
  --panel-2: #122327;
  --ink: #f5fbfb;
  --muted: #afc0c2;
  --accent: #19c9da;
  --accent-2: #4be3ef;
  --line: rgba(75, 227, 239, .24);
  --line-soft: rgba(255,255,255,.09);
  --shadow: 0 28px 80px rgba(0, 0, 0, .42);
  --radius: 28px;
  --radius-sm: 18px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button { color: inherit; }
::selection { background: var(--accent); color: #031012; }

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  padding: .7rem 1rem;
  z-index: 9999;
  background: var(--accent);
  color: #041214;
  transform: translateY(-160%);
  border-radius: 10px;
  font-weight: 800;
}
.skip-link:focus { transform: translateY(0); }

.container { width: min(calc(100% - 40px), var(--container)); margin: 0 auto; }
.section-pad { padding: 110px 0; }
.section-dark { background: var(--bg); }

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  border-bottom: 1px solid transparent;
  transition: background .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.site-header.scrolled {
  background: rgba(5, 15, 17, .9);
  border-color: var(--line-soft);
  box-shadow: 0 10px 36px rgba(0,0,0,.24);
  backdrop-filter: blur(18px);
}
.nav-wrap { min-height: 92px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { flex: 0 0 auto; display: inline-flex; align-items: center; }
.brand img { width: 170px; height: auto; }
.main-nav { display: flex; align-items: center; gap: 28px; font-size: .92rem; }
.main-nav > a { color: #dbe8e9; position: relative; }
.main-nav > a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0; right: 100%; bottom: -8px;
  height: 1px;
  background: var(--accent);
  transition: right .25s ease;
}
.main-nav > a:hover::after { right: 0; }
.nav-cta { padding: 12px 17px; border: 1px solid var(--accent); border-radius: 999px; color: var(--accent) !important; font-weight: 700; }
.nav-cta:hover { background: var(--accent); color: #041214 !important; }
.menu-toggle { display: none; width: 46px; height: 46px; border-radius: 50%; border: 1px solid var(--line); background: transparent; cursor: pointer; padding: 0; }
.menu-toggle span { display: block; width: 20px; height: 2px; margin: 4px auto; background: var(--ink); transition: .25s ease; }

.hero {
  min-height: 100svh;
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: center;
  padding: 150px 0 80px;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 12%, rgba(25, 201, 218, .08), transparent 30%),
    linear-gradient(135deg, #061012 0%, #071416 48%, #041013 100%);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: linear-gradient(rgba(255,255,255,.02) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.02) 1px, transparent 1px);
  background-size: 70px 70px;
  mask-image: linear-gradient(to bottom, #000, transparent 85%);
}
.hero-glow { position: absolute; z-index: -1; border-radius: 50%; filter: blur(50px); pointer-events: none; }
.hero-glow-one { width: 300px; height: 300px; background: rgba(24, 198, 216, .10); top: 16%; left: -120px; }
.hero-glow-two { width: 350px; height: 350px; background: rgba(24, 198, 216, .08); right: -120px; bottom: 2%; }
.hero-grid { display: grid; grid-template-columns: 1.03fr .97fr; gap: 74px; align-items: center; }
.eyebrow { margin: 0 0 18px; color: var(--accent-2); text-transform: uppercase; letter-spacing: .15em; font-size: .78rem; font-weight: 800; display: flex; align-items: center; gap: 10px; }
.eyebrow span { width: 32px; height: 1px; background: var(--accent); }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { line-height: 1.08; font-family: Georgia, "Times New Roman", serif; font-weight: 500; }
h1 { margin-bottom: 24px; font-size: clamp(3.4rem, 6.5vw, 6.8rem); letter-spacing: -.045em; max-width: 820px; }
h1 em { display: block; color: var(--accent); font-style: normal; }
h2 { margin-bottom: 22px; font-size: clamp(2.5rem, 4.5vw, 4.6rem); letter-spacing: -.035em; }
h3 { font-size: 1.75rem; }
.hero-lead { color: #cfdddf; font-size: clamp(1.05rem, 1.6vw, 1.28rem); max-width: 620px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin: 34px 0; }
.btn { min-height: 52px; display: inline-flex; align-items: center; justify-content: center; gap: 10px; border-radius: 999px; padding: 0 22px; font-weight: 800; border: 1px solid transparent; transition: transform .25s ease, box-shadow .25s ease, background .25s ease, border-color .25s ease; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: linear-gradient(135deg, var(--accent), var(--accent-2)); color: #031012; box-shadow: 0 12px 34px rgba(25, 201, 218, .2); }
.btn-primary:hover { box-shadow: 0 18px 42px rgba(25, 201, 218, .3); }
.btn-ghost { border-color: var(--line-soft); background: rgba(255,255,255,.025); }
.btn-ghost:hover { border-color: var(--accent); }
.btn-large { min-height: 60px; padding-inline: 28px; }
.btn-icon { font-size: 1.15rem; }
.hero-facts { display: flex; flex-wrap: wrap; gap: 22px 34px; margin-top: 38px; }
.fact { display: flex; align-items: center; gap: 13px; }
.fact-icon { width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center; border: 1px solid var(--line); color: var(--accent); }
.fact small, .fact strong { display: block; }
.fact small { color: var(--muted); font-size: .76rem; text-transform: uppercase; letter-spacing: .1em; }
.fact strong { font-size: .95rem; }
.availability-note { margin: 22px 0 0; color: var(--muted); font-size: .93rem; }
.hero-visual { position: relative; }
.photo-frame { position: relative; border: 1px solid var(--line); background: #071113; box-shadow: var(--shadow), 0 0 60px rgba(25,201,218,.08); overflow: hidden; }
.hero-photo-frame { border-radius: 38px 38px 120px 38px; transform: rotate(.5deg); }
.hero-photo-frame img { width: 100%; aspect-ratio: 1 / .78; object-fit: cover; }
.image-sheen { position: absolute; inset: 0; background: linear-gradient(120deg, transparent 55%, rgba(255,255,255,.08)); pointer-events: none; }
.floating-card { position: absolute; min-width: 160px; padding: 14px 17px; border: 1px solid rgba(75,227,239,.34); border-radius: 16px; background: rgba(7,17,19,.88); backdrop-filter: blur(14px); box-shadow: 0 16px 44px rgba(0,0,0,.36); }
.floating-card span, .floating-card strong { display: block; }
.floating-card span { color: var(--muted); font-size: .72rem; text-transform: uppercase; letter-spacing: .11em; }
.floating-card strong { margin-top: 2px; color: var(--accent-2); }
.floating-card-top { top: 9%; left: -40px; }
.floating-card-bottom { right: -22px; bottom: 9%; }

.intro-section, .info-graphic, .hours-section, .cta-section { background: #f4f8f8; color: #102326; }
.intro-section .eyebrow, .info-graphic .eyebrow, .hours-section .eyebrow, .cta-section .eyebrow { color: #087b87; }
.intro-section .eyebrow span, .info-graphic .eyebrow span, .hours-section .eyebrow span, .cta-section .eyebrow span { background: #0b9dab; }
.split-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 90px; align-items: center; }
.intro-image { position: relative; max-width: 470px; }
.portrait-frame { border-color: rgba(8,157,171,.3); border-radius: 130px 26px 26px 26px; }
.portrait-frame img { width: 100%; aspect-ratio: .72; object-fit: cover; object-position: center 25%; }
.accent-line { position: absolute; width: 70%; height: 1px; background: linear-gradient(90deg, transparent, #0b9dab, transparent); bottom: -24px; right: -15%; }
.intro-copy > p:not(.eyebrow) { color: #52696c; font-size: 1.04rem; }
.big-copy { font-size: clamp(1.25rem, 2vw, 1.75rem) !important; color: #1f4044 !important; max-width: 700px; }
.mini-cards { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; margin-top: 36px; }
.mini-cards article { padding: 22px; border: 1px solid rgba(10,123,135,.18); border-radius: 18px; background: white; box-shadow: 0 16px 38px rgba(20,50,53,.06); }
.mini-cards span { color: #0b9dab; font-size: .73rem; letter-spacing: .12em; }
.mini-cards strong, .mini-cards small { display: block; }
.mini-cards strong { margin: 6px 0 2px; font-size: 1.05rem; }
.mini-cards small { color: #6d7e80; }

.services-section { position: relative; background: linear-gradient(180deg, #071113, #09181b); }
.section-heading { max-width: 760px; margin-bottom: 54px; }
.section-heading > p:last-child { color: var(--muted); max-width: 650px; }
.services-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.service-card { min-height: 330px; padding: 26px; border: 1px solid var(--line-soft); border-radius: 24px; background: linear-gradient(160deg, rgba(255,255,255,.035), rgba(255,255,255,.012)); display: flex; flex-direction: column; transition: transform .28s ease, border-color .28s ease, box-shadow .28s ease; overflow: hidden; position: relative; }
.service-card::after { content: ""; position: absolute; width: 140px; height: 140px; right: -70px; top: -70px; background: rgba(25,201,218,.08); border-radius: 50%; filter: blur(6px); }
.service-card:hover { transform: translateY(-8px); border-color: rgba(75,227,239,.5); box-shadow: 0 20px 46px rgba(0,0,0,.24), 0 0 40px rgba(25,201,218,.05); }
.service-number { color: var(--muted); font-size: .74rem; letter-spacing: .12em; }
.service-symbol { width: 54px; height: 54px; margin: 30px 0 26px; border-radius: 50%; border: 1px solid var(--line); display: grid; place-items: center; color: var(--accent); font-size: 1.35rem; }
.service-card h3 { margin: 0 0 28px; flex: 1; }
.service-card a { color: var(--accent-2); font-weight: 800; font-size: .86rem; display: flex; align-items: center; justify-content: space-between; gap: 12px; border-top: 1px solid var(--line-soft); padding-top: 18px; }

.info-graphic { background: linear-gradient(135deg, #eef5f5, #fbfdfd); }
.promo-grid { display: grid; grid-template-columns: .74fr 1.26fr; gap: 80px; align-items: center; }
.promo-copy p:not(.eyebrow) { color: #577073; margin-bottom: 30px; }
.promo-card { width: min(100%, 570px); justify-self: end; }

.home-service { background: #061012; }
.home-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 90px; align-items: center; }
.home-copy .big-copy { color: #d9e8e9 !important; }
.details-list { margin: 32px 0 38px; border-top: 1px solid var(--line-soft); }
.details-list div { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; padding: 18px 0; border-bottom: 1px solid var(--line-soft); }
.details-list span { color: var(--muted); }
.details-list strong { text-align: right; }
.home-image { max-width: 500px; margin-left: auto; position: relative; }
.tall-frame { border-radius: 26px 130px 26px 26px; }
.tall-frame img { width: 100%; aspect-ratio: .72; object-fit: cover; }
.home-badge { position: absolute; left: -45px; bottom: 42px; min-width: 170px; padding: 16px 18px; background: var(--accent); color: #041214; border-radius: 16px; box-shadow: 0 18px 45px rgba(0,0,0,.34); }
.home-badge span, .home-badge strong { display: block; }
.home-badge span { font-size: .72rem; text-transform: uppercase; letter-spacing: .1em; }

.hours-card { border: 1px solid rgba(11,157,171,.24); background: white; border-radius: 28px; padding: 42px; display: grid; grid-template-columns: .8fr 1.25fr .95fr; gap: 34px; align-items: center; box-shadow: 0 26px 70px rgba(11,56,60,.08); }
.hours-card h2 { font-size: clamp(2rem, 3.5vw, 3.6rem); margin-bottom: 0; }
.hours-time { display: flex; align-items: baseline; justify-content: center; gap: 8px; font-family: Georgia, "Times New Roman", serif; color: #0b6872; white-space: nowrap; }
.hours-time span { font-size: clamp(2.1rem, 4vw, 4.2rem); line-height: 1; }
.hours-time small { font-family: Inter, sans-serif; font-size: .75rem; text-transform: uppercase; letter-spacing: .1em; }
.hours-time b { font-weight: 400; color: #a4b6b8; }
.hours-action { padding-left: 30px; border-left: 1px solid rgba(11,157,171,.18); }
.hours-action p { color: #5d7376; font-size: .94rem; }
.text-link { color: #087b87; font-weight: 800; display: inline-flex; gap: 8px; align-items: center; }

.gallery-section { background: linear-gradient(180deg, #071113 0%, #0a171a 100%); }
.gallery-grid { display: grid; grid-template-columns: repeat(12, 1fr); grid-auto-rows: 160px; gap: 16px; }
.gallery-card { position: relative; padding: 0; border: 1px solid var(--line); border-radius: 22px; overflow: hidden; background: #081315; cursor: zoom-in; box-shadow: 0 14px 32px rgba(0,0,0,.18), 0 0 40px rgba(25,201,218,.035); }
.gallery-card::after { content: ""; position: absolute; inset: 0; box-shadow: inset 0 0 55px rgba(3,12,14,.12); pointer-events: none; }
.gallery-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s ease, filter .4s ease; }
.gallery-card:hover img { transform: scale(1.035); filter: brightness(1.06); }
.zoom-hint { position: absolute; right: 14px; bottom: 14px; z-index: 2; padding: 7px 10px; border-radius: 999px; background: rgba(5,15,17,.8); border: 1px solid rgba(75,227,239,.28); color: #dff9fb; font-size: .72rem; opacity: 0; transform: translateY(5px); transition: .25s ease; backdrop-filter: blur(10px); }
.gallery-card:hover .zoom-hint { opacity: 1; transform: translateY(0); }
.gallery-wide { grid-column: span 8; grid-row: span 3; }
.gallery-tall { grid-column: span 4; grid-row: span 5; }
.gallery-grid > .gallery-card:nth-child(3) { grid-column: span 4; grid-row: span 3; }
.gallery-grid > .gallery-card:nth-child(4) { grid-column: span 4; grid-row: span 4; }
.gallery-promo { grid-column: span 4; grid-row: span 4; }
.gallery-promo img, .promo-card img { object-fit: contain; background: #030708; }

.cta-card { padding: 48px; border-radius: 28px; background: linear-gradient(135deg, #0a3136, #07373d); color: white; display: flex; align-items: center; justify-content: space-between; gap: 48px; box-shadow: 0 26px 70px rgba(9,64,70,.18); position: relative; overflow: hidden; }
.cta-card::after { content: ""; position: absolute; width: 260px; height: 260px; border: 1px solid rgba(75,227,239,.14); border-radius: 50%; right: -80px; top: -120px; box-shadow: 0 0 0 38px rgba(75,227,239,.025), 0 0 0 76px rgba(75,227,239,.018); pointer-events: none; }
.cta-card > div { max-width: 730px; position: relative; z-index: 1; }
.cta-card h2 { font-size: clamp(2.2rem, 4vw, 4rem); }
.cta-card p:last-child { margin-bottom: 0; color: #c5dcde; }
.cta-card .btn { position: relative; z-index: 1; flex: 0 0 auto; }

.contact-section { background: #051013; }
.contact-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 80px; align-items: start; }
.contact-copy p:not(.eyebrow) { color: var(--muted); }
.contact-copy .big-copy { color: var(--ink) !important; }
.contact-cards { display: grid; gap: 14px; }
.contact-card { min-height: 100px; display: flex; align-items: center; gap: 18px; border: 1px solid var(--line-soft); border-radius: 20px; padding: 22px; background: rgba(255,255,255,.025); transition: border-color .25s ease, transform .25s ease; }
a.contact-card:hover { transform: translateX(5px); border-color: var(--line); }
.contact-icon { width: 48px; height: 48px; flex: 0 0 48px; display: grid; place-items: center; border-radius: 50%; border: 1px solid var(--line); color: var(--accent); }
.contact-card small, .contact-card strong { display: block; }
.contact-card small { color: var(--muted); text-transform: uppercase; letter-spacing: .1em; font-size: .7rem; }
.contact-card strong { margin-top: 3px; font-size: 1.04rem; }

.site-footer { background: #02090b; border-top: 1px solid var(--line-soft); padding: 52px 0; color: var(--muted); }
.footer-grid { display: grid; grid-template-columns: 1.2fr .7fr 1fr; gap: 50px; align-items: center; }
.footer-brand img { width: 150px; height: auto; margin-bottom: 12px; }
.footer-brand p { margin: 0; max-width: 380px; font-size: .88rem; }
.footer-links, .footer-contact { display: grid; gap: 9px; font-size: .86rem; }
.footer-links a:hover, .footer-contact a:hover { color: var(--accent); }

.whatsapp-float { position: fixed; right: 22px; bottom: 22px; z-index: 900; min-height: 52px; padding: 0 17px 0 12px; display: flex; align-items: center; gap: 9px; border-radius: 999px; background: var(--accent); color: #031012; font-size: .86rem; font-weight: 900; box-shadow: 0 16px 40px rgba(0,0,0,.35), 0 0 28px rgba(25,201,218,.18); transition: transform .25s ease; }
.whatsapp-float:hover { transform: translateY(-3px); }
.whatsapp-float span { width: 31px; height: 31px; border-radius: 50%; display: grid; place-items: center; background: rgba(3,16,18,.1); }

.lightbox { width: min(94vw, 980px); max-height: 92vh; padding: 0; border: 1px solid rgba(75,227,239,.35); border-radius: 22px; background: #03090a; box-shadow: 0 36px 100px rgba(0,0,0,.75); overflow: visible; }
.lightbox::backdrop { background: rgba(0,5,6,.86); backdrop-filter: blur(8px); }
.lightbox img { width: 100%; max-height: 88vh; object-fit: contain; border-radius: 20px; }
.lightbox-close { position: absolute; right: -12px; top: -12px; width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--line); background: #071416; color: white; font-size: 1.5rem; line-height: 1; cursor: pointer; z-index: 2; }

/* Fail-safe: el contenido siempre es visible aunque JavaScript no cargue.
   Cuando JS funciona, la clase is-visible añade una animación decorativa sin ser necesaria para mostrar la página. */
.reveal { opacity: 1; transform: none; }
.reveal.is-visible { animation: reveal-in .7s ease both; }
@keyframes reveal-in {
  from { opacity: .01; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  .reveal { opacity: 1; transform: none; }
}

@media (max-width: 1050px) {
  .main-nav { gap: 18px; }
  .hero-grid { gap: 44px; }
  .services-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .service-card { min-height: 290px; }
  .hours-card { grid-template-columns: 1fr 1.2fr; }
  .hours-action { grid-column: 1 / -1; padding: 22px 0 0; border-left: 0; border-top: 1px solid rgba(11,157,171,.18); }
}

@media (max-width: 860px) {
  .section-pad { padding: 82px 0; }
  .nav-wrap { min-height: 78px; }
  .brand img { width: 142px; }
  .menu-toggle { display: block; }
  .main-nav { position: fixed; top: 78px; left: 18px; right: 18px; padding: 18px; border: 1px solid var(--line); background: rgba(5,15,17,.97); backdrop-filter: blur(18px); border-radius: 20px; flex-direction: column; align-items: stretch; gap: 0; opacity: 0; visibility: hidden; transform: translateY(-12px); transition: .25s ease; box-shadow: 0 28px 60px rgba(0,0,0,.42); }
  .main-nav.open { opacity: 1; visibility: visible; transform: translateY(0); }
  .main-nav > a { padding: 13px 8px; border-bottom: 1px solid var(--line-soft); }
  .main-nav > a::after { display: none; }
  .main-nav .nav-cta { margin-top: 12px; text-align: center; border-bottom: 1px solid var(--accent); }
  .menu-toggle.active span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .menu-toggle.active span:nth-child(2) { opacity: 0; }
  .menu-toggle.active span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

  .hero { min-height: auto; padding-top: 122px; }
  .hero-grid, .split-grid, .promo-grid, .home-grid, .contact-grid { grid-template-columns: 1fr; }
  .hero-copy { order: 1; }
  .hero-visual { order: 2; max-width: 680px; }
  .floating-card-top { left: 12px; }
  .floating-card-bottom { right: 12px; }
  .split-grid, .promo-grid, .home-grid, .contact-grid { gap: 50px; }
  .intro-image { max-width: 520px; }
  .promo-card { justify-self: start; }
  .home-image { margin: 0; }
  .gallery-grid { grid-auto-rows: 130px; }
  .gallery-wide { grid-column: span 12; grid-row: span 3; }
  .gallery-tall { grid-column: span 6; grid-row: span 5; }
  .gallery-grid > .gallery-card:nth-child(3) { grid-column: span 6; grid-row: span 3; }
  .gallery-grid > .gallery-card:nth-child(4) { grid-column: span 6; grid-row: span 4; }
  .gallery-promo { grid-column: span 6; grid-row: span 4; }
  .cta-card { align-items: flex-start; flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 620px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .section-pad { padding: 68px 0; }
  h1 { font-size: clamp(3rem, 15vw, 4.5rem); }
  h2 { font-size: clamp(2.35rem, 11vw, 3.4rem); }
  .hero { padding: 112px 0 65px; }
  .hero-grid { gap: 42px; }
  .hero-actions .btn { width: 100%; }
  .hero-facts { display: grid; gap: 14px; }
  .hero-photo-frame { border-radius: 26px 26px 70px 26px; }
  .floating-card { min-width: 138px; padding: 11px 13px; }
  .floating-card-top { top: 8px; left: 8px; }
  .floating-card-bottom { bottom: 8px; right: 8px; }
  .mini-cards, .services-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 250px; }
  .portrait-frame { border-radius: 80px 20px 20px 20px; }
  .home-badge { left: 12px; bottom: 18px; }
  .hours-card { grid-template-columns: 1fr; padding: 28px; }
  .hours-time { justify-content: flex-start; flex-wrap: wrap; }
  .hours-action { grid-column: auto; }
  .gallery-grid { display: grid; grid-template-columns: 1fr 1fr; grid-auto-rows: auto; }
  .gallery-card, .gallery-wide, .gallery-tall, .gallery-grid > .gallery-card:nth-child(3), .gallery-grid > .gallery-card:nth-child(4), .gallery-promo { grid-column: auto; grid-row: auto; min-height: 250px; }
  .gallery-wide, .gallery-promo { grid-column: 1 / -1; min-height: 290px; }
  .gallery-card img { min-height: 250px; }
  .gallery-promo img { min-height: 290px; }
  .cta-card { padding: 30px; }
  .cta-card .btn { width: 100%; }
  .contact-card { padding: 18px; }
  .footer-grid { grid-template-columns: 1fr; gap: 26px; }
  .footer-brand { grid-column: auto; }
  .whatsapp-float { right: 14px; bottom: 14px; }
  .whatsapp-float b { display: none; }
  .whatsapp-float { width: 54px; height: 54px; padding: 0; justify-content: center; }
  .whatsapp-float span { background: transparent; font-size: 1.25rem; }
}
