/* =====================================================
   RESET
===================================================== */



        :root{

            --primary:#001238;
            --primary-light:#102a57;

            --yellow:#ffc400;
            --yellow-dark:#e6ad00;

            --white:#ffffff;

            --gray:#f5f6fa;

            --text:#20242c;
            --text-light:#7c8491;

            --border:#e8eaf0;

                        --azul: #06152f;
            --azul-claro: #0b2552;
            --amarelo: #ffc400;
            --amarelo-hover: #e6ae00;
            --branco: #ffffff;
            --cinza: #f4f4f4;
            --texto: #1e1e1e;
        }

* {

    margin: 0;

    padding: 0;

    box-sizing: border-box;

}


/* =========================================
   CARROSSEL DE PRODUTOS
========================================= */

.featured-products {

    margin-top: 80px;

}


.products-carousel-container {

    position: relative;

    width: 100%;

}


.products-carousel {

    display: flex;

    gap: 20px;

    overflow-x: auto;

    scroll-behavior: smooth;

    scrollbar-width: none;

    padding: 10px 5px 30px;

}


.products-carousel::-webkit-scrollbar {

    display: none;

}


/* Cards do carrossel */

.products-carousel .product-card {

    flex: 0 0 calc(25% - 15px);

}


/* BOTÕES */

.carousel-btn {

    position: absolute;

    top: 50%;

    transform: translateY(-50%);

    width: 48px;

    height: 48px;

    border: none;

    border-radius: 50%;

    background: #071936;

    color: #fff;

    font-size: 25px;

    z-index: 10;

    cursor: pointer;

}


.carousel-prev {

    left: -42px;

}


.carousel-next {

    right: -22px;

}


/* RESPONSIVO */

@media (max-width: 1100px) {

    .products-carousel .product-card {

        flex: 0 0 calc(33.333% - 14px);

    }

}


@media (max-width: 700px) {

    .products-carousel .product-card {

        flex: 0 0 calc(85% - 10px);

    }


    .carousel-prev {

        left: 5px;

    }


    .carousel-next {

        right: 5px;

    }

}


html {

    scroll-behavior: smooth;

}


body {

    font-family: 'Montserrat', sans-serif;

    background: #f7f8fa;

    color: #071936;

}


button,
input {

    font-family: inherit;

}


button {

    cursor: pointer;

}


a {

    text-decoration: none;

    color: inherit;

}



/* =====================================================
   TOPBAR
===================================================== */

.topbar {

    background: #071936;

    color: #fff;

    font-size: 12px;

}


.topbar-container {

    max-width: 1400px;

    margin: auto;

    padding: 10px 25px;

    display: flex;

    justify-content: space-between;

    align-items: center;

}


.topbar-left,
.topbar-right {

    display: flex;

    gap: 25px;

}


.topbar-right a {

    opacity: .8;

    transition: .2s;

}


.topbar-right a:hover {

    opacity: 1;

}

        /* =========================================
           HEADER
        ========================================= */

        header{

            background:var(--primary);

            position:sticky;

            top:0;

            z-index:1000;

            box-shadow:0 5px 20px rgba(0,0,0,.15);

        }


        .header-container{

            max-width:1400px;

            margin:auto;

            min-height:85px;

            padding:15px 25px;

            display:flex;

            align-items:center;

            gap:40px;
            justify-content: space-between;

        }



        /* LOGO */

        .logo{

            text-decoration:none;

            display:flex;

            align-items:center;

            gap:8px;

            min-width:210px;

        }


        .logo-jvl{

            font-size:35px;

            font-weight:800;

            color:var(--yellow);

            font-style:italic;

        }


        .logo-text{

            color:white;

            font-size:14px;

            font-weight:700;

            line-height:16px;

        }



        /* BUSCA */

        .search{

            flex:1;

            display:flex;

            background:white;

            border-radius:10px;

            overflow:hidden;

            height:48px;

        }


        .search input{

            width:100%;

            border:none;

            outline:none;

            padding:0 20px;

            font-size:14px;

        }


        .search button{

            width:120px;

            border:none;

            cursor:pointer;

            background:var(--yellow);

            color:var(--primary);

            font-weight:700;

            transition:.3s;
            

        }


        .search button:hover{

            background:#ffd633;

        }



        /* ACTIONS */

        .header-actions{

            display:flex;

            gap:25px;

        }


        .header-action{

            color:white;

            text-decoration:none;

            display:flex;

            align-items:center;

            gap:8px;

            font-size:12px;

        }


        .action-icon{

            font-size:22px;

        }


        .header-action span{

            display:block;

            color:#aeb8ca;

            font-size:10px;

        }




