:root {
  --bg: #f7f7f5;
  --bg-2: #f2f1ed;
  --white: #ffffff;
  --text: #2c2a28;
  --muted: #6f6a66;
  --line: rgba(44, 42, 40, 0.08);
  --dark: #2d2926;
  --soft: #ecebe8;
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  --shadow-soft: 0 18px 40px rgba(0, 0, 0, 0.04);
  --shadow-hover: 0 26px 54px rgba(0, 0, 0, 0.1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", Arial, Helvetica, sans-serif;
  background: linear-gradient(to bottom, #faf9f7, #f4f2ee);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

button,
input,
textarea {
  font: inherit;
}

.container {
  width: min(1200px, 92%);
  margin: 0 auto;
}

.section {
  padding: 82px 0;
}

.section-white {
  background: rgba(255, 255, 255, 0.82);
}

.section-heading {
  max-width: 780px;
  margin: 0 auto 40px;
}

.section-heading.center {
  text-align: center;
}

.section-subtext {
  max-width: 720px;
  margin: 0 auto;
}

.eyebrow {
  font-size: 12px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 14px;
}

.title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.3rem, 4.6vw, 4.2rem);
  line-height: 1.08;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.hero-title {
  font-size: clamp(3.2rem, 6vw, 5.5rem);
  line-height: 0.96;
  letter-spacing: -0.03em;
  max-width: 650px;
}

.text {
  color: var(--muted);
  font-size: 1rem;
}

.text + .text {
  margin-top: 18px;
}

/* HEADER */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.header-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 0;
  position: relative;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand-no-logo {
  gap: 0;
}

.brand-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.brand-name {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.45rem;
  font-weight: 600;
  margin: 0;
  line-height: 1.05;
}

.brand-sub {
  font-size: 9px;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: #9b958f;
  margin-top: 6px;
  margin-bottom: 0;
  line-height: 1;
}

.nav {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 0.95rem;
}

.nav a {
  position: relative;
  transition: color 0.25s ease;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 1px;
  background: var(--text);
  transition: width 0.25s ease;
}

.nav a:hover::after,
.nav a:focus-visible::after {
  width: 100%;
}

.nav a:hover,
.nav a:focus-visible {
  color: #000;
}

/* BOTÕES */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  border-radius: 999px;
  transition: all 0.25s ease;
  border: 1px solid transparent;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 500;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-dark {
  background: #2d2926;
  color: #fff;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.btn-dark:hover {
  background: #1f1c1a;
}

.btn-light {
  background: rgba(255, 255, 255, 0.58);
  border-color: rgba(44, 42, 40, 0.12);
  color: var(--text);
}

.btn-light:hover {
  background: rgba(255, 255, 255, 0.9);
}

.btn-white {
  background: #ffffff;
  color: #2d2926;
}

.btn-white:hover {
  background: #f6f4f2;
}

.btn-outline-light {
  background: transparent;
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.2);
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.08);
}

/* HERO */
.hero {
  display: grid;
  grid-template-columns: 1.1fr 0.85fr;
  gap: 42px;
  align-items: center;
  padding: 54px 0 74px;
}

.hero-description {
  max-width: 560px;
  font-size: 1.05rem;
  line-height: 1.9;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.hero-actions .btn {
  min-width: 200px;
  padding: 15px 26px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}

.hero-badge {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(44, 42, 40, 0.08);
  border-radius: 18px;
  padding: 14px 18px;
  min-width: 180px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.04);
}

.hero-badge strong {
  display: block;
  font-size: 0.95rem;
  color: var(--text);
}

.hero-badge span {
  display: block;
  font-size: 0.88rem;
  color: var(--muted);
  margin-top: 4px;
}

/* IMAGENS E CARDS */
.hero-image,
.image-card,
.gallery-card img {
  border-radius: var(--radius-xl);
}

.hero-image,
.image-card {
  overflow: hidden;
  background: var(--white);
}

.hero-image {
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.1);
}

.image-card {
  box-shadow: var(--shadow);
}

.hero-image img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  object-position: center top;
}

.image-card img {
  width: 100%;
  height: 620px;
  object-fit: cover;
}

.stats-section {
  padding-top: 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.stat-card {
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(44, 42, 40, 0.08);
  border-radius: 24px;
  padding: 24px;
  box-shadow: var(--shadow-soft);
}

.stat-card strong {
  display: block;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2rem;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-card span {
  color: var(--muted);
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 55px;
  align-items: center;
}

.cards-3,
.cards-4 {
  display: grid;
  gap: 24px;
}

.cards-3 {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 42px;
}

.cards-4 {
  grid-template-columns: repeat(4, 1fr);
  margin-top: 42px;
}

.card {
  background: var(--white);
  border-radius: 24px;
  padding: 34px 28px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.card-soft {
  background: #ecebe8;
  box-shadow: none;
  border: 1px solid rgba(44, 42, 40, 0.08);
}

.card h3,
.contact-box h3,
.gallery-card h3,
.procedure-group-title,
.procedure-card h4,
.footer-brand,
.footer-column h4,
.results-secondary-title {
  font-family: "Cormorant Garamond", Georgia, serif;
}

.card h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
}

/* PROCEDIMENTOS */
.procedure-group {
  margin-top: 42px;
}

.procedure-group-space {
  margin-top: 56px;
}

.procedure-group-header {
  margin-bottom: 22px;
}

.procedure-group-title {
  font-size: 2rem;
  font-weight: 600;
  color: var(--text);
}

.procedure-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.procedure-card {
  background: var(--white);
  border: 1px solid rgba(44, 42, 40, 0.08);
  border-radius: 24px;
  padding: 28px 24px;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.procedure-card:hover,
.gallery-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.07);
}

.procedure-card h4 {
  font-size: 1.55rem;
  line-height: 1.05;
  margin-bottom: 12px;
  color: var(--text);
}

.procedure-card p {
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.75;
}

/* RESULTADOS */
.results-highlight-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 42px;
}

