:root{
    --navy:#0A1238;
    --navy-light:#111B4F;
    --silver:#F3F3F3;
    --gold:#D4AF37;
    --gray:#BFC2CE;
    --card:#F8F4EE;
    --background-silver:linear-gradient(180deg, #818181 0%, #fefefe 50%, #585858 100%);
    --background-silver2:linear-gradient(180deg, #f1f1f1 0%, #e1e1e1 53%, #f1f1f1 98%);
    --bg-color: #f8f9fa;
    --card-bg: #ffffff;
    --text-main: #ffffff;
    --text-muted: #4b5563;
    --border-color: #e5e7eb;
    --accent-color: #000000;
    --background: #f5f5f3;
    --white: #ffffff;
    --text: #ffffff;
    --accent: #ffffff;
    --transition: 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

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

body{
    font-family:'Montserrat',sans-serif;
    background:var(--navy);
    color:white;
    overflow-x:hidden;
}

html{
    scroll-behavior:smooth;
}

/* SCROLL */

::-webkit-scrollbar{
    width:10px;
}

::-webkit-scrollbar-thumb{
    background:var(--gold);
}

/* HEADER */

header{
    width:100%;
    position:fixed;
    top:0;
    z-index:999;
    backdrop-filter:blur(15px);
    background:rgba(10,18,56,.82);
    border-bottom:1px solid rgba(255,255,255,.08);
}

nav{
    width:100%;
    padding:42px 8%;
    display:flex;
    justify-content: center;
    align-items:center;
}

nav > button{
    position: absolute;
    right: 8%;
    width: 30px;
    height: 30px;
    background:transparent;
    border:none;
    cursor:pointer;
    display:none
}

nav > button > img{
    width:100%;
    height:100%;
    object-fit:contain;
}

.burger {
  position: absolute;
  width: 26px;
  height: 22px;
  right: 8%;
  background: transparent;
  cursor: pointer;
  display: none;
}

.burger input {
  display: none;
}

.burger span {
  display: block;
  position: absolute;
  height: 4px;
  width: 100%;
  background: rgb(255, 255, 255);
  border-radius: 9px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: .25s ease-in-out;
}

.burger span:nth-of-type(1) {
  top: 0px;
  transform-origin: left center;
}

.burger span:nth-of-type(2) {
  top: 50%;
  transform: translateY(-50%);
  transform-origin: left center;
}

.burger span:nth-of-type(3) {
  top: 100%;
  transform-origin: left center;
  transform: translateY(-100%);
}

.burger input:checked ~ span:nth-of-type(1) {
  transform: rotate(45deg);
  top: 0px;
  left: 5px;
}

.burger input:checked ~ span:nth-of-type(2) {
  width: 0%;
  opacity: 0;
}

.burger input:checked ~ span:nth-of-type(3) {
  transform: rotate(-45deg);
  top: 19px;
  left: 5px;
}

.menu{
    display:flex;
    gap:40px;
}

.menu.closed {
    display:none;
}

.menu a{
    text-decoration:none;
    color:white;
    font-size:13px;
    letter-spacing:2px;
    transition:.4s;
    position:relative;
}

.menu a::after{
    content:'';
    width:0%;
    height:1px;
    background:var(--gold);
    position:absolute;
    left:0;
    bottom:-6px;
    transition:.4s;
}

.menu a:hover{
    color:var(--gold);
}

.menu a:hover::after{
    width:100%;
}

/* HERO */

.hero{
    min-height:100vh;
    padding:160px 8% 100px;
    display:grid;
    grid-template-columns:1fr 1fr;
    align-items:center;
    gap:60px;
    position:relative;
    overflow: hidden;
}

.hero::before{
    content:'';
    position:absolute;
    width:800px;
    height:800px;
    border-radius:50%;
    background:rgba(212,175,55,.08);
    top:-300px;
    right:-200px;
    filter:blur(40px);
}

.hero-content{
    z-index:2;
    animation:fadeLeft 1.2s ease;
    height:100%;
}

.logo{
    font-family:'Cormorant Garamond',serif;
    font-size:clamp(1rem, 15vw, 9rem);
    font-weight:600;
    background: var(--background-silver);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
    letter-spacing:1px;
    margin-left:-13px;
    text-wrap: nowrap;
}

.silver_effect{
 background: linear-gradient(45deg, #979797 0%, #9E9E9E 45%, #E8E8E8 70%, #9E9E9E 85%, #979797 90% 100%);
   background-size: 800% 400%;
  animation: gradient 5s infinite cubic-bezier(.62, .28, .23, .99) both;
  -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.logo span{
    /*color:var(--gold);*/
}

.hero-sub{
    color:var(--gold);
    letter-spacing: 4px;
    margin-bottom: 45px;
    font-size: 17px;
    margin-left: 8px;
    margin-top: -13px;
}

.hero h1{
    font-family:'Cormorant Garamond',serif;
    font-size:clamp(0.1rem, 8vw, 5rem);
    text-wrap: nowrap;
    line-height:.95;
    margin-bottom:30px;
    margin-top: 60px;
    font-weight:600;
}

.hero p{
    color:var(--gray);
    line-height:1.9;
    font-size:16px;
    margin-bottom:40px;
    max-width:65%;
}

.hero-buttons{
    display:flex;
    gap:20px;
}

.btn{
    padding:18px 36px;
    border:1px solid var(--gold);
    text-decoration:none;
    color:white;
    letter-spacing:2px;
    font-size:12px;
    transition:.4s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn:hover{
    background:var(--gold);
    color:#111;
    transform:translateY(-3px);
}

.btn-outline{
    background:transparent;
}

.hero-image{
    position:relative;
    display:flex;
    justify-content:center;
    animation:float 5s ease-in-out infinite;
}

.hero-image img{
    width:100%;
    max-width:530px;
    object-fit:contain;
    filter:drop-shadow(0 30px 40px rgba(0,0,0,.4));
    border-radius:3px;
}

/* FLOAT CARDS */

.float-card{
    position:absolute;
    background:rgba(255,255,255,.08);
    border:1px solid rgba(255,255,255,.08);
    backdrop-filter:blur(12px);
    padding:18px;
    border-radius:18px;
    color:white;
    animation:floatMini 4s ease-in-out infinite;
}

.float-card h4{
    font-size:14px;
    margin-bottom:8px;
}

.float-card p{
    font-size:12px;
    color:#ddd;
    font-weight:500;
    line-height:1.5;
    max-width: unset;
}

.float-card.right {
    right: -20px;
    width: 200px;
}

.float-card.right h4, .float-card.right p{
    color:var(--silver);
}

.float-card.left h4, .float-card.left p{
    color:var(--silver);
}

.card-1{
    top:12%;
    right:0;
    height: 110px;
}

.card-2{
    bottom:10%;
    left:0;
    height: 80px;
}

/* SECTION */

section{
    padding:110px 8%;
}

/* TITLE */

.section-title{
    margin-bottom:70px;
    text-align:center;
}

.section-title span{
    color:var(--gold);
    letter-spacing:4px;
    font-size:13px;
}

.section-title h2{
    font-family:'Cormorant Garamond',serif;
    font-size:68px;
    margin-top:15px;
    font-weight:600;
    background: var(--background-silver2);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
}

/* COLLECTIONS */

.collections{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(390px,1fr));
    gap:30px;
}

/* =========================
   CAROUSEL
========================= */

.carousel {
    position: relative;
    width: 100%;
    height: min(680px, 75vh);
    overflow: hidden;
    border-radius: 24px;
    background: #111;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.18);
}


/* =========================
   TRACK
========================= */

.carousel-track {
    width: 100%;
    height: 100%;
    position: relative;
}


/* =========================
   SLIDE
========================= */

.slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transform: scale(1.04);
    transition: opacity var(--transition), transform 1.2s ease, visibility var(--transition);
}

.slide.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}


/* =========================
   IMAGE
========================= */

.slide img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    user-select: none;
    -webkit-user-drag: none;
}


/* =========================
   OVERLAY
========================= */

.slide-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.68) 0%,
            rgba(0, 0, 0, 0.38) 40%,
            rgba(0, 0, 0, 0.05) 75%
        );
}


