*, *::before, *::after { box-sizing: border-box; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  color: #1A1A1A;
  background: #FAF0F1;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 { font-family: 'Cormorant Garamond', Georgia, serif; }

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: #FAF0F1; }
::-webkit-scrollbar-thumb { background: #C4909A; border-radius: 10px; }

/* ═══════════════════════════════════
   BUTTONS
═══════════════════════════════════ */

.btn-champagne {
  background: linear-gradient(135deg, #C4909A 0%, #A67074 100%);
  color: #fff;
  transition: all .3s ease;
  box-shadow: 0 4px 18px rgba(196,144,154,.35);
}
.btn-champagne:hover {
  background: linear-gradient(135deg, #B47E88 0%, #946070 100%);
  box-shadow: 0 8px 28px rgba(196,144,154,.55);
  transform: translateY(-2px);
}

.btn-outline {
  border: 1.5px solid #C4909A;
  color: #C4909A;
  transition: all .3s ease;
}
.btn-outline:hover {
  background: #C4909A;
  color: #fff;
  transform: translateY(-2px);
}

/* ═══════════════════════════════════
   HEADER
═══════════════════════════════════ */

.header-logo {
  display: flex;
  align-items: baseline;
  gap: 6px;
  text-decoration: none;
}
.header-logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
  display: block;
}

.nav-link { position: relative; }
.nav-link::after {
  content: ''; position: absolute;
  bottom: -3px; left: 0; width: 0; height: 1px;
  background: #C4909A; transition: width .3s ease;
}
.nav-link:hover::after, .nav-link.active::after { width: 100%; }

#header.scrolled {
  box-shadow: 0 2px 24px rgba(0,0,0,.07);
  background: rgba(250,240,241,.97);
  backdrop-filter: blur(10px);
}

#mobile-menu { max-height: 0; overflow: hidden; transition: max-height .4s ease; }
#mobile-menu.open { max-height: 440px; }

/* ═══════════════════════════════════
   WHATSAPP FAB
═══════════════════════════════════ */

#wa-fab {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  background: linear-gradient(135deg, #25D366, #128C7E);
  transition: transform .3s ease, box-shadow .3s ease;
  box-shadow: 0 4px 20px rgba(37,211,102,.35);
}
#wa-fab:hover {
  transform: scale(1.12) translateY(-3px);
  box-shadow: 0 8px 30px rgba(37,211,102,.5);
}

/* ═══════════════════════════════════
   SECTION UTILITIES
═══════════════════════════════════ */

.section-label {
  display: block;
  letter-spacing: .2em;
  font-size: .72rem;
  text-transform: uppercase;
  color: #C4909A;
  font-weight: 500;
}

.accent-line {
  display: block;
  width: 52px;
  height: 1.5px;
  background: linear-gradient(90deg, transparent, #C4909A, transparent);
  margin: 0 auto 1.5rem;
}

.accent-line-left {
  display: block;
  width: 52px;
  height: 1.5px;
  background: linear-gradient(90deg, #C4909A, transparent);
  margin-bottom: 1.5rem;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 600;
  color: #1A1A1A;
  letter-spacing: -.01em;
  line-height: 1.2;
}

.section-inline-logo {
  height: clamp(1.8rem, 3.5vw, 2.5rem);
  width: auto;
  object-fit: contain;
  vertical-align: middle;
}

.section-sub {
  color: #6B6B6B;
  font-size: .875rem;
  line-height: 1.75;
  margin-top: .75rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 400;
}

.check-circle {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: #EDD2D4;
}

/* ═══════════════════════════════════
   HERO
═══════════════════════════════════ */

.hero-text-block { max-width: 540px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #6B6B6B;
  background: rgba(255,255,255,.65);
  border: 1px solid rgba(196,144,154,.35);
  border-radius: 100px;
  padding: 5px 14px;
  backdrop-filter: blur(4px);
  margin-bottom: 1.5rem;
}

.hero-pills {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 1.4rem;
}
.hero-pill {
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #C4909A;
}
.hero-pill-sep {
  font-size: .65rem;
  color: #C4909A;
  opacity: .5;
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.6rem, 5vw, 3.8rem);
  font-weight: 700;
  line-height: 1.1;
  color: #1A1A1A;
  letter-spacing: -.02em;
}
.hero-title em { font-style: italic; font-weight: 400; }

.hero-title-mobile {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.1rem, 7vw, 2.8rem);
  font-weight: 700;
  line-height: 1.12;
  color: #1A1A1A;
  letter-spacing: -.015em;
}
.hero-title-mobile em { font-style: italic; font-weight: 400; }

