@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700;800;900&family=Playfair+Display:wght@700;900&display=swap');

:root {
  --teal-900: #0d5960;
  --teal-800: #11727b;
  --teal-700: #168996;
  --teal-600: #1a9eae;
  --teal-100: #e4f6f7;
  --teal-050: #f1fbfb;
  --gray-900: #2f3739;
  --gray-700: #5f6769;
  --gray-500: #909598;
  --gray-150: #e8ecec;
  --paper: #ffffff;
  --warm: #fbf7ef;
  --gold: #f1c248;
  --shadow: 0 20px 55px rgba(13, 89, 96, 0.16);
  --shadow-strong: 0 28px 70px rgba(13, 89, 96, 0.26);
  --radius: 12px;
  --content: min(1120px, calc(100vw - 40px));
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--gray-900);
  background: var(--paper);
  font-family: 'Nunito', ui-sans-serif, system-ui, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

img, svg { display: block; }
img { max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s cubic-bezier(0.22,1,0.36,1), transform 0.7s cubic-bezier(0.22,1,0.36,1);
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── HEADER ── */
.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  width: 100%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 14px max(20px, calc((100vw - 1120px) / 2));
  color: var(--paper);
  transition: background 220ms ease, box-shadow 220ms ease, padding 220ms ease;
}

.site-header.is-scrolled {
  padding-block: 8px;
  color: var(--gray-900);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 12px 30px rgba(47, 55, 57, 0.1);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 92px;
  height: 92px;
  overflow: hidden;
  background: var(--paper);
  border: 2px solid rgba(22, 137, 150, 0.22);
  border-radius: 50%;
  transition: transform 300ms cubic-bezier(0.34,1.56,0.64,1), box-shadow 300ms ease;
}

.brand:hover {
  transform: scale(1.08) rotate(-3deg);
  box-shadow: 0 8px 28px rgba(22,137,150,0.28);
}

.brand img {
  width: 78px;
  height: 66px;
  object-fit: contain;
}

.nav-links {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 0.95rem;
  font-weight: 800;
}

.nav-links a {
  position: relative;
  padding-block: 8px;
  transition: color 200ms ease;
}

.nav-links a::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 2px;
  content: '';
  background: var(--teal-600);
  border-radius: 99px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 250ms cubic-bezier(0.34,1.56,0.64,1);
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after { transform: scaleX(1); }

/* ── BUTTONS ── */
.header-cta, .button, .floating-whatsapp, .dialog-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  cursor: pointer;
}

.header-cta {
  gap: 8px;
  min-height: 44px;
  padding: 0 18px;
  color: var(--paper);
  background: var(--teal-700);
  border: 1px solid rgba(255,255,255,0.32);
  border-radius: var(--radius);
  box-shadow: 0 8px 20px rgba(13,89,96,0.28), inset 0 1px 0 rgba(255,255,255,0.2);
  font-weight: 900;
  transition: transform 250ms cubic-bezier(0.34,1.56,0.64,1), box-shadow 250ms ease, background 200ms ease;
  position: relative;
  overflow: hidden;
}

.header-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.18), transparent);
  opacity: 0;
  transition: opacity 200ms ease;
}

.header-cta:hover::before { opacity: 1; }
.header-cta:hover, .header-cta:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(13,89,96,0.36), inset 0 1px 0 rgba(255,255,255,0.2);
  background: var(--teal-800);
}
.header-cta:active { transform: translateY(0); }

.header-cta svg, .floating-whatsapp svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

/* Ripple effect */
.ripple-container {
  position: relative;
  overflow: hidden;
}

.ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  transform: scale(0);
  animation: ripple-anim 0.6s linear;
  pointer-events: none;
}

@keyframes ripple-anim {
  to { transform: scale(4); opacity: 0; }
}

/* ── HERO ── */
.hero {
  position: relative;
  isolation: isolate;
  display: grid;
  align-items: end;
  min-height: 88svh;
  padding: 150px 0 82px;
  color: var(--paper);
  overflow: hidden;
}

.hero-media, .hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-media {
  background: url('assets/fachada-principal.jpeg') center 52% / cover no-repeat;
  transform: scale(1.06);
  animation: hero-zoom 18s ease-in-out infinite alternate;
}

