/* =====================================================
   CONFIGURAÇÕES GERAIS
===================================================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background: #000;
  color: #fff;
}

.interface {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 4%;
}

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

/* =====================================================
   BACKGROUND
===================================================== */

#background {
  position: fixed;
  top: 0;
  left: 0;

  width: 100%;
  height: 100%;

  z-index: -1;

  background: #000;
}

/* =====================================================
   HEADER
===================================================== */

header {
  padding: 20px 4%;
}

header .interface {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  width: 150px;
}

nav ul {
  list-style: none;
}

nav ul li {
  display: inline-block;
  margin: 0 25px;
}

nav a {
  color: #aaa;
  transition: 0.3s;
}

nav a:hover {
  color: #b9a564;
}

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 35px;
    flex-wrap: wrap;
}


/* =====================================
   LUXURY MINIMAL
===================================== */

.luxury-minimal-btn {
    position: relative;

    display: inline-flex;
    align-items: center;
    justify-content: space-between;

    gap: 35px;

    min-width: 270px;

    padding: 14px 4px;

    color: #d8b46a;

    font-size: 15px;
    font-weight: 500;

    letter-spacing: 0.7px;

    text-decoration: none;

    background: transparent;
    border: none;

    cursor: pointer;

    transition:
        color 0.35s ease,
        transform 0.35s ease,
        text-shadow 0.35s ease;
}


/* =====================================
   LINHA DOURADA
===================================== */

.luxury-minimal-btn::before {
    content: "";

    position: absolute;

    left: 0;
    bottom: 0;

    width: 100%;
    height: 1px;

    background: rgba(216, 180, 106, 0.45);

    transition:
        background 0.4s ease,
        box-shadow 0.4s ease;
}


/* =====================================
   LUZ QUE PERCORRE A LINHA
===================================== */

.luxury-minimal-btn::after {
    content: "";

    position: absolute;

    bottom: -1px;
    left: -15%;

    width: 25%;
    height: 3px;

    border-radius: 50%;

    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 220, 130, 0.4),
        #fff1b0,
        rgba(255, 190, 70, 0.7),
        transparent
    );

    filter: blur(1px);

    opacity: 0;

    transition:
        left 0.65s ease,
        opacity 0.3s ease;
}


/* =====================================
   SETA
===================================== */

.luxury-arrow {
    display: inline-block;

    font-size: 23px;
    font-weight: 300;

    color: #d8b46a;

    transition:
        transform 0.35s ease,
        color 0.35s ease,
        text-shadow 0.35s ease;
}


/* =====================================
   HOVER
===================================== */

.luxury-minimal-btn:hover {
    color: #f1cf7a;

    transform: translateY(-2px);

    text-shadow:
        0 0 12px rgba(216, 180, 106, 0.18);
}


.luxury-minimal-btn:hover::before {
    background: rgba(238, 196, 100, 0.85);

    box-shadow:
        0 0 8px rgba(216, 180, 106, 0.25);
}


/* luz atravessa a linha */

.luxury-minimal-btn:hover::after {
    left: 90%;
    opacity: 1;
}


/* seta anda para direita */

.luxury-minimal-btn:hover .luxury-arrow {
    transform: translateX(6px);

    color: #f2cd72;

    text-shadow:
        0 0 10px rgba(216, 180, 106, 0.4);
}


/* =====================================
   EFEITO DURANTE O CLIQUE
===================================== */

.luxury-minimal-btn:active {
    transform:
        translateY(0)
        scale(0.98);
}


/* =====================================
   BOTÃO ATIVADO DEPOIS DO CLIQUE
===================================== */

.luxury-minimal-btn.ativo {
    color: #f5d47f;

    text-shadow:
        0 0 10px rgba(216, 180, 106, 0.25);
}


.luxury-minimal-btn.ativo::before {
    height: 1px;

    background: #e5bd62;

    box-shadow:
        0 0 5px rgba(229, 189, 98, 0.6),
        0 0 14px rgba(229, 189, 98, 0.25);
}


