@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;1,200;1,300;1,400;1,500;1,600;1,700;1,800&display=swap');

*{
    margin: 0;
    padding: 0; 
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}
section{
    position: relative;
    width: 100%;
    min-height: 100vh;
    padding: 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #0062be;
    transition: 0.5s;
}
section.page{
    align-items: flex-start;
}
header{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
header .logo{
    position: relative;
    max-width: 80px;
}
header ul{
    position: relative;
    display: flex;
    gap: 10px;
}
header ul li{
    list-style: none;
}
header ul li a{
    display: inline-block;
    color: #fff;
    font-weight: 400;
    margin-left: 40px;
    text-decoration: none;
}
.page-content{
    position: relative;
    width: 100%;
    margin-top: 120px;
    display: flex;
    flex-direction: column;
    gap: 60px;
}
.page-hero{
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
    gap: 40px;
    align-items: center;
}
.page-hero h1{
    color: #fff;
    font-size: 3em;
    line-height: 1.2;
    margin-bottom: 16px;
}
.page-hero p{
    color: #eef4ff;
    font-size: 1rem;
    line-height: 1.7;
}
.eyebrow{
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 12px;
}
.hero-card{
    background: rgba(255, 255, 255, 0.12);
    border-radius: 24px;
    padding: 28px;
    color: #fff;
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.2);
}
.hero-card h3{
    font-size: 1.3rem;
    margin-bottom: 12px;
}
.hero-card p{
    color: rgba(255, 255, 255, 0.9);
}
.hero-list{
    list-style: none;
    margin-top: 16px;
}
.hero-list li{
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}
.hero-list li::before{
    content: \"•\";
    position: absolute;
    left: 0;
    color: #fff;
}
.hero-actions{
    margin-top: 18px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.pill{
    background: rgba(255, 255, 255, 0.2);
    border-radius: 999px;
    padding: 6px 14px;
    font-size: 0.85rem;
}
.page-section h2{
    color: #fff;
    font-size: 2rem;
    margin-bottom: 24px;
}
.card-grid{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
}
.card{
    background: #fff;
    border-radius: 20px;
    padding: 24px;
    color: #111;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}
.card h3{
    margin-bottom: 10px;
    font-size: 1.2rem;
}
.card-tag{
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 1.5px;
    color: #888;
    margin-bottom: 10px;
}
.product-grid{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}
.product-card{
    background: #fff;
    border-radius: 20px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
    color: #111;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}
.product-card img{
    width: 100%;
    max-width: 160px;
    align-self: center;
}
.price{
    display: block;
    margin-top: 10px;
    font-weight: 600;
    color: #0062be;
}
.primary{
    border: none;
    background: #0062be;
    color: #fff;
    padding: 10px 22px;
    border-radius: 999px;
    cursor: pointer;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.primary:hover{
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}
.form-card{
    background: #fff;
    border-radius: 24px;
    padding: 28px;
    display: grid;
    gap: 16px;
    max-width: 520px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}
.form-card label{
    display: grid;
    gap: 8px;
    color: #111;
    font-weight: 500;
}
.form-card input,
.form-card textarea,
.form-card select{
    border-radius: 12px;
    border: 1px solid #d9e2f1;
    padding: 12px 14px;
    font-size: 0.95rem;
}
.form-card .checkbox{
    grid-template-columns: 16px 1fr;
    align-items: start;
    font-weight: 400;
    color: #333;
}
.form-card .checkbox input{
    margin-top: 3px;
}
.link{
    display: inline-block;
    margin-top: 12px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
}
.link::after{
    content: \"→\";
    margin-left: 8px;
}
.content{
    position: relative;
    width: 100%;
    display: flex;
    justify-content: space-between;
    justify-items: center;
}
.content .textBox{
    position: relative;
    max-width: 600px;
    margin-top: 6%;
}
.content .textBox h2{
    color: #fff;
    font-size: 4em;
    line-height: 1.5em;
    font-weight: 900;
    text-transform: uppercase;
}
.content .textBox h2 span{
    font-size: 2em;
}
.content .textBox p{
    color: #fff;
}
.content .textBox .cta{
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}
.content .textBox a{
    display: inline-block;
    padding: 10px 24px;
    background: #fff;
    color: #111;
    border-radius: 40px;
    font-weight: 500;
    letter-spacing: 1px;
    text-decoration: none;
    text-transform: uppercase;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}
.content .textBox a.secondary{
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.6);
}
.content .textBox a:hover{
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}
.content .textBox a.secondary:hover{
    background: rgba(255, 255, 255, 0.25);
}
.content .imgBox{
    width: 600px;
    display: flex;
    padding-right: 50px;
    margin-top: 50px;
    justify-content: flex-end;
}
.content .imgBox img{
    max-width: 260px;
}
.thumb{
    position: absolute;
    left: 50%;
    bottom: 20px;
    transform: translateX(-50%);
    display: flex;
}
.thumb li{
    list-style: none;
    display: inline-block;
    margin: 0 20px;
    cursor: pointer;
    transition: 0.5s;
}
/* Movimiento */
.thumb li:hover{
    transform: translateY(-15px);
}
.thumb li img{
    max-width: 40px;
}
.sci{
    position: absolute;
    top: 50%;
    right: 30px;
    transform: translateY(-50%);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.sci li{
    list-style: none;
}
.sci li a{
    display: inline-block;
    filter: invert(1);
    margin: 5px 0;
    transform: scale(0.6);
}

/* Responsive */
@media(max-width: 991px){
    section{
        padding: 40px;
        padding-bottom: 150px; /* 120px */
    }
    header{
        padding: 20px 40px;
    }
    header .logo{
        position: relative;
        max-width: 60px;
    }
    /* Menu Responsive */
    header ul{
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(255, 255, 255, 0.96);
        backdrop-filter: blur(6px);
        z-index: 1;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 16px;
        padding: 120px 40px 60px;
        overflow-y: auto;
        transition: transform 0.3s ease, opacity 0.2s ease;
        visibility: hidden;
        opacity: 0;
        transform: translateY(-10%);
    }
    header ul.active{ /* Para que aparezca el menu */
        visibility: visible;
        opacity: 1;
        transform: translateY(0);
    }
    header ul li a{
        display: inline-block;
        color: #111;
        font-weight: 400;
        margin-left: 0;
        text-decoration: none;
        font-size: 2em;
        margin: 10px 0;
    }
    header ul li a:hover{
        color: #ed0023;
    }
    .toggleMenu{
        position: relative;
        width: 40px;
        height: 40px;
        background: url(img/menu.png);
        background-position: center;
        background-size: 30px;
        background-repeat: no-repeat;
        z-index: 2;
        cursor: pointer;
    }
    .toggleMenu.active{
        background: url(img/close.png);
        background-position: center;
        background-size: 25px;
        background-repeat: no-repeat;
        filter: invert(1); /* Para que aparezca la 'x' */
    }
    /* fin del menu */
    .content{
        flex-direction: column;
        margin-top: 80px;
    }
    .content .textBox{
        position: relative;
        max-width: 100%;
        padding-right: 20px;
    }
    .content .textBox h2{
        font-size: 3em;
    }
    .content .textBox .cta{
        justify-content: center;
    }
    .content .textBox a{
        font-size: 14px;
        padding: 10px 18px;
    }
    .content .imgBox{
        width: 100%;
        display: flex;
        padding-right: 0;
        margin-top: 50px;
        justify-content: center;
    }
    .content .imgBox img{
        max-width: 150px;
    }
    .thumb li img{
        max-width: 37px; /* 30px */
    }
    .sci{
        right: 0;
        width: 50px;
        background: rgba(0,0,0,0.2);
    }
    .page-content{
        margin-top: 100px;
        gap: 40px;
    }
    .page-hero{
        grid-template-columns: 1fr;
    }
    .page-hero h1{
        font-size: 2.6em;
    }
    .form-card{
        max-width: 100%;
    }
}

@media(max-width: 540px){
    .content .textBox h2{
        font-size: 2.6em;
    }
    .content .textBox .cta{
        flex-direction: column;
        align-items: stretch;
    }
    .content .textBox a{
        width: 100%;
        text-align: center;
    }
}
