@import url("https://fonts.googleapis.com/css2?family=Baloo+2:wght@500;600;700;800&family=Patrick+Hand&display=swap");

:root {
  --bg: #fffdf8;
  --surface: rgba(255, 255, 255, 0.9);
  --surface-strong: #ffffff;
  --text: #27404a;
  --muted: #5f7680;
  --primary: #6cc8ff;
  --primary-deep: #238bc5;
  --secondary: #ffd964;
  --accent: #9ae29f;
  --accent-soft: #ffb8d0;
  --border: rgba(35, 139, 197, 0.14);
  --shadow: 0 22px 50px rgba(80, 118, 136, 0.14);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: 1440px;
  --nav-height: 86px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Baloo 2", "Trebuchet MS", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(255, 217, 100, 0.48), transparent 24%),
    radial-gradient(circle at top right, rgba(108, 200, 255, 0.32), transparent 28%),
    radial-gradient(circle at 85% 45%, rgba(154, 226, 159, 0.18), transparent 22%),
    linear-gradient(180deg, #fffefb 0%, #f5fbff 50%, #fffaf2 100%);
  line-height: 1.6;
}

img {
  display: block;
  width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

.container {
  width: min(calc(100% - 3.5rem), var(--container));
  margin: 0 auto;
}

.section {
  padding: 4.5rem 0;
}

.section-header {
  max-width: 700px;
  margin-bottom: 2.2rem;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 0.8rem;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--border);
  color: #ff5b8f;
  font-family: "Patrick Hand", "Trebuchet MS", sans-serif;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 1rem;
}

h1,
h2,
h3 {
  margin: 0 0 0.8rem;
  line-height: 1.15;
  color: #31225f;
  font-family: "Baloo 2", "Trebuchet MS", "Segoe UI", sans-serif;
  font-weight: 800;
}

h1 {
  font-size: clamp(2.5rem, 6vw, 4.7rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
  font-size: 1.3rem;
}

p {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 1.02rem;
}

.btn,
.btn-secondary,
.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 52px;
  padding: 0.9rem 1.35rem;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  font-family: "Baloo 2", "Trebuchet MS", "Segoe UI", sans-serif;
  font-weight: 700;
  font-size: 1.02rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, filter 0.2s ease;
}

.btn {
  background: linear-gradient(135deg, var(--primary-deep), var(--primary));
  color: #fff;
  box-shadow: 0 16px 30px rgba(77, 147, 186, 0.24);
}

.btn-secondary {
  background: linear-gradient(135deg, #f1cf72, var(--secondary));
  color: #54411b;
  box-shadow: 0 16px 30px rgba(241, 207, 114, 0.22);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.75);
  color: var(--text);
  border: 1px solid var(--border);
}

.btn:hover,
.btn-secondary:hover,
.btn-ghost:hover {
  transform: translateY(-3px) scale(1.03);
  filter: saturate(1.08) brightness(1.03);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(14px);
  background: rgba(255, 253, 248, 0.88);
  border-bottom: 1px solid rgba(134, 199, 229, 0.15);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--nav-height);
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-weight: 800;
  font-family: "Baloo 2", "Trebuchet MS", "Segoe UI", sans-serif;
  color: #17323b;
  transition: transform 0.2s ease, filter 0.2s ease;
}

.brand:hover,
.brand:focus-visible {
  transform: translateY(-2px) scale(1.02);
  filter: saturate(1.08);
}

.brand-logo {
  width: 58px;
  height: 58px;
  object-fit: contain;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(255, 242, 197, 0.9));
  padding: 0.35rem;
  box-shadow: 0 14px 24px rgba(77, 147, 186, 0.16);
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 600;
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--surface);
  border: 1px solid var(--border);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.nav-toggle:hover,
.nav-toggle:focus-visible {
  transform: translateY(-2px) scale(1.04);
  background: #fff;
  box-shadow: 0 14px 24px rgba(77, 147, 186, 0.16);
}

