
/* --------------------------------------------------------------FULFILLMENT-PAGE---------------------------------------------------------------*/

/* -------------------------------HEADER------------------------------ */
body {
    margin: auto;
}

.my-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 1.5rem;
    color: white;
    font-family: 'Plus Jakarta Sans';
}

.header-color {
    background-color: #3b82f6;
}

.logo-header img {
    width: 15rem;
}


/* ------Menu-header------ */

.menu-header {
    margin-left: auto;
    margin-right: 6rem;
}

.menu-header ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.menu-header a{
    text-decoration: none;
    color: white;
}

.menu-header a:hover {
    color: rgb(59, 130, 246);
}



/* -------------------------------Menu------------------------------ */
/* ------Btn-menu------ */

.btn-menu-fulfillment button{
    padding: 1rem 1rem;
    cursor: pointer;
    color: #3b82f6;
    border-style: solid;
    border-radius: 50px;
    border-color: #3b82f6;
    background-color: #ffffff;
}

.btn-menu-fulfillment button:hover {
    border-style: solid;
    border-color: #ffffff;
    background-color: #3b82f6;
    color: #ffffff;
}

/* -------------------------------Header------------------------------ */
.section-header-fulfillment {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
    font-family: 'Montserrat';
    padding: 1.5rem 4rem;
}


.section-header-fulfillment h1 {
    font-size: 3rem;
}

.btn-header-fulfillment {
    padding: 1rem 2rem;
    color: #3b82f6;
    background-color: white;
    border-color: #3b82f6;
    border-radius: 50px;
    font-size: 1rem;
    margin-right: 5rem;
    cursor: pointer;
    margin-top: 1rem;
    border-style: solid;
}

.btn-header-fulfillment:hover {
    border-style: solid;
    border-color: #ffffff;
    background-color: #3b82f6;
    color: #ffffff;
}

.text-header-fulfillment {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    width: 40%;
    margin-top: 0rem;
    margin-right: 4rem;
}


/* --------------------------------Top-bar--------------------------------- */

.top-bar{
    background: #3b82f6;
    color: white;
    overflow: hidden;
    white-space: nowrap;
    padding: 10px 0;
    font-family: 'Montserrat';
    font-weight: bold;
}

.marquee-content {
    display: inline-block;
    padding-left: 100%;
    animation: marquee 85s linear infinite;
}

.marquee-content span {
    padding-right: 200px;
}

@keyframes marquee {
    0% { transform: translate3d(0, 0, 0); }
    100% { transform: translate3d(-100%, 0, 0); }
}

/* --------------------------------Main--------------------------------- */

main {
    margin-top: 1rem;
    margin-bottom: 5rem;
}

.h2-home {
    text-align: center;
    font-weight: 1000;
    font-size: 3rem;
    font-family: 'Montserrat';
    color: #3b82f6;
}

.icon {
    width: 5rem;
    display: block;
    margin: auto;
}

.main-section {
    display: flex;
    padding: 2rem;
    gap: 5%;
    justify-content: center;
    font-family: 'Plus Jakarta Sans';
    margin-bottom: 4rem;
}

.main-section div {
    max-width: 20%;
}


/* -------------------------------- Layout Grid & Cards -------------------------------- */
.features-grid {
    font-family: 'Montserrat';
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 5rem;
    flex-wrap: wrap; /* Permite que se acomode en celulares */
    max-width: 80%;
    margin: 0 auto 3rem auto;
}

.feature-bottom {
    font-family: 'Montserrat';
    margin: auto;
    display: flex;
    justify-content: center;
    width: 80%;
}

.card {
    flex: 1;
    min-width: 250px;
    max-width: 320px;
    text-align: center;
    color: #4b5563; /* Gris oscuro para textos generales */
}

.center-card {
    max-width: 400px; /* Un poco más ancho para acomodar la alerta de Stock */
}

/* -------------------------------- Typography -------------------------------- */
.card h3 {
    font-size: 2rem;
    color: #4b5563;
    margin-bottom: 0.5rem;
}

/* Estilo para los títulos azules de abajo */
.feature-bottom .card h3 {
    color: #3b82f6;
}

.price {
    font-size: 1.5rem;
    font-weight: medium;
    margin: 0;
}

.specs {
    color: #3b82f6;
    font-size: 1rem;
    margin-top: 0.25rem;
    margin-bottom: 1.5rem;
}

.description {
    font-size: 1rem;
    line-height: 1.4;
}