@keyframes hero-zoom {
  from { transform: scale(1.06); }
  to   { transform: scale(1.12); }
}

.hero-overlay {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(6,46,50,0.9), rgba(6,46,50,0.54) 46%, rgba(6,46,50,0.16)),
    linear-gradient(0deg, rgba(6,46,50,0.72), rgba(6,46,50,0.05) 48%);
}

/* Animated particles in hero */
.hero-particles {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
}

.hero-particles span {
  position: absolute;
  width: 4px;
  height: 4px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  animation: float-particle linear infinite;
}

@keyframes float-particle {
  0%   { transform: translateY(100vh) rotate(0deg); opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 1; }
  100% { transform: translateY(-10vh) rotate(720deg); opacity: 0; }
}

.hero-content, .section, .quick-info, .contact-band, .site-footer {
  width: var(--content);
  margin-inline: auto;
}

.hero-content {
  max-width: 720px;
  margin-left: max(20px, calc((100vw - 1120px) / 2));
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--teal-700);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 8px;
}

.eyebrow::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 2px;
  background: currentColor;
  border-radius: 99px;
  flex-shrink: 0;
}

.hero .eyebrow { color: #d9fbff; }

h1, h2, h3, p { text-wrap: pretty; }
h1, h2, h3 { margin: 0; line-height: 1.08; }

h1 {
  max-width: 680px;
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 8vw, 6.7rem);
  font-weight: 900;
  animation: hero-title-in 1s cubic-bezier(0.22,1,0.36,1) 0.2s both;
}

@keyframes hero-title-in {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: none; }
}

h2 {
  max-width: 720px;
  color: var(--gray-900);
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
}

h3 {
  color: var(--teal-900);
  font-size: 1.18rem;
  font-weight: 800;
}

.hero-copy {
  max-width: 620px;
  margin: 22px 0 0;
  color: rgba(255,255,255,0.92);
  font-size: clamp(1.08rem, 2vw, 1.35rem);
  animation: hero-copy-in 1s cubic-bezier(0.22,1,0.36,1) 0.45s both;
}

@keyframes hero-copy-in {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: none; }
}

.hero-actions, .contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
  animation: hero-actions-in 1s cubic-bezier(0.22,1,0.36,1) 0.65s both;
}

@keyframes hero-actions-in {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: none; }
}

/* ── BUTTON SYSTEM ── */
.button {
  min-height: 52px;
  padding: 14px 26px;
  border-radius: var(--radius);
  font-weight: 900;
  font-size: 1rem;
  line-height: 1.18;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform 280ms cubic-bezier(0.34,1.56,0.64,1), box-shadow 280ms ease, background 200ms ease;
}

.button::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 200ms ease;
}

.button:hover::after, .button:focus-visible::after { opacity: 1; }

.button:hover, .button:focus-visible {
  transform: translateY(-4px) scale(1.01);
}

.button:active { transform: translateY(-1px) scale(0.99); }

.button.primary {
  color: var(--paper);
  background: linear-gradient(135deg, var(--teal-600), var(--teal-800));
  box-shadow: 0 8px 24px rgba(13,89,96,0.28), inset 0 1px 0 rgba(255,255,255,0.18);
}

.button.primary:hover, .button.primary:focus-visible {
  box-shadow: 0 18px 40px rgba(13,89,96,0.38), inset 0 1px 0 rgba(255,255,255,0.18);
  background: linear-gradient(135deg, var(--teal-700), var(--teal-900));
}

.button.secondary {
  color: var(--paper);
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.48);
  backdrop-filter: blur(10px);
}

.button.secondary:hover {
  background: rgba(255,255,255,0.2);
  border-color: rgba(255,255,255,0.7);
}

.button.outline {
  color: var(--teal-900);
  background: var(--paper);
  border: 2px solid rgba(13,89,96,0.22);
  box-shadow: 0 4px 14px rgba(13,89,96,0.1);
}

.button.outline:hover {
  border-color: var(--teal-700);
  box-shadow: 0 8px 24px rgba(13,89,96,0.18);
  color: var(--teal-700);
}

