:root{
    --bg:#020617;
    --card:#0f172a;
    --card2:#111827;
    --primary:#d4af37;
    --secondary:#f8fafc;
    --text:#cbd5e1;
    --success:#16a34a;
    --danger:#ef4444;
    --warning:#eab308;
    --border:#1e293b;
    --shadow:0 10px 30px rgba(0,0,0,.3);
    --radius:18px;
    --transition:.4s;
}

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

html{
    scroll-behavior:smooth;
    z-index:999;
    background:var(--bg);
}

body{
    font-family:'Montserrat',sans-serif;
    background:var(--bg);
    color:var(--secondary);
    overflow-x:hidden;
    padding-top:90px;
    z-index:999;
    margin-bottom:70px;
}

img{
    max-width:100%;
    display:block;
}

button,
input,
select{
    font-family:inherit;
}

.container{
    width:min(1400px,92%);
    margin:auto;
}


/* HEADER */
.header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 999;
    background: rgba(2,6,23,.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    box-sizing: border-box;
}

.header-content {
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    
    /* padding: 0 10px; */
    box-sizing: border-box;
}
.logo{
    display: flex;
    align-items: center;
    width: 130px;
    height: 100%;
    max-height: 90px;
}
.logo h1{
    font-family:'Cormorant Garamond',serif;
    color:var(--primary);
    font-size:auto;
    
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-grow: 1;
    justify-content: flex-end;
    left:-10px;
}

.search-box {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 10px 14px;
    display: flex;
    align-items:center;
    gap: 10px;
    min-width: 0;
    width: 100%;
    max-width: 300px;
}

.search-box input {
    background: none;
    border: none;
    outline: none;
    color: #fff;
    width: 100%; /* Força o input a ocupar apenas o espaço disponível */
    min-width: 0; /* Impede o input de manter um tamanho padrão grande */
}

.cart-button{
    width:50px;
    height:50px;
    border-radius:12px;
    border:none;
    background:var(--primary);
    color:#000;
    font-size:1rem;
    cursor:pointer;
    position:relative;
}

.cart-button span{
    position:absolute;
    top:-5px;
    right:-5px;
    background:#fff;
    color:var(--danger);
    width:20px;
    height:20px;
    border-radius:50%;
    font-size:.7rem;
    display:flex;
    align-items:center;
    justify-content:center;
}


/* FILTERS */
.filters-section{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin:30px auto;
    gap:20px;
}

.categories-scroll{
    display:flex;
    gap:10px;
    overflow:auto;
    scrollbar-width:none;
}

.category-btn{
    min-width:max-content;
    padding:10px 18px;
    border:none;
    border-radius:999px;
    background:var(--card);
    color:#fff;
    cursor:pointer;
    transition:var(--transition);
}

.category-btn.active{
    background:var(--primary);
    color:#000;
}

.view-toggle{
    display:flex;
    gap:10px;
}

.view-btn{
    width:45px;
    height:45px;
    border:none;
    border-radius:12px;
    background:var(--card);
    color:#fff;
    cursor:pointer;
}

.view-btn.active{
    background:var(--primary);
    color:#000;
}


/* PRODUCTS */
.products-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:15px;
    padding-bottom:140px;
}

.product-card{
    background:var(--card);
    border:1px solid var(--border);
    border-radius:var(--radius);
    overflow:hidden;
    transition:var(--transition);
    display:flex;
    flex-direction:column;
}

.product-card:hover{
    transform:translateY(-5px);
}

.product-image{
    aspect-ratio:1/1;
    overflow:hidden;
}

.product-image img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.product-content{
    padding:14px;
    display:flex;
    flex-direction:column;
    gap:10px;
    flex:1;
}

.product-title{
    font-size:.9rem;
    line-height:1.4;
}

.product-description{
    font-size:.75rem;
    color:var(--text);
}

