/* ==========================
   ESTILOS GENERALES
========================== */

body{
    margin:0;
    font-family:'Poppins',sans-serif;
    background:#f4f8fb;
}

/* ==========================
   HEADER DEL BANNER
========================== */

.banner{
    width:100%;
    height:220px;
    background:#0C7288;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;
    color:white;
}

.banner h1{
    font-size:48px;
    margin:0;
}

.banner p{
    font-size:20px;
    margin-top:15px;
}

/* ==========================
   BUSCADOR
========================== */

.buscador{
    text-align:center;
    margin:30px 0;
}

.buscador input{
    width:350px;
    padding:12px;
    border:2px solid #0C7288;
    border-radius:25px;
    font-size:16px;
}

/* ==========================
   TARJETAS
========================== */

.contenedor-destinos{
    width:90%;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:25px;
    margin-bottom:50px;
}

.destino{
    background:white;
    border-radius:15px;
    overflow:hidden;
    box-shadow:0 5px 15px rgba(0,0,0,.2);
    transition:.3s;
}

.destino:hover{
    transform:translateY(-8px);
}

.destino img{
    width:100%;
    height:220px;
    object-fit:cover;
}

.destino h2{
    color:#0C7288;
    text-align:center;
}

.destino p{
    padding:0 20px;
    text-align:center;
}

.destino button{
    display:block;
    margin:20px auto;
    padding:10px 25px;
    background:#0C7288;
    color:white;
    border:none;
    border-radius:25px;
    cursor:pointer;
    font-size:16px;
}

.destino button:hover{
    background:#09596b;
}