:root {
  --cream: #faf7f4;
  --sand: #f0e8e0;
  --blush: #e8d5cc;
  --rose: #c9a89a;
  --mauve: #8b6f63;
  --espresso: #3d2f2a;
  --gold: #b8956b;
  --white: #ffffff;
  --shadow: rgba(61, 47, 42, 0.08);
  --shadow-md: rgba(61, 47, 42, 0.12);
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Outfit", system-ui, sans-serif;
  --radius: 12px;
  --radius-lg: 24px;
  --header-h: 72px;
  --transition: 0.3s ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--espresso);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  width: 100%;
  min-width: 0;
}

main {
  width: 100%;
  overflow-x: clip;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1120px;
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 1.5rem);
}

.section {
  padding: 5rem 0;
  width: 100%;
}

.section-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 0.75rem;
}

.section-header {
  text-align: center;
  max-width: 540px;
  margin: 0 auto 3.5rem;
}

.section-header h2,
.sobre-content h2,
.contato-info h2,
.cta-inner h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2rem, 4vw, 2.75rem);
  line-height: 1.2;
  color: var(--espresso);
}

.section-header p {
  margin-top: 1rem;
  color: var(--mauve);
}

/* Header */
.header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  width: 100%;
  height: var(--header-h);
  background: rgba(250, 247, 244, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.header.scrolled {
  border-color: var(--sand);
  box-shadow: 0 4px 24px var(--shadow);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
}

.nav-links a {
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--mauve);
  transition: color var(--transition);
}

.nav-links a:hover {
  color: var(--espresso);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--espresso);
  transition: transform var(--transition), opacity var(--transition);
}

.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);
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: calc(var(--header-h) + 3rem) 0 4rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 70% 55% at 78% 45%, rgba(201, 168, 154, 0.18) 0%, transparent 65%),
    radial-gradient(ellipse 50% 40% at 15% 85%, rgba(184, 149, 107, 0.1) 0%, transparent 55%),
    linear-gradient(145deg, var(--cream) 0%, var(--sand) 55%, #f5ede6 100%);
  overflow: hidden;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  width: 100%;
}

.hero-content {
  text-align: left;
  max-width: 520px;
}

.hero-logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.hero-logo {
  width: min(100%, 400px);
  height: auto;
  object-fit: contain;
  opacity: 0.35;
  mix-blend-mode: multiply;
  filter: saturate(1.15);
}

.hero-tag {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 1.25rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 500;
  line-height: 1.15;
  color: var(--espresso);
  margin-bottom: 1.5rem;
}

.hero h1 em {
  font-style: italic;
  color: var(--mauve);
}

.hero-text {
  font-size: 1.125rem;
  color: var(--mauve);
  margin-bottom: 2.5rem;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.75rem;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 100px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--espresso);
  color: var(--cream);
}

.btn-primary:hover {
  background: var(--mauve);
}

.btn-outline {
  background: transparent;
  color: var(--espresso);
  border-color: var(--blush);
}

.btn-outline:hover {
  border-color: var(--rose);
  background: var(--white);
}

.btn-full {
  width: 100%;
}

/* Sobre */
.sobre {
  background: var(--white);
}

.sobre-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 4rem;
  align-items: center;
  width: 100%;
}

.sobre-frame {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(145deg, var(--sand) 0%, var(--blush) 100%);
}

.sobre-frame::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: calc(var(--radius-lg) - 8px);
  pointer-events: none;
}

.sobre-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
}

.sobre-content p {
  color: var(--mauve);
  margin-bottom: 1.25rem;
}

.sobre-content h2 {
  margin-bottom: 1.25rem;
}

.sobre-highlights {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.sobre-highlights li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9375rem;
  color: var(--espresso);
}

.sobre-highlights li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

/* Procedimentos */
.procedimentos {
  background: var(--cream);
}

.cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
  width: 100%;
}

.card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  padding: 0;
  border-radius: var(--radius-lg);
  border: 1px solid var(--sand);
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition);
}

.card:hover {
  box-shadow: 0 16px 48px var(--shadow-md);
  transform: translateY(-4px);
}

@media (hover: hover) {
  .card:hover .card-media:not(.card-gallery) img {
    transform: scale(1.04);
  }
}

.card-media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--sand);
}

/* Galeria de fotos (procedimentos) */
.card-gallery {
  display: flex;
  flex-direction: column;
  position: relative;
  width: 100%;
  min-height: 240px;
  background: var(--sand);
}

.card-gallery-viewport {
  position: relative;
  flex: 1;
  width: 100%;
  min-height: 220px;
  aspect-ratio: 4 / 3;
  cursor: pointer;
  overflow: hidden;
}

.card-gallery-slides {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.card-gallery-slides img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  pointer-events: none;
  z-index: 0;
}

.card-gallery-slides img.is-active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}