.product-footer{
    margin-top:auto;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.product-price{
    font-size:.85rem;
    color:var(--primary);
    font-weight:700;
}

.buy-btn{
    border:none;
    padding:10px 14px;
    border-radius:10px;
    background:var(--primary);
    color:#000;
    font-size:.75rem;
    cursor:pointer;
}


/* LIST VIEW */
.products-grid.list-view{
    grid-template-columns:1fr;
}

.products-grid.list-view .product-card{
    flex-direction:row;
    height:120px;
}

.products-grid.list-view .product-image{
    width:120px;
    height:100%;
}

.products-grid.list-view .product-content{
    justify-content:center;
}

.products-grid.list-view .product-footer{
    border-top:1px solid var(--border);
    padding-top:15px;
}


/* CART */
.cart-sidebar{
    position:fixed;
    top:0;
    right:-100%;
    width:420px;
    max-width:100%;
    height:100vh;
    background:var(--card2);
    z-index:9999;
    transition:1s;
    display:flex;
    flex-direction:column;
    border-left:1px solid var(--border);
}

.cart-sidebar.active{
    right:0;
}

.cart-header{
    height:80px;
    border-bottom:1px solid var(--border);
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:0 20px;
}

.cart-header button{
    background:none;
    border:none;
    color:#fff;
    font-size:1.2rem;
}

.cart-items{
    flex:1;
    overflow:auto;
    padding:20px;
    display:flex;
    flex-direction:column;
    gap:15px;
}

.cart-item{
    background:var(--card);
    border-radius:14px;
    padding:10px;
    display:flex;
    gap:12px;
    animation:slideUp .6s ease;
}

.cart-item img{
    width:80px;
    height:80px;
    object-fit:cover;
    border-radius:10px;
}

.cart-item-content{
    flex:1;
}

.cart-item-content h4{
    font-size:.8rem;
}

.cart-item-content p{
    font-size:.7rem;
    margin-top:6px;
}

.quantity-controls{
    display:flex;
    align-items:center;
    gap:10px;
    margin-top:10px;
}

.quantity-controls button{
    width:26px;
    height:26px;
    border:none;
    border-radius:8px;
    background:var(--primary);
    cursor:pointer;
}


/* CART FOOTER */
.cart-footer{
    position:sticky;
    bottom:0;
    background:var(--card2);
    border-top:1px solid var(--border);
    padding:20px;
}

.progress-bar{
    width:100%;
    height:10px;
    background:#111;
    border-radius:999px;
    overflow:hidden;
    margin-top:10px;
}

.progress-fill{
    height:100%;
    width:0%;
    transition:.5s;
}

.coupon-box input,
.shipping-region select{
    width:100%;
    margin-top:12px;
    padding:12px;
    background:var(--card);
    border:1px solid var(--border);
    color:#fff;
    border-radius:10px;
}

.cart-summary{
    margin-top:20px;
    display:flex;
    flex-direction:column;
    gap:10px;
}

.cart-summary div{
    display:flex;
    justify-content:space-between;
    font-size:.85rem;
}

.total-line{
    font-size:1rem;
    color:var(--primary);
}

.cart-actions{
    display:flex;
    gap:10px;
    margin-top:20px;
}

.cart-actions button{
    flex:1;
    padding:14px;
    border:none;
    border-radius:12px;
    cursor:pointer;
}

.continue-btn{
    background:#1e293b;
    color:#fff;
}

.checkout-btn{
    background:var(--primary);
    color:#000;
}


/* TOAST */
.toast-container{
    position:fixed;
    top:100px;
    right:20px;
    z-index:99999;
    display:flex;
    flex-direction:column;
    gap:10px;
}

.toast{
    width:350px;
    background:#fff;
    color:#000;
    border-radius:14px;
    overflow:hidden;
    animation:toastSlide .4s ease;
}

.toast-content{
    display:flex;
    gap:12px;
    padding:12px;
}

.toast img{
    width:60px;
    height:60px;
    object-fit:cover;
    border-radius:10px;
}

.toast-info h4{
    font-size:.8rem;
}

.toast-info p{
    margin-top:6px;
    font-size:.75rem;
}

.toast-progress{
    height:4px;
    background:var(--success);
    animation:progress 2s linear;
}


/* NEWSLETTER */
.newsletter-section{
    padding:100px 0;
}

.newsletter-wrapper{
    display:grid;
    grid-template-columns:1fr;
    gap:40px;
    align-items:center;
}

.newsletter-content{
    display:flex;
    flex-direction:column;
    gap:24px;
}

.newsletter-badge{
    display:inline-flex;
    align-items:center;
    gap:10px;
    width:max-content;
    padding:10px 18px;
    border-radius:999px;
    background:rgba(212,175,55,.12);
    border:1px solid rgba(212,175,55,.25);
    color:var(--primary);
    font-size:.8rem;
    font-weight:600;
}

.newsletter-content h2{
    font-family:'Cormorant Garamond',serif;
    font-size:clamp(2.5rem,6vw,4rem);
    line-height:1.1;
    color:#fff;
}

.newsletter-content p{
    color:var(--text);
    line-height:1.8;
    max-width:650px;
}

.newsletter-benefits{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:15px;
}

.newsletter-benefit{
    display:flex;
    align-items:center;
    gap:12px;
    padding:18px;
    border-radius:18px;
    background:var(--card);
    border:1px solid var(--border);
}

.newsletter-benefit i{
    width:42px;
    height:42px;
    border-radius:12px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:rgba(212,175,55,.12);
    color:var(--primary);
}

.newsletter-benefit span{
    font-size:.85rem;
    color:#fff;
}

.newsletter-form-card{
    background:var(--card);
    border:1px solid var(--border);
    border-radius:24px;
    padding:35px;
}

.newsletter-card-header{
    margin-bottom:25px;
}

.newsletter-card-header h3{
    color:#fff;
    font-size:1.5rem;
    margin-bottom:10px;
}

.newsletter-card-header p{
    color:var(--text);
}

.newsletter-form{
    display:flex;
    flex-direction:column;
    gap:18px;
}

.newsletter-field{
    display:flex;
    flex-direction:column;
    gap:8px;
}

.newsletter-field label{
    color:#fff;
    font-size:.85rem;
}

.newsletter-field input{
    height:55px;
    padding:0 18px;
    border-radius:14px;
    border:1px solid var(--border);
    background:#0b1220;
    color:#fff;
    outline:none;
}

.newsletter-field input:focus{
    border-color:var(--primary);
}

.newsletter-btn{
    margin-top:10px;
    height:58px;
    border:none;
    border-radius:14px;
    background:var(--primary);
    color:#000;
    font-weight:700;
    cursor:pointer;
    transition:.3s;
}

.newsletter-btn:hover{
    transform:translateY(-3px);
}

.newsletter-security{
    display:flex;
    gap:12px;
    margin-top:20px;
}

.newsletter-security i{
    color:#16a34a;
}

.newsletter-security span{
    color:var(--text);
    font-size:.75rem;
    line-height:1.6;
}

@media (min-width:992px){

    .newsletter-wrapper{
        grid-template-columns:1.2fr .8fr;
    }
}

@media (max-width:768px){

    .newsletter-section{
        padding:70px 0;
    }

    .newsletter-benefits{
        grid-template-columns:1fr;
    }

    .newsletter-form-card{
        padding:25px;
    }
}


/* SECTION CLUBE DE ASSINATURA */
.subscription-section{
    padding:100px 0;
    position:relative;
    overflow:hidden;
}

.subscription-section::before{
    content:"";
    position:absolute;
    inset:0;
    background:
    radial-gradient(circle at top right,
    rgba(212,175,55,.15),
    transparent 35%);
    pointer-events:none;
}

.subscription-container{
    display:grid;
    grid-template-columns:1fr;
    gap:40px;
    align-items:center;
}

.subscription-content{
    display:flex;
    flex-direction:column;
    gap:24px;
}

.subscription-badge{
    width:max-content;
    padding:10px 18px;
    border-radius:999px;
    background:rgba(212,175,55,.12);
    border:1px solid rgba(212,175,55,.25);
    color:var(--primary);
    font-size:.8rem;
    font-weight:600;
    letter-spacing:.5px;
}

.subscription-content h2{
    font-family:'Cormorant Garamond',serif;
    font-size:clamp(2.2rem,5vw,4rem);
    line-height:1.1;
    color:#fff;
}

.subscription-content p{
    color:var(--text);
    line-height:1.8;
    max-width:650px;
    font-size:.95rem;
}

.subscription-benefits{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:16px;
}

.benefit-item{
    display:flex;
    align-items:center;
    gap:12px;
    background:rgba(15,23,42,.8);
    border:1px solid var(--border);
    padding:16px;
    border-radius:16px;
    transition:.4s;
}

.benefit-item:hover{
    transform:translateY(-4px);
    border-color:rgba(212,175,55,.35);
}

.benefit-item i{
    width:42px;
    height:42px;
    border-radius:12px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:rgba(212,175,55,.12);
    color:var(--primary);
    font-size:1rem;
}

.benefit-item span{
    font-size:.82rem;
    color:#fff;
    font-weight:500;
}

.subscription-pricing{
    display:flex;
    flex-direction:column;
    gap:8px;
}

.old-price{
    color:#64748b;
    text-decoration:line-through;
    font-size:.9rem;
}

.current-price{
    font-size:3rem;
    font-weight:700;
    color:var(--primary);
    line-height:1;
}

.current-price span{
    font-size:1rem;
    color:#fff;
    font-weight:400;
}

.subscription-actions{
    display:flex;
    flex-direction:column;
    gap:14px;
}

.subscription-btn{
    display:flex;
    justify-content:center;
    align-items:center;
    width:max-content;
    padding:18px 32px;
    border:none;
    border-radius:16px;
    background:linear-gradient(135deg, #d4af37, #f5d76e );
    color:#000;
    font-weight:700;
    font-size:1rem;
    text-decoration:none;
    cursor:pointer;
    transition:.4s;
    box-shadow: 0 10px 25px rgba(212,175,55,.25);
}

.subscription-btn:hover{
    transform:translateY(-4px) scale(1.02);
}

.subscription-note{
    color:#94a3b8;
    font-size:.75rem;
}

.subscription-image{
    position:relative;
    display:flex;
    justify-content:center;
}

.subscription-image img{
    width:100%;
    max-width:560px;
    height:650px;
    object-fit:cover;
    border-radius:30px;
    border:1px solid var(--border);
    box-shadow:var(--shadow);
}

.floating-card{
    position:absolute;
    bottom:30px;
    left:20px;
    background:rgba(2,6,23,.92);
    backdrop-filter:blur(14px);
    border:1px solid rgba(255,255,255,.08);
    border-radius:18px;
    padding:18px 22px;
    display:flex;
    flex-direction:column;
    gap:8px;
    box-shadow:var(--shadow);
}

.floating-card strong{
    color:#fff;
    font-size:1rem;
}

.floating-card span{
    color:var(--text);
    font-size:.75rem;
}

/* RESPONSIVO */
@media(min-width:992px){
    .subscription-container{
        grid-template-columns:1fr 1fr;
    }
}

@media(max-width:768px){
    .subscription-section{
        padding:70px 0;
    }

    .subscription-benefits{
        grid-template-columns:1fr;
    }

    .subscription-image img{
        height:500px;
    }

    .subscription-btn{
        width:100%;
    }
}


/* SECTION PLANOS */
.membership-section{
    padding:120px 0;
    position:relative;
    overflow:hidden;
}

.membership-section::before{
    content:"";
    position:absolute;
    width:600px;
    height:600px;
    background:
    radial-gradient(circle,
    rgba(212,175,55,.10),
    transparent 70%);
    top:-200px;
    right:-150px;
    pointer-events:none;
}

.membership-header{
    max-width:800px;
    margin:0 auto 70px;
    text-align:center;
}

.membership-badge{
    display:inline-flex;
    padding:10px 18px;
    border-radius:999px;
    background:rgba(212,175,55,.12);
    border:1px solid rgba(212,175,55,.25);
    color:var(--primary);
    font-size:.8rem;
    font-weight:600;
    margin-bottom:20px;
}

.membership-header h2{
    font-family:'Cormorant Garamond',serif;
    font-size:clamp(2.5rem,6vw,4.5rem);
    line-height:1.1;
    color:#fff;
    margin-bottom:20px;
}

.membership-header p{
    color:var(--text);
    line-height:1.8;
    font-size:1rem;
}


/* PLANS */
.plans-grid{
    display:grid;
    grid-template-columns:1fr;
    gap:30px;
}

.plan-card{
    position:relative;
    background:
    linear-gradient(
        180deg,
        rgba(15,23,42,.95),
        rgba(2,6,23,.95)
    );
    border:1px solid var(--border);
    border-radius:30px;
    padding:35px;
    display:flex;
    flex-direction:column;
    gap:30px;
    transition:.4s;
    overflow:hidden;
}

.plan-card:hover{
    transform:translateY(-8px);
    border-color:rgba(212,175,55,.25);
}

.featured-plan{
    border:1px solid rgba(212,175,55,.45);
    transform:scale(1.03);
    box-shadow:
    0 20px 50px rgba(212,175,55,.12);
}

.featured-plan::before{
    content:"";
    position:absolute;
    inset:0;
    background:
    linear-gradient(
        180deg,
        rgba(212,175,55,.08),
        transparent
    );
    pointer-events:none;
}

.featured-badge{
    position:absolute;
    top:20px;
    right:20px;
    background:var(--primary);
    color:#000;
    font-size:.72rem;
    font-weight:700;
    padding:8px 14px;
    border-radius:999px;
}

.plan-top{
    display:flex;
    flex-direction:column;
    gap:14px;
}

.plan-name{
    color:var(--primary);
    font-weight:600;
    text-transform:uppercase;
    letter-spacing:1px;
    font-size:.85rem;
}

.plan-top h3{
    font-size:3.5rem;
    line-height:1;
    color:#fff;
}

.plan-top h3 span{
    font-size:1rem;
    color:var(--text);
    font-weight:400;
}

.plan-top p{
    color:var(--text);
    line-height:1.7;
    font-size:.9rem;
}

.plan-benefits{
    list-style:none;
    display:flex;
    flex-direction:column;
    gap:16px;
}

.plan-benefits li{
    display:flex;
    align-items:center;
    gap:12px;
    font-size:.88rem;
    color:#fff;
}

.plan-benefits i{
    color:var(--success);
    font-size:.9rem;
}

.plan-btn{
    display:flex;
    justify-content:center;
    align-items:center;
    height:56px;
    border:none;
    border-radius:16px;
    background:#1e293b;
    color:#fff;
    font-weight:600;
    font-size:1rem;
    cursor:pointer;
    transition:.8s;
    text-decoration: none !important;
}

.plan-btn:hover{
    transform:translateY(-3px);
}
.plan-btn a{
    color:#ffffff;
}

.featured-btn{
    background: linear-gradient(135deg, #d4af37, #f5d76e);
    color:#000;
    box-shadow: 0 15px 35px rgba(212,175,55,.22);
}


/* EXTRA BENEFITS */
.membership-extra{
    margin-top:70px;
    display:grid;
    grid-template-columns:1fr;
    gap:20px;
}

.extra-card{
    background:rgba(15,23,42,.8);
    border:1px solid var(--border);
    border-radius:22px;
    padding:24px;
    display:flex;
    align-items:flex-start;
    gap:18px;
}

.extra-card i{
    width:55px;
    height:55px;
    border-radius:18px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:rgba(212,175,55,.12);
    color:var(--primary);
    font-size:1.1rem;
    flex-shrink:0;
}

.extra-card strong{
    display:block;
    margin-bottom:8px;
    color:#fff;
    font-size:1rem;
}

.extra-card p{
    color:var(--text);
    font-size:.85rem;
    line-height:1.7;
}


/* RESPONSIVO */
@media(min-width:992px){
    .plans-grid{
        grid-template-columns:repeat(3,1fr);
        align-items:center;
    }
    .membership-extra{
        grid-template-columns:repeat(3,1fr);
    }
}

@media(max-width:991px){
    .featured-plan{
        transform:none;
    }
}

@media(max-width:768px){
    .membership-section{
        padding:80px 0;
    }
    .plan-card{
        padding:28px;
    }
    .plan-top h3{
        font-size:3rem;
    }
}


/* SECTION PROVA SOCIAL */
.testimonials-section{
    padding:120px 0;
    position:relative;
    overflow:hidden;
}

.testimonials-section::before{
    content:"";
    position:absolute;
    width:500px;
    height:500px;
    left:-180px;
    bottom:-180px;
    background:
    radial-gradient(circle,
    rgba(212,175,55,.10),
    transparent 70%);
    pointer-events:none;
}

.testimonials-header{
    max-width:760px;
    margin:0 auto 60px;
    text-align:center;
}

.testimonials-badge{
    display:inline-flex;
    padding:10px 18px;
    border-radius:999px;
    background:rgba(212,175,55,.12);
    border:1px solid rgba(212,175,55,.25);
    color:var(--primary);
    font-size:.8rem;
    font-weight:600;
    margin-bottom:20px;
}

.testimonials-header h2{
    font-family:'Cormorant Garamond',serif;
    font-size:clamp(2.4rem,6vw,4.5rem);
    line-height:1.1;
    color:#fff;
    margin-bottom:20px;
}

.testimonials-header p{
    color:var(--text);
    line-height:1.8;
    font-size:1rem;
}


/* CAROUSEL */
.testimonials-carousel{
    position:relative;
    display:flex;
    align-items:center;
    gap:20px;
}

.testimonials-track-wrapper{
    overflow:hidden;
    width:100%;
}

.testimonials-track{
    display:flex;
    gap:25px;
    transition:transform .7s ease;
}

.testimonial-card{
    min-width:100%;
    background:
    linear-gradient(
        180deg,
        rgba(15,23,42,.96),
        rgba(2,6,23,.96)
    );
    border:1px solid var(--border);
    border-radius:32px;
    padding:35px;
    box-shadow:var(--shadow);
    position:relative;
}

.testimonial-card::before{
    content:"";
    position:absolute;
    inset:0;
    background:
    linear-gradient(
        180deg,
        rgba(212,175,55,.05),
        transparent
    );
    pointer-events:none;
}

.testimonial-top{
    display:flex;
    align-items:center;
    gap:18px;
    margin-bottom:25px;
}

.testimonial-top img{
    width:80px;
    height:80px;
    border-radius:50%;
    object-fit:cover;
    border:2px solid rgba(212,175,55,.35);
}

.testimonial-info{
    display:flex;
    flex-direction:column;
    gap:10px;
}

.testimonial-info h3{
    color:#fff;
    font-size:1rem;
    font-weight:600;
}

.testimonial-stars{
    display:flex;
    gap:5px;
}

.testimonial-stars i{
    color:#facc15;
    font-size:.9rem;
}

.testimonial-text{
    color:var(--text);
    line-height:1.9;
    font-size:.92rem;
}


/* BUTTONS */
.carousel-btn{
    width:55px;
    height:55px;
    border:none;
    border-radius:18px;
    background:rgba(15,23,42,.95);
    border:1px solid var(--border);
    color:#fff;
    cursor:pointer;
    transition:.4s;
    flex-shrink:0;
}

.carousel-btn:hover{
    background:var(--primary);
    color:#000;
    transform:translateY(-3px);
}

/* TABLET */
@media(min-width:768px){

    .testimonial-card{
        min-width:calc(50% - 13px);
    }
}

/* DESKTOP */
@media(min-width:1200px){

    .testimonial-card{
        min-width:calc(33.333% - 17px);
    }
}

/* MOBILE */
@media(max-width:768px){

    .testimonials-section{
        padding:80px 0;
    }

    .testimonial-card{
        padding:28px;
    }

    .carousel-btn{
        display:none;
    }
}



/* FOOTER */
.footer{
    /* position:sticky-bottom; */
    bottom:70px;
    background:#020617;
    border-top:1px solid var(--border);
    padding:40px 0;
}

.footer-content{
    display:flex;
    flex-direction:column;
    gap:20px;
    text-align:center;
}

.footer-links{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:20px;
}

.footer-links a{
    color:var(--text);
    text-decoration:none;
    font-size:.85rem;
}

.footer-links a:hover{
    color: var(--primary);
}

.developer-bar{
    position:fixed;
    bottom:0;
    width:100%;
    height:70px;
    background:#000;
    border-top:1px solid var(--primary);
    display:flex;
    align-items:center;
    justify-content:center;
    z-index:-1;
}

.developer-bar a{
    color:#fff;
    text-decoration:none;
    font-size:.9rem;
}

.developer-bar strong:hover{
    color:#fff;
}
.developer-bar strong {
    color: var(--primary);
}


/* ANIMATIONS */
@keyframes progress{
    from{width:100%;}
    to{width:0;}
}

@keyframes toastSlide{
    from{
        opacity:0;
        transform:translateX(100%);
    }
    to{
        opacity:1;
        transform:translateX(0);
    }
}

@keyframes slideUp{
    from{
        opacity:0;
        transform:translateY(30px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}


/* RESPONSIVE */
@media(min-width:768px){
    .products-grid{
        grid-template-columns:repeat(4,1fr);
    }
}

@media(min-width:1200px){
    .products-grid{
        grid-template-columns:repeat(6,1fr);
    }
}

/* AGENDAMENTO */

.booking-section{
    padding:120px 0;
}

.booking-wrapper{
    display:grid;
    gap:40px;
}

.booking-content{
    display:flex;
    flex-direction:column;
    gap:25px;
}

.booking-badge{
    width:max-content;

    padding:10px 18px;

    border-radius:999px;

    background:
    rgba(212,175,55,.12);

    color:var(--primary);

    border:
    1px solid
    rgba(212,175,55,.25);

    font-size:.8rem;
}

.booking-content h2{

    font-family:
    'Cormorant Garamond';

    font-size:
    clamp(
        2.5rem,
        5vw,
        4.5rem
    );

}

.booking-content p{

    color:
    var(--text);

    line-height:
    1.8;

}

.booking-benefits{

    display:grid;

    gap:16px;

}

.booking-benefit{

    display:flex;

    gap:15px;

    padding:18px;

    border-radius:18px;

    background:
    var(--card);

}

.booking-benefit i{

    color:
    var(--primary);

}

.booking-card{

    background:
    var(--card);

    padding:35px;

    border-radius:30px;

    border:
    1px solid
    var(--border);

}

#bookingForm{

    display:flex;

    flex-direction:column;

    gap:18px;

}

.booking-field{

    display:flex;

    flex-direction:column;

    gap:8px;

}

.booking-field label{

    font-size:.8rem;

}

.booking-field input,
.booking-field select{

    height:56px;

    border:none;

    border-radius:14px;

    padding:0 16px;

    background:#08111f;

    color:#fff;

}

.booking-btn{

    height:60px;

    border:none;

    border-radius:16px;

    background:
    linear-gradient(
        135deg,
        #d4af37,
        #f5d76e
    );

    color:#000;

    font-weight:700;

}

/* CTA MOBILE */

.mobile-cta{

    position:fixed;

    bottom:0;

    width:100%;

    height:70px;

    background:
    rgba(2,6,23,.96);

    border-top:
    1px solid
    var(--border);

    display:flex;

    z-index:9999;

}

.mobile-cta a{

    flex:1;

    display:flex;

    flex-direction:column;

    justify-content:center;

    align-items:center;

    gap:6px;

    color:#fff;

    text-decoration:none;

    font-size:.7rem;

}

.mobile-cta i{

    font-size:1rem;

}

@media(min-width:992px){

    .booking-wrapper{

        grid-template-columns:
        1fr
        .9fr;

    }

}

@media(min-width:768px){

    .mobile-cta{

        display:none;

    }

}