.results-secondary {
  margin-top: 42px;
}

.results-secondary-title {
  font-size: 2rem;
  margin-bottom: 18px;
  color: var(--text);
}

.results-secondary-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.gallery-card {
  background: var(--bg);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.gallery-card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.gallery-card h3 {
  font-size: 1.15rem;
  padding: 18px 18px 22px;
}

.gallery-card-small img {
  height: 260px;
}

/* MAPA */
.map-wrapper {
  overflow: hidden;
  border-radius: 28px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(44, 42, 40, 0.08);
}

.map-wrapper iframe {
  width: 100%;
  height: 420px;
  border: 0;
  display: block;
}

/* CONTATO */
.contact-section {
  background: var(--dark);
  color: var(--white);
}

.contact-section .eyebrow,
.contact-section .text,
.contact-box p,
.contact-box a {
  color: rgba(255, 255, 255, 0.78);
}

.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.contact-box {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 30px;
}

.contact-box h3 {
  font-size: 1.8rem;
  margin-bottom: 18px;
}

.contact-group {
  margin-bottom: 22px;
}

.contact-group strong {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 8px;
}

.contact-box a,
.footer-column a {
  transition: opacity 0.25s ease, color 0.25s ease;
}

.contact-box a:hover,
.footer-column a:hover {
  opacity: 1;
  color: #ffffff;
}

/* FOOTER */
.footer {
  background: var(--white);
  border-top: 1px solid var(--line);
  padding: 34px 0;
}

.footer-full {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 30px;
  align-items: start;
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: var(--muted);
}

.footer-column h4 {
  font-size: 1.5rem;
  color: var(--text);
  margin-bottom: 6px;
}

.footer-brand-area {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-brand-no-logo {
  gap: 0;
}

.footer-brand {
  color: var(--text);
  font-size: 1.25rem;
}

.footer-sub {
  color: #8e8883;
  font-size: 0.9rem;
}

.footer-text {
  color: var(--muted);
  max-width: 320px;
}

/* WHATSAPP */
.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  background: var(--dark);
  color: var(--white);
  padding: 14px 20px;
  border-radius: 999px;
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.18);
  z-index: 999;
  transition: all 0.25s ease;
  font-weight: 600;
}

.whatsapp-float:hover {
  opacity: 0.95;
  transform: translateY(-2px);
  box-shadow: 0 22px 42px rgba(0, 0, 0, 0.2);
}

/* MENU MOBILE */
.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: none;
  background: transparent;
  cursor: pointer;
  position: relative;
  z-index: 1002;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  margin: 4px auto;
  transition: 0.25s ease;
}

.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);
}

/* REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.show {
  opacity: 1;
  transform: translateY(0);
}

/* RESPONSIVO */
@media (max-width: 1100px) {
  .cards-4,
  .stats-grid,
  .procedure-cards,
  .results-highlight-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .results-secondary-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-full {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 900px) {
  .hero,
  .two-col,
  .cards-3,
  .contact-wrap,
  .footer-full {
    grid-template-columns: 1fr;
  }

  .hero-image img,
  .image-card img {
    height: auto;
    max-height: 720px;
  }
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .header-cta {
    display: none;
  }

  .header-wrap {
    gap: 12px;
  }

  .brand {
    max-width: calc(100% - 60px);
  }

  .brand-name {
    font-size: 1.08rem;
  }

  .brand-sub {
    letter-spacing: 0.24em;
    font-size: 8px;
  }

  .nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
    flex-direction: column;
    align-items: flex-start;
    padding: 18px;
    display: none;
    gap: 16px;
  }

  .nav.open {
    display: flex;
  }

  .section {
    padding: 60px 0;
  }

  .hero {
    padding: 34px 0 56px;
    grid-template-columns: 1fr;
  }

  .title {
    font-size: clamp(2rem, 7vw, 3rem);
  }

  .hero-title {
    font-size: clamp(2.7rem, 10vw, 4rem);
    line-height: 0.98;
  }

  .hero-actions .btn {
    width: 100%;
    min-width: 0;
  }

  .hero-badge {
    width: 100%;
    min-width: 0;
  }

  .cards-3,
  .cards-4,
  .stats-grid,
  .procedure-cards,
  .results-highlight-grid,
  .results-secondary-grid {
    grid-template-columns: 1fr;
  }

  .procedure-group-title,
  .results-secondary-title {
    font-size: 1.7rem;
  }

  .gallery-card img,
  .map-wrapper iframe {
    height: 280px;
  }

  .whatsapp-float {
    right: 16px;
    bottom: 16px;
    padding: 12px 16px;
    font-size: 0.92rem;
  }
}

@media (max-width: 520px) {
  .container {
    width: min(1200px, 94%);
  }

  .section {
    padding: 52px 0;
  }

  .hero {
    gap: 28px;
  }

  .hero-description {
    font-size: 0.98rem;
    line-height: 1.75;
  }

  .card,
  .procedure-card,
  .contact-box,
  .stat-card {
    padding: 22px 18px;
    border-radius: 20px;
  }

  .gallery-card h3 {
    font-size: 1.02rem;
  }

  .map-wrapper {
    border-radius: 22px;
  }
}