@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
 /*
 font-family: "Roboto", sans-serif;
 */

 *{
    
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    
}
body{
    font-family: "Arial", sans-serif;
    
}
.container{
    max-width: 1200px;
    margin: 0 auto;
}
.header{
    background-image: url('imagenes/bg.jpg');
    backdrop-filter: blur(5px);
    
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    display: flex;
    position: relative;
    min-height: 100vh;
    align-items: center;
}

.menu{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}
.logo{
    font-size: 25px;
    font-weight: bold;
    color: #1924c4;
}

.menu .navbar ul li{
    position: relative;
    list-style: none;
    margin: 0 20px;
    float: left;

}

.menu .navbar ul li a{
    color: #ffffff;
    font-size: 18px;
    font-weight: bold;
    padding: 10px 20px;
    transition: all 0.3s ease;
}

.menu .navbar ul li a:hover{
    color: #1924c4;
    border-radius: 5px;
}

.icons{
    display: flex;
    align-items: center;
}

.icons i{
    color: #ffffff;
    font-size: 20px;
    margin-left: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.icons i:hover{
    color: #1924c4;
    transform: scale(1.2);
}

.menu-icono{
    width: 25px;
}

.menu label{
    cursor: pointer;
    display: none;
}

#menu{
    display: none;
}

.header-text{
    width: 40%;
    
}

.header-text h1{
    font-size: 40px;
    line-height: 60px;
    color: #1924c4;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
    font-family: "Roboto Condensed", sans-serif;
}

.header-text h2{
    color:  #1924c4;
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 20px;
    
}

.header-text p{
    font-size: 18px;
    color: #ffffff;
    line-height: 20px;
    margin-bottom: 10px;
    font-weight: bold;
}
.btn-1{
    background-color: #1924c4;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
    color: #ffffff;
    display: inline-block;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.btn-1:hover{
    background-color: #ffffff;
    color: #1924c4;
    border: 2px solid #1924c4;
}

.images{
    width: 800px;
    height: 530px;
    position: absolute;
    right: 0;
    
    
    margin-top: 20px;
    
}

.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    
}

.swiper-slide h3 {
    position: absolute;
    left: 20px;
    top: 20px;
    font-size: 30px;
    color: #1924c4;
    font-weight: bold;
    text-align: center;
}
.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}
.swiper-button-prev::after {
    color: #ffffff;
    font-weight: bold;
    font-size: 25px;
    
}
.swiper-button-next::after {
    color: #ffffff;
    font-weight: bold;
    font-size: 25px;
    
}

.rows{
    width: 180px;
    position: absolute;
    right: 620px;
    bottom: 250px;
}

.servicios{
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 50px;
}

.servicios .servicios-grid{
    padding: 20px 0; 
   
}

.servicios .servicios-grid .servicio {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
    margin-bottom: 20px;
}

.servicios .servicios-grid img{
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 20px;
}

.servicios .servicios-grid h3{
    font-size: 20px;
    color: #1924c4;
    font-weight: bold;
    text-align: center;
    margin-bottom: 10px;
}

.servicios h2{
    font-size: 40px;
    line-height: 60px;
    font-weight: 700;
    color: #1924c4;
    text-transform: uppercase;
    margin-bottom: 20px;
    font-family: "Roboto Condensed", sans-serif;
}

.servicios .servicios-grid p{
    font-size: 16px;
    color: #1924c4;
    text-align: center;
    margin-bottom: 10px;
}

.productos{
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 50px;
}

.productos h2{
    font-size: 40px;
    line-height: 60px;
    font-weight: 700;
    text-align: center;
    color: #1924c4;
    text-transform: uppercase;
    margin-bottom: 20px;
    font-family: "Roboto Condensed", sans-serif;
}

.productos .productos-grid {
    padding: 20px 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 columnas */
    gap: 20px; /* espacio entre tarjetas */
}

.productos .productos-grid .producto {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
    margin-bottom: 20px;
}

.productos .productos-grid img{
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 20px;
}

.reservaciones{
    width: 100%;
    padding: 60px 20px;
    text-align: center;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 50px;
}

.reservaciones h2{
    font-size: 40px;
    line-height: 60px;
    font-weight: 700;
    text-align: center;
    color: #1924c4;
    text-transform: uppercase;
    margin-bottom: 20px;
    font-family: "Roboto Condensed", sans-serif;
}

.reservaciones .form {
    max-width: 600px;
    margin: 0 auto;
    background: #ffffff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.reservaciones .form h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #333;
}

.reservaciones .form p {
    font-size: 16px;
    margin-bottom: 20px;
    color: #666;
}

.reservaciones form input,
.reservaciones form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 10px;
    font-size: 16px;
    font-family: inherit;
    resize: none;
}

.reservaciones form button {
    background-color: #1924c4;
    color: #fff;
    padding: 12px 25px;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.reservaciones form button:hover {
    background-color: #ffffff;
    color: #1924c4;
    border: 2px solid #1924c4;
}

.footer {
    background-color: #1924c4;
    color: #fff;
    text-align: center;
    padding: 20px 10px;
    font-size: 14px;
    font-family: "Roboto", sans-serif;
}

.footer p {
    margin: 0;
}



@media (max-width: 991px) {

    .menu{
        padding: 40px;
    }
    .menu label{
        display: initial;
    }
    .menu .navbar {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #1924c4;
        opacity: 0.4;
        backdrop-filter: blur(5px);
        display: none;
    }
    .menu .navbar ul li{
        width: 100%;
    }
    .menu .navbar ul li a{
        padding: 15px 0;
        display: block;
    }
    #menu:checked ~ .navbar{
        display: initial;
    }
    .icons{
        display: none;
    }   
    .header{
        padding: 80px 30px 50px 30px;
        align-items: self-start;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    .header-text {
        text-align: center;
        width: 100%;
        margin-bottom: 30px;
        font-size: 35px;
        line-height: 50px;
    }
    .header-text h1{
        margin-top: 30px;
        font-size: 35px;
        line-height: 50px;
    }
    .header-text h2{
        font-size: 20px;
    }
    .header-text p{
        font-size: 16px;
    }
    .images{
        width: 100%;
        height: auto;
        position: relative;
        margin-top: 0;
    }
    .rows{
        width: 100%;
        position: relative;
        right: 0;
        bottom: 50px;
    }
    
}

@media (max-width: 768px) {
    .header-text{
        width: 100%;
        text-align: center;
    }
    .header-text h1{
        font-size: 30px;
        line-height: 40px;
    }
    .header-text h2{
        font-size: 18px;
    }
    .header-text p{
        font-size: 16px;
    }
    .images{
        width: 100%;
        height: auto;
        position: relative;
        margin-top: 0;
    }
    .rows{
        width: 100%;
        position: relative;
        right: 0;
        bottom: 50px;
    }
}


@media (max-width: 768px) {
    .productos .productos-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 columnas en tablet */
    }
}

@media (max-width: 480px) {
    .menu .navbar{
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #1924c4;
        opacity: 0.6;
        backdrop-filter: blur(5px);
        display: none;
    }
    .productos .productos-grid {
        grid-template-columns: 1fr; /* 1 columna en móviles */
    }
}

@media (max-width: 480px) {
    .reservaciones .form {
        padding: 20px;
    }

    .reservaciones h2 {
        font-size: 28px;
    }

    .reservaciones .form h3 {
        font-size: 20px;
    }
}