/* =========================
   CONTENT
========================= */

.slide-content {
    position: absolute;
    z-index: 2;
    left: 8%;
    bottom: 18%;
    width: min(520px, 80%);
    color: var(--text);
}


.eyebrow {
    display: inline-block;
    margin-bottom: 18px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    opacity: 0.85;
}


.slide-content h2 {
    margin-bottom: 18px;
    font-size: clamp(38px, 5vw, 68px);
    line-height: 0.98;
    font-weight: 500;
    letter-spacing: -0.04em;
}


.slide-content p {
    max-width: 470px;
    margin-bottom: 30px;
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.82);
}


/* =========================
   BUTTON
========================= */

.slide-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 24px;
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 999px;
    color: #111;
    background: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
}


.slide-button:hover {
    transform: translateY(-2px);
    background: transparent;
    color: #fff;
}


/* =========================
   ARROWS
========================= */

.carousel-arrow {
    position: absolute;
    z-index: 10;
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    color: #fff;
    background: rgba(255, 255, 255, 0.10);
    backdrop-filter: blur(12px);
    cursor: pointer;
    font-size: 20px;
    transition: background 0.3s ease, transform 0.3s ease;
}


.carousel-arrow:hover {
    background: rgba(255, 255, 255, 0.22);
    transform: translateY(-50%) scale(1.05);
}


