*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


body{
    font-family: "Poppins", sans-serif;
    background-color: white;
    line-height: 1.5;
    overflow-x: hidden;
    color: black;
    font-size: 1rem;
}

header{
    display: flex;
    background-color: #1B2B4C;
    color: white;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.445);
    position: relative;
    z-index: 10;
    flex-wrap: wrap;
    gap: 15px
    
}

a{
    text-decoration: none;
}


/*HEADER Diseño*/

.nav_list{
    list-style: none;
    display: flex;
    gap: 1.5rem;
    align-items: center;
    text-shadow: 2px 2px 5px rgba(0,0,0,0.4);
}

.nav_list a{
    color: white;
    
}
.book_now{
    padding: 1px 10px ;
    background-color: #009DB5;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.445);
    display: inline-block;
    font-weight: 500;
    text-shadow: none;
    
}

.book_now:hover {
    transform: translateY(-2px);
    filter: brightness(0.9);
}
a:hover{
    transform: translate(-2px);
    filter: brightness(0.9);
}


/*Diseño del hero*/ 
#hero{
    background: 
        linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
        url("/Sourse/Imagenes/hero_bacground.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 100vh;
    color: white;
    box-shadow:  0 2px 10px rgba(0, 0, 0, 0.445) ;
    font-size: 1rem;
}

#link_get_quote,
#link_book_now{
    display: inline-block;
    padding: 7px 15px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-right: 10px;
    box-shadow:0 2px 10px rgba(0, 0, 0, 0.1);
    margin-top: 10px;
    font-size: 1rem;
}

#link_get_quote,#link_book_now{
    color: white;
    background-color: #009DB5;
     margin-left: 10px;
}


.hero_title{
    margin-bottom: 20px;
    margin-left: 5px;
}

.hero_description{
    margin-bottom: 30px;
    margin-left: 10px;
}


/*Diseño de Servicios*/

#services{
    color:#1B2B4C;
    text-align: center;
    padding-top: 20px;
    padding: 6rem 10%;
    border-bottom: 1px solid #1a007725;
}

.services_list{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;

    padding: 2rem;
    list-style: none;
    font-size: 1rem;
}

.services_title{
    font-size: 2rem;
}

.service_icon{
    width: 100%;
    height: auto;
}


.service_card{
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 25px;
    padding: 2rem;
    background: #fff;
    position: relative;
    transition: transform 0.3s ease;


    display: flex;
    align-items: flex-start; /* Alinea ícono y texto al tope */
    text-align: left; /* Asegura que el texto no esté centrado */
    gap: 1.5rem;
   

}

.service_card:hover{
        transform: translateX(-2px);
        transform: translateY(-5px);
    filter: brightness(0.9);
}


.service_icon_container {

    background-color: #9DA9B5; 
    padding: 12px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 80px; 
    height: 80px;
}

.service_icon {
    width: 100%; 
    height: auto;
}



/*Reservacion*/

#reservation{
    color: #1B2B4C;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem;


    border-bottom: 1px solid #1a007725;
}

.reservation_title{
    text-shadow: 2px 2px 5px rgba(0,0,0,0.2);
    padding: 2rem;
}
.reservation_description{
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
    padding: 2rem;

}
.reservation_button{
    background: linear-gradient(90deg, #1B2B4C, #3F65B2);
    color: #fcfcfc;
    padding: 1rem 2rem;
    font-size: 2rem;
    font-weight: 600;

    border: none;
    border-radius: 15px;

    cursor: pointer;

    transition: all 0.25s ease;

    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    
}


.reservation_button:hover{
    transform: translateY(-6px) scale(1.03);
    filter: brightness(1.2);
    box-shadow: 0 10px 25px rgba(0,0,0,0.25);
}

/*Reseñas*/

/* ===== REVIEWS SECTION ===== */

#reviews{
    color: #1B2B4C;
    text-align: center;
    padding: 6rem 10%;


}