/* Pulse animation for primary CTA */
.button.primary.pulse {
  animation: pulse-glow 2.5s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 8px 24px rgba(13,89,96,0.28), inset 0 1px 0 rgba(255,255,255,0.18); }
  50% { box-shadow: 0 8px 24px rgba(13,89,96,0.28), inset 0 1px 0 rgba(255,255,255,0.18), 0 0 0 8px rgba(22,137,150,0.18); }
}

/* ── QUICK INFO ── */
.quick-info {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  margin-top: -48px;
  overflow: hidden;
  background: var(--gray-150);
  border-radius: var(--radius);
  box-shadow: var(--shadow-strong);
}

.quick-info div {
  min-height: 128px;
  padding: 28px 32px;
  background: var(--paper);
  position: relative;
  overflow: hidden;
  transition: background 250ms ease;
}

.quick-info div::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal-700), var(--teal-600));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 350ms cubic-bezier(0.34,1.56,0.64,1);
}

.quick-info div:hover::before { transform: scaleX(1); }
.quick-info div:hover { background: var(--teal-050); }

.quick-info strong, .quick-info span { display: block; }

.quick-info strong {
  color: var(--teal-900);
  font-size: 1.1rem;
  font-weight: 900;
}

.quick-info span {
  margin-top: 8px;
  color: var(--gray-700);
}

/* Counter animation */
.counter-number {
  display: block;
  color: var(--teal-900);
  font-size: 2.2rem;
  font-weight: 900;
  font-family: 'Playfair Display', serif;
  line-height: 1;
  margin-bottom: 4px;
}

/* ── SECTION ── */
.section { padding: 112px 0; }

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: 56px;
  align-items: start;
}

.section-copy {
  position: sticky;
  top: 116px;
}

.section-copy p, .structure-copy p, .contact-band p {
  max-width: 620px;
  margin: 24px 0 0;
  color: var(--gray-700);
  font-size: 1.08rem;
}

/* ── CARE GRID ── */
.care-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.care-grid article {
  min-height: 232px;
  padding: 28px;
  background: linear-gradient(160deg, var(--teal-050), var(--paper));
  border: 1px solid rgba(22,137,150,0.14);
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
  transition: transform 300ms cubic-bezier(0.34,1.56,0.64,1), box-shadow 300ms ease, border-color 300ms ease;
}

.care-grid article::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(22,137,150,0.06), transparent 70%);
  opacity: 0;
  transition: opacity 400ms ease;
}

.care-grid article:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 20px 50px rgba(13,89,96,0.14);
  border-color: rgba(22,137,150,0.3);
}

.care-grid article:hover::before { opacity: 1; }

.care-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 22px;
  color: var(--teal-700);
  background: var(--paper);
  border: 2px solid rgba(22,137,150,0.2);
  border-radius: 50%;
  transition: transform 350ms cubic-bezier(0.34,1.56,0.64,1), box-shadow 300ms ease, background 300ms ease;
}

.care-grid article:hover .care-icon {
  transform: rotate(-8deg) scale(1.12);
  box-shadow: 0 8px 20px rgba(22,137,150,0.22);
  background: var(--teal-050);
}

.care-icon svg { width: 24px; height: 24px; fill: currentColor; }

.care-grid p { margin: 12px 0 0; color: var(--gray-700); }

/* ── STRUCTURE ── */
.structure {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.78fr);
  gap: 56px;
  align-items: center;
  background:
    linear-gradient(90deg, transparent calc((100vw - 1120px) / 2), var(--warm) calc((100vw - 1120px) / 2));
}

.structure-image {
  overflow: hidden;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  box-shadow: var(--shadow-strong);
  position: relative;
}

.structure-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms cubic-bezier(0.22,1,0.36,1);
}

.structure-image:hover img { transform: scale(1.05); }

/* ── GALLERY ── */
.gallery-section { padding-bottom: 118px; }

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 34px;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: 230px;
  gap: 16px;
}

.gallery-item {
  min-width: 0;
  overflow: hidden;
  background: var(--teal-050);
  border: 0;
  border-radius: var(--radius);
  position: relative;
  padding: 0;
  cursor: pointer;
  transition: transform 300ms cubic-bezier(0.34,1.56,0.64,1), box-shadow 300ms ease;
}