.carousel-prev {
    left: 24px;
}


.carousel-next {
    right: 24px;
}


/* =========================
   DOTS
========================= */

.carousel-dots {
    position: absolute;
    z-index: 10;
    left: 50%;
    bottom: 28px;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 8px;
}


.dot {
    width: 7px;
    height: 7px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.45);
    cursor: pointer;
    transition: width 0.3s ease, background 0.3s ease;
}


.dot.active {
    width: 26px;
    border-radius: 10px;
    background: #fff;
}


/* =========================
   TABLET
========================= */

@media (max-width: 768px) {

    body {
        padding: 16px;
    }

    .carousel {
        height: 75vh;

        min-height: 520px;

        border-radius: 20px;
    }

    .slide-overlay {
        background:
            linear-gradient(
                0deg,
                rgba(0, 0, 0, 0.75) 0%,
                rgba(0, 0, 0, 0.30) 60%,
                rgba(0, 0, 0, 0.10) 100%
            );
    }

    .slide-content {
        left: 7%;

        bottom: 13%;

        width: 86%;
    }

    .slide-content h2 {
        font-size: clamp(36px, 9vw, 52px);
    }

    .slide-content p {
        font-size: 15px;

        max-width: 90%;
    }

    .carousel-arrow {
        width: 44px;
        height: 44px;

        font-size: 17px;
    }

    .carousel-prev {
        left: 14px;
    }

    .carousel-next {
        right: 14px;
    }

    .carousel-dots {
        bottom: 20px;
    }
}


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

@media (max-width: 480px) {

    body {
        padding: 10px;
    }

    .carousel {
        height: calc(90vh - 20px);
        min-height: 540px;
        border-radius: 18px;
    }

    .slide img {
        object-position: center;
    }

    .slide-content {
        left: 24px;
        bottom: 12%;
        width: calc(100% - 48px);
    }

    .eyebrow {
        margin-bottom: 12px;
        font-size: 10px;
    }

    .slide-content h2 {
        margin-bottom: 14px;
        font-size: 39px;
        line-height: 1;
    }

    .slide-content p {
        margin-bottom: 22px;
        font-size: 14px;
        line-height: 1.5;
    }

    .slide-button {
        width: 100%;
        min-height: 46px;
    }

    .carousel-arrow {
        top: auto;
        bottom: 20px;
        width: 40px;
        height: 40px;
    }

    .carousel-prev {
        left: 18px;
    }

    .carousel-next {
        right: 18px;
    }

    .carousel-dots {
        bottom: 36px;
    }
}