/* contenedor general */
.reviews_container{
    max-width: 1100px;
    margin: 0 auto;
}

/* títulos */
.reviews_title{
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.reviews_subtitle{
    color: #555;
    margin-bottom: 2rem;
}

/* GRID de tarjetas */
.reviews_list{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    list-style: none;
    padding: 2rem 0;
}

/* pirámide invertida */
.review_card:nth-child(1){
    grid-column: 1 / -1;
}

/* tarjetas */
.review_card{
    background: linear-gradient(145deg, #1B2B4C, #2d4f8f);
    color: #fff;

    padding: 2rem;
    border-radius: 16px;

    box-shadow: 0 10px 25px rgba(0,0,0,0.2);

    transition: transform 0.3s ease;
}

/* hover */
.review_card:hover{
    transform: translateY(-6px);
}

/* bloque Google */
.reviews_google{
    margin-top: 2rem;
}

/* texto pequeño */
.reviews_google_text{
    margin-bottom: 1rem;
    color: #1B2B4C;
}

/* botón Google */
.reviews_google_button{
    display: inline-block;

    background: linear-gradient(145deg, #1B2B4C, #2d4f8f);
    color: #ffffff;

    padding: 0.9rem 1.8rem;

    font-size: 0.95rem;
    font-weight: 600;

    border-radius: 12px;

    text-decoration: none;

    box-shadow: 0 6px 18px rgba(0,0,0,0.15);

    transition: all 0.3s ease;
}

/* hover botón */
.reviews_google_button:hover{
    transform: translateY(-4px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.25);
    background: #04004193;
}


.car_img{
       width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 50%;
}



/* ===== FOOTER ===== */

footer{
    background: #1B2B4C;
    color: #fff;

    padding: 4rem 10%;

    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Título principal */
footer h2{
    font-size: 1.8rem;
}

/* Subtítulos */
footer h3{
    font-size: 1.2rem;
    margin-top: 1rem;
}

/* Lista de contacto */
footer ul{
    list-style: none;
    padding: 0;

    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Items */
footer li{
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

/* Textos */
footer p{
    margin: 0;
    color: rgba(255,255,255,0.8);
}

/* Links */
footer a{
    color: #00c2ff;
    text-decoration: none;
    font-weight: 500;

    transition: 0.3s ease;
}

/* Hover links */
footer a:hover{
    color: #ffffff;
    text-decoration: underline;
}




/* ===== RESPONSIVE ===== */

@media (max-width: 768px){

    /* ===== SECCIONES GENERALES ===== */
    #services,
    #reviews,
    #reservation,
    footer{
        padding: 4rem 5%;
        text-align: center;
    }

    /* ===== GRIDS ===== */
    .services_list,
    .reviews_list{
        grid-template-columns: 1fr;
    }

    /* ===== TÍTULOS ===== */
    .services_title,
    .reviews_title{
        font-size: 1.6rem;
    }

    /* ===== ICONOS ===== */
    .service_icon{
        width: 40px;
    }

    /* ===== CARDS MÁS COMPACTAS ===== */
    .service_card,
    .review_card{
        padding: 1.5rem;
    }

    /* ===== BOTONES ===== */
    .reservation_button,
    .reviews_google_button{
        width: 100%;
        display: block;
        text-align: center;
    }

}



@media (max-width: 768px) {
    header {
        flex-direction: column; /* Pone el logo arriba y los botones abajo */
        justify-content: center;
        text-align: center;
        padding: 15px;
    }

    /* Si tus botones están dentro de un <nav> o un <div> */
    header nav { 
        display: flex;
        flex-direction: row; /* O 'column' si quieres uno sobre otro */
        justify-content: center;
        flex-wrap: wrap;
        gap: 10px;
        margin-top: 10px;
    }

    header .logo { /* Ajusta el nombre de tu clase de logo */
        margin-bottom: 10px;
    }
}