.card-gallery-arrow {
  position: absolute;
  top: 50%;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--espresso);
  box-shadow: 0 4px 16px var(--shadow-md);
  cursor: pointer;
  transform: translateY(-50%);
  transition: background var(--transition), transform 0.2s ease;
}

.card-gallery-arrow:hover {
  background: var(--white);
  transform: translateY(-50%) scale(1.05);
}

.card-gallery-prev {
  left: 0.65rem;
}

.card-gallery-next {
  right: 0.65rem;
}

.card-gallery-footer {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  padding: 0.75rem 1rem 0.85rem;
  background: var(--white);
  border-top: 1px solid var(--sand);
}

.card-gallery-counter {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--mauve);
}

.card-gallery-dots {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.4rem;
}

.card-gallery-dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: var(--blush);
  cursor: pointer;
  transition: background var(--transition), transform 0.2s ease;
}

.card-gallery-dot.is-active {
  background: var(--espresso);
  transform: scale(1.2);
}

.card-gallery-hint {
  position: absolute;
  top: 0.65rem;
  right: 0.65rem;
  z-index: 2;
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
  background: rgba(61, 47, 42, 0.5);
  backdrop-filter: blur(6px);
  padding: 0.35rem 0.55rem;
  border-radius: 100px;
  pointer-events: none;
}

@media (min-width: 901px) {
  .card-featured .card-media.card-gallery {
    min-height: 100%;
    height: 100%;
  }

  .card-featured .card-gallery-viewport {
    aspect-ratio: auto;
    min-height: 360px;
    height: 100%;
  }
}

/* Lightbox */
.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.gallery-lightbox[hidden] {
  display: none;
}

.gallery-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(61, 47, 42, 0.88);
}

.gallery-lightbox-dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 920px);
  max-height: 92vh;
  display: grid;
  grid-template-columns: auto 1fr auto;
  grid-template-rows: auto 1fr;
  gap: 0.75rem 1rem;
  align-items: center;
}

.gallery-lightbox-title {
  grid-column: 1 / -1;
  text-align: center;
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--cream);
}

.gallery-lightbox-close {
  position: absolute;
  top: -0.25rem;
  right: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: var(--cream);
  cursor: pointer;
  transition: background var(--transition);
}

.gallery-lightbox-close:hover {
  background: rgba(255, 255, 255, 0.22);
}

.gallery-lightbox-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: var(--cream);
  cursor: pointer;
  transition: background var(--transition);
  flex-shrink: 0;
}

.gallery-lightbox-nav:hover {
  background: rgba(255, 255, 255, 0.22);
}

.gallery-lightbox-figure {
  grid-column: 2;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
}

.gallery-lightbox-img {
  max-width: 100%;
  max-height: calc(92vh - 6rem);
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.35);
}

.gallery-lightbox-counter {
  font-size: 0.8125rem;
  letter-spacing: 0.1em;
  color: var(--blush);
}

body.lightbox-open {
  overflow: hidden;
}

@media (max-width: 600px) {
  .gallery-lightbox-dialog {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto 1fr auto auto;
    gap: 0.5rem;
  }

  .gallery-lightbox-prev {
    grid-row: 4;
    justify-self: start;
  }

  .gallery-lightbox-figure {
    grid-column: 1;
    grid-row: 3;
  }

  .gallery-lightbox-next {
    grid-row: 4;
    justify-self: end;
    grid-column: 1;
  }

  .gallery-lightbox-close {
    top: 0;
    right: 0;
  }
}

.card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(61, 47, 42, 0.12) 0%, transparent 45%);
  pointer-events: none;
}

.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s ease;
}

.card-body {
  padding: 1.75rem 1.75rem 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card-featured {
  display: grid;
  grid-template-columns: minmax(0, 40%) minmax(0, 60%);
  grid-column: 1 / -1;
  min-width: 0;
}

.card-featured .card-media:not(.card-gallery) {
  aspect-ratio: auto;
  min-height: 100%;
}

.card-featured .card-body {
  padding: 2rem 2.25rem 2.25rem;
}

.card-head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.5rem 1rem;
  margin-bottom: 0.75rem;
}

.card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--espresso);
  flex: 1 1 auto;
  min-width: 0;
}

.card-price {
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--gold);
}

.card-badge {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mauve);
  background: var(--sand);
  padding: 0.35rem 0.75rem;
  border-radius: 100px;
  margin-bottom: 1rem;
}

.card p {
  font-size: 0.9375rem;
  color: var(--mauve);
  line-height: 1.65;
}

.card p + p {
  margin-top: 0.85rem;
}

.card-list {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.card-list li {
  position: relative;
  padding-left: 1.1rem;
  font-size: 0.9375rem;
  color: var(--mauve);
  line-height: 1.55;
}

.card-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--rose);
}

.card-note {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--sand);
  font-size: 0.875rem;
  color: var(--espresso);
}


/* CTA */
.cta {
  padding: 4rem 0;
}

