* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    :root {
      --gold: #c89b3c;
      --gold-soft: #d4af5a;
      --text: #f5f0e8;
      --muted: rgba(255,255,255,0.78);
      --line: rgba(255,255,255,0.18);
      --bg: #0c0c0c;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: "Inter", sans-serif;
      background: var(--bg);
      color: white;
    }

    a {
      text-decoration: none;
      color: inherit;
    }

    ul {
      list-style: none;
    }

    section {
        scroll-margin-top: 100px;
    }

    /* HEADER */
    .header {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      z-index: 1000;
      padding: 26px 0;
      background: linear-gradient(to bottom, rgba(0,0,0,0.45), rgba(0,0,0,0));
      transition: 0.3s ease;
    }

    .header.scrolled {
      background: rgba(8, 8, 8, 0.88);
      backdrop-filter: blur(10px);
      padding: 18px 0;
      border-bottom: 1px solid rgba(255,255,255,0.06);
    }

    .container {
      width: min(1200px, 92%);
      margin: 0 auto;
    }

    .nav {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 8px;
      font-family: "Cormorant Garamond", serif;
      letter-spacing: 1px;
      line-height: 1;
    }

    .logo .small {
      font-size: 1.8rem;
      color: rgba(255,255,255,0.22);
      font-weight: 500;
    }

    .logo .main {
      font-size: 2.1rem;
      color: var(--gold);
      font-weight: 600;
    }

    .menu {
      display: flex;
      align-items: center;
      gap: 38px;
    }

    .menu a {
    position: relative;
    text-decoration: none;
    color: rgba(255,255,255,0.75);
    transition: color 0.35s ease;
    }

    .menu a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 0;
    height: 1px;
    background: #c89b3c;
    transition: width 0.45s cubic-bezier(0.22, 1, 0.36, 1);
    }

    .menu a:hover,
    .menu a.active {
    color: #fff;
    }

    .menu a:hover::after,
    .menu a.active::after {
    width: 100%;
    }

    /* HERO / CARROSSEL */
    .hero {
      position: relative;
      height: 100vh;
      min-height: 760px;
      overflow: hidden;
    }

    .slides {
      position: absolute;
      inset: 0;
    }

    .slide {
      position: absolute;
      inset: 0;
      opacity: 0;
      transition: opacity 1s ease-in-out, transform 6s ease;
      transform: scale(1.04);
    }

    .slide.active {
      opacity: 1;
      transform: scale(1);
      z-index: 1;
    }

    .slide img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      filter: brightness(0.55);
    }

    .overlay {
      position: absolute;
      inset: 0;
      z-index: 2;
      background:
        linear-gradient(90deg, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.38) 35%, rgba(0,0,0,0.18) 60%, rgba(0,0,0,0.55) 100%);
    }

    .hero-content {
      position: relative;
      z-index: 3;
      height: 100%;
      display: flex;
      align-items: center;
    }

    .hero-text {
      max-width: 560px;
      margin-top: 40px;
    }

    .kicker {
      display: inline-block;
      margin-bottom: 26px;
      font-size: 0.95rem;
      letter-spacing: 7px;
      text-transform: uppercase;
      color: rgba(255,255,255,0.82);
    }

    .hero-title {
      font-family: "Cormorant Garamond", serif;
      font-size: clamp(3.8rem, 7vw, 6.5rem);
      font-weight: 500;
      line-height: 0.9;
      margin-bottom: 28px;
      color: #fff;
    }

    .hero-title .italic {
      display: block;
      font-style: italic;
      font-weight: 400;
    }

    .hero-desc {
      max-width: 520px;
      font-size: 1.1rem;
      line-height: 1.8;
      color: var(--muted);
      margin-bottom: 40px;
    }

    .hero-actions {
      display: flex;
      align-items: center;
      gap: 18px;
    }

    .btn-outline {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-width: 250px;
      height: 64px;
      padding: 0 26px;
      border: 1px solid rgba(255,255,255,0.28);
      color: #fff;
      text-transform: uppercase;
      letter-spacing: 3px;
      font-size: 0.92rem;
      transition: 0.3s ease;
      background: rgba(255,255,255,0.02);
    }

    .btn-outline:hover {
      border-color: var(--gold);
      color: var(--gold-soft);
      background: rgba(200, 155, 60, 0.08);
    }

    .hero-line {
      width: 150px;
      height: 1px;
      background: linear-gradient(to right, rgba(255,255,255,0.05), rgba(255,255,255,0.4), rgba(255,255,255,0.05));
      margin-bottom: 24px;
    }

    /* SETAS / CONTROLES */
    .controls {
      position: absolute;
      right: 40px;
      bottom: 40px;
      z-index: 4;
      display: flex;
      gap: 12px;
    }

    .control-btn {
      width: 46px;
      height: 46px;
      border-radius: 50%;
      border: 1px solid rgba(255,255,255,0.25);
      background: rgba(0,0,0,0.25);
      color: white;
      cursor: pointer;
      transition: 0.25s ease;
      font-size: 1rem;
    }

    .control-btn:hover {
      border-color: var(--gold);
      color: var(--gold);
    }

    .indicators {
      position: absolute;
      left: 50%;
      bottom: 32px;
      transform: translateX(-50%);
      z-index: 4;
      display: flex;
      gap: 10px;
    }

    .dot {
      width: 34px;
      height: 2px;
      background: rgba(255,255,255,0.25);
      cursor: pointer;
      transition: 0.3s ease;
    }

    .dot.active {
      background: var(--gold);
    }

    /* SESSÃO EXTRA SÓ PARA ROLAR */
    .about {
      padding: 100px 0;
      background: #111;
    }

    .about h2 {
      font-family: "Cormorant Garamond", serif;
      font-size: 3rem;
      color: var(--gold-soft);
      margin-bottom: 16px;
    }

    .about p {
      max-width: 750px;
      color: rgba(255,255,255,0.75);
      line-height: 1.8;
      font-size: 1rem;
    }

    /* RESPONSIVO */
    .menu-toggle {
      display: none;
      background: transparent;
      border: none;
      color: white;
      font-size: 1.6rem;
      cursor: pointer;
    }

    @media (max-width: 960px) {
      .menu {
        position: fixed;
        top: 82px;
        right: 4%;
        width: 260px;
        padding: 22px;
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        background: rgba(10,10,10,0.95);
        border: 1px solid rgba(255,255,255,0.08);
        backdrop-filter: blur(12px);
        opacity: 0;
        pointer-events: none;
        transform: translateY(-10px);
        transition: 0.3s ease;
      }

      .menu.open {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
      }

      .menu-toggle {
        display: block;
      }

      .hero {
        min-height: 680px;
      }

      .hero-title {
        font-size: clamp(3rem, 10vw, 5rem);
      }

      .hero-desc {
        font-size: 1rem;
      }

      .btn-outline {
        min-width: 220px;
        height: 58px;
      }
    }

    @media (max-width: 640px) {
      .logo .small {
        font-size: 1.4rem;
      }

      .logo .main {
        font-size: 1.7rem;
      }

      .hero-text {
        max-width: 100%;
      }

      .kicker {
        font-size: 0.78rem;
        letter-spacing: 4px;
      }

      .hero-title {
        line-height: 0.95;
        margin-bottom: 20px;
      }

      .hero-desc {
        line-height: 1.65;
        margin-bottom: 30px;
      }

      .controls {
        right: 18px;
        bottom: 24px;
      }

      .indicators {
        bottom: 24px;
      }
    }

    .historia {
    background: linear-gradient(90deg, #0b0f19 0%, #0a0d16 100%);
    padding: 120px 0;
    color: #fff;
    }

    .historia .container {
    width: min(1200px, 90%);
    margin: 0 auto;
    }

    .historia-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 90px;
    align-items: start;
    }

    .historia-kicker {
    display: inline-block;
    margin-bottom: 24px;
    color: #c89b3c;
    text-transform: uppercase;
    letter-spacing: 6px;
    font-size: 0.9rem;
    }

    .historia-title {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(3.2rem, 6vw, 5.5rem);
    line-height: 0.95;
    font-weight: 500;
    margin-bottom: 34px;
    color: #f8f4ee;
    }

    .historia-title span {
    display: block;
    font-style: italic;
    font-weight: 400;
    }

    .historia-left p {
    font-size: 1.05rem;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 24px;
    max-width: 720px;
    }

    .historia-right {
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding-top: 70px;
    }

    .feature-item {
    display: grid;
    grid-template-columns: 64px 1fr;
    gap: 24px;
    align-items: start;
    }

    .feature-icon {
    width: 60px;
    height: 60px;
    border: 1px solid rgba(200, 155, 60, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c89b3c;
    font-size: 1.6rem;
    flex-shrink: 0;
    }

    .feature-text h3 {
    font-family: "Cormorant Garamond", serif;
    font-size: 2rem;
    font-weight: 500;
    color: #fff;
    margin-bottom: 8px;
    }

    .feature-text p {
    font-size: 1.02rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.58);
    max-width: 500px;
    }

    /* responsivo */
    @media (max-width: 980px) {
    .historia-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .historia-right {
        padding-top: 0;
    }
    }

    @media (max-width: 640px) {
    .historia {
        padding: 80px 0;
    }

    .historia-kicker {
        letter-spacing: 4px;
        font-size: 0.8rem;
    }

    .historia-title {
        font-size: 3rem;
    }

    .feature-item {
        grid-template-columns: 54px 1fr;
        gap: 18px;
    }

    .feature-icon {
        width: 54px;
        height: 54px;
        font-size: 1.3rem;
    }

    .feature-text h3 {
        font-size: 1.7rem;
    }

    .historia-left p,
    .feature-text p {
        font-size: 0.98rem;
    }
    }
    
    .colecoes {
  background: #f3f1ee;
  padding: 110px 0 120px;
}

