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

    :root {
      --creme:    #F9F5F0;
      --creme2:   #F0EAE0;
      --ouro:     #C9A96E;
      --ouro-dark:#A07840;
      --branco:   #FFFFFF;
      --texto:    #2C2020;
      --texto2:   #5A4A3A;
      --cinza:    #9A8A7A;
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Lato', sans-serif;
      background: var(--creme);
      color: var(--texto);
      overflow-x: hidden;
    }

    /* ── NAVBAR ── */
    nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 100;
      display: flex; align-items: center; justify-content: space-between;
      padding: 18px 60px;
      background: rgba(249,245,240,0.96);
      backdrop-filter: blur(8px);
      border-bottom: 1px solid rgba(201,169,110,0.25);
      transition: padding .3s;
    }
    nav.scrolled { padding: 12px 60px; box-shadow: 0 2px 20px rgba(0,0,0,.07); }
    .nav-logo {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.4rem; font-weight: 500; letter-spacing: .06em;
      color: var(--texto); text-decoration: none;
    }
    .nav-logo span { color: var(--ouro); }
    .nav-links { display: flex; gap: 36px; list-style: none; }
    .nav-links a {
      font-family: 'Lato', sans-serif; font-size: .78rem; font-weight: 700;
      letter-spacing: .14em; text-transform: uppercase; color: var(--texto2);
      text-decoration: none; transition: color .2s;
    }
    .nav-links a:hover { color: var(--ouro); }
    .nav-cta {
      background: var(--ouro); color: var(--branco);
      border: none; padding: 10px 28px; cursor: pointer;
      font-family: 'Lato', sans-serif; font-size: .75rem;
      font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
      transition: background .2s;
    }
    .nav-cta:hover { background: var(--ouro-dark); }
    .hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
    .hamburger span { width: 24px; height: 2px; background: var(--texto); display: block; transition: .3s; }

    /* ── HERO / CAROUSEL ── */
    .hero {
      margin-top: 72px; position: relative; overflow: hidden;
    }
    .carousel { position: relative; width: 100%; height: 90vh; min-height: 560px; }
    .carousel-track { display: flex; height: 100%; transition: transform .7s cubic-bezier(.77,0,.18,1); }
    .carousel-slide {
      min-width: 100%; height: 100%; position: relative; flex-shrink: 0;
    }
    .carousel-slide img {
      width: 100%; height: 100%; object-fit: cover; object-position: top center;
    }
    .slide-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(
        to bottom,
        rgba(44,32,32,.10) 0%,
        rgba(44,32,32,.30) 45%,
        rgba(44,32,32,.75) 100%
      );
    }
    .slide-caption {
      position: absolute; bottom: 10%; left: 9%; right: 9%;
      color: var(--branco); max-width: 560px;
    }
    .slide-caption .eyebrow {
      font-size: clamp(0.75rem, 2.5vw, 1.1rem); letter-spacing: .18em; text-transform: uppercase;
      color: var(--ouro); margin-bottom: 14px; font-weight: 700;
    }
    .slide-caption h2 {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(1.7rem, 4.5vw, 3.4rem); font-weight: 400;
      line-height: 1.18; margin-bottom: 18px;
    }
    .slide-caption p {
      font-size: clamp(0.85rem, 2vw, 1.1rem); font-weight: 300; line-height: 1.7;
      color: rgba(255,255,255,.85); margin-bottom: 26px;
    }
    .btn-outline {
      border: 1.8px solid var(--ouro); color: #FFFFFF;
      padding: 12px 30px; font-size: .85rem; font-weight: 700;
      letter-spacing: .14em; text-transform: uppercase; cursor: pointer;
      background: rgba(201, 169, 110, 0.9); transition: background .2s, color .2s;
      text-decoration: none; display: inline-block;
    }
    .btn-outline:hover { background: var(--ouro); color: yellow; }

    /* carousel controls */
    .carousel-btn {
      position: absolute; top: 50%; transform: translateY(-50%);
      background: rgba(249,245,240,.18); border: 1.5px solid rgba(201,169,110,.5);
      color: var(--branco); width: 48px; height: 48px;
      font-size: 1.2rem; cursor: pointer; z-index: 10;
      transition: background .2s; backdrop-filter: blur(4px);
      display: flex; align-items: center; justify-content: center;
    }
    .carousel-btn:hover { background: var(--ouro); border-color: var(--ouro); }
    .carousel-btn.prev { left: 24px; }
    .carousel-btn.next { right: 24px; }
    .carousel-dots {
      position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%);
      display: flex; gap: 10px; z-index: 10;
    }
    .dot {
      width: 8px; height: 8px; border-radius: 50%;
      background: rgba(255,255,255,.4); border: 1px solid rgba(201,169,110,.6);
      cursor: pointer; transition: background .3s, transform .3s;
    }
    .dot.active { background: var(--ouro); transform: scale(1.3); }

    /* ── DIVIDER ── */
    .gold-divider {
      text-align: center; padding: 56px 20px;
      display: flex; flex-direction: column; align-items: center; gap: 14px;
    }
    .gold-divider .line { width: 80px; height: 1px; background: var(--ouro); }
    .gold-divider .ornament {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.5rem; color: var(--ouro); line-height: 1;
    }

    /* ── SOBRE ── */
    .sobre {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 0; max-width: 1200px; margin: 0 auto 80px; padding: 0 40px;
    }
    .sobre-img { position: relative; overflow: hidden; }
    .sobre-img img { width: 100%; height: 560px; object-fit: cover; object-position: top; display: block; }
    .sobre-img::after {
      content: ''; position: absolute; inset: 20px -20px -20px 20px;
      border: 1.5px solid var(--ouro); z-index: -1;
    }
    .sobre-txt {
      background: var(--branco); padding: 60px 56px;
      display: flex; flex-direction: column; justify-content: center;
    }
    .eyebrow-gold {
      font-size: .7rem; letter-spacing: .24em; text-transform: uppercase;
      color: var(--ouro); font-weight: 700; margin-bottom: 16px;
    }
    .sobre-txt h2 {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 400;
      line-height: 1.25; margin-bottom: 22px; color: var(--texto);
    }
    .sobre-txt p {
      font-size: .92rem; line-height: 1.82; color: var(--texto2); margin-bottom: 14px;
    }
    .sobre-badges {
      display: flex; gap: 14px; flex-wrap: wrap; margin-top: 28px;
    }
    .badge {
      border: 1px solid var(--ouro); padding: 7px 18px;
      font-size: .7rem; letter-spacing: .14em; text-transform: uppercase;
      color: var(--ouro); font-weight: 700;
    }

    /* ── TRATAMENTOS ── */
    .tratamentos {
      background: var(--creme2); padding: 80px 40px;
      text-align: center;
    }
    .section-header { margin-bottom: 52px; }
    .section-header h2 {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(1.9rem, 3.5vw, 2.8rem); font-weight: 300;
      margin-bottom: 12px;
    }
    .section-header p { color: var(--cinza); font-size: .9rem; max-width: 420px; margin: 0 auto; line-height: 1.7; }

    .cards-grid {
      display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 24px; max-width: 1100px; margin: 0 auto;
    }
    .card {
      background: var(--branco); padding: 40px 30px;
      border-bottom: 2px solid transparent;
      transition: border-color .3s, transform .3s, box-shadow .3s;
      text-align: left;
    }
    .card:hover { border-color: var(--ouro); transform: translateY(-4px); box-shadow: 0 12px 40px rgba(201,169,110,.12); }
    .card-icon {
      width: 40px; height: 40px; margin-bottom: 22px;
      stroke: var(--ouro); fill: none; stroke-width: 1.5;
    }
    .card h3 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.25rem; font-weight: 500; margin-bottom: 10px;
    }
    .card p { font-size: .84rem; color: var(--texto2); line-height: 1.7; }

    /* ── DIFERENCIAIS ── */
    .diferenciais {
      display: grid; grid-template-columns: 1fr 1fr;
      max-width: 1200px; margin: 80px auto; padding: 0 40px; gap: 0;
    }
    .diferenciais-txt {
      padding: 60px 56px 60px 0;
      display: flex; flex-direction: column; justify-content: center;
    }
    .diferenciais-txt h2 {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 400;
      line-height: 1.25; margin-bottom: 32px;
    }
    .diferencial-item {
      display: flex; gap: 18px; align-items: flex-start; margin-bottom: 26px;
    }
    .diferencial-num {
      font-family: 'Cormorant Garamond', serif;
      font-size: 2rem; font-weight: 300; color: var(--ouro); line-height: 1;
      min-width: 36px;
    }
    .diferencial-item h4 {
      font-size: .82rem; letter-spacing: .1em; text-transform: uppercase;
      font-weight: 700; margin-bottom: 5px;
    }
    .diferencial-item p { font-size: .85rem; color: var(--texto2); line-height: 1.6; }
    .diferenciais-img { position: relative; overflow: hidden; }
    .diferenciais-img img { width: 100%; height: 500px; object-fit: cover; object-position: top; display: block; }
    .diferenciais-img::before {
      content: ''; position: absolute; inset: -20px 20px 20px -20px;
      border: 1.5px solid var(--ouro); z-index: -1;
    }

    /* ── DEPOIMENTOS ── */
    .depoimentos {
      background: var(--texto); padding: 80px 40px; text-align: center; color: var(--branco);
    }
    .depoimentos .section-header h2 { color: var(--branco); }
    .depoimentos .section-header p { color: rgba(255,255,255,.55); }
    .depoimento-cards {
      display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 24px; max-width: 1000px; margin: 0 auto;
    }
    .dep-card {
      border: 1px solid rgba(201,169,110,.25); padding: 36px 32px; text-align: left;
      transition: border-color .3s;
    }
    .dep-card:hover { border-color: var(--ouro); }
    .dep-stars { color: var(--ouro); font-size: 1rem; margin-bottom: 16px; letter-spacing: 2px; }
    .dep-card p { font-size: .88rem; line-height: 1.75; color: rgba(255,255,255,.75); font-style: italic; margin-bottom: 20px; }
    .dep-author { font-size: .75rem; letter-spacing: .14em; text-transform: uppercase; color: var(--ouro); font-weight: 700; }

    /* ── CTA CENTRAL ── */
    .cta-central {
      background: var(--ouro); padding: 70px 40px; text-align: center;
    }
    .cta-central h2 {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 400;
      color: var(--branco); margin-bottom: 14px;
    }
    .cta-central p { color: rgba(255,255,255,.85); margin-bottom: 32px; font-size: .92rem; }
    .btn-white {
      background: var(--branco); color: var(--ouro);
      border: none; padding: 13px 36px; font-family: 'Lato', sans-serif;
      font-size: .78rem; font-weight: 700; letter-spacing: .14em;
      text-transform: uppercase; cursor: pointer; transition: background .2s;
      text-decoration: none; display: inline-block;
    }
    .btn-white:hover { background: var(--creme); }

    /* ── CONTATO ── */
    .contato {
      display: grid; grid-template-columns: 1fr 1fr;
      max-width: 1200px; margin: 60px auto; padding: 0 40px; gap: 60px;
      align-items: start; 
    }
    .contato-info h2 {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 400;
      margin-bottom: 10px;
    }
    .contato-info p { font-size: .9rem; color: var(--texto2); line-height: 1.75; margin-bottom: 32px; }
    .contato-item { display: flex; gap: 14px; align-items: center; margin-bottom: 18px; }
    .contato-item svg { width: 20px; height: 20px; stroke: var(--ouro); flex-shrink: 0; }
    .contato-item span { font-size: .88rem; color: var(--texto2); }
    .contato-form { display: flex; flex-direction: column; gap: 16px; }
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
    .contato-form input,
    .contato-form select,
    .contato-form textarea {
      border: 1px solid rgba(201,169,110,.35); background: var(--branco);
      padding: 14px 18px; font-family: 'Lato', sans-serif;
      font-size: .88rem; color: var(--texto); outline: none;
      transition: border-color .2s; width: 100%;
    }
    .contato-form input:focus,
    .contato-form select:focus,
    .contato-form textarea:focus { border-color: var(--ouro); }
    .contato-form textarea { resize: vertical; min-height: 120px; }
    .btn-gold {
      background: var(--ouro); color: var(--branco);
      border: none; padding: 14px; font-family: 'Lato', sans-serif;
      font-size: .78rem; font-weight: 700; letter-spacing: .14em;
      text-transform: uppercase; cursor: pointer; transition: background .2s;
      align-self: flex-start; min-width: 180px;
    }
    .btn-gold:hover { background: var(--ouro-dark); }

    /* ── MAPA ── */
    .contato iframe {
      width: 100%;
      max-width: 100%;
      height: 350px;
      border: 0;
      display: block;
      grid-column: 1 / -1;
      margin-top: 20px;
    }

    /* ── FOOTER ── */
    footer {
      background: var(--texto); color: rgba(255,255,255,.55);
      padding: 50px 60px 30px;
      display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 40px;
    }
    .footer-brand .nav-logo { color: var(--branco); font-size: 1.2rem; display: block; margin-bottom: 14px; }
    .footer-brand p { font-size: .82rem; line-height: 1.7; max-width: 220px; }
    .footer-col h4 {
      font-size: .7rem; letter-spacing: .18em; text-transform: uppercase;
      color: var(--ouro); margin-bottom: 16px; font-weight: 700;
    }
    .footer-col ul { list-style: none; }
    .footer-col ul li { margin-bottom: 9px; }
    .footer-col ul li a { color: rgba(255,255,255,.55); text-decoration: none; font-size: .83rem; transition: color .2s; }
    .footer-col ul li a:hover { color: var(--ouro); }
    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,.08);
      margin: 32px 60px 0; padding-top: 22px;
      display: flex; justify-content: space-between; align-items: center;
      font-size: .75rem; color: rgba(255,255,255,.35);
      grid-column: 1 / -1;
      width: 90%;
    }
    .footer-bottom a { color: var(--ouro); text-decoration: none; }

    /* ── WHATSAPP FLOAT ── */
    .whatsapp-float {
      position: fixed; bottom: 28px; right: 28px; z-index: 200;
      background: #25D366; width: 54px; height: 54px; border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      box-shadow: 0 4px 20px rgba(37,211,102,.4);
      text-decoration: none; transition: transform .2s;
    }
    .whatsapp-float:hover { transform: scale(1.1); }
    .whatsapp-float svg { width: 28px; height: 28px; fill: white; }

    /* ── RESPONSIVE — TABLET (≤900px) ── */
    @media (max-width: 900px) {
      nav { padding: 16px 24px; }
      nav.scrolled { padding: 12px 24px; }
      .nav-links, .nav-cta { display: none; }
      .hamburger { display: flex; }
      .nav-links.open {
        display: flex; flex-direction: column; gap: 20px;
        position: absolute; top: 100%; left: 0; right: 0;
        background: var(--creme); padding: 24px;
        border-top: 1px solid rgba(201,169,110,.2);
        box-shadow: 0 8px 24px rgba(0,0,0,.08);
      }
      .sobre, .diferenciais { grid-template-columns: 1fr; }
      .contato { grid-template-columns: 1fr; gap: 40px; }
      .sobre-img::after, .diferenciais-img::before { display: none; }
      .sobre-txt, .diferenciais-txt { padding: 40px 0; }
      .contato { padding: 0 24px; }
      footer { grid-template-columns: 1fr 1fr; padding: 40px 24px 24px; }
      .footer-brand { grid-column: 1 / -1; }
      .footer-bottom { margin: 24px 0 0; width: 100%; }
      .form-row { grid-template-columns: 1fr; }
      .carousel { height: 70vh; min-height: 460px; }
      .slide-caption { bottom: 8%; left: 5%; right: 5%; max-width: 100%; }
      .sobre-img img { height: 380px; }
      .diferenciais-img img { height: 320px; }
      .depoimentos { padding: 60px 24px; }
      .tratamentos { padding: 60px 24px; }
    }

    /* ── RESPONSIVE — MOBILE (≤600px) ── */
   @media (max-width: 600px) {
  .hero {
    margin-top: 58px;
    overflow: hidden;
  }

  .carousel {
    width: 100%;
    height: calc(100dvh - 58px);
    min-height: 560px;
    max-height: 720px;
    overflow: hidden;
    position: relative;
  }

  .carousel-track {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform .7s cubic-bezier(.77,0,.18,1);
    will-change: transform;
  }

  .carousel-slide {
    flex: 0 0 100%;
    width: 100%;
    min-width: 100%;
    max-width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
  }

  .carousel-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .carousel-slide:nth-child(1) img {
    object-position: 62% center;
  }

  .carousel-slide:nth-child(2) img {
    object-position: center center;
  }

  .carousel-slide:nth-child(3) img {
    object-position: center center;
  }

  .slide-caption {
    top: 42%;
    left: 14%;
    right: 8%;
    transform: translateY(-50%);
    max-width: 82%;
    text-align: left;
  }

  .slide-caption .eyebrow {
    font-size: .68rem;
    letter-spacing: .13em;
    margin-bottom: 10px;
  }

  .slide-caption h2 {
    font-size: 1.75rem;
    line-height: 1.25;
    margin-bottom: 14px;
  }

  .slide-caption p {
    font-size: .9rem;
    line-height: 1.5;
    margin-bottom: 18px;
  }

  .btn-outline {
    padding: 12px 24px;
    font-size: .72rem;
  }

  .carousel-btn {
    width: 38px;
    height: 38px;
    z-index: 20;
  }

  .carousel-btn.prev {
    left: 16px;
  }

  .carousel-btn.next {
    right: 16px;
  }

  .carousel-dots {
    bottom: 24px;
    z-index: 20;
  }
}

/* Redes Sociais */

.social-icons {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
}

.social-icons a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff !important;
  text-decoration: none !important;
  font-size: 20px;
  box-shadow: 0 6px 18px rgba(0,0,0,.15);
  transition: .3s;
}

.social-icons a:hover {
  transform: translateY(-4px);
}

.social-icons a.instagram {
  background: linear-gradient(45deg,#833AB4,#FD1D1D,#FCAF45) !important;
}

.social-icons a.facebook {
  background: #1877F2 !important;
}