/* ==========================================================================
   VARIÁVEIS
   ========================================================================== */
:root {
  --color-base: #F9F6F0;
  --color-base-deep: #F3EEE4;
  --color-primary: #1E352F;
  --color-primary-soft: #2F4A42;
  --color-accent: #D4A396;
  --color-accent-soft: #E8C9BE;
  --color-accent-strong: #C08975;

  --font-display: "Playfair Display", serif;
  --font-body: "Inter", sans-serif;

  --section-padding: clamp(80px, 10vw, 160px);
  --container-pad: clamp(20px, 5vw, 0px);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background-color: var(--color-base);
  color: var(--color-primary);
  font-family: var(--font-body);
  font-weight: 400;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--color-primary);
  font-weight: 500;
  margin: 0;
}

p { line-height: 1.7; margin: 0 0 1rem; }

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

/* ==========================================================================
   TIPOGRAFIA FLUIDA
   ========================================================================== */
h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); line-height: 1.08; letter-spacing: -0.01em; }
h2 { font-size: clamp(2rem, 3.5vw, 3rem); line-height: 1.15; }
h3 { font-size: clamp(1.35rem, 2vw, 1.6rem); }
.lead-text { font-size: clamp(1rem, 1.2vw, 1.15rem); line-height: 1.75; max-width: 46ch; opacity: 0.85; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-accent-strong);
  margin-bottom: 1rem;
}
.eyebrow--light { color: var(--color-accent-soft); }

.section-heading {
  max-width: 640px;
  margin: 0 auto clamp(48px, 6vw, 80px);
  text-align: center;
}

/* ==========================================================================
   BOTÕES / CTA
   ========================================================================== */
.btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-accent);
  color: var(--color-primary);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.9rem 2.1rem;
  border-radius: 30px 8px 30px 8px;
  border: none;
  box-shadow: 0 8px 24px rgba(212, 163, 150, 0.35);
  transition: transform 0.35s ease, box-shadow 0.35s ease, background-color 0.35s ease;
}
.btn-cta:hover {
  background-color: var(--color-accent-strong);
  color: var(--color-base);
  transform: scale(1.03);
  box-shadow: 0 10px 30px rgba(192, 137, 117, 0.45);
}
.btn-cta--small { padding: 0.6rem 1.4rem; font-size: 0.85rem; }
.btn-cta--large { padding: 1.1rem 2.6rem; font-size: 1rem; margin-top: 0.5rem; }