.luxury-minimal-btn.ativo::after {
    left: 40%;

    width: 20%;

    opacity: 0.9;

    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 210, 100, 0.5),
        #fff2b0,
        rgba(255, 210, 100, 0.5),
        transparent
    );

    filter: blur(1px);
}


.luxury-minimal-btn.ativo .luxury-arrow {
    transform: translateX(8px);

    color: #f5d47f;

    text-shadow:
        0 0 10px rgba(229, 189, 98, 0.45);
}


/* =====================================
   MOBILE
===================================== */

@media (max-width: 700px) {

    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;

        gap: 15px;
    }

    .luxury-minimal-btn {
        width: 100%;
        min-width: 0;

        max-width: 320px;
    }
}
/* =====================================================
   HERO
===================================================== */

.hero-catalogo {
  padding: 120px 0;

  text-align: center;
}

.hero-text span {
  color: #b9a564;

  font-size: 18px;

  letter-spacing: 3px;
}

.hero-text h1 {
  font-size: 60px;

  max-width: 900px;

  margin: 20px auto;

  line-height: 1.2;
}

.hero-text p {
  max-width: 700px;

  margin: auto;

  color: #ccc;

  font-size: 18px;

  line-height: 1.8;
}

/* =====================================================
   FILTROS
===================================================== */

.filtros {
  padding: 40px 0;

  text-align: center;
}

.filtros h2 {
  font-size: 40px;

  margin-bottom: 40px;
}

.botoes-filtro button {
  background: transparent;

  color: #fff;

  border: 1px solid #b9a564;

  padding: 12px 35px;

  border-radius: 30px;

  margin: 10px;

  cursor: pointer;

  transition: 0.3s;
}

.botoes-filtro button:hover {
  background: #b9a564;

  color: #000;
}

/* =====================================================
   PRODUTOS
===================================================== */

.produtos {
  padding: 80px 0;
}

.grid-produtos {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 40px;
}

.produto-card {
  background: rgba(255, 255, 255, 0.05);

  border: 1px solid rgba(185, 165, 100, 0.3);

  border-radius: 25px;

  overflow: hidden;

  backdrop-filter: blur(10px);

  transition: 0.4s;
}

.produto-card:hover {
  transform: translateY(-14px);

  box-shadow:
    0 15px 45px rgba(0, 0, 0, 0.5),
    0 0 25px rgba(185, 165, 100, 0.35);
}

/* ============================
   CARROSSEL
============================ */

.carousel {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 380px;
  background: #111;
}

.carousel-img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  transition:
    opacity 0.35s ease,
    transform 0.45s ease;

  display: block;
}

.carousel:hover .carousel-img {
  transform: scale(1.08);
}

.carousel-btn {
  position: absolute;

  top: 50%;

  transform: translateY(-50%);

  width: 42px;

  height: 42px;

  border: none;

  border-radius: 50%;

  background: rgba(0, 0, 0, 0.45);

  color: #fff;

  cursor: pointer;

  transition: 0.3s;

  z-index: 10;

  opacity: 0;
}

.carousel:hover .carousel-btn {
  opacity: 1;
}

.carousel-btn:hover {
  background: #b9a564;

  color: #000;
}

.prev {
  left: 15px;
}

.next {
  right: 15px;
}

.carousel-dots {
  position: absolute;

  bottom: 18px;

  width: 100%;

  display: flex;

  justify-content: center;

  gap: 10px;
}

.dot {
  width: 11px;

  height: 11px;

  border-radius: 50%;

  background: rgba(255, 255, 255, 0.45);

  cursor: pointer;

  transition: 0.3s;
}

.dot.active {
  background: #b9a564;

  transform: scale(1.35);
}

.badge {
  position: absolute;

  top: 18px;

  left: 18px;

  background: #b9a564;

  color: #000;

  font-weight: 700;

  padding: 8px 16px;

  border-radius: 40px;

  font-size: 0.75rem;

  letter-spacing: 1px;

  z-index: 20;
}

.produto-preco {
  color: #b9a564;

  font-size: 28px;

  font-weight: 700;

  margin-top: 20px;

  margin-bottom: 20px;
}

