/* Estilos para el mosaico de destinos */
.destinos-mosaico {
    width: 100%;
    max-width: 1200px;
    margin: 4rem auto;
    text-align: center;
}

.destinos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.destino-tile {
    position: relative;
    height: 180px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.destino-tile:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(6,75,152,0.2);
}

.destino-tile-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s;
    z-index: 1;
}

.destino-tile:hover .destino-tile-bg {
    transform: scale(1.1);
}

.destino-tile-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: linear-gradient(to top, rgba(6,75,152,0.8) 0%, rgba(6,75,152,0.4) 50%, rgba(6,75,152,0.2) 100%);
    z-index: 2;
    padding: 1.5rem;
    text-align: center;
}

.destino-icon {
    font-size: 2.5rem;
    color: #FF6B35;
    margin-bottom: 0.5rem;
    background: rgba(255,255,255,0.2);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s;
}

.destino-tile:hover .destino-icon {
    background: #FF6B35;
    color: white;
    transform: rotateY(180deg);
}

.destino-title {
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    margin-top: 0.5rem;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

/* Animación al mostrar las secciones */
.section-fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.section-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Mejora de la sección de ofertas */
.mega-connection-ofertas {
    height: auto;
    min-height: 450px;
}

.mega-connection-ofertas iframe {
    min-height: 450px;
}

@media (max-width: 768px) {
    .destinos-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 1rem;
    }
    
    .destino-tile {
        height: 150px;
    }
    
    .destino-icon {
        font-size: 2rem;
        width: 50px;
        height: 50px;
    }
    
    .destino-title {
        font-size: 1rem;
    }
}