/* ==========================================================================
   HEADER
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: #1E352F;
  transition: background-color 0.4s ease, box-shadow 0.4s ease, backdrop-filter 0.4s ease;
  padding: 22px 0;
}
.site-header.is-scrolled {
  background-color: #1E352F;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  padding: 14px 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: 0.02em;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.brand-sub {
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #D4A396;
}

.main-nav { gap: 32px; }
.main-nav a {
  font-size: 0.92rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  position: relative;
  padding-bottom: 4px;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1px;
  background-color: #D4A396;
  transition: width 0.3s ease;
}
.main-nav a:hover { color: #ffffff; }
.main-nav a:hover::after { width: 100%; }

.nav-toggle {
  width: 32px; height: 22px;
  background: none; border: none;
  display: flex; flex-direction: column; justify-content: space-between;
  cursor: pointer; padding: 0;
}
.nav-toggle span {
  height: 2px; width: 100%;
  background-color: #ffffff;
  border-radius: 2px;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  max-height: 0;
  overflow: hidden;
  padding: 0 24px;
  background-color: #1E352F;
  transition: max-height 0.4s ease, padding 0.4s ease;
}
.mobile-nav.is-open { max-height: 320px; padding: 16px 24px 28px; }
.mobile-nav a { 
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
}
.mobile-nav a:hover { color: #D4A396; }

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  position: relative;
  padding: clamp(140px, 16vw, 200px) 0 clamp(80px, 10vw, 140px);
  overflow: hidden;
  background: radial-gradient(120% 100% at 15% 0%, #FDFBF7 0%, var(--color-base) 45%, var(--color-base-deep) 100%);
}

.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.35;
  z-index: 0;
}
.hero-blob--1 {
  width: 480px; height: 480px;
  background: var(--color-accent-soft);
  top: -140px; right: -120px;
}
.hero-blob--2 {
  width: 360px; height: 360px;
  background: var(--color-primary-soft);
  opacity: 0.12;
  bottom: -160px; left: -100px;
}

.hero .container { position: relative; z-index: 1; }

.hero-copy h1 { margin-bottom: 1.5rem; }
.hero-copy .lead-text { margin-bottom: 2rem; }

.hero-visual { position: relative; }
.hero-organic { width: 100%; height: auto; }

.scroll-indicator {
  position: absolute;
  left: 50%;
  bottom: 36px;
  transform: translateX(-50%);
  width: 1px;
  height: 60px;
  background-color: rgba(30, 53, 47, 0.25);
}
.scroll-indicator span {
  position: absolute;
  top: 0; left: -2px;
  width: 5px; height: 5px;
  border-radius: 50%;
  background-color: var(--color-accent-strong);
  animation: scrollDot 2.2s ease-in-out infinite;
}
@keyframes scrollDot {
  0% { top: 0; opacity: 0; }
  20% { opacity: 1; }
  90% { opacity: 1; }
  100% { top: 90%; opacity: 0; }
}

/* ==========================================================================
   TRUST SECTION
   ========================================================================== */
.trust-section {
  padding: clamp(48px, 6vw, 90px) 0;
  background: linear-gradient(180deg, var(--color-base-deep) 0%, var(--color-base) 100%);
}
.trust-number {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.5vw, 2.1rem);
  color: var(--color-primary);
  margin-top: 10px;
}
.trust-label {
  display: block;
  font-size: 0.85rem;
  opacity: 0.7;
  margin-top: 4px;
}

.icon-line {
  width: 40px; height: 40px;
  fill: none;
  stroke: var(--color-primary);
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.icon-line--small { width: 34px; height: 34px; margin-bottom: 14px; }

/* ==========================================================================
   AWARDS SECTION (Premiações)
   ========================================================================== */
.awards-section {
  padding: var(--section-padding) 0;
  background: linear-gradient(180deg, var(--color-base) 0%, var(--color-base-deep) 100%);
}

.award-card {
  height: 100%;
  padding: 36px 28px;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 28px 8px 28px 8px;
  text-align: left;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.award-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(30, 53, 47, 0.08);
}
.award-card .icon-line { margin-bottom: 18px; }
.award-card h3 { font-size: 1.15rem; margin-bottom: 10px; }
.award-card p { font-size: 0.92rem; opacity: 0.78; margin-bottom: 0; }

/* ==========================================================================
   ABOUT / BIO (Jaqueline Borges)
   ========================================================================== */
.about-section {
  padding: var(--section-padding) 0;
  background: linear-gradient(180deg, var(--color-base-deep) 0%, var(--color-base) 100%);
}

.about-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 80% 20% 70% 30% / 40% 50% 50% 60%;
}

.about-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: inherit;
}

.about-quote {
  margin-top: 1.8rem;
  padding-left: 24px;
  border-left: 2px solid var(--color-accent);
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--color-primary-soft);
}

.about-section p { max-width: 50ch; opacity: 0.85; }

/* ==========================================================================
   SERVICES SECTION
   ========================================================================== */
.services-section {
  padding: var(--section-padding) 0;
  background: linear-gradient(180deg, var(--color-base) 0%, #FBF8F3 60%, var(--color-base-deep) 100%);
}

.service-card { position: relative; }
.service-card--offset-a { transform: translateY(28px); }

.service-image {
  width: 100%;
  aspect-ratio: 4 / 5;
  margin-bottom: 22px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: inherit;
}

.service-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: inherit;
}