.gallery-item:hover {
  transform: scale(1.02);
  box-shadow: 0 20px 50px rgba(13,89,96,0.22);
  z-index: 2;
}

.gallery-item::after {
  position: absolute;
  inset: auto 14px 14px 14px;
  min-height: 42px;
  padding: 10px 14px;
  color: var(--paper);
  content: attr(data-caption);
  background: rgba(13,89,96,0.9);
  border-radius: 8px;
  font-size: 0.92rem;
  font-weight: 800;
  text-align: left;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 250ms ease, transform 250ms cubic-bezier(0.34,1.56,0.64,1);
}

.gallery-item:hover::after,
.gallery-item:focus-visible::after { opacity: 1; transform: translateY(0); }

.gallery-item.large { grid-column: span 2; grid-row: span 2; }
.gallery-item:last-child { grid-column: span 2; }

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms cubic-bezier(0.22,1,0.36,1);
}

.gallery-item:hover img { transform: scale(1.06); }

/* ── CONTACT BAND ── */
.contact-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: center;
  margin-bottom: 96px;
  padding: 52px;
  color: var(--gray-900);
  background: linear-gradient(135deg, rgba(228,246,247,0.95), rgba(255,255,255,0.96)), var(--teal-050);
  border: 1px solid rgba(22,137,150,0.18);
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
}

.contact-band::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(22,137,150,0.1), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.contact-band h2 { font-size: clamp(1.9rem, 3.3vw, 3rem); }

.contact-band .contact-actions { justify-content: flex-end; margin-top: 0; }

/* ── FOOTER ── */
.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 34px 0 44px;
  color: var(--gray-700);
  border-top: 1px solid var(--gray-150);
}

.footer-brand { display: flex; align-items: center; gap: 18px; }
.footer-copy { display: grid; gap: 6px; }

.site-footer img {
  width: 82px;
  height: 82px;
  object-fit: contain;
  padding: 10px;
  background: var(--paper);
  border: 2px solid rgba(22,137,150,0.16);
  border-radius: 50%;
  transition: transform 350ms cubic-bezier(0.34,1.56,0.64,1);
}

.site-footer img:hover { transform: rotate(8deg) scale(1.06); }

.site-footer p { margin: 0; }

.site-credit { color: var(--gray-500); font-size: 0.92rem; font-weight: 700; }

.site-footer address { font-style: normal; text-align: right; }

.site-footer a { color: var(--teal-800); font-weight: 800; }

/* ── FLOATING WHATSAPP ── */
.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 18;
  width: 62px;
  height: 62px;
  color: var(--paper);
  background: linear-gradient(135deg, #168996, #0d5960);
  border-radius: 50%;
  box-shadow: 0 8px 28px rgba(13,89,96,0.38);
  transition: transform 350ms cubic-bezier(0.34,1.56,0.64,1), box-shadow 300ms ease;
  animation: float-bounce 3s ease-in-out infinite;
}

@keyframes float-bounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-6px); }
}

.floating-whatsapp:hover {
  transform: scale(1.14) translateY(-4px) !important;
  box-shadow: 0 16px 42px rgba(13,89,96,0.52);
  animation-play-state: paused;
}

.floating-whatsapp svg { width: 30px; height: 30px; }

/* WhatsApp tooltip */
.floating-whatsapp::before {
  content: 'Fale conosco';
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%) translateX(8px);
  white-space: nowrap;
  background: var(--gray-900);
  color: var(--paper);
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 800;
  font-family: 'Nunito', sans-serif;
  opacity: 0;
  pointer-events: none;
  transition: opacity 200ms ease, transform 200ms ease;
}

.floating-whatsapp:hover::before {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

/* ── DIALOG ── */
.image-dialog {
  width: min(920px, calc(100vw - 32px));
  max-width: none;
  padding: 0;
  overflow: hidden;
  background: var(--paper);
  border: 0;
  border-radius: var(--radius);
  box-shadow: 0 30px 80px rgba(0,0,0,0.4);
}

.image-dialog::backdrop { background: rgba(8,27,30,0.78); backdrop-filter: blur(4px); }

.image-dialog img {
  width: 100%;
  max-height: 78svh;
  object-fit: contain;
  background: #0d2225;
}

.image-dialog p { margin: 0; padding: 16px 20px 20px; color: var(--gray-700); font-weight: 800; }

.dialog-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 42px;
  height: 42px;
  color: var(--gray-900);
  background: rgba(255,255,255,0.95);
  border-radius: 50%;
  font-size: 1.7rem;
  line-height: 1;
  box-shadow: 0 4px 14px rgba(0,0,0,0.18);
  transition: transform 300ms cubic-bezier(0.34,1.56,0.64,1), background 200ms ease;
}