/* =========================
   REDUZIR ANIMAÇÕES
========================= */

@media (prefers-reduced-motion: reduce) {

    .slide,
    .slide-button,
    .carousel-arrow,
    .dot {
        transition: none;
    }
}

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

.products-section {
    display: none;
    border-radius: 24px;
    width: 100%;
    margin: 0 auto;
    padding: 70px 40px;
    background-color: var(--navy-light);
}


.products-section.show {
    display: block;
    animation: productsEnter 0.7s ease forwards;
}


@keyframes productsEnter {

    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


.products-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 45px;
}


.products-eyebrow {
    display: block;
    margin-bottom: 12px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #777;
}


.products-header h2 {
    margin-bottom: 12px;
    font-size: clamp(32px, 5vw, 54px);
    line-height: 1;
    font-weight: 500;
    letter-spacing: -0.04em;
    color: white;
}


.products-header p {
    color: #777;
    font-size: 15px;
}


/* =========================
   BOTÃO VOLTAR
========================= */

.back-button {
    flex-shrink: 0;
    padding: 12px 20px;
    border: 1px solid #ddd;
    border-radius: 999px;
    background: white;
    color: #222;
    cursor: pointer;
    font-size: 13px;
    transition: 0.3s ease;
}


.back-button:hover {
    background: #000000;
    color: white;
    border-color: #111;
}


/* =========================
   GRID
========================= */

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
}


/* =========================
   CARD
========================= */

.product-card {
    position: relative;
    cursor: pointer;
    animation: cardEnter 0.6s ease both;
}


@keyframes cardEnter {

    from {
        opacity: 0;

        transform: translateY(20px);
    }

    to {
        opacity: 1;

        transform: translateY(0);
    }
}


.product-image {
    position: relative;
    width: 100%;
    aspect-ratio: 0.82;
    overflow: hidden;
    border-radius: 18px;
    background: #eee;
}


.product-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}


.product-card:hover
.product-image img {
    transform: scale(1.06);
}


/* =========================
   BADGE
========================= */

.product-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 2;
    padding: 7px 11px;
    border-radius: 999px;
    background: transparent;
    backdrop-filter: blur(10px);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}


/* =========================
   INFORMAÇÕES
========================= */

.product-info {
    padding: 16px 3px;
}


.product-category {
    display: block;
    margin-bottom: 7px;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #888;
}


.product-name {
    margin-bottom: 8px;
    font-size: 17px;
    font-weight: 500;
    color: shite;
}


.product-description {
    margin-bottom: 13px;
    color: #777;
    font-size: 13px;
    line-height: 1.5;
}


.product-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}


.product-price {
    font-size: 15px;
    font-weight: 700;
    color: white;
}


.product-view {
    padding: 8px 13px;
    border: 1px solid #ddd;
    border-radius: 999px;
    background: white;
    color: #111;
    font-size: 11px;
    cursor: pointer;
    transition: 0.3s ease;
}


.product-view:hover {
    background: #111;
    color: white;
    border-color: #111;
}


/* =========================
   MODAL
========================= */

.product-modal {
    position: fixed;
    inset: 0;
    z-index: 100;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(12px);
}


.product-modal.show {
    display: flex;
    animation: modalBackground 0.3s ease;
}


@keyframes modalBackground {

    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}


.modal-content {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: min(900px, 100%);
    max-height: 90vh;
    overflow: hidden;
    border-radius: 24px;
    background: white;
    animation: modalEnter 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}


@keyframes modalEnter {

    from {
        opacity: 0;

        transform: scale(0.94)
            translateY(20px);
    }

    to {
        opacity: 1;

        transform: scale(1)
            translateY(0);
    }
}


.modal-image {
    min-height: 500px;
}


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


.modal-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 50px;
}


.modal-info > span {
    margin-bottom: 12px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #888;
}


.modal-info h2 {
    margin-bottom: 18px;
    font-size: 38px;
    line-height: 1;
    font-weight: 500;
    letter-spacing: -0.04em;
}