.hero-divider {
  width: 48px;
  height: 2px;
  background: linear-gradient(90deg, #C4909A, #D4A8AE);
  border-radius: 2px;
  margin: 1.5rem 0;
}

.hero-sub {
  color: #3A3A3A;
  font-size: .95rem;
  line-height: 1.8;
  font-weight: 400;
  max-width: 440px;
}

.hero-fullbg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-fullbg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 100% 18%;
  display: block;
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-gradient-fallback {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 60% 70% at 70% 40%, rgba(237,196,200,.25) 0%, transparent 70%),
    radial-gradient(ellipse 50% 50% at 80% 60%, rgba(184,169,200,.08) 0%, transparent 60%),
    linear-gradient(135deg, #FAF0F1 0%, #F5E2E3 40%, #EDD2D4 100%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(to right,
      rgba(250,240,241,1)   0%,
      rgba(250,240,241,.95) 20%,
      rgba(250,240,241,.78) 40%,
      rgba(250,240,241,.25) 65%,
      rgba(250,240,241,0)   100%
    );
}

@media (max-width: 1023px) {
  .hero-overlay {
    background:
      linear-gradient(to top,
        rgba(250,240,241,1)    0%,
        rgba(250,240,241,.95)  25%,
        rgba(250,240,241,.5)   55%,
        rgba(250,240,241,0)   100%
      );
  }
}

/* Painel de foto — desktop: ocupa a metade direita */
.hero-desktop-img {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 52%;
  z-index: 1;
  overflow: hidden;
}

.hero-desktop-img::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(to right,
    rgba(245,226,227,1)   0%,
    rgba(245,226,227,.4)  22%,
    transparent           48%
  );
}

.hero-desktop-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 12%;
  display: block;
}

/* ═══════════════════════════════════
   SERVICE CARDS
═══════════════════════════════════ */

.svc-card {
  border-radius: 22px;
  overflow: hidden;
  background: #fff;
  border: 1px solid #EDD0D2;
  box-shadow: 0 3px 14px rgba(0,0,0,.04);
  display: flex;
  flex-direction: column;
  transition: transform .3s ease, box-shadow .3s ease;
}
.svc-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 32px rgba(0,0,0,.08);
}

.svc-card-dark {
  background: linear-gradient(160deg, #1A1A1A, #2D2D2D);
  border-color: rgba(196,144,154,.15);
}

.svc-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: #EDD2D4;
  color: #C4909A;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  margin: 20px 20px 0;
  flex-shrink: 0;
  transition: all .3s ease;
}
.svc-card-dark .svc-card-icon {
  background: rgba(196,144,154,.15);
  color: #C4909A;
}
.svc-card:hover .svc-card-icon {
  background: #C4909A;
  color: #fff;
}