.dialog-close:hover { transform: rotate(90deg) scale(1.1); background: var(--paper); }

/* ── SCROLL TO TOP ── */
.scroll-top {
  position: fixed;
  right: 22px;
  bottom: 96px;
  z-index: 17;
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--paper);
  border: 2px solid rgba(22,137,150,0.24);
  border-radius: 50%;
  box-shadow: 0 6px 20px rgba(13,89,96,0.16);
  color: var(--teal-800);
  cursor: pointer;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 300ms ease, transform 300ms ease, box-shadow 300ms ease, background 200ms ease;
  pointer-events: none;
}

.scroll-top.visible { opacity: 1; transform: none; pointer-events: auto; }
.scroll-top:hover { box-shadow: 0 10px 30px rgba(13,89,96,0.24); background: var(--teal-050); transform: translateY(-3px); }

.scroll-top svg { width: 22px; height: 22px; fill: currentColor; }

/* ── RESPONSIVE ── */
@media (max-width: 920px) {
  .site-header { grid-template-columns: auto auto; justify-content: space-between; }
  .nav-links { display: none; }
  .quick-info, .split, .structure, .contact-band, .site-footer { grid-template-columns: 1fr; }
  .section-copy { position: static; }
  .structure { background: var(--warm); }
  .contact-band .contact-actions { justify-content: flex-start; }
  .site-footer, .footer-brand { align-items: flex-start; }
  .site-footer { flex-direction: column; }
  .site-footer address { text-align: left; }
}

@media (max-width: 680px) {
  :root { --content: min(100vw - 28px, 1120px); }

  main { display: flex; flex-direction: column; }
  .hero { order: 0; }
  .quick-info { order: 1; }
  #galeria { order: 2; }
  #cuidados { order: 3; }
  #estrutura { order: 4; }
  #contato { order: 5; }

  .site-header { padding-inline: 14px; gap: 12px; }
  .brand { width: 74px; height: 74px; }
  .brand img { width: 62px; height: 52px; }
  .header-cta { min-height: 42px; padding-inline: 12px; font-size: 0.9rem; }

  .hero { min-height: 86svh; padding: 132px 0 58px; }
  .hero-media { background-position: center top; }
  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(6,46,50,0.9), rgba(6,46,50,0.48)),
      linear-gradient(0deg, rgba(6,46,50,0.72), rgba(6,46,50,0.16));
  }

  .hero-content { width: var(--content); margin-inline: auto; }
  h1 { font-size: clamp(3rem, 17vw, 4.8rem); }
  .hero-copy { font-size: 1.06rem; }
  .hero-actions, .contact-actions { flex-direction: column; }
  .button { width: 100%; text-align: center; }

  .quick-info { margin-top: 0; border-radius: 0; width: 100%; }
  .quick-info div { min-height: 116px; padding: 22px var(--content-padding, 18px); }

  .section { padding: 72px 0; }
  .split, .structure { gap: 34px; }
  .care-grid { grid-template-columns: 1fr; }
  .care-grid article { min-height: 0; }
  .structure-image { aspect-ratio: 1 / 1.08; }
  .section-heading { align-items: start; flex-direction: column; }

  .gallery { grid-template-columns: 1fr; grid-template-rows: none; grid-auto-rows: auto; }
  .gallery-item { min-height: 290px; }
  .gallery-item.large, .gallery-item:last-child { grid-column: auto; grid-row: auto; }

  .contact-band { width: calc(100vw - 28px); margin-bottom: 72px; padding: 30px 22px; }

  .floating-whatsapp { right: 16px; bottom: 16px; width: 56px; height: 56px; }
  .scroll-top { right: 16px; bottom: 84px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}