.colecoes .container {
  width: min(1280px, 92%);
  margin: 0 auto;
}

.colecoes-kicker {
  display: block;
  text-align: center;
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 7px;
  font-size: 0.88rem;
  color: #c89b3c;
}

.colecoes-title {
  text-align: center;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3rem, 5.2vw, 5rem);
  line-height: 1;
  font-weight: 500;
  color: #111827;
  margin-bottom: 70px;
}

.colecoes-title span {
  font-style: italic;
  font-weight: 400;
}

.colecoes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 38px;
}

.colecao-card {
  display: flex;
  flex-direction: column;
}

.colecao-image {
  overflow: hidden;
  aspect-ratio: 0.82 / 1;
}

.colecao-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

.colecao-card:hover .colecao-image img {
  transform: scale(1.05);
}

.colecao-content {
  padding-top: 28px;
}

.colecao-label {
  display: inline-block;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 5px;
  font-size: 0.8rem;
  color: #c89b3c;
}

.colecao-content h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.1rem;
  line-height: 1.1;
  font-weight: 500;
  color: #111827;
  margin-bottom: 14px;
}

.colecao-content p {
  font-size: 1.02rem;
  line-height: 1.8;
  color: #7a8291;
  max-width: 95%;
}

@media (max-width: 1100px) {
  .colecoes-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 720px) {
  .colecoes {
    padding: 80px 0 90px;
  }

  .colecoes-title {
    margin-bottom: 45px;
  }

  .colecoes-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .colecao-content h3 {
    font-size: 1.9rem;
  }

  .colecao-content p {
    max-width: 100%;
  }
}