/* Footer */


footer {
    background-color: #3b82f6;
    font-family: 'Plus Jakarta Sans';
    text-align: center;
    color: white;
    padding: 3rem;
}

footer a{
    color: #ffffff;
    text-decoration: none;
}

footer a:hover {
    color: rgb(1, 15, 109);
}





/* --------------------------------------------------------------RESPONSIVE---------------------------------------------------------------*/

/* Tablets */
@media (max-width: 1024px) {

    .section-header-fulfillment {
        padding: 2rem;
        gap: 2rem;
    }

    .section-header h1 {
        font-size: 2.2rem;
    }

    .title-header {
        width: 55%;
    }

    .map-header {
        margin-right: 0;
    }

    .map-header img {
        width: 250px;
        margin-right: 0;
    }

    .text-header-fulfillment {
        width: 45%;
        margin-right: 0;
    }

    .main-section div {
        max-width: 30%;
    }

    .text-main-section {
        width: 45%;
    }

    .section-acordeon {
        width: 80%;
    }
    
    /* SHOP CARDS */
    .cards{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    max-width: 50rem;

    margin: auto;
    }

    .shop-cards {
        max-width: 95%;
        margin: auto;
    }

    

}


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

    /* Header */

    .my-header {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    .menu-header {
        margin: 0;
    }

    .menu-header ul {
        flex-direction: column;
        padding: 0;
        gap: 1rem;
    }

    .logo-header img {
        width: 12rem;
    }

    /* Hero */

    .section-header-fulfillment {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 2rem 1rem;
    }

    .title-header {
        width: 100%;
    }

    .section-header-fulfillment h1 {
        font-size: 2rem;
    }

    .map-header {
        width: 100%;
        text-align: center;
        margin: 0;
    }

    .map-header img {
        width: 30%;
        max-width: 350px;
        margin: 1rem auto 0;
        display: block;
    }

    .text-header-envio {
        width: 100%;
        margin: 0;
    }

    .text-header-fulfillment img {
        max-width: 100%;
        margin: auto;
    }

    .btn-header-fulfillment {
        margin: 0;
    }

    .features-grid {
        gap: 1rem;
    }

    /* Botones */

    .first-btn,
    .second-btn {
        margin: 0.5rem;
        width: 100%;
        max-width: 300px;
    }

    /* Main Home */

    .main-section {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }

    .main-section div {
        max-width: 100%;
        text-align: center;
    }

    /* Main Envíos */

    .section-main-envio {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .section-main-envio img {
        width: 100%;
        max-width: 350px;
    }

    .text-main-section {
        width: 100%;
    }

    /* FAQ */

    .section-acordeon {
        width: 90%;
        padding: 1rem;
    }

    .section-acordeon h3 {
        font-size: 1.5rem;
        text-align: center;
    }

    /* SECTION TRUST */

    .section-trust {
        width: 70%;
        align-items: center;
        justify-content: center;
        margin: auto;
    }

    /* SHOP CARDS */
    .cards{
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
        max-width: 50rem;

        margin: auto;
    }

    .shop-cards {
        max-width: 95%;
        margin: auto;
    }
    .card, h3{
        font-size: small;
    }

    .card span{
        font-size: medium;
    }

}

/* Celulares pequeños */
@media (max-width: 480px) {

    .section-header h1 {
        font-size: 1.6rem;
    }

    .h2-home {
        font-size: 1.5rem;
        padding: 0 1rem;
    }

    .section-acordeon h3 {
        font-size: 1.3rem;
    }

    .btn-header button {
        width: 100%;
    }

    .acordeon {
        width: 80%;
    }

    /* SECTION TRUST */

    .section-trust {
        width: 80%;
        align-items: center;
        justify-content: center;
        text-align: center;
        margin: auto;
    }

    /* SHOP CARDS */
    .cards {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        max-width: 50rem;

        margin: auto;
    }

    .shop-cards {
        max-width: 95%;
        margin: auto;
    }

    .card, h3{
        font-size: small;
    }
}



/* Fonts */

@font-face {
    font-family: 'Plus Jakarta Sans';
    src: url(../FONTS/PlusJakartaSans-Italic-VariableFont_wght.ttf) format('truetype');
    font-style: italic;
}

@font-face {
    font-family: 'Plus Jakarta Sans';
    src: url(../FONTS/PlusJakartaSans-VariableFont_wght.ttf) format('truetype');
    font-style: normal;
}