.cta-inner {
  text-align: center;
  padding: 4rem 2rem;
  background: linear-gradient(135deg, var(--espresso) 0%, #5a4540 100%);
  border-radius: var(--radius-lg);
  color: var(--cream);
  width: 100%;
  max-width: 100%;
}

.cta-inner h2 {
  color: var(--cream);
  margin-bottom: 0.75rem;
}

.cta-inner p {
  color: var(--blush);
  margin-bottom: 2rem;
}

.cta .btn-primary {
  background: var(--cream);
  color: var(--espresso);
}

.cta .btn-primary:hover {
  background: var(--white);
}

/* Contato */
.contato {
  background: var(--white);
}

.contato-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 4rem;
  align-items: start;
  width: 100%;
}

.contato-info p {
  color: var(--mauve);
  margin: 1rem 0 2rem;
}

.contato-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contato-list li {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.contato-list strong {
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--rose);
}

.contato-list a {
  font-size: 1.0625rem;
  color: var(--espresso);
  transition: color var(--transition);
}

.contato-list a:hover {
  color: var(--gold);
}

.contato-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: 2rem;
  background: var(--cream);
  border-radius: var(--radius-lg);
  border: 1px solid var(--sand);
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

.contato-form label {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--mauve);
}

.contato-form input,
.contato-form select,
.contato-form textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 300;
  padding: 0.85rem 1rem;
  border: 1px solid var(--sand);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--espresso);
  transition: border-color var(--transition);
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

.contato-form input:focus,
.contato-form select:focus,
.contato-form textarea:focus {
  outline: none;
  border-color: var(--rose);
}

.contato-form textarea {
  resize: vertical;
  min-height: 100px;
}

/* Footer */
.footer {
  padding: 2rem 0;
  border-top: 1px solid var(--sand);
  background: var(--cream);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: var(--mauve);
}

.footer-top {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color var(--transition);
}

.footer-top:hover {
  color: var(--espresso);
}

/* WhatsApp float */
.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 90;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #25d366;
  color: var(--white);
  border-radius: 50%;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
  transition: transform var(--transition), box-shadow var(--transition);
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
}

.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.45);
}

/* Animations */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 900px) {
  .hero {
    min-height: auto;
    padding: calc(var(--header-h) + 2rem) 0 3rem;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero-content {
    max-width: none;
    text-align: left;
    width: 100%;
  }

  .hero-text {
    max-width: none;
  }

  .hero-logo-wrap {
    width: 100%;
    padding: 0;
  }

  .hero-logo {
    width: min(280px, 85%);
    margin-inline: auto;
    opacity: 0.28;
  }

  .sobre-grid,
  .contato-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .sobre-visual {
    order: -1;
    max-width: 100%;
    width: 100%;
    margin-inline: 0;
  }

  .cards {
    grid-template-columns: 1fr;
  }

  .card {
    overflow: visible;
  }

  .card-featured {
    display: flex;
    flex-direction: column;
    grid-template-columns: unset;
    overflow: visible;
  }

  .card-featured .card-media.card-gallery {
    width: 100%;
    min-height: 0;
    height: auto;
    max-height: none;
    flex: 0 0 auto;
  }

  .card-featured .card-gallery-viewport {
    aspect-ratio: 4 / 3;
    min-height: 0;
    height: auto;
    max-height: min(42vh, 280px);
    flex: none;
  }

  .card-gallery {
    min-height: 0;
  }

  .card-gallery-viewport {
    aspect-ratio: 4 / 3;
    min-height: 0;
    max-height: min(42vh, 280px);
    flex: none;
  }

  .card-media {
    aspect-ratio: 4 / 3;
    max-height: min(42vh, 260px);
  }

  .card-media img {
    max-height: 100%;
  }

  .card-gallery-arrow {
    width: 2.25rem;
    height: 2.25rem;
  }

  .card-gallery-prev {
    left: 0.5rem;
  }

  .card-gallery-next {
    right: 0.5rem;
  }

  .card-featured .card-body {
    display: block;
    flex: 0 0 auto;
    width: 100%;
    padding: 1.5rem 1.25rem 1.75rem;
    overflow: visible;
  }

  .card-body {
    padding: 1.5rem 1.25rem 1.75rem;
  }

  .card-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.35rem;
  }

  .card h3 {
    font-size: 1.35rem;
  }

  .cta-inner {
    padding: 3rem 1.5rem;
  }

  .contato-form {
    padding: 1.5rem 1.25rem;
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    width: 100%;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    background: var(--cream);
    border-bottom: 1px solid var(--sand);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform var(--transition), opacity var(--transition);
  }

  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .logo {
    font-size: 1.25rem;
  }

  .section {
    padding: 3rem 0;
  }

  .section-header {
    margin-bottom: 2.5rem;
  }

  .hero h1 {
    font-size: clamp(2rem, 8vw, 2.75rem);
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }

  .whatsapp-float {
    bottom: 1rem;
    right: 1rem;
  }
}