.nav-toggle span,
.nav-toggle::before,
.nav-toggle::after {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text);
  margin: 0 auto;
  content: "";
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle span {
  margin: 5px auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 0.85rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1.02rem;
  color: #35525d;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.site-nav a.active,
.site-nav a:hover {
  background: rgba(134, 199, 229, 0.14);
  color: var(--primary-deep);
}

.site-nav a:hover,
.site-nav a:focus-visible {
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 10px 20px rgba(77, 147, 186, 0.12);
}

.hero {
  padding: 4rem 0 5rem;
}

.hero-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.hero-card,
.glass-card,
.panel {
  border-radius: var(--radius-xl);
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.45);
  box-shadow: var(--shadow);
}

.hero-copy {
  padding: 1rem 0;
}

.hero-brand {
  display: inline-flex;
  align-items: center;
  margin-bottom: 1rem;
}

.hero-brand span {
  font-family: "Baloo 2", "Trebuchet MS", "Segoe UI", sans-serif;
  font-size: clamp(1.7rem, 2.6vw, 2.3rem);
  font-weight: 800;
  color: #31225f;
  line-height: 1;
}

.hero-logo-badge {
  position: absolute;
  top: calc((33rem - 620px) / 2);
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 620px;
  height: 620px;
  display: grid;
  place-items: center;
  pointer-events: none;
}

.hero-logo-badge img {
  width: 620px;
  height: 620px;
  object-fit: contain;
  filter: drop-shadow(0 14px 26px rgba(62, 101, 118, 0.2));
  transform-origin: center;
  animation: logoPulse 2.6s ease-in-out infinite;
  will-change: transform, filter;
}

@keyframes logoPulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
    filter: drop-shadow(0 14px 26px rgba(62, 101, 118, 0.2));
  }

  45% {
    opacity: 1;
    transform: scale(1.07);
    filter: drop-shadow(0 22px 42px rgba(35, 139, 197, 0.36));
  }

  70% {
    opacity: 1;
    transform: scale(1.025);
    filter: drop-shadow(0 18px 34px rgba(35, 139, 197, 0.28));
  }
}

.hero-media-wrap {
  position: relative;
  padding-top: 33rem;
  justify-self: center;
  width: min(100%, 620px);
}

.hero-copy h1 {
  max-width: 12ch;
}

.hero-copy p {
  max-width: 720px;
  font-size: 1.12rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin: 1.7rem 0 1.2rem;
}

.hero-highlights {
  display: grid;
  gap: 0.8rem;
  margin-top: 1.8rem;
}

.hero-highlights div {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 0.8rem;
  padding: 1rem 1.1rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--border);
}

.hero-highlights strong {
  display: block;
  color: #17323b;
}

.hero-highlights div:nth-child(1) {
  background: linear-gradient(135deg, rgba(255, 214, 108, 0.95), rgba(255, 239, 186, 0.88));
}

.hero-highlights div:nth-child(2) {
  background: linear-gradient(135deg, rgba(112, 213, 255, 0.94), rgba(210, 245, 255, 0.9));
}

.hero-highlights div:nth-child(3) {
  background: linear-gradient(135deg, rgba(167, 233, 149, 0.94), rgba(231, 255, 205, 0.9));
}

.hero-visual {
  overflow: visible;
  padding: 1.1rem;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(255, 244, 193, 0.62)),
    linear-gradient(180deg, rgba(154, 226, 159, 0.16), rgba(108, 200, 255, 0.2));
}

.hero-visual img {
  border-radius: 26px;
  aspect-ratio: 4 / 4.2;
  object-fit: cover;
  overflow: hidden;
}

.media-cover {
  width: 100%;
  border-radius: 24px;
  object-fit: cover;
  box-shadow: 0 16px 28px rgba(105, 138, 151, 0.1);
}

.media-cover.tall {
  aspect-ratio: 4 / 5;
}

.media-cover.landscape {
  aspect-ratio: 4 / 3;
}

