@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    --color-fondo: #CFEAFB;
    --color-dorado: #BC871D;
    --color-debajo-dorado: #A2845E;
    --color-rosado-texto: #CD61A8;
    --color-amarillo: #EFE168;
    --color-rosado: #F3E1EF;

    --fuente-roboto: "Roboto" , sans-serif;
    --titulos: 55px;
    --subtitulos: 19px;
}

* {
    font-family: "Roboto" , sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body{
    padding: 0;
    margin: 0;
    text-align: center;
    justify-content: center;
}
a {
    text-decoration: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
}

header{
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: var(--color-fondo);
    padding: 20px 80px;
    border-bottom: 1px solid black;
}

header a img{
    width: 20vh;
    height: auto;
}

#navBar {
    display: flex;
    align-items: center;
    justify-content: center;
}

#navBar li {
    list-style: none;
    padding: 0 20px;
}

#navBar li a {
    text-decoration: none;
    font-size: 18px;
    font-weight: 700;
    color: black;
    transition: 0.3s ease;
}

#navBar li a:hover {
    color: darkgray;
}

#mobile {
    display: none;
}

#close {
    display: none;
}

.hero {
    margin: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 70px 120px 70px 140px;
    background-color: #ffff;
}

.heroContent {
    flex: 1;
    padding-right: 48px;
    justify-content: center;
}

.heroContent h1 {
    font-size: var(--titulos);
    font-weight: 700;
    line-height: 60px;
    color: var(--color-dorado);
    margin-bottom: 10px;
}

.heroContent p {
    font-size: var(--subtitulos);
    font-weight: 400;
    color: var(--color-debajo-dorado);
    margin-bottom: 15px;
    line-height: 1.6;
}

.heroContent .promo {
    font-size: 25px;
    font-weight: 700;
    color: var(--color-rosado-texto);
    }

.botonComprarDesktop {
    align-self: center;
    background-color: var(--color-amarillo);
    border: none;
    padding: 10px 25px;
    font-size: 18px;
    border-radius: 10px;
    cursor: pointer;
    font-weight: bold;
    color: #000;
    text-align: center;
    }

.botonComprarDesktop:hover {
    background-color: #e2c935;
}

.heroImage {
    flex: 1;
    text-align: center;
}

.heroImage img {
    max-width: 70%;
    border-radius: 18px;
}

.botonComprarMobile {
    display: none;
}

.quality {
    margin: 0;
}

.qualityBadge {
    display: inline-block;
    background-color: var(--color-amarillo);
    color: black;
    font-size: 1rem;
    font-weight: 700;
    padding: 15px 25px;
    border-radius: 8px;
    margin-bottom: 10px;
    margin-top: 30px;
}

.quality h2{
    color: black;
    font-size: 55px;
    font-weight: 700;
    margin: 0;
}

.quality h3 {
    font-size: var(--subtitulos);
    font-weight: 400;
    margin-top: 10px;
    margin-bottom: 50px;
}

.quality p{
    font-size: var(--subtitulos);
    font-weight: 400;
    margin-top: 10px;
    margin-bottom: 3rem;
}

.qualityFeatures {
    display: flex;
    justify-content: center;
    gap: 100px;
    flex-wrap: wrap;
    margin: 0 auto;
    padding: 0 20px;
    margin-bottom: 2rem;
}

.qualityFeaturesBox {
    border: 2px solid #d1e7f5;
    border-radius: 10px;
    padding: 30px 20px;
    flex: 1 1 250px;
    max-width: 300px;
    box-sizing: border-box;
    text-align: center;
    justify-content: flex-start;
}

.boxIcon {
    background-color: var(--color-amarillo);
    border-radius: 8px;
    padding: 12px;
    display: inline-block;
    margin-bottom: 20px;
}

.boxTitle {
    font-size: 20px;
    font-weight: 700;
}

.specs {
    margin: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 50px 80px 50px 80px;
    background-color: var(--color-rosado);
}

.specsImage {
    flex: 1;
    text-align: center;
}