.modal-info p {
    margin-bottom: 25px;
    color: #777;
    font-size: 14px;
    line-height: 1.7;
}


.modal-info strong {
    margin-bottom: 28px;
    font-size: 22px;
}


.modal-close {
    position: absolute;
    z-index: 5;
    top: 16px;
    right: 16px;
    width: 38px;
    height: 38px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    color: #111;
    cursor: pointer;
    font-size: 23px;
    line-height: 1;
}


.buy-button {
    width: 100%;
    min-height: 50px;
    border: none;
    border-radius: 999px;
    background: #111;
    color: white;
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
    transition: 0.3s ease;
}


.buy-button:hover {
    transform: translateY(-2px);
    background: #333;
}



/* ABOUT */

.about{
    display:grid;
    grid-template-columns:1fr 1fr;
    align-items:start;
    gap:80px;
    margin-top: 60px;
}

.about-image{
    position:relative;
}

.about-image::before{
    content:'';
    position:absolute;
    width:100%;
    height:100%;
    border:1px solid var(--gold);
    top:25px;
    left:25px;
    border-radius:24px;
}

.about-image img{
    width:100%;
    border-radius:24px;
    position:relative;
    z-index:2;
}

.about-content span{
    color:var(--gold);
    letter-spacing:4px;
    font-size:13px;
}

.about-content h2{
    font-family:'Cormorant Garamond',serif;
    font-size:70px;
    margin:20px 0;
    line-height:1;
}

.about-content p{
    color:#d5d5d5;
    line-height:2;
    margin-bottom:25px;
}

/* SILVER */

.silver{
    display:grid;
    grid-template-columns:1fr 1fr;
    align-items:start;
    gap:100px;
    margin-top: 60px;
}

.silver-image{
    position:relative;
}

#btn-silver-back{
    position: absolute;
    z-index: 99;
    top: 45%;
    left: -3%;
    transition: all 0.3s ease-in-out;
    background-color: white;
    border-radius: 100%;
    height: 40px;
    width: 40px;
}

#btn-silver-next{
    position: absolute;
    z-index: 99;
    top: 45%;
    right: -3%;
    transition: all 0.3s ease-in-out;
    background-color: white;
    border-radius: 100%;
    height: 40px;
    width: 40px;
}

#btn-silver-back:hover, #btn-silver-next:hover{
    transform: scale(1.15);
    cursor: pointer;
    opacity: 0.8;
}

#btn-silver-back:active, #btn-silver-next:active {
  transform: scale(0.95);
}

.silver-image::before{
    content:'';
    position:absolute;
    width:100%;
    height:100%;
    border:1px solid var(--gold);
    top:25px;
    left:25px;
    border-radius:24px;
}

.silver-image .content{
    height: 650px;
    border-radius: 24px;
    position: relative;
    z-index: 2;
    width: 100%;
    object-fit: cover;
}

.silver-content span{
    color:var(--gold);
    letter-spacing:4px;
    font-size:13px;
}

.silver-content h2{
    font-family:'Cormorant Garamond',serif;
    font-size:70px;
    margin:20px 0;
    line-height:1;
}

.silver-content p{
    color:#d5d5d5;
    line-height:2;
    margin-bottom:25px;
}

/* FAQ */

.faq{
    display:grid;
    grid-template-columns:center;
    align-items:center;
    gap:80px;
    margin-top: 60px;
}

.faq-content span{
    color:var(--gold);
    letter-spacing:4px;
    font-size:13px;
}

.faq-content h2{
    font-family:'Cormorant Garamond',serif;
    font-size:70px;
    margin:20px 0;
    line-height:1;
}

.faq-content p{
    color:#d5d5d5;
    line-height:2;
    margin-bottom:25px;
}

.faq-container {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(500px,1fr));
    gap: 30px;
    width: 100%;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.faq-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.faq-item {
    border-bottom: 1px solid var(--border-color);
}


.faq-question {
    width: 100%;
    background: none;
    border: none;
    outline: none;
    text-align: left;
    font-weight: bolder;
    padding: 20px 0;
    font-size: 17px;
    color: var(--text-main);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: color 0.2s ease;
}