.metric-band {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}

.metric {
  padding: 1.1rem 1.2rem;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 247, 214, 0.75));
  border: 1px solid var(--border);
}

.metric strong {
  display: block;
  font-size: 1.6rem;
  color: #17323b;
}

.metric:nth-child(1) {
  background: linear-gradient(135deg, rgba(255, 200, 193, 0.96), rgba(255, 240, 210, 0.9));
}

.metric:nth-child(2) {
  background: linear-gradient(135deg, rgba(111, 207, 255, 0.94), rgba(218, 244, 255, 0.92));
}

.metric:nth-child(3) {
  background: linear-gradient(135deg, rgba(255, 221, 107, 0.95), rgba(255, 244, 191, 0.92));
}

.grid {
  display: grid;
  gap: 1.3rem;
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card {
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 252, 255, 0.96));
  border: 1px solid var(--border);
  box-shadow: 0 16px 28px rgba(105, 138, 151, 0.09);
}

.card-icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 18px;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, rgba(191, 227, 191, 0.8), rgba(134, 199, 229, 0.35));
  font-size: 1.6rem;
}

.play-card {
  position: relative;
  transform: translateY(0) rotate(0deg) scale(1);
  transition: transform 0.28s ease, box-shadow 0.28s ease, filter 0.28s ease;
  will-change: transform;
}

.play-card:hover,
.play-card:focus-within,
.play-card.is-active {
  transform: translateY(-8px) rotate(-1deg) scale(1.02);
  box-shadow: 0 24px 42px rgba(52, 92, 107, 0.18);
  filter: saturate(1.08);
}

.play-card:nth-child(even):hover,
.play-card:nth-child(even):focus-within,
.play-card:nth-child(even).is-active {
  transform: translateY(-8px) rotate(1deg) scale(1.02);
}

.services-feature {
  position: relative;
  overflow: hidden;
}

.services-feature::after {
  content: "";
  position: absolute;
  inset: auto -45px -45px auto;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: rgba(255, 227, 154, 0.22);
}

.list-check,
.info-list {
  display: grid;
  gap: 0.8rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.list-check li,
.info-list li {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  color: var(--muted);
}

.list-check li::before,
.info-list li::before {
  content: "•";
  color: var(--primary-deep);
  font-weight: 900;
}

.document-section {
  padding-bottom: 0;
}

.document-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.4rem;
}

.document-card h2 {
  font-size: clamp(1.75rem, 3vw, 2.35rem);
}

.document-card p {
  max-width: 680px;
  margin-bottom: 0;
}

.document-card .btn {
  flex: 0 0 auto;
}

.split {
  display: grid;
  gap: 1.8rem;
  align-items: center;
}

.team-card img,
.gallery-item img {
  border-radius: 22px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.team-card .card {
  padding-top: 1rem;
}

.testimonial {
  padding: 1.6rem;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(247, 251, 255, 0.94));
  border: 1px solid var(--border);
  box-shadow: 0 16px 30px rgba(74, 110, 126, 0.09);
}

.testimonial strong {
  display: block;
  margin-top: 1rem;
}

