/* Estilos específicos para la página de Vuelos Viva */

/* Animaciones */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Estilos adicionales para compatibilidad */
.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

/* Hero Section Vuelos Viva */
.hero-vuelosviva {
    height: 70vh;
    margin-top: 80px;
    background: linear-gradient(135deg, 
        rgba(249, 115, 22, 0.8) 0%, 
        rgba(239, 68, 68, 0.8) 100%),
        url('https://images.unsplash.com/photo-1436491865332-7a61a109cc05?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-vuelosviva::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(249, 115, 22, 0.7), rgba(239, 68, 68, 0.7));
    z-index: 1;
}

.hero-vuelosviva-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    animation: slideInUp 1s ease-out;
}

.hero-vuelosviva 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-vuelosviva p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.hero-vuelosviva .btn {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    margin: 0 0.5rem;
}

/* Destinos Viva */
.destinos-viva {
    padding: 5rem 0;
    background: #fff7ed;
}

.destinos-viva-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.destino-viva-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-viva-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.destino-viva-image {
    height: 250px;
    overflow: hidden;
    position: relative;
}

.destino-viva-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.destino-viva-card:hover .destino-viva-image img {
    transform: scale(1.1);
}

.destino-viva-badge {
    background: #f97316;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1rem;
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 2;
}

.destino-viva-precio {
    background: #ef4444;
    color: white;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 2;
}

.destino-viva-content {
    padding: 2rem;
}

.destino-viva-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1f2937;
}

.destino-viva-content p {
    color: #6b7280;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.destino-viva-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.destino-viva-feature {
    background: #fed7aa;
    color: #ea580c;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.9rem;
}

.destino-viva-precio-desde {
    font-size: 1.8rem;
    font-weight: 700;
    color: #f97316;
    margin-bottom: 1rem;
}

.destino-viva-precio-desde span {
    font-size: 1rem;
    color: #6b7280;
    font-weight: 400;
}

.destino-viva-actions {
    display: flex;
    gap: 1rem;
    justify-content: space-between;
    align-items: center;
}

.destino-viva-frecuencia {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #6b7280;
}

.destino-viva-frecuencia i {
    color: #ef4444;
}

/* Servicios Viva */
.servicios-viva {
    padding: 5rem 0;
    background: white;
}

.servicios-viva-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.servicio-viva-card {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.servicio-viva-card:hover {
    border-color: #f97316;
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(249, 115, 22, 0.1);
}

.servicio-viva-card.popular {
    border-color: #ef4444;
    background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
}

.servicio-viva-card.popular::before {
    content: 'POPULAR';
    position: absolute;
    top: 1rem;
    right: -2rem;
    background: #ef4444;
    color: white;
    padding: 0.3rem 3rem;
    font-size: 0.8rem;
    font-weight: 600;
    transform: rotate(45deg);
}

.servicio-viva-icon {
    font-size: 3rem;
    color: #f97316;
    margin-bottom: 1rem;
}

.servicio-viva-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1f2937;
}

.servicio-viva-descripcion {
    color: #6b7280;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.servicio-viva-incluye {
    list-style: none;
    text-align: left;
    margin-bottom: 2rem;
}

.servicio-viva-incluye li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #f3f4f6;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.servicio-viva-incluye li:last-child {
    border-bottom: none;
}

.servicio-viva-incluye i {
    color: #10b981;
    font-size: 0.9rem;
}

/* Promociones Viva */
.promociones-viva {
    padding: 5rem 0;
    background: #fff7ed;
}

.promociones-viva-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.promocion-viva-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.promocion-viva-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.promocion-viva-header {
    background: linear-gradient(135deg, #f97316 0%, #ef4444 100%);
    color: white;
    padding: 1.5rem;
    text-align: center;
}

.promocion-viva-descuento {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.promocion-viva-titulo {
    font-size: 1.2rem;
    font-weight: 600;
}

.promocion-viva-content {
    padding: 1.5rem;
}

.promocion-viva-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    color: #1f2937;
}

.promocion-viva-content p {
    color: #6b7280;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.promocion-viva-condiciones {
    color: #f97316;
    font-weight: 600;
    margin-bottom: 1rem;
}

.promocion-viva-codigo {
    background: #fed7aa;
    color: #ea580c;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Testimonios Viva */
.testimonios-viva {
    padding: 5rem 0;
    background: white;
}

.testimonios-viva-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonio-viva-card {
    background: #fff7ed;
    padding: 2rem;
    border-radius: 15px;
    border-left: 4px solid #f97316;
    position: relative;
}

.testimonio-viva-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: #f97316;
    opacity: 0.3;
}

.testimonio-viva-texto {
    font-style: italic;
    color: #374151;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.testimonio-viva-autor {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonio-viva-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonio-viva-info h5 {
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.2rem;
}

.testimonio-viva-info span {
    color: #6b7280;
    font-size: 0.9rem;
}

.testimonio-viva-ruta {
    color: #f97316;
    font-size: 0.8rem;
    margin-top: 0.2rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-vuelosviva {
        height: 70vh;
        margin-top: 100px;
        padding: 2rem 1rem;
    }
    
    .hero-vuelosviva h1 {
        font-size: 2.2rem;
        line-height: 1.2;
        margin-bottom: 1.5rem;
    }
    
    .hero-vuelosviva p {
        font-size: 1.1rem;
        margin-bottom: 2.5rem;
        padding: 0 1rem;
    }
    
    .hero-vuelosviva .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-viva-grid,
    .servicios-viva-grid,
    .promociones-viva-grid {
        grid-template-columns: 1fr;
    }
    
    .destino-viva-actions {
        flex-direction: column;
        gap: 1rem;
    }
    
    .servicio-viva-card {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-vuelosviva {
        height: 75vh;
        margin-top: 90px;
        padding: 1.5rem 0.8rem;
    }
    
    .hero-vuelosviva h1 {
        font-size: 1.9rem;
        line-height: 1.3;
    }
    
    .hero-vuelosviva p {
        font-size: 1rem;
        padding: 0 0.5rem;
    }
    
    .hero-vuelosviva .btn {
        padding: 0.7rem 1.2rem;
        font-size: 0.9rem;
        width: 80%;
        max-width: 250px;
    }
}

/* Estilos adicionales para asegurar compatibilidad */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: #374151;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.text-center {
    text-align: center;
}

.mb-5 {
    margin-bottom: 3rem;
}

.display-4 {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
}

.lead {
    font-size: 1.25rem;
    font-weight: 300;
    color: #6b7280;
}

.font-weight-bold {
    font-weight: 700;
}

.mb-4 {
    margin-bottom: 1.5rem;
}

.mt-3 {
    margin-top: 1rem;
}

/* Botones */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    margin: 0.25rem;
    border: 2px solid transparent;
    border-radius: 0.375rem;
    text-decoration: none;
    text-align: center;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-warning {
    background-color: #f59e0b;
    color: white;
    border-color: #f59e0b;
}

.btn-warning:hover {
    background-color: #d97706;
    border-color: #d97706;
    color: white;
}

.btn-outline-warning {
    background-color: transparent;
    color: #f59e0b;
    border-color: #f59e0b;
}

.btn-outline-warning:hover {
    background-color: #f59e0b;
    color: white;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.btn-light {
    background-color: white;
    color: #374151;
    border-color: white;
}

.btn-outline-light {
    background-color: transparent;
    color: white;
    border-color: white;
}

.btn-outline-light:hover {
    background-color: white;
    color: #374151;
}

/* Forzar carga de estilos */
.hero-vuelosviva {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
} 