.specsImage img{
    max-width: 100%;
    border-radius: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.specsContent {
    flex: 1;
    padding-left: 80px;
    text-align: start;
}

.specsContent h2 {
    font-size: var(--titulos);
    font-weight: 700;
    color: black;
    margin-bottom: 40px;
}

.specsContent ul {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    text-align: start;
    line-height: 35px;
}

.specsContent ul li {
    font-size: var(--subtitulos);
    font-weight: 500;
    margin-bottom: 10px;
}

.botonComprarSpecs {
    align-self: center;
    background-color: var(--color-amarillo);
    border: none;
    padding: 15px 35px;
    margin-top: 40px;
    margin-bottom: 3rem;
    font-size: 18px;
    border-radius: 10px;
    cursor: pointer;
    font-weight: bold;
    color: #000;
    transition: 0.3s;
}

.botonComprarSpecs:hover {
    background-color: #e2c935;
}

.includes1 h2 {
        color: var(--color-dorado);
        margin-top: 80px;
        margin-bottom: 0px;
        font-size: var(--titulos);
}

.includes1 h3 {
        color: black;
        margin-top: 1rem;
        margin-bottom: 2rem;
        font-size: 2rem;
}

.sliders-container {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 5rem;
        margin: 0 10px 0 10px;
}

.slider {
        flex: 1 1 300px;
        max-width: 350px;
        width: 100%;
}

.slider h3 {
        font-weight: 700;
        margin-bottom: 2rem;
        font-size: 1.5rem;
        color: black;
}

.image-container {
        width: 100%;
        aspect-ratio: 4 / 3;
        overflow: hidden;
        border-radius: 12px;
        box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
        position: relative;
        background-color: #f0f0f0;
}

.slider img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: none;
        position: absolute;
        top: 0;
        left: 0;
}

.slider img.active {
        display: block;
}

.navigation {
        margin-top: 10px;
}

.dot {
        display: inline-block;
        width: 12px;
        height: 12px;
        margin: 0 4px;
        border-radius: 50%;
        background-color: #ccc;
        cursor: pointer;
        transition: background-color 0.3s;
}

.dot.active {
        background-color: #333;
}

.includes2 {
        background-color: white;
}

.includes2 h2 {
    color: var(--color-dorado);
    margin-top: 2rem;
    margin-bottom: 0px;
    font-size: var(--titulos);
}

.includes2 h3 {
    color: black;
    margin-top: 1rem;
    font-size: 2rem;

}

.includes2 h4 {
    color: black;
    margin-top: 0.5rem;
    margin-bottom: 2rem;
    font-size: 2rem;
}

.slider2-container {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 5rem;
        padding-bottom: 70px;
        margin: 60px 10px 0 10px;
}

.slider2 {
        flex: 1 1 300px;
        max-width: 350px;
        width: 100%;
        text-align: center;
}

.slider2 h3 {
        font-weight: 700;
        margin-bottom: 2rem;
        font-size: 1.5rem;
        color: black;
}

.image-container2 {
        width: 100%;
        aspect-ratio: 4 / 3;
        overflow: hidden;
        border-radius: 12px;
        box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
        position: relative;
        background-color: #f0f0f0;
}

.slider2 img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: none;
        position: absolute;
        top: 0;
        left: 0;
}

.slider2 img.active2 {
        display: block;
}

.navigation2 {
        margin-top: 10px;
}

.dot2 {
        display: inline-block;
        width: 12px;
        height: 12px;
        margin: 0 4px;
        border-radius: 50%;
        background-color: #ccc;
        cursor: pointer;
        transition: background-color 0.3s;
}

.dot2.active2 {
    background-color: #333;
}

.markerTitle {
    padding-top: 1.5rem;
    background-color: #ebebeb;
}
.markerTitle h2{
    font-size: var(--titulos);
    font-weight: 700;
    color: black;
}

.markers {
    background-color: #ebebeb;
    margin: 0rem auto;
    padding: 30px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
    justify-content: space-between;
    border: none;
}

.textSection {
    flex: 1 1 300px;
    padding-left: 15rem;
    text-align: start;
}

.textSection h2 {
    font-size: var(--subtitulos);
    margin-bottom: 1rem;
    color: black;
    font-weight: 700;
}

.textSection p {
    margin-bottom: 0.5rem;
    font-size: var(--subtitulos);
    font-weight: 600;
    color: black;
    margin-bottom: 3rem;
}

.textSection ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 20px;
}


.textSection ul li {
    margin-bottom: 10px;
    font-weight: 500;
    font-size: 1rem;
}

.button {
    display: inline-block;
    background-color: var(--color-amarillo);
    color: black;
    font-weight: 700;
    padding: 15px 35px;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.button:hover {
    background-color: #f1c40f;
}

.imageSection {
    flex: 1 1 250px;
    text-align: center;
}

.imageSection img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
}

.finalText {
    padding: 1rem 2rem;
}

.finalText h2{
    color: var(--color-dorado);
}

.footer {
    padding: 1.5rem 80px 0 80px;
    background-color: var(--color-fondo);
    border-top: 1px solid black;
}

.footerLine {
    border: none;
    border-top: 2px solid white;
    width: 100%;
    margin: 0 auto 10px;
}

