/* Estilos generales */
body {
    font-family: 'Poppins', sans-serif;
    margin: 20;
    padding: 20;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
}


main {
    padding: 20px;
}

.destinos-titulo {
    text-align: center;
    font-size: 2em;
    margin-bottom: 40px;
    color: #333;
}

.destinos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    padding: 20px;
}

.destino {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.destino:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
}

.destino img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 3px solid #ff6f61;
}

.destino h3 {
    padding: 15px;
    margin: 0;
    font-size: 1.5em;
    color: #333;
}

.destino .descripcion {
    padding: 0 15px 15px;
    color: #666;
    font-size: 1em;
    line-height: 1.4;
}

.destino .precio {
    padding: 0 15px 15px;
    font-size: 1.2em;
    font-weight: bold;
    color: #ff6f61;
}

footer {
    background: #333;
    color: #fff;
    text-align: center;
    padding: 20px;
    margin-top: 40px;
}