.faq-question:hover {
    color: #adafb3;
}

.faq-icon {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    font-size: 15px;
    line-height: 1.6;
}

.faq-answer > a {
    color: var(--gold);
    text-decoration: underline;
    font-weight: bolder;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding-bottom: 20px;
}



/* INSTAGRAM GRID */

#feed {
    margin-top: 150px;
}

#feed  .section-title {
    display:flex;
    flex-direction:column;
    gap: 20px;
}

#feed  .section-title > a{
    color:white;
    font-family:'Cormorant Garamond',serif;
    font-size:clamp(0.1rem, 9vw, 4rem);
    text-decoration:none;
    margin-top:15px;
    font-weight:600;
    transition: all .4s ease;
}

#feed  .section-title > a:hover{
    background: var(--background-silver2);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
    transform: scale(1.1)
}

.feed{
    background:linear-gradient(180deg,var(--navy),#101C56);
}

.feed-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
}

.feed-item{
    position:relative;
    overflow:hidden;
    border-radius:22px;
    height:380px;
}

.feed-item img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.6s;
}

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

.feed-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(transparent,rgba(0,0,0,.8));
    display:flex;
    align-items:flex-end;
    padding:30px;
}

.social-buttons {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  transition: all 0.2s ease;
}

.instagram-btn {
  background-color: #f3f4f6;
  color: #111827;
  border: 1px solid #e5e7eb;
}

.instagram-btn:hover {
  background-color: #e5e7eb;
}

.whatsapp-btn {
  background-color: #25d366;
  color: #ffffff;
}

.whatsapp-btn:hover {
  background-color: #1eb956;
  transform: translateY(-2px);
}

.social-btn span {
  font-size: 13px;
  letter-spacing: 2px;
  font-weight: 600;
  color: #6b7280;
}