.produto-card {
  background: rgba(255, 255, 255, 0.05);

  border: 1px solid rgba(185, 165, 100, 0.3);

  border-radius: 25px;

  overflow: hidden;

  backdrop-filter: blur(10px);

  transition: 0.4s;
}

.produto-card {
  background: rgba(255, 255, 255, 0.05);

  border: 1px solid rgba(185, 165, 100, 0.25);

  border-radius: 28px;

  overflow: hidden;

  backdrop-filter: blur(18px);

  transition: 0.45s;

  position: relative;
}

.produto-info {
  padding: 30px;
}

.produto-info span {
  color: #b9a564;

  font-size: 14px;

  text-transform: uppercase;
}

.produto-info h3 {
  font-size: 24px;

  margin: 15px 0;
}

.produto-info p {
  color: #ccc;

  line-height: 1.7;

  font-size: 15px;
}

.produto-info a {
  display: inline-block;

  margin-top: 25px;

  background: #b9a564;

  color: #000;

  padding: 12px 25px;

  border-radius: 30px;

  font-weight: 600;

  transition: 0.3s;
}

.produto-info a:hover {
  transform: scale(1.05);

  box-shadow: 0 0 15px #b9a564;
}

/* =====================================================
   CHAMADA WHATSAPP
===================================================== */

.cta {
  padding: 100px 0;

  text-align: center;
}

.cta h2 {
  font-size: 45px;
}

.cta p {
  color: #ccc;

  margin: 20px auto;

  max-width: 600px;
}

.cta a {
  display: inline-block;

  margin-top: 30px;

  color: #b9a564;

  padding: 15px 45px;

  border-radius: 30px;

  font-weight: 600;
}

/* =====================================================
   FOOTER
===================================================== */

footer {
  padding: 50px 0;

  text-align: center;

  border-top: 1px solid #b9a564;
}

footer img {
  width: 180px;
}

footer h3 {
  margin: 20px;
}

footer p {
  color: #aaa;
}

.redes {
  margin: 30px;
}

.redes a {
  font-size: 30px;

  margin: 0 15px;

  color: #b9a564;
}

/* =====================================================
   RESPONSIVO
===================================================== */

@media (max-width: 900px) {
  header .interface {
    flex-direction: column;

    gap: 30px;
  }

  nav ul li {
    display: block;

    margin: 15px;
  }

  .hero-text h1 {
    font-size: 40px;
  }

  .grid-produtos {
    grid-template-columns: 1fr;
  }

  .produto-card img {
    height: 300px;
  }
}

.carousel-thumbs {
  display: flex;

  justify-content: center;

  gap: 10px;

  padding: 15px;

  background: #0c0c0c;
}

.thumb {
  width: 65px;

  height: 65px;

  border-radius: 10px;

  object-fit: cover;

  cursor: pointer;

  opacity: 0.55;

  transition: 0.3s;

  border: 2px solid transparent;
}

.thumb:hover {
  opacity: 1;
}

.thumb-active {
  opacity: 1;

  border: 2px solid #b9a564;
}

/* ===========================
   LIGHTBOX
=========================== */

.lightbox{

    position:fixed;

    inset:0;

    background:rgba(0,0,0,.92);

    display:flex;

    justify-content:center;

    align-items:center;

    opacity:0;

    visibility:hidden;

    transition:.35s;

    z-index:9999;

}

.lightbox.active{

    opacity:1;

    visibility:visible;

}

.lightbox img{

    max-width:90%;

    max-height:90%;

    border-radius:15px;

    box-shadow:0 0 50px rgba(0,0,0,.6);

    animation:zoom .3s;

}

@keyframes zoom{

    from{

        transform:scale(.85);

        opacity:0;

    }

    to{

        transform:scale(1);

        opacity:1;

    }

}

.lightbox-close{

    position:absolute;

    top:25px;

    right:40px;

    font-size:50px;

    color:#fff;

    cursor:pointer;

    transition:.3s;

}

.lightbox-close:hover{

    color:#b9a564;

}