/* Estilos específicos para la página de Destinos LatAm */

/* Hero Section Destinos LatAm */
.hero-latam {
    height: 70vh;
    margin-top: 80px;
    background: linear-gradient(135deg, 
        rgba(251, 146, 60, 0.8) 0%, 
        rgba(239, 68, 68, 0.8) 100%),
        url('https://images.unsplash.com/photo-1531986733801-89b0bbb4b39f?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-latam::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(251, 146, 60, 0.7), rgba(239, 68, 68, 0.7));
    z-index: 1;
}

.hero-latam-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    animation: slideInUp 1s ease-out;
}

.hero-latam h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-latam p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.hero-latam .btn {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    margin: 0 0.5rem;
}

/* Países LatAm */
.paises-latam {
    padding: 5rem 0;
    background: #fef7f0;
}

.paises-latam-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.pais-latam-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.pais-latam-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.pais-latam-image {
    height: 250px;
    overflow: hidden;
    position: relative;
}

.pais-latam-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.pais-latam-card:hover .pais-latam-image img {
    transform: scale(1.1);
}

.pais-latam-price {
    background: #ea580c;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1.1rem;
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 2;
}

.pais-latam-content {
    padding: 2rem;
}

.pais-latam-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1f2937;
}

.pais-latam-content p {
    color: #6b7280;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.pais-latam-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.pais-latam-feature {
    background: #fed7aa;
    color: #c2410c;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.9rem;
}

.pais-latam-actions {
    display: flex;
    gap: 1rem;
    justify-content: space-between;
    align-items: center;
}

.pais-latam-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pais-latam-rating i {
    color: #f59e0b;
}

.pais-latam-rating span {
    font-weight: 600;
    color: #1f2937;
}

/* Experiencias LatAm */
.experiencias-latam {
    padding: 5rem 0;
    background: white;
}

.experiencias-latam-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.experiencia-latam-card {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.experiencia-latam-card:hover {
    border-color: #fb923c;
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(251, 146, 60, 0.1);
}

.experiencia-latam-card.featured {
    border-color: #ea580c;
    background: linear-gradient(135deg, #fef7f0 0%, #fed7aa 100%);
}

.experiencia-latam-card.featured::before {
    content: 'AVENTURA';
    position: absolute;
    top: 1rem;
    right: -2rem;
    background: #ea580c;
    color: white;
    padding: 0.3rem 3rem;
    font-size: 0.8rem;
    font-weight: 600;
    transform: rotate(45deg);
}

.experiencia-latam-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1f2937;
}

.experiencia-latam-precio {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ea580c;
    margin-bottom: 0.5rem;
}

.experiencia-latam-precio span {
    font-size: 1rem;
    color: #6b7280;
    font-weight: 400;
}

.experiencia-latam-duracion {
    color: #6b7280;
    margin-bottom: 2rem;
}

.experiencia-latam-incluye {
    list-style: none;
    text-align: left;
    margin-bottom: 2rem;
}

.experiencia-latam-incluye li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #f3f4f6;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.experiencia-latam-incluye li:last-child {
    border-bottom: none;
}

.experiencia-latam-incluye i {
    color: #10b981;
    font-size: 0.9rem;
}

/* Cultura LatAm */
.cultura-latam {
    padding: 5rem 0;
    background: #fef7f0;
}

.cultura-latam-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.cultura-latam-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.cultura-latam-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.cultura-latam-image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.cultura-latam-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.cultura-latam-card:hover .cultura-latam-image img {
    transform: scale(1.05);
}

.cultura-latam-content {
    padding: 1.5rem;
}

.cultura-latam-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    color: #1f2937;
}

.cultura-latam-content p {
    color: #6b7280;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Testimonios LatAm */
.testimonios-latam {
    padding: 5rem 0;
    background: white;
}

.testimonios-latam-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonio-latam-card {
    background: #fef7f0;
    padding: 2rem;
    border-radius: 15px;
    border-left: 4px solid #fb923c;
    position: relative;
}

.testimonio-latam-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: #fb923c;
    opacity: 0.3;
}

.testimonio-latam-texto {
    font-style: italic;
    color: #374151;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.testimonio-latam-autor {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonio-latam-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonio-latam-info h5 {
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.2rem;
}

.testimonio-latam-info span {
    color: #6b7280;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-latam {
        height: 70vh;
        margin-top: 100px;
        padding: 2rem 1rem;
    }
    
    .hero-latam h1 {
        font-size: 2.2rem;
        line-height: 1.2;
        margin-bottom: 1.5rem;
    }
    
    .hero-latam p {
        font-size: 1.1rem;
        margin-bottom: 2.5rem;
        padding: 0 1rem;
    }
    
    .hero-latam .btn {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
        margin: 0.5rem 0.3rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .paises-latam-grid,
    .experiencias-latam-grid,
    .cultura-latam-grid {
        grid-template-columns: 1fr;
    }
    
    .pais-latam-actions {
        flex-direction: column;
        gap: 1rem;
    }
    
    .experiencia-latam-card {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-latam {
        height: 75vh;
        margin-top: 90px;
        padding: 1.5rem 0.8rem;
    }
    
    .hero-latam h1 {
        font-size: 1.9rem;
        line-height: 1.3;
    }
    
    .hero-latam p {
        font-size: 1rem;
        padding: 0 0.5rem;
    }
    
    .hero-latam .btn {
        padding: 0.7rem 1.2rem;
        font-size: 0.9rem;
        width: 80%;
        max-width: 250px;
    }
} 