.feed-overlay {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.feed-overlay h3{
    font-family:'Cormorant Garamond',serif;
    font-size:38px;
}

.feed-grid span {
    color: white;
    font-family: 'Cormorant Garamond', serif;
}

.feed-grid a {
    color: white;
    text-decoration: none;
    font-family: 'Cormorant Garamond', serif;
}

.feed-grid a:hover {
    cursor:pointer;
    font-weight: bolder;
}

/* NEWSLETTER */

.newsletter{
    background:#F7F3EC;
    color:#111;
    border-radius:40px;
    padding:80px;
    text-align:center;
    margin-top: 160px;
}

.newsletter h2{
    font-family:'Cormorant Garamond',serif;
    font-size:68px;
    margin-bottom:20px;
}

.newsletter p{
    color:#666;
    margin-bottom:40px;
}

.news-form{
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
}

.news-form input{
    width:420px;
    padding:20px;
    border:none;
    border-radius:100px;
    outline:none;
    font-size:15px;
}

.news-form button{
    padding:20px 40px;
    border:none;
    border-radius:100px;
    background:var(--navy);
    color:white;
    cursor:pointer;
    letter-spacing:2px;
    transition:.4s;
}

.news-form button:hover{
    background:var(--gold);
    color:#111;
}

/* FOOTER */

footer{
    padding:60px 8%;
    text-align:center;
    color:#aaa;
    border-top:1px solid rgba(255,255,255,.08);
}

/* ANIMATIONS */

.slide-in-right {
	-webkit-animation: slide-in-right 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
	        animation: slide-in-right 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}

@-webkit-keyframes slide-in-right {
  0% {
    -webkit-transform: translateX(1000px);
            transform: translateX(1000px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slide-in-right {
  0% {
    -webkit-transform: translateX(1000px);
            transform: translateX(1000px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}

.slide-in-left {
	-webkit-animation: slide-in-left 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
	        animation: slide-in-left 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}

@-webkit-keyframes slide-in-left {
  0% {
    -webkit-transform: translateX(-1000px);
            transform: translateX(-1000px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slide-in-left {
  0% {
    -webkit-transform: translateX(-1000px);
            transform: translateX(-1000px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}

.slide-out-top {
	-webkit-animation: slide-out-top 0.5s cubic-bezier(0.550, 0.085, 0.680, 0.530) both;
	        animation: slide-out-top 0.5s cubic-bezier(0.550, 0.085, 0.680, 0.530) both;
}

@-webkit-keyframes slide-out-top {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateY(-1000px);
            transform: translateY(-1000px);
    opacity: 0;
  }
}

@keyframes slide-out-top {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateY(-1000px);
            transform: translateY(-1000px);
    opacity: 0;
  }
}

@keyframes slide-in-bottom {
  0% {
    transform: translateY(100px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

.slide-in-bottom {
  animation: slide-in-bottom 0.4s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}

@keyframes float{
    0%{
        transform:translateY(0px);
    }

    50%{
        transform:translateY(-18px);
    }

    100%{
        transform:translateY(0px);
    }
}

@keyframes floatMini{
    0%{
        transform:translateY(0px);
    }

    50%{
        transform:translateY(-10px);
    }

    100%{
        transform:translateY(0px);
    }
}

@keyframes fadeLeft{
    from{
        opacity:0;
        transform:translateX(-60px);
    }

    to{
        opacity:1;
        transform:translateX(0);
    }
}

@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

/* RESPONSIVE */

@media(max-width:1100px){

    .hero{
        grid-template-columns:1fr;
        text-align:center;
    }

    .hero p{
        margin:auto auto 40px;
    }

    .hero-buttons{
        justify-content:center;
    }

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

    .feed-grid{
        grid-template-columns:1fr 1fr;
    }
    .products-section {
        padding: 50px 20px;
    }

    .products-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .modal-content {
        grid-template-columns: 1fr;
        max-height: 90vh;
        overflow-y: auto;
    }

    .modal-image {
        min-height: 350px;

        max-height: 400px;
    }

    .modal-info {
        padding: 30px;
    }

}

@media(max-width:768px){

    .menu {
        display: none;
    }

    .menu.open {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-top: -10px;
    }

    .hero{
        overflow: hidden;
    }

    header {
        width: 100vw;
    }

    nav{
        padding: 30px 8%;
        width: 100vw;
    }

    .burger{
        display:block;
    }

    #collections{
        padding: unset;
    }

    .products-section {
        padding: 40px 16px;
    }

    .products-header {
        align-items: flex-start;
        flex-direction: column;
        margin-bottom: 30px;
    }

    .products-header h2 {
        font-size: 36px;
    }

    .products-grid {
        grid-template-columns: 1fr 1fr;
        gap: 14px;
    }

    .product-image {
        border-radius: 14px;
    }

    .product-info {
        padding-top: 11px;
    }

    .product-name {
        font-size: 14px;
    }

    .product-description {
        display: none;
    }

    .product-price {
        font-size: 13px;
    }

    .product-view {
        padding: 7px 9px;
        font-size: 9px;
    }

    .modal-content {
        border-radius: 18px;
    }

    .modal-image {
        min-height: 280px;
        max-height: 330px;
    }

    .modal-info {
        padding: 25px;
    }

    .modal-info h2 {
        font-size: 30px;
    }

    .section-title h2{
        font-size:48px;
    }

    .about-content h2{
        font-size:52px;
    }

    .newsletter{
        padding:50px 30px;
    }

    .newsletter h2{
        font-size:48px;
    }

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

    .collections-arrow {
        height: 20px;
        width: 20px;
    }

    .card-2 {
        left: -8%;
    }

    #silver{
        width: 100vw;
        padding: unset;
        margin-left: -1.5%;
    }

    .silver{
        background-color: rgb(224, 224, 224);
        padding: 120px 10px;
    }

    #silver span, #silver h2, #silver p {
        color: black;
    }

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

    .silver-image{
        display: none;
    }

    .faq-container {
        display: grid;
        grid-template-columns: repeat(auto-fit,minmax(70vw,1fr));
        gap: 30px;
    }

    .faq-title{
        text-align: center;
    }

}