/* =====================================================
   CONTAINER
===================================================== */

.container {

    max-width: 1400px;

    margin: auto;

    padding: 55px 25px 80px;

}



/* =====================================================
   SECTION HEADER
===================================================== */

.section-header {

    display: flex;

    justify-content: space-between;

    align-items: flex-end;

    margin-bottom: 10px;

}


.section-header small {

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 1.5px;

    color: #777f89;

}


.section-title {

    font-size: 28px;

    margin-top: 8px;

    font-weight: 800;

    letter-spacing: -.5px;

}


.products-counter {

    margin-top: 8px;

    font-size: 12px;

    color: #8b929c;

}



/* =====================================================
   CATEGORIES
===================================================== */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 15px;
}
.category-card {
    width: 150px;
    height: 150px;
    border-radius: 200px;
    background: white;
    border: 1px solid #e7e9ec;
    padding: 20px 20px;
    text-align: center;
    transition: .25s;
    color: #071936;
}
.category-card:hover {
    transform: translateY(-4px);
    border-color: #071936;
    box-shadow: 0 10px 25px rgba(7,25,54,.08);
}
.category-image {
    width: 60px;
    height: 60px;
    border-radius: 100px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f3f5f7;
    font-size: 27px;
    margin-bottom: 15px;
}
.category-card.active .category-image {
    background: rgba(255,255,255,.12);
}
.category-card h3 {
    font-size: 13px;
    font-weight: 700;
}
/* =====================================================
   PRODUTOS
===================================================== */



.view-all {

    background: none;

    border: none;

    color: #071936;

    font-size: 13px;

    font-weight: 700;

}


.view-all:hover {

    text-decoration: underline;

}


.products-grid {

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 20px;

}



/* =====================================================
   PRODUCT CARD
===================================================== */

.product-card {

    position: relative;

    background: #fff;

    border: 1px solid #e5e7eb;

    border-radius: 12px;

    overflow: hidden;

    transition: .25s;

}


.product-card:hover {

    transform: translateY(-5px);

    box-shadow: 0 15px 35px rgba(7,25,54,.10);

}


.product-badge {

    position: absolute;

    top: 14px;

    left: 14px;

    z-index: 3;

    background: #071936;

    color: #fff;

    font-size: 10px;

    font-weight: 800;

    padding: 6px 9px;

    border-radius: 5px;

}


.favorite {

    position: absolute;

    top: 12px;

    right: 12px;

    z-index: 3;

    width: 34px;

    height: 34px;

    border-radius: 50%;

    border: none;

    background: #fff;

    box-shadow: 0 3px 12px rgba(0,0,0,.08);

    font-size: 20px;

    color: #071936;

}


.favorite.active {

    background: #071936;

    color: #fff;

}



/* =====================================================
   PRODUCT IMAGE
===================================================== */

.product-image {

    height: 270px;

    padding: 20px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: #f7f7f7;

}


.product-image img {

    width: 100%;

    height: 100%;

    object-fit: contain;

    transition: .3s;

}


.product-card:hover .product-image img {

    transform: scale(1.04);

}



/* =====================================================
   PRODUCT CONTENT
===================================================== */

.product-content {

    padding: 20px;

}


.marketplace {

    font-size: 10px;

    color: #858b94;

    margin-bottom: 9px;

}