.service-image--1 {
  border-radius: 50% 50% 48% 52% / 52% 48% 52% 48%;
}
.service-image--2 {
  border-radius: 70% 30% 60% 40% / 40% 50% 50% 60%;
}
.service-image--3 {
  border-radius: 65% 35% 55% 45% / 45% 55% 45% 55%;
}
.service-image--4 {
  border-radius: 30% 70% 40% 60% / 50% 40% 60% 50%;
}

.service-card h3 { margin-bottom: 10px; }
.service-card p { font-size: 0.95rem; opacity: 0.8; margin-bottom: 0; }

/* ---- Todos os procedimentos (abas) ---- */
.all-services {
  margin-top: clamp(64px, 8vw, 100px);
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.all-services .nav-tabs {
  border-bottom: none;
  gap: 12px;
  margin-bottom: 36px;
}
.all-services .nav-link {
  border: none;
  border-radius: 30px 8px 30px 8px;
  padding: 0.6rem 1.6rem;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--color-primary);
  background-color: rgba(30, 53, 47, 0.05);
  transition: background-color 0.3s ease, color 0.3s ease;
}
.all-services .nav-link:hover { background-color: rgba(30, 53, 47, 0.1); }
.all-services .nav-link.active {
  background-color: var(--color-primary);
  color: var(--color-base);
}

.procedure-list {
  list-style: none;
  margin: 0;
  padding: 0;
  columns: 2;
  column-gap: 40px;
}
.procedure-list li {
  position: relative;
  padding: 10px 0 10px 22px;
  font-size: 0.95rem;
  break-inside: avoid;
  border-bottom: 1px solid rgba(30, 53, 47, 0.08);
}
.procedure-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 18px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background-color: var(--color-accent);
}

@media (max-width: 575.98px) {
  .procedure-list { columns: 1; }
}

/* ==========================================================================
   RESULTS SECTION
   ========================================================================== */
.results-section {
  padding: var(--section-padding) 0;
  background-color: var(--color-base-deep);
}

.result-frame {
  width: 100%;
  aspect-ratio: 3 / 4;
  margin-bottom: 16px;
}
.result-frame--1 { background: linear-gradient(160deg, var(--color-accent-soft), var(--color-base)); border-radius: 50% 50% 45% 55% / 55% 45% 55% 45%; }
.result-frame--2 { background: linear-gradient(160deg, var(--color-primary-soft), var(--color-accent-soft)); border-radius: 45% 55% 50% 50% / 50% 55% 45% 50%; }
.result-frame--3 { background: linear-gradient(160deg, var(--color-accent), var(--color-primary-soft)); border-radius: 55% 45% 55% 45% / 45% 50% 50% 55%; }

.result-caption {
  text-align: center;
  font-size: 0.9rem;
  opacity: 0.75;
  margin: 0;
}

/* ==========================================================================
   TESTIMONIALS
   ========================================================================== */
.testimonials-section {
  padding: var(--section-padding) 0;
  background: radial-gradient(120% 100% at 85% 100%, var(--color-accent-soft) 0%, var(--color-base) 55%);
}

.testimonial-carousel { max-width: 760px; margin: 0 auto; text-align: center; }
.testimonial-carousel blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  line-height: 1.5;
  color: var(--color-primary);
  margin: 0 0 20px;
}
.testimonial-carousel cite {
  font-style: normal;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-accent-strong);
}
.carousel-control-prev, .carousel-control-next {
  width: 44px;
  opacity: 1;
  filter: none;
}
.carousel-control-prev span, .carousel-control-next span {
  font-size: 2rem;
  color: var(--color-primary);
  background: none;
}

.btn-reviews {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.55rem 1.4rem;
  border: 1px solid #D4A396;
  border-radius: 999px;
  color: #D4A396;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: background-color 0.25s ease, color 0.25s ease;
}
.btn-reviews:hover {
  background-color: #D4A396;
  color: #1E352F;
}

