/* Estilos específicos para la página de Viajes a Europa */

/* Hero Section Europa */
.hero-europa {
    height: 70vh;
    margin-top: 80px;
    background: linear-gradient(135deg, 
        rgba(37, 99, 235, 0.8) 0%, 
        rgba(6, 182, 212, 0.8) 100%),
        url('https://images.unsplash.com/photo-1499856871958-5b9627545d1a?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-europa::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(37, 99, 235, 0.7), rgba(6, 182, 212, 0.7));
    z-index: 1;
}

.hero-europa-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    animation: slideInUp 1s ease-out;
}

.hero-europa 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-europa p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.hero-europa .btn {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    margin: 0 0.5rem;
}

/* Destinos Europeos Grid */
.destinos-europa {
    padding: 5rem 0;
    background: #f8fafc;
}

.destinos-europa-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.destino-europa-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;
}

.destino-europa-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.destino-europa-image {
    height: 250px;
    overflow: hidden;
    position: relative;
}

.destino-europa-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.destino-europa-card:hover .destino-europa-image img {
    transform: scale(1.1);
}

.destino-europa-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.6));
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
}

.destino-europa-flag {
    width: 40px;
    height: 30px;
    border-radius: 4px;
    margin-bottom: 1rem;
}

.destino-europa-price {
    background: #f59e0b;
    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;
}

.destino-europa-content {
    padding: 2rem;
}

.destino-europa-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1f2937;
}

.destino-europa-content p {
    color: #6b7280;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.destino-europa-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.destino-europa-feature {
    background: #e5e7eb;
    color: #374151;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.9rem;
}

.destino-europa-actions {
    display: flex;
    gap: 1rem;
    justify-content: space-between;
    align-items: center;
}

.destino-europa-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.destino-europa-rating i {
    color: #f59e0b;
}

.destino-europa-rating span {
    font-weight: 600;
    color: #1f2937;
}

/* Botones Ver Detalles más pequeños */
.destino-europa-actions .btn {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    min-width: auto;
    border-radius: 8px;
}

/* Paquetes de Viaje */
.paquetes-europa {
    padding: 5rem 0;
    background: white;
}

.paquetes-europa-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.paquete-europa-card {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.paquete-europa-card:hover {
    border-color: #2563eb;
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(37, 99, 235, 0.1);
}

.paquete-europa-card.featured {
    border-color: #f59e0b;
    background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
}

.paquete-europa-card.featured::before {
    content: 'MÁS POPULAR';
    position: absolute;
    top: 1rem;
    right: -2rem;
    background: #f59e0b;
    color: white;
    padding: 0.3rem 3rem;
    font-size: 0.8rem;
    font-weight: 600;
    transform: rotate(45deg);
}

.paquete-europa-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1f2937;
}

.paquete-europa-precio {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 0.5rem;
}

.paquete-europa-precio span {
    font-size: 1rem;
    color: #6b7280;
    font-weight: 400;
}

.paquete-europa-duracion {
    color: #6b7280;
    margin-bottom: 2rem;
}

.paquete-europa-incluye {
    list-style: none;
    text-align: left;
    margin-bottom: 2rem;
}

.paquete-europa-incluye li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #f3f4f6;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.paquete-europa-incluye li:last-child {
    border-bottom: none;
}

.paquete-europa-incluye i {
    color: #10b981;
    font-size: 0.9rem;
}

/* Experiencias Únicas */
.experiencias-europa {
    padding: 5rem 0;
    background: #f8fafc;
}

.experiencias-europa-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.experiencia-europa-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.experiencia-europa-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.experiencia-europa-image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.experiencia-europa-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.experiencia-europa-card:hover .experiencia-europa-image img {
    transform: scale(1.05);
}

.experiencia-europa-content {
    padding: 1.5rem;
}

.experiencia-europa-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    color: #1f2937;
}

.experiencia-europa-content p {
    color: #6b7280;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Testimonios Europa */
.testimonios-europa {
    padding: 5rem 0;
    background: white;
}

.testimonios-europa-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonio-europa-card {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 15px;
    border-left: 4px solid #2563eb;
    position: relative;
}

.testimonio-europa-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: #2563eb;
    opacity: 0.3;
}

.testimonio-europa-texto {
    font-style: italic;
    color: #374151;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.testimonio-europa-autor {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonio-europa-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonio-europa-info h5 {
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.2rem;
}

.testimonio-europa-info span {
    color: #6b7280;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-europa {
        height: 70vh;
        margin-top: 100px;
        padding: 2rem 1rem;
    }
    
    .hero-europa h1 {
        font-size: 2.2rem;
        line-height: 1.2;
        margin-bottom: 1.5rem;
    }
    
    .hero-europa p {
        font-size: 1.1rem;
        margin-bottom: 2.5rem;
        padding: 0 1rem;
    }
    
    .hero-europa .btn {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
        margin: 0.5rem 0.3rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .destinos-europa-grid,
    .paquetes-europa-grid,
    .experiencias-europa-grid {
        grid-template-columns: 1fr;
    }
    
    .destino-europa-actions {
        flex-direction: column;
        gap: 1rem;
    }
    
    .paquete-europa-card {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-europa {
        height: 75vh;
        margin-top: 90px;
        padding: 1.5rem 0.8rem;
    }
    
    .hero-europa h1 {
        font-size: 1.9rem;
        line-height: 1.3;
    }
    
    .hero-europa p {
        font-size: 1rem;
        padding: 0 0.5rem;
    }
    
    .hero-europa .btn {
        padding: 0.7rem 1.2rem;
        font-size: 0.9rem;
        width: 80%;
        max-width: 250px;
    }
} 