.marketplace span {

    font-weight: 800;

    color: #071936;

}


.product-title {

    font-size: 14px;

    line-height: 1.45;

    height: 62px;

    overflow: hidden;

    font-weight: 700;

    margin-bottom: 15px;

}


.old-price {

    font-size: 12px;

    color: #999;

    text-decoration: line-through;

    min-height: 17px;

}


.price {

    font-size: 23px;

    font-weight: 800;

    margin-top: 3px;

    color: #071936;

}


.product-footer {

    display: flex;

    gap: 8px;

    margin-top: 18px;

}
 
        .details-btn {
            flex: 1;

            border: 1px solid var(--azul);
            background: white;
            color: var(--azul);

            padding: 11px;
            border-radius: 6px;

            cursor: pointer;
            font-weight: bold;
        }

        .btn-buy {
            flex: 1;

            border: none;
    background: #071936;
    color: white;

            padding: 11px;
            border-radius: 6px;

            cursor: pointer;
            font-weight: bold;
        }

        .btn-buy:hover {
            background: var(--amarelo-hover);
        }


.buy-btn {

    flex: 1;

    border: none;

    background: #071936;

    color: white;

    border-radius: 7px;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 12px;

    font-weight: 700;

    transition: .2s;

}


.buy-btn:hover {

    background: #102c59;

}



/* =====================================================
   NO PRODUCTS
===================================================== */

.no-products {

    grid-column: 1 / -1;

    background: white;

    border: 1px solid #e5e7eb;

    border-radius: 12px;

    text-align: center;

    padding: 70px 20px;

}


.no-products-icon {

    font-size: 45px;

    margin-bottom: 15px;

}


.no-products h3 {

    font-size: 18px;

    margin-bottom: 8px;

}


.no-products p {

    font-size: 13px;

    color: #888;

}
 



/* =====================================================
   NEWSLETTER
===================================================== */
.newsletter{
    margin-top:70px;
    background:#ffc400;
    border-radius:15px;
    padding:40px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:30px;
}
.newsletter h2{
    color:var(--primary);
    font-size:26px;
}
.newsletter p{
    color:#5f4a00;
    font-size:13px;
    margin-top:8px;
}
.newsletter-form{
    display:flex;
    min-width:450px;
}
.newsletter-form input{
    flex:1;
    padding:16px;
    border:none;
    outline:none;
    border-radius:8px 0 0 8px;
}
.newsletter-form button{
    background:var(--primary);
    color:white;
    border:none;
    padding:0 25px;
    border-radius:0 8px 8px 0;
    font-weight:700;
    cursor:pointer;
}
/* =====================================================
   MODAL
===================================================== */

.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.65);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    z-index: 1000;
}

.modal-overlay.active {
    display: flex;
}

.product-modal {
    position: relative;
    width: 900px;
    max-width: 100%;
    max-height: 90vh;
    overflow: auto;
    background: white;
    border-radius: 15px;
    display: grid;
    grid-template-columns: 45% 55%;
}

.modal-close {
    position: absolute;
    right: 15px;
    top: 15px;
    z-index: 10;
    width: 35px;
    height: 35px;
    border: none;
    border-radius: 50%;
    background: #071936;
    color: white;
    font-size: 24px;
}

.modal-image {
    max-width: 400px;
    max-height: 400px;
    background: #f6f6f6;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.modal-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.modal-content {
    padding: 40px 40px;
}

.modal-marketplace {
    font-size: 11px;
    font-weight: 700;
    color: #777;
}

.modal-content h2 {
    font-size: 20px;
    line-height: 1.35;
}


.modal-content p {
    color: #666;
    font-size: 13px;
    line-height: 1.7;
    margin-top: 20px;
}

.modal-old-price {
    color: #999;
    font-size: 13px;
    margin-top: 10px;
    text-decoration: line-through;
}


.modal-price {
    font-size: 30px;
    font-weight: 800;
    margin: 5px 0 25px;
}