.contato {
  background: #f3f1ee;
  padding: 110px 0 120px;
}

.contato-container {
  width: min(1200px, 92%);
  margin: 0 auto;
}

.contato-kicker {
  display: inline-block;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 6px;
  font-size: 0.88rem;
  color: #c89b3c;
}

.contato-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3rem, 5vw, 5.2rem);
  line-height: 1;
  font-weight: 500;
  color: #111827;
  margin-bottom: 38px;
}

.contato-title span {
  font-style: italic;
  font-weight: 400;
}

.contato-info {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.contato-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contato-texto {
  display: flex;
  flex-direction: column;
}

.contato-texto p {
  margin: 0;
  line-height: 1.6;
}

.contato-icon {
  width: 18px;
  min-width: 18px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  color: #c89b3c;
  font-size: 1.3rem;
  line-height: 1;
}

.contato-item p {
  margin: 0;
  font-size: 1.15rem;
  line-height: 1.7;
  color: #7a8291;
}

.contato-item a {
  margin: 0;
  font-size: 1.15rem;
  line-height: 1.7;
  color: #7a8291;
}


@media (max-width: 768px) {
  .contato {
    padding: 80px 0 90px;
  }

  .contato-title {
    margin-bottom: 28px;
  }

  .contato-item {
    align-items: flex-start;
    gap: 14px;
  }

  .contato-item p {
    font-size: 1rem;
  }

  .contato-item a {
    font-size: 1rem;
  }
}

.footer {
  background: #0b0f19;
  color: rgba(255,255,255,0.7);
  padding-top: 90px;
}

.footer-grid {
  width: min(1200px, 92%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 60px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: "Cormorant Garamond", serif;
  margin-bottom: 20px;
}

.footer-logo .small {
  font-size: 1.6rem;
  color: rgba(255,255,255,0.2);
}

.footer-logo .main {
  font-size: 1.8rem;
  color: #c89b3c;
}

.footer-brand p {
  line-height: 1.8;
  font-size: 0.95rem;
  max-width: 300px;
}

.footer-column h4 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.4rem;
  color: #fff;
  margin-bottom: 20px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column li {
  margin-bottom: 10px;
  font-size: 0.95rem;
}

.footer-column a {
  color: rgba(255,255,255,0.7);
  transition: 0.3s;
}

.footer-column a:hover {
  color: #c89b3c;
}

.footer-social {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-social a {
  font-size: 0.95rem;
}

.footer-bottom {
  margin-top: 60px;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 22px 0;
}

.footer-bottom-content {
  width: min(1200px, 92%);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
}

/* RESPONSIVO */
@media (max-width: 1000px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom-content {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 1s ease,
    transform 1s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.reveal.show {
  opacity: 1;
  transform: translateY(0);
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 1s ease,
    transform 1s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.reveal.show {
  opacity: 1;
  transform: translateY(0);
}