.destino {
    display: flex;
    align-items: center;
    gap: 40px;
    max-width: 1200px;
    margin: 80px auto;
    padding: 20px;
}


/* IMAGEN GRANDE */
.destino-img img {
    width: 500px;
    height: 350px;
    object-fit: cover;
    border-radius: 15px;
}

/* TEXTO */
.destino-texto {
    flex: 1;
}

.destino-texto h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #111;
}

.destino-texto p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 15px;
}

.extra-box {
    display: flex;
    align-items: center;
    gap: 40px;
    margin: 80px auto;
    padding: 40px;
    border-radius: 20px;
    background: #ffffff;
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
    max-width: 1100px;
    width: 90%;
}

/* IMAGEN GRANDE */
.extra-img img {
    width: 450px;
    height: 280px;
    object-fit: cover;
    border-radius: 15px;
}

/* CONTENIDO */
.extra-content {
    flex: 1;
}

.extra-content h3 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #111;
}

.extra-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 10px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .extra-box {
        flex-direction: column;
        text-align: center;
        padding: 25px;
    }

    .extra-img img {
        width: 100%;
        height: auto;
    }
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .extra-opcion {
        flex-direction: column;
        text-align: center;
    }

    .extra-img img {
        width: 100%;
    }
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .destino {
        flex-direction: column;
        text-align: center;
    }

    .destino-img img {
        width: 100%;
        height: auto;
    }
}