.svc-card-body {
  padding: 14px 20px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.svc-card-body h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-weight: 600;
  color: #1A1A1A;
  margin-bottom: 7px;
  line-height: 1.3;
}
.svc-card-dark .svc-card-body h3 { color: #D4A8AE; }

.svc-card-body p {
  font-size: .8rem;
  color: #6B6B6B;
  line-height: 1.65;
  flex: 1;
  margin-bottom: 14px;
}
.svc-card-dark .svc-card-body p { color: #8A8A8A; }

.svc-btn {
  display: inline-flex;
  align-items: center;
  font-size: .73rem;
  font-weight: 600;
  color: #C4909A;
  letter-spacing: .03em;
  transition: color .2s ease;
  text-decoration: none;
  margin-top: auto;
}
.svc-btn:hover { color: #A67074; }
.svc-btn-light { color: #D4A8AE; }
.svc-btn-light:hover { color: #EDD2D4; }

/* ═══════════════════════════════════
   DIFFERENTIALS
═══════════════════════════════════ */

.diff-card {
  text-align: center;
  padding: 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(0,0,0,.04);
  transition: all .3s ease;
}
.diff-card:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,.08);
  transform: translateY(-3px);
}

.diff-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  background: #EDD2D4;
  color: #C4909A;
  transition: all .3s ease;
}

/* ═══════════════════════════════════
   GALLERY
═══════════════════════════════════ */

.gallery-track {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  padding: 4px 0 10px;
  flex: 1;
  -ms-overflow-style: none;
  scrollbar-width: none;
  cursor: grab;
  will-change: scroll-position;
}
.gallery-track::-webkit-scrollbar { display: none; }
.gallery-track:active { cursor: grabbing; }

.gallery-item {
  flex: 0 0 min(300px, 72vw);
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 3/4;
  background: linear-gradient(135deg, #EDD0D2 0%, #D4A8AE 50%, #EDD2D4 100%);
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
  transition: box-shadow .3s ease;
}
.gallery-item:hover {
  box-shadow: 0 8px 28px rgba(0,0,0,.12);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}
.gallery-item:hover img { transform: scale(1.08); }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,26,26,.65) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 14px;
  opacity: 0;
  transition: opacity .3s ease;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }

.gallery-cat {
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(196,144,154,.6);
  padding: 4px 10px;
  border-radius: 20px;
  backdrop-filter: blur(4px);
}

.gallery-zoom-icon {
  color: rgba(255,255,255,.7);
  font-size: .75rem;
}

/* ═══════════════════════════════════
   LIGHTBOX
═══════════════════════════════════ */

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(10,10,10,.92);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s ease, visibility .3s ease;
}
.lightbox.open {
  opacity: 1;
  visibility: visible;
}

.lightbox img {
  max-width: 90vw;
  max-height: 80vh;
  border-radius: 12px;
  object-fit: contain;
  box-shadow: 0 8px 40px rgba(0,0,0,.5);
}
.lightbox.open img {
  animation: lightboxIn .35s ease forwards;
}

@keyframes lightboxIn {
  from { transform: scale(.92); opacity: 0; }
  to   { transform: scale(1);   opacity: 1; }
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 2rem;
  color: rgba(255,255,255,.7);
  background: none;
  border: none;
  cursor: pointer;
  transition: color .2s ease;
  z-index: 10;
  line-height: 1;
}
.lightbox-close:hover { color: #fff; }

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  color: rgba(255,255,255,.8);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all .2s ease;
  z-index: 10;
}
.lightbox-nav:hover {
  background: rgba(196,144,154,.4);
  color: #fff;
}
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

#lightbox-caption {
  color: rgba(255,255,255,.6);
  font-size: .8rem;
  margin-top: 16px;
  letter-spacing: .05em;
}

/* ═══════════════════════════════════
   ABOUT SECTION
═══════════════════════════════════ */

.about-image-wrap {
  position: relative;
  z-index: 10;
  overflow: hidden;
  border-radius: 60px 20px 60px 20px;
  box-shadow: 0 12px 40px rgba(0,0,0,.1);
  aspect-ratio: 3/4;
  max-height: 480px;
  background: linear-gradient(135deg, #EDD0D2 0%, #D4A8AE 50%, #EDD2D4 100%);
}
.about-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  position: relative;
  z-index: 1;
}
.about-image-fallback {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.about-image-border {
  position: absolute;
  z-index: 0;
  top: -14px;
  right: -14px;
  bottom: 14px;
  left: 14px;
  border: 1.5px solid rgba(196,144,154,.25);
  border-radius: 60px 20px 60px 20px;
  pointer-events: none;
}

.about-badge {
  position: absolute;
  bottom: -10px;
  left: -10px;
  background: #fff;
  border-radius: 16px;
  padding: 6px;
  box-shadow: 0 8px 28px rgba(0,0,0,.1);
  z-index: 20;
  overflow: hidden;
}
.about-badge-logo {
  width: 150px;
  height: auto;
  display: block;
  object-fit: contain;
}

/* ═══════════════════════════════════
   REVIEWS / CAROUSEL
═══════════════════════════════════ */

.carousel-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
}

.carousel-btn {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid #C4909A;
  background: #fff;
  color: #C4909A;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all .3s ease;
  z-index: 10;
}
.carousel-btn:hover {
  background: #C4909A;
  color: #fff;
  transform: scale(1.05);
}

@media (max-width: 767px) {
  .carousel-btn { display: none; }
}

.reviews-track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding-bottom: 6px;
  flex: 1;
  -ms-overflow-style: none;
  scrollbar-width: none;
  cursor: grab;
  will-change: scroll-position;
}
.reviews-track::-webkit-scrollbar { display: none; }
.reviews-track:active { cursor: grabbing; }