.playful-grid .card:nth-child(1) {
  background: linear-gradient(180deg, #ff6767, #ff8376);
  color: #fff;
}

.playful-grid .card:nth-child(2) {
  background: linear-gradient(180deg, #a8cf4a, #8bbc31);
  color: #fff;
}

.playful-grid .card:nth-child(3) {
  background: linear-gradient(180deg, #2ea9e8, #188fcd);
  color: #fff;
}

.playful-grid .card:nth-child(4) {
  background: linear-gradient(180deg, #ff3ed1, #ed10be);
  color: #fff;
}

.playful-grid .card h3,
.playful-grid .card p {
  color: inherit;
}

.playful-grid .card .card-icon {
  background: rgba(255, 255, 255, 0.18);
  border: 2px dashed rgba(255, 255, 255, 0.5);
}

.testimonial:nth-child(1) {
  background: linear-gradient(180deg, rgba(255, 245, 203, 0.98), rgba(255, 226, 150, 0.88));
}

.testimonial:nth-child(2) {
  background: linear-gradient(180deg, rgba(223, 249, 255, 0.98), rgba(161, 229, 255, 0.9));
}

.testimonial:nth-child(3) {
  background: linear-gradient(180deg, rgba(234, 255, 222, 0.98), rgba(187, 239, 163, 0.9));
}

.contact-strip {
  padding: 2rem;
  display: grid;
  gap: 1.4rem;
  align-items: stretch;
  background:
    radial-gradient(circle at top right, rgba(255, 217, 100, 0.28), transparent 30%),
    radial-gradient(circle at bottom right, rgba(154, 226, 159, 0.22), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(245, 251, 255, 0.96));
}

.contact-quick {
  display: grid;
  gap: 1rem;
}

.info-chip {
  display: grid;
  grid-template-columns: minmax(130px, 160px) 1fr;
  align-items: start;
  gap: 0.9rem;
  padding: 1rem 1.1rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--border);
}

.info-chip strong {
  color: #17323b;
}

.contact-quick .info-chip:nth-child(1) {
  background: linear-gradient(135deg, #ff8f8f, #ffb6a6);
  color: #fff;
}

.contact-quick .info-chip:nth-child(2) {
  background: linear-gradient(135deg, #a8d64f, #d6ec7c);
  color: #234112;
}

.contact-quick .info-chip:nth-child(3) {
  background: linear-gradient(135deg, #32b3f0, #7bd9ff);
  color: #fff;
}

.contact-quick .info-chip strong {
  color: inherit;
}

.intro-panel {
  display: grid;
  gap: 1.2rem;
}

.intro-panel .media-cover {
  min-height: 100%;
}

.page-hero {
  padding: 2.5rem 0 1rem;
}

.page-hero-inner {
  padding: 2rem;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(255, 217, 100, 0.38), transparent 36%),
    radial-gradient(circle at bottom left, rgba(154, 226, 159, 0.18), transparent 28%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(245, 251, 255, 0.96));
}

.page-hero p {
  max-width: 760px;
}

.gallery-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(12, 1fr);
}

.gallery-item {
  position: relative;
  cursor: pointer;
  overflow: hidden;
  grid-column: span 6;
  border-radius: 26px;
  border: 1px solid var(--border);
  box-shadow: 0 16px 28px rgba(105, 138, 151, 0.1);
}

.gallery-item:nth-child(1),
.gallery-item:nth-child(6) {
  grid-column: span 7;
}

.gallery-item:nth-child(2),
.gallery-item:nth-child(3),
.gallery-item:nth-child(4),
.gallery-item:nth-child(5),
.gallery-item:nth-child(7),
.gallery-item:nth-child(8) {
  grid-column: span 5;
}

.gallery-item figcaption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 1rem;
  color: #fff;
  font-weight: 700;
  background: linear-gradient(180deg, transparent, rgba(17, 37, 43, 0.72));
}

.lightbox {
  position: fixed;
  inset: 0;
  display: none;
  place-items: center;
  background: rgba(13, 28, 32, 0.82);
  padding: 1rem;
  z-index: 200;
}

.lightbox.open {
  display: grid;
}

.lightbox-dialog {
  position: relative;
  max-width: min(92vw, 1040px);
}

.lightbox img {
  max-height: 82vh;
  border-radius: 28px;
  object-fit: cover;
  box-shadow: 0 24px 46px rgba(0, 0, 0, 0.32);
}

.lightbox button {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.lightbox button:hover,
.lightbox button:focus-visible {
  transform: rotate(8deg) scale(1.08);
  background: #fff;
  box-shadow: 0 14px 24px rgba(0, 0, 0, 0.18);
}

.form-grid {
  display: grid;
  gap: 1rem;
}

.field {
  display: grid;
  gap: 0.45rem;
}

.field label {
  font-weight: 700;
  color: #2d4a55;
}

.field input,
.field textarea {
  width: 100%;
  padding: 0.95rem 1rem;
  border-radius: 16px;
  border: 1px solid rgba(77, 147, 186, 0.22);
  background: rgba(255, 255, 255, 0.9);
  color: var(--text);
}

.field textarea {
  min-height: 160px;
  resize: vertical;
}

.form-status {
  display: none;
  margin-bottom: 1rem;
  padding: 0.95rem 1rem;
  border-radius: 18px;
  font-weight: 700;
}

.form-status.is-visible {
  display: block;
}

.form-status.is-success {
  background: linear-gradient(135deg, rgba(167, 233, 149, 0.34), rgba(231, 255, 205, 0.78));
  color: #25511d;
  border: 1px solid rgba(77, 166, 54, 0.24);
}

.form-status.is-error {
  background: linear-gradient(135deg, rgba(255, 170, 170, 0.4), rgba(255, 221, 221, 0.82));
  color: #7a2432;
  border: 1px solid rgba(197, 80, 98, 0.24);
}

.map-frame {
  min-height: 340px;
  width: 100%;
  border: 0;
  border-radius: 28px;
}

.site-footer {
  padding: 2rem 0 3rem;
}

.footer-card {
  display: grid;
  gap: 1.2rem;
  padding: 1.7rem;
}

.floating-whatsapp {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 120;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.95rem 1.15rem;
  border-radius: 999px;
  background: #25d366;
  color: #fff;
  font-weight: 800;
  box-shadow: 0 18px 34px rgba(37, 211, 102, 0.28);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.floating-whatsapp:hover,
.floating-whatsapp:focus-visible {
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 22px 40px rgba(37, 211, 102, 0.36);
  filter: brightness(1.03);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (min-width: 720px) {
  .hero-grid,
  .split {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .metric-band {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .form-grid.two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-strip {
    grid-template-columns: minmax(320px, 0.9fr) minmax(420px, 1.1fr);
  }
}

@media (min-width: 900px) {
  .hero-grid {
    grid-template-columns: minmax(620px, 1.1fr) minmax(460px, 0.9fr);
  }

  .hero-highlights {
    max-width: 760px;
  }
}

@media (min-width: 1400px) {
  .hero-grid {
    gap: 3.25rem;
  }

  .hero-copy p,
  .hero-highlights {
    max-width: 780px;
  }
}

@media (max-width: 959px) {
  .grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .grid-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-item,
  .gallery-item:nth-child(1),
  .gallery-item:nth-child(2),
  .gallery-item:nth-child(3),
  .gallery-item:nth-child(4),
  .gallery-item:nth-child(5),
  .gallery-item:nth-child(6),
  .gallery-item:nth-child(7),
  .gallery-item:nth-child(8) {
    grid-column: span 6;
  }
}

@media (max-width: 760px) {
  .site-header .container {
    min-height: 76px;
  }

  .brand {
    gap: 0.65rem;
  }

  .brand-logo {
    width: 50px;
    height: 50px;
  }

  .brand small {
    font-size: 0.8rem;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 0.6rem);
    left: 1rem;
    right: 1rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    background: rgba(255, 253, 248, 0.97);
    border-radius: 24px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
  }

  .site-nav.open {
    display: flex;
  }

  .nav-toggle {
    display: inline-grid;
    place-items: center;
  }

  .nav-toggle[aria-expanded="true"]::before {
    transform: translateY(7px) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] span {
    opacity: 0;
  }

  .nav-toggle[aria-expanded="true"]::after {
    transform: translateY(-7px) rotate(-45deg);
  }

  .grid-2,
  .grid-3,
  .grid-4,
  .gallery-item,
  .gallery-item:nth-child(1),
  .gallery-item:nth-child(2),
  .gallery-item:nth-child(3),
  .gallery-item:nth-child(4),
  .gallery-item:nth-child(5),
  .gallery-item:nth-child(6),
  .gallery-item:nth-child(7),
  .gallery-item:nth-child(8) {
    grid-template-columns: 1fr;
    grid-column: span 12;
  }

  .section {
    padding: 3.5rem 0;
  }

  .document-section {
    padding-bottom: 0;
  }

  .document-card {
    align-items: stretch;
    flex-direction: column;
  }

  .document-card .btn {
    width: 100%;
  }

  .hero {
    padding: 1rem 0 3rem;
  }

  .hero-grid {
    gap: 1.35rem;
  }

  .container {
    width: min(calc(100% - 1.5rem), var(--container));
  }

  .page-hero-inner,
  .contact-strip,
  .hero-visual,
  .testimonial,
  .footer-card {
    padding: 1.4rem;
  }

  .hero-brand {
    margin-bottom: 0.45rem;
  }

  .hero-brand span {
    font-size: 1.45rem;
  }

  .hero-copy h1 {
    max-width: none;
    font-size: clamp(2.35rem, 11vw, 3.65rem);
    line-height: 1.05;
    text-wrap: balance;
  }

  .hero-copy p {
    max-width: none;
    font-size: 1rem;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-actions .btn,
  .hero-actions .btn-ghost,
  .hero-actions .btn-secondary {
    width: 100%;
  }

  .floating-whatsapp span {
    display: none;
  }

  .hero-highlights div,
  .info-chip {
    grid-template-columns: 1fr;
  }

  .hero-highlights div {
    gap: 0.35rem;
    padding: 0.95rem 1rem;
  }

  .metric-band {
    margin-top: 1rem;
  }

  .metric,
  .card,
  .testimonial {
    border-radius: 22px;
  }

  .hero-logo-badge {
    width: 396px;
    height: 396px;
    top: calc((15rem - 396px) / 2);
  }

  .hero-logo-badge img {
    width: 396px;
    height: 396px;
  }

  .hero-media-wrap {
    width: 100%;
    order: -1;
    padding-top: 15rem;
    margin-bottom: 0.35rem;
  }

  .hero-visual img,
  .media-cover.tall,
  .media-cover.landscape {
    aspect-ratio: 4 / 3.25;
  }

  .contact-strip {
    gap: 1rem;
  }

  .info-chip {
    padding: 1rem;
  }

  .gallery-grid {
    gap: 0.85rem;
  }

  .gallery-item {
    border-radius: 22px;
  }

  .gallery-item figcaption {
    padding: 0.85rem;
    font-size: 0.95rem;
  }

  .map-frame {
    min-height: 280px;
  }

  .floating-whatsapp {
    right: 0.8rem;
    bottom: 0.8rem;
    padding: 0.9rem 1rem;
  }
}

@media (max-width: 480px) {
  .container {
    width: min(calc(100% - 1rem), var(--container));
  }

  .site-header .container {
    gap: 0.6rem;
  }

  .brand span {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.1rem;
    min-width: 0;
  }

  .brand span > span,
  .brand span > strong {
    display: block;
  }

  .brand > span {
    min-width: 0;
  }

  .brand > span {
    display: block;
    max-width: 140px;
  }

  .brand > span,
  .brand small {
    line-height: 1.15;
  }

  .nav-toggle {
    width: 44px;
    height: 44px;
  }

  .hero-copy h1 {
    font-size: clamp(2.1rem, 12vw, 3rem);
  }

  .hero-logo-badge {
    width: 336px;
    height: 336px;
    top: calc((12.8rem - 336px) / 2);
  }

  .hero-logo-badge img {
    width: 336px;
    height: 336px;
  }

  .hero-media-wrap {
    padding-top: 12.8rem;
  }

  .page-hero-inner,
  .contact-strip,
  .hero-visual,
  .testimonial,
  .footer-card,
  .card {
    padding: 1.15rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition: none !important;
    animation: none !important;
  }
}