/* ==========================================================================
   CTA FINAL
   ========================================================================== */
.cta-final {
  padding: var(--section-padding) 0;
  background: linear-gradient(150deg, var(--color-primary) 0%, var(--color-primary-soft) 100%);
  color: var(--color-base);
}
.cta-final h2 { color: var(--color-base); margin-bottom: 1.2rem; }
.cta-final p { color: rgba(249, 246, 240, 0.8); margin-bottom: 2rem; }

.contact-card {
  background-color: rgba(249, 246, 240, 0.06);
  border: 1px solid rgba(249, 246, 240, 0.15);
  border-radius: 30px 8px 30px 8px;
  padding: clamp(28px, 4vw, 44px);
}
.contact-card h4 {
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-accent-soft);
  margin-bottom: 8px;
}
.contact-card p {
  color: rgba(249, 246, 240, 0.85);
  margin-bottom: 22px;
}
.contact-card p:last-child { margin-bottom: 0; }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  background-color: var(--color-primary);
  color: rgba(249, 246, 240, 0.85);
  padding: 70px 0 24px;
}
.site-footer h4 {
  font-family: var(--font-body);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-accent-soft);
  margin-bottom: 16px;
}
.site-footer a {
  display: block;
  margin-bottom: 10px;
  opacity: 0.85;
  transition: opacity 0.25s ease, color 0.25s ease;
}
.site-footer a:hover { opacity: 1; color: var(--color-accent-soft); }
.brand--footer {
  display: inline-block;
  font-size: 1.4rem;
  color: var(--color-base);
  margin-bottom: 14px;
}
.site-footer p { opacity: 0.7; font-size: 0.9rem; }

.social-icons { display: flex; gap: 14px; margin-top: 6px; }
.social-icons svg {
  width: 22px; height: 22px;
  fill: none;
  stroke: var(--color-base);
  stroke-width: 1.4;
}

.footer-bottom {
  border-top: 1px solid rgba(249, 246, 240, 0.12);
  margin-top: 48px;
  padding-top: 22px;
  font-size: 0.8rem;
  opacity: 0.6;
  text-align: center;
}

/* ==========================================================================
   CARROSSEL PREMIUM - RESULTADOS
   ========================================================================== */
.carrossel-section{
    width:100%;
    padding:40px 0 50px;
    overflow:hidden;
}

.carrossel-section .section-heading{
    margin-bottom:35px;
}

.carrossel-wrapper{
    width:100%;
    overflow:hidden;
    position:relative;
}

.carrossel-track{
    display:flex;
    gap:20px;
    width:max-content;
    animation:movimentoCarrossel 45s linear infinite;
}

.carrossel-wrapper:hover .carrossel-track{
    animation-play-state:paused;
}

.carrossel-item{
    flex:0 0 260px;
    height:360px;
    border-radius:22px;
    overflow:hidden;
    background:#fff;
    box-shadow:0 10px 25px rgba(0,0,0,.10);
    transition:.4s ease;
}

.carrossel-item img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    transition:.5s ease;
}

.carrossel-item:hover{
    transform:translateY(-8px);
}

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

@keyframes movimentoCarrossel{
    from{ transform:translateX(0); }
    to{ transform:translateX(-50%); }
}

@media(max-width:768px){
    .carrossel-section{ padding:30px 0 40px; }
    .carrossel-item{ flex:0 0 220px; height:310px; }
}

@media(max-width:480px){
    .carrossel-item{ flex:0 0 190px; height:270px; }
}

/* ==========================================================================
   ANIMAÇÕES BASE (estado inicial para GSAP)
   ========================================================================== */
[data-reveal] {
  opacity: 0;
  transform: translateY(40px);
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; }
  .scroll-indicator span { animation: none; }
}