@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;500;600;700&family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');

*{
    margin:0;
    padding:0;
    box-sizing: border-box;
    text-decoration: none;
    list-style: none;
}

html {
    scroll-behavior: smooth;
}

body{
    font-family: "Poppins", sans-serif;
}

.container{
    max-width: 1200px;
    margin: 0 auto;
}

/* ---------------- HEADER ------------------- */

.header{
    background-image: url(imagenes/bg.png);
    background-position: center bottom;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 70vh;
    display: flex;
    align-items: center;
    position: relative;
}

.menu {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
}

.logo img {
    max-width: 200px;
    height: auto; 
}

.menu .navbar ul li {
    position: relative;
    float: left;
}

.menu .navbar ul li a{
    font-size: 18px;
    padding: 20px;
    color: #fffdfc;
    display: block;
    font-weight: 600;
}

#menu{
    display: none;
}

.menu-icono {
    width: 28px;
}

.menu label {
    cursor: pointer;
    display: none;
}

.header-content{
    padding: 120px 30px 40px;
}

.header-txt {
    text-align: center;
}

.header-txt h1{
    font-size: clamp(35px, 6vw, 85px);
    color: #fffdfc;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.header-txt p{
    color: #fffdfc;
    font-size: 16px;
    padding: 0 250px;
    margin-bottom: 45px;
}

/* ---------------- SECCIONES ------------------- */

.general {
    padding: 50px 0;
    text-align: center;
}

.general-parrafo{
    color: #1b293a;
    font-size: 16px;
    padding: 0 250px;
    margin-bottom: 45px;
}

.general-content{
    display: flex;
    justify-content: space-between;
    margin-top: 55px;
    flex-wrap: wrap;
}

.general-1, .general-2, .general-3,
.general-4, .general-5, .general-6 {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 350px;
    padding: 170px 55px;
    width: 32%;
    border-radius: 10px;
}

.general-1{ background-image: url(imagenes/r1.png); }
.general-2{ background-image: url(imagenes/r2.png); }
.general-3{ background-image: url(imagenes/r3.png); }
.general-4{ background-image: url(imagenes/r4.png); }
.general-5{ background-image: url(imagenes/r5.png); }
.general-6{ background-image: url(imagenes/r6.png); }

h2{
    font-size: clamp(32px, 5vw, 70px);
    text-transform: uppercase;
    color: #1b293a;
}

.txt h3{
    font-size: 18px;
    color: #fffdfc;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.txt p {
    color: #ebebeb;
    font-size: 16px;
}

/* ---------------- INFO 1 ------------------- */

.info-1 {
    padding: 250px 0;
    background-image: url(imagenes/bg2.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100% 100%;
}

.info-content{
    text-align: center;
}

.info-content h2,
.info-content span{
    color: #fffdfc;
}

.parrafo-blanco{
    color: #fffdfc;
    font-size: 16px;
    padding: 0 250px;
    margin-bottom: 45px;
}

.info-circle{
    display: flex;
    justify-content: space-between;
    margin-top: 55px;
    flex-wrap: wrap;
}

.circle-txt{
    width: 25%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin: 10px;
}

.circle-1{
    height: 100px;
    width: 100px;
    border: 1px solid #fffdfc;
    border-radius: 50%;
    padding-top:35px;
}

.circle-1 h3{
    color: #ebebeb;
    font-size: 16px;
}

.circle-txt p{
    color: #fffdfc;
    margin-top: 25px;
}

.info-2{
    padding: 250px;
    background-image: url(imagenes/bg3.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100% 100%;
}

.footer{
    background-color: #1b293a;
    padding: 100px 0;
}

.footer-content{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.link h3{
    color: #fffdfc;
    font-size: 18px;
    margin-bottom: 15px;
}

.link a{
    color: #ebebeb;
    display: block;
    margin-bottom: 10px;
}

.link a:hover{
    color: blue;
}

@media (max-width: 991px) {

    .menu{
        padding: 20px;
    }

    .menu label{
        display: initial;
    }

    .menu .navbar{
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #1b293a;
        display: none;
        transition: .3s;
        z-index: 1000;
    }
    
    .menu .navbar ul li {
        width: 100%;
    }

    #menu:checked ~ .navbar{
        display: block;
    }

    .header {
        min-height: 50vh;
    }

    .header-content{
        padding: 100px 20px;
    }

    .header-txt p{
        padding: 0;
    }

    .general{
        padding: 30px 20px;
    }

    .general-content{
        flex-direction: column;
        align-items: center;
        margin-top: 20px;
        gap: 20px;
    }

    .general-parrafo{
        padding: 0;
    }

    .general-1, .general-2, .general-3,
    .general-4, .general-5, .general-6{
        width: 100%;
        min-height: 260px;
        padding: 90px 25px;
    }

    .info-1{
        padding: 150px 20px;
        background-size: cover;
    }

    .parrafo-blanco{
        padding: 0;
    }

    .circle-txt{
        width: 100%;
        margin-bottom: 25px;
    }

    .info-2{
        padding: 150px 20px;
        background-size: cover;
    }

    .footer{
        padding: 40px;
    }

    .footer-content{
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
}