.review-card {
  flex: 0 0 min(320px, 84vw);
  scroll-snap-align: start;
  border-radius: 20px;
  background: #fff;
  border: 1px solid #EDD0D2;
  padding: 22px;
  display: flex;
  flex-direction: column;
  position: relative;
  box-shadow: 0 3px 14px rgba(0,0,0,.04);
}
.review-card::before {
  content: '\201C';
  font-family: 'Cormorant Garamond', serif;
  font-size: 5rem;
  color: #C4909A;
  opacity: .12;
  position: absolute;
  top: -4px;
  left: 14px;
  line-height: 1;
  pointer-events: none;
}

.review-card-dark {
  background: linear-gradient(135deg, #1A1A1A, #2D2D2D);
  border-color: rgba(196,144,154,.12);
}

.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #EDD2D4;
  color: #C4909A;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 600;
  flex-shrink: 0;
}

/* ═══════════════════════════════════
   FAQ
═══════════════════════════════════ */

.faq-item {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #EDD0D2;
  transition: box-shadow .3s ease;
}
.faq-item:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,.05);
}

.faq-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  transition: background .2s ease;
}
.faq-btn:hover { background: #FAF0F1; }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height .45s cubic-bezier(.4,0,.2,1), opacity .35s ease;
}
.faq-answer.open { max-height: 400px; opacity: 1; }

.faq-chevron { transition: transform .35s ease; }
.faq-item.open .faq-chevron { transform: rotate(180deg); }

/* ═══════════════════════════════════
   CTA SECTION
═══════════════════════════════════ */

.cta-logo-wrap {
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: center;
}
.cta-logo-img {
  height: 72px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: .55;
  display: block;
}

.cta-title {
  font-family: 'Cormorant Garamond', serif;
  color: #fff;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 600;
  margin-bottom: .75rem;
}

.cta-sub {
  color: #9A9A9A;
  max-width: 460px;
  margin: 0 auto 1.75rem;
  font-size: .95rem;
  line-height: 1.8;
}

.cta-outline-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 32px;
  border-radius: 9999px;
  font-size: .875rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  border: 1.5px solid #C4909A;
  color: #C4909A;
  transition: all .3s ease;
}
.cta-outline-btn:hover {
  background: #C4909A;
  color: #fff;
}

/* ═══════════════════════════════════
   FOOTER
═══════════════════════════════════ */

.footer-logo {
  display: flex;
  align-items: baseline;
  gap: 6px;
}
.footer-logo-img {
  height: 64px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: .75;
}

.footer-heading {
  font-size: .7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .15em;
  color: #fff;
  margin-bottom: 16px;
}

.footer-link {
  color: #6B6B6B;
  transition: color .2s ease;
}
.footer-link:hover { color: #C4909A; }

.social-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #2D2D2D;
  color: #9A9A9A;
  transition: all .3s ease;
}
.social-icon:hover {
  background: #C4909A;
  color: #fff;
}
.social-icon-wa:hover {
  background: #25D366;
}

/* ═══════════════════════════════════
   SCROLL REVEAL
═══════════════════════════════════ */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════
   SECTION SCROLL REVEAL
═══════════════════════════════════ */

.sec-anim {
  transition: opacity .9s cubic-bezier(.16,1,.3,1),
              transform .9s cubic-bezier(.16,1,.3,1);
}
.sec-no-tr      { transition: none !important; }
.sec-from-below { opacity: 0; transform: translateY(60px); }
.sec-from-above { opacity: 0; transform: translateY(-40px); }
.sec-visible    { opacity: 1 !important; transform: none !important; }

/* ═══════════════════════════════════
   WAVE DIVIDERS
═══════════════════════════════════ */

.wave-divider {
  overflow: hidden;
  line-height: 0;
  margin: -1px 0;
  position: relative;
  z-index: 5;
}
.wave-divider svg { display: block; width: 100%; }

.wave-slide-wrapper {
  display: flex;
  width: 200%;
  animation: wave-slide 16s linear infinite;
}
.wave-slide-wrapper.wave-reverse {
  animation-direction: reverse;
}
.wave-slide-wrapper svg {
  flex: 0 0 50%;
  width: 50% !important;
}

@keyframes wave-slide {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