.containerFooter {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.containerFooter p {
    font-size: 0.8rem;
    font-weight: 300;
    color: #000;
    margin-bottom: 1rem;
}

.containerFooter .brands {
    display: flex;
}

.containerFooter .brands a{
    font-size: 1.5rem;
    color: #000;
    margin: 0 0.5rem 0.3rem 0.5rem;
}

@media (max-width: 1300px){
    .textSection {
    flex: 1 1 300px;
    padding-left: 2rem;
    text-align: start;

}
}

@media (max-width: 799px) {

    header{
        padding: 20px 80px;
    }

    #navBar {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        position: fixed;
        top: 0;
        right: -300px;
        height: 100vh;
        width: 300px;
        background-color: var(--color-fondo);
        border-left: 1px solid black;
        padding: 80px 0 0 10px;
        transition: 0.3s;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.7);
    }

    #navBar.active {
        right: 0px;
    }

    #navBar li{
        margin-bottom: 25px;
    }

    #mobile {
        display: flex;
        align-items: center;
    }

    #mobile i{
        color: black;
        font-size: 24px;
        padding-left: 20px;
    }

    #close {
        display: initial;
        position: absolute;
        top: 30px;
        left: 30px;
        color: black;
        font-size: 22px;
    }

    #lgBag {
        display: none;
    }

    .hero {
        flex-direction: column;
        text-align: center;
        padding: 50px 60px ;
    }

    .heroContent {
        margin-bottom: 30px;
        padding: 0;
    }

    .heroContent .botonComprarDesktop {
        display: none;
    }

    .heroImage{
        margin: 0;
        padding: 0;
    }

    .heroImage img{
        max-width: 100%;
        margin: 0;
        padding: 0
    }

    #bar{
        cursor: pointer;
    }

    .botonComprarMobile {
    display: initial;
    align-self: center;
    background-color: var(--color-amarillo);
    border: none;
    padding: 15px 24px;
    margin-top: 40px;
    font-size: 18px;
    border-radius: 10px;
    cursor: pointer;
    font-weight: bold;
    color: #000;
    text-align: center;
    }

    .botonComprarMobile:hover {
    background-color: #e2c935;
}

    .quality {
        flex-direction: column;
        align-items: stretch;
    }

    .qualityFeatures {
        gap: 50px;
    }

    .specs {
        flex-direction: column;
        text-align: center;
        padding: 0;
    }

    .specsImage {
        margin: 80px 10px 0 10px;
        padding: 0;
    }

    .specsImage img {
        margin: 0;
        padding: 0;
    }

    .specsContent{
        margin: 50px 0 0 0;
        padding: 0;
        max-width: 70%;
        text-align: center;
    }

    .specsContent h2 {
        text-align: start;
        font-size: 3rem;
        word-wrap: break-word;
    }

    .specsContent ul {
        text-align: justify;
        display: inline-block;
    }

    .specsContent ul li {
        font-size: 1rem;
    }

    .sliders-container {
        gap: 2rem;
    }

    .slider2-container {
        gap: 2rem;
    }

    .markerTitle h2{
        font-size: 40px;
    }

    .markers {
    margin-top: 0;
    flex-direction: column;
    text-align: center;
    }

    .textSection {
        order: 2;
        max-width: 70%;
        text-align: center;
        margin-top: 0;
    }

    .textSection p {
        text-align: center;
    }

    .imageSection {
        order: 1;
        margin-top: 0px;
        margin-bottom: 0;
    }

    .textSection ul {
        text-align: center;
        display: inline-block;
    }

.footer {
        padding: 1.5rem 4rem 0 4rem;
    }

}

@media (max-width: 480px) {

    header{
        padding: 18px 40px;
    }

    header a img{
        width: 12vh;
        height: auto;
    }


    .specsContent h2 {
        font-size: 21px;
    }

    .specsContent ul li {
        font-size: 0.8rem;
    }

    .botonComprarSpecs {
        padding: 15px 35px;
        margin-top: 40px;
        font-size: 0.8rem;
    }

    .slider h3 {
        font-size: 1.2rem;
    }

    .dot {
        width: 14px;
        height: 14px;
    }

    .slider2 h3 {
        font-size: 1.2rem;
    }

    .dot2 {
        width: 14px;
        height: 14px;
    }

    .footer {
        padding: 1.5rem 2rem 0 2rem;
    }
}

@media (max-width: 375px) {

    .markerTitle h2{
        font-size: 30px;
    }

    .markers {
        padding: 20px 10px;
    }

    .textSection h2 {
        margin-top: 0;
        font-size: 1.5rem;
    }

    .textSection p {
        font-size: 0.9rem;
    }

    .textSection ul {
        font-size: 0.9rem;
        margin: 15px 0;
    }

    .button {
        padding: 10px 16px;
        font-size: 0.9rem;
    }

    .imageSection img {
        max-width: 100%;
        height: auto;
    }
}

.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    text-align: center;
    font-size: 32px;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background-color: #20ba5a;
}