.modal-buy {
    display: block;
    text-align: center;
    background: #071936;
    color: white;
    padding: 15px;
    border-radius: 7px;
    font-size: 16px;
    font-weight: 800;
}

/* =====================================================
   FOOTER
===================================================== */


        footer{
            background:#001238;
            color:white;
        }


        .footer-banner{

            width:100%;

            max-height:350px;

            object-fit:cover;

            object-position:center;

            display:block;

        }


        .footer-container{

            max-width:1400px;

            margin:auto;

            padding:60px 25px;

            display:grid;

            grid-template-columns:2fr 1fr 1fr 1fr;

            gap:50px;

        }


        .footer-logo{

            font-size:30px;

            font-weight:800;

            color:var(--yellow);

            margin-bottom:20px;

        }


        .footer-description{

            color:#9da9bb;

            font-size:13px;

            line-height:1.8;

            max-width:400px;

        }


        .footer-column h3{

            color:var(--yellow);

            font-size:14px;

            margin-bottom:20px;

        }


        .footer-column a{

            display:block;

            text-decoration:none;

            color:#aeb7c5;

            font-size:13px;

            margin-bottom:13px;

        }


        .footer-column a:hover{

            color:white;

        }


        .footer-bottom{

            border-top:1px solid rgba(255,255,255,.08);

            text-align:center;

            padding:20px;

            color:#7e8998;

            font-size:11px;

        }

/* =====================================================
   RESPONSIVE
===================================================== */
@media (max-width: 1100px) {
    .header-container {
        grid-template-columns: 200px 1fr;
    }

    .header-actions {
        display: none;
    }

    .categories-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 800px) {
    .topbar-left span:nth-child(2),
    .topbar-right {
        display: none;
    }

    .header-container {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 15px;
    }

    .logo {
        justify-content: center;
    }

    .logo img {
        max-width: 200px;
    }

    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .section-title {
        font-size: 23px;
    }

    .section-header {
        align-items: flex-start;
        gap: 20px;
    }

    .newsletter {
        flex-direction: column;
        align-items: stretch;
    }

    .newsletter-form {
        width: 100%;
        height: 45px;
    }


    .footer-container {

        grid-template-columns: 1fr 1fr;

    }


    .product-modal {

        grid-template-columns: 1fr;

    }


    .modal-image {

        min-height: 280px;

    }

    .category-card {
        width: 100px;
        height: 100px;
        border-radius: 200px;
        background: white;
        border: 1px solid #e7e9ec;
        padding: 20px 20px;
        text-align: center;
        transition: .25s;
        color: #071936;
        margin: 15px;
    }


.category-image {
    width: 60px;
    height: 60px;
    border-radius: 100px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f3f5f7;
    font-size: 27px;
    margin-bottom: 25px;

}


@media (max-width: 550px) {

    .container {

        padding: 35px 15px 60px;

    }


    .topbar-container {

        justify-content: center;

    }


    .topbar-left span:first-child {

        display: block;

    }


    .search button span {

        display: none;

    }


    .search button {

        width: 50px;

        padding: 0;

    }


    .categories-grid {

        gap: 10px;

    }


    .category-card {

        padding: 18px 10px;

    }


    .products-grid {

        grid-template-columns: 1fr;

    }


    .product-image {

        height: 300px;

    }


    .section-header {

        flex-direction: column;

        align-items: flex-start;

    }


    .promo-content {

        padding: 40px 25px;

    }


    .promo h2 {

        font-size: 29px;

    }


    .newsletter {

        padding: 25px 20px;

    }


    .newsletter-form {

        flex-direction: column;

        height: auto;

        gap: 8px;

    }


    .newsletter-form input {

        height: 45px;

        border-radius: 7px;

    }


    .newsletter-form button {

        height: 45px;

        border-radius: 7px;

    }


    .footer-container {

        grid-template-columns: 1fr;

        gap: 35px;

    }

}

        footer {
            background:#001238;
            color: white;text-align: center;
        }
    }