/* Estilos específicos para la página de destinos internacionales */

/* Importar estilos base */
@import url('styles.css');

/* Hero Section */
.destinos-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('images/Hero destinos internacionales/Banderas-America-Latina.jpg') no-repeat center center/cover;
    height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    margin-top: 70px;
}

.destinos-hero h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    margin-bottom: 1rem;
    animation: fadeInDown 1s ease;
}

.destinos-hero p {
    font-size: 1.5rem;
    animation: fadeInUp 1s ease;
}

/* Acordeón de destinos */
.destinos-container {
    padding: 5rem 0;
}

.destino-accordion {
    max-width: 1000px;
    margin: 0 auto;
}

.destino-item {
    margin-bottom: 1.5rem;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    background-color: var(--white);
}

.destino-header {
    width: 100%;
    padding: 1.5rem;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    text-align: left;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.destino-header:hover {
    background-color: #2563EB;
}

.destino-header .arrow {
    transition: transform 0.3s ease;
}

.destino-header.active .arrow {
    transform: rotate(180deg);
}

.destino-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
}

.destino-content.active {
    max-height: 1000px;
}

.destino-info {
    padding: 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

.destino-image {
    border-radius: 8px;
    overflow: hidden;
}

.destino-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.destino-image:hover img {
    transform: scale(1.05);
}

.destino-text h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.destino-text p {
    margin-bottom: 1.5rem;
    color: var(--gray);
    line-height: 1.6;
}

.destino-text ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
    color: var(--gray);
}

.destino-text li {
    margin-bottom: 0.5rem;
}

/* Responsive */
@media screen and (max-width: 968px) {
    .destino-info {
        grid-template-columns: 1fr;
    }
    
    .destino-image {
        order: -1;
    }
}

@media screen and (max-width: 768px) {
    .destinos-hero h1 {
        font-size: 2.5rem;
    }
    
    .destinos-hero p {
        font-size: 1.2rem;
    }
    
    .destino-header {
        font-size: 1.1rem;
        padding: 1.2rem;
    }
    
    .destino-info {
        padding: 1.5rem;
    }
    
    .destino-text h3 {
        font-size: 1.5rem;
    }
}

@media screen and (max-width: 480px) {
    .destinos-hero {
        height: 40vh;
    }
    
    .destinos-hero h1 {
        font-size: 2rem;
    }
    
    .destinos-hero p {
        font-size: 1rem;
    }
    
    .destino-header {
        font-size: 1rem;
    }
    
    .destino-info {
        padding: 1rem;
        gap: 1.5rem;
    }
}