/* ========================================
   AEROSHOPS - ESTILOS INSTITUCIONALES
   ======================================== */

:root {
    /* Colores Institucionales */
    --color-primary: #420098;
    --color-secondary: #03E3A7;
    --color-dark: #1a1a1a;
    --color-gray: #6c757d;
    --color-light: #f8f9fa;
    
    /* Tipografía */
    --font-primary: 'Montserrat', sans-serif;
    
    /* Sombras */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.2);
    
    /* Transiciones */
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-primary);
    color: var(--color-dark);
    overflow-x: hidden;
}

/* ========================================
   NAVBAR
   ======================================== */
#mainNav {
    background: linear-gradient(135deg, var(--color-primary) 0%, #2d006b 100%);
    padding: 1rem 0;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

#mainNav.scrolled {
    padding: 0.5rem 0;
    background: linear-gradient(135deg, rgba(66, 0, 152, 0.98), rgba(45, 0, 107, 0.98));
    backdrop-filter: blur(10px);
}

.navbar-brand {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: -1px;
}

.brand-aero {
    color: white;
}

.brand-shops {
    color: var(--color-secondary);
    font-weight: 500;
}

.nav-link {
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    padding: 0.5rem 1.2rem !important;
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--color-secondary) !important;
    transform: translateY(-2px);
}

/* Botón PRIBOX Especial con Navidad */
.nav-pribox-especial {
    background: linear-gradient(135deg, #C41E3A 0%, #8B0000 100%);
    color: white !important;
    border-radius: 50px;
    padding: 0.6rem 1.5rem !important;
    margin-left: 1rem;
    position: relative;
    animation: pulse-navidad 2s infinite;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-pribox-especial:hover {
    background: linear-gradient(135deg, #8B0000 0%, #C41E3A 100%);
    color: #FFD700 !important;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 20px rgba(196, 30, 58, 0.4);
}

.pribox-text {
    font-weight: 700;
}

.pribox-badge {
    background: #FFD700;
    color: #C41E3A;
    font-size: 0.65rem;
    padding: 0.2rem 0.5rem;
    border-radius: 20px;
    font-weight: 700;
    animation: bounce-badge 1.5s infinite;
}

@keyframes pulse-navidad {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(196, 30, 58, 0.7);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(196, 30, 58, 0);
    }
}

@keyframes bounce-badge {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-3px); }
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(66, 0, 152, 0.95) 0%, 
        rgba(45, 0, 107, 0.9) 50%,
        rgba(3, 227, 167, 0.2) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-top: 100px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    color: white;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-title .text-secondary {
    color: var(--color-secondary) !important;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.8;
    margin-bottom: 2.5rem;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.btn-primary-custom {
    background: var(--color-secondary);
    color: var(--color-dark);
    border: none;
    padding: 1rem 2.5rem;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 50px;
    transition: var(--transition);
}
.btn-primary-custom-2 {
    background: var(--color-secondary);
    color: var(--color-dark);
    border: none;
    padding: 0.7rem 2.5rem;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 50px;
    transition: var(--transition);
}

.btn-primary-custom:hover {
    background: #02c48f;
    color: var(--color-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(3, 227, 167, 0.4);
}

.btn-primary-custom-2:hover {
   background: linear-gradient(135deg, #C41E3A 0%, #8B0000 100%);
    color: white !important;
    border-radius: 50px;
    padding: 0.6rem 1.5rem !important;
    margin-left: 1rem;
    position: relative;
    animation: pulse-navidad 2s infinite;
    display: flex;
    align-items: center;

}


.btn-outline-light {
    border: 2px solid white;
    color: white;
    padding: 1rem 2.5rem;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 50px;
    transition: var(--transition);
}

.btn-outline-light:hover {
    background: white;
    color: var(--color-primary);
    transform: translateY(-3px);
}

/* Stats */
.hero-stats {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.stat-item {
    text-align: left;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-secondary);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: bounce 2s infinite;
}

.scroll-indicator a {
    color: var(--color-secondary);
    font-size: 2rem;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-10px); }
}

/* ========================================
   EMPRESA SECTION
   ======================================== */
.empresa-section {
    padding: 5rem 0;
    background: white;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--color-primary);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--color-secondary);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--color-gray);
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto;
}

.subsection-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 2rem;
}

/* Valores Cards */
.valor-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    height: 100%;
    border: 2px solid transparent;
}

.valor-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-secondary);
}

.valor-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--color-primary) 0%, #2d006b 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
}

.valor-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.valor-card p {
    color: var(--color-gray);
    line-height: 1.7;
    margin: 0;
}

/* Servicios Cards */
.servicio-card {
    background: var(--color-light);
    padding: 2rem 1.5rem;
    border-radius: 15px;
    transition: var(--transition);
    height: 100%;
    text-align: center;
    border: 2px solid transparent;
}

.servicio-card:hover {
    background: white;
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-secondary);
}

.servicio-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: white;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--color-primary);
    box-shadow: var(--shadow-sm);
}

.servicio-card h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 1rem;
}

.servicio-card p {
    color: var(--color-gray);
    line-height: 1.6;
    margin: 0;
    font-size: 0.95rem;
}

/* Servicio Destacado (Pribox) */
.servicio-destacado {
    background: linear-gradient(135deg, #C41E3A 0%, #8B0000 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.servicio-destacado::before {
    content: '🎄';
    position: absolute;
    top: -20px;
    right: -20px;
    font-size: 5rem;
    opacity: 0.1;
}

.servicio-destacado .servicio-icon {
    background: rgba(255, 255, 255, 0.2);
    color: #FFD700;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.servicio-destacado h4 {
    color: white;
}

.servicio-destacado p {
    color: rgba(255, 255, 255, 0.9);
}

.btn-pribox {
    background: #FFD700;
    color: #C41E3A;
    border: none;
    font-weight: 700;
    margin-top: 1rem;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    transition: var(--transition);
}

.btn-pribox:hover {
    background: white;
    color: #C41E3A;
    transform: scale(1.05);
}

/* ========================================
   CONTACTO SECTION
   ======================================== */
.contacto-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, white 0%, var(--color-light) 100%);
}

/* Información de Contacto */
.contacto-info {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    height: 100%;
}

.contacto-info h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 2rem;
}

.info-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.info-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--color-primary) 0%, #2d006b 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: white;
    flex-shrink: 0;
}

.info-text h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 0.5rem;
}

.info-text p {
    color: var(--color-gray);
    line-height: 1.6;
    margin: 0;
}

.info-text a {
    color: var(--color-primary);
    text-decoration: none;
    transition: var(--transition);
}

.info-text a:hover {
    color: var(--color-secondary);
}

/* Social Links */
.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: var(--color-light);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    text-decoration: none;
    transition: var(--transition);
    font-size: 1.2rem;
}

.social-links a:hover {
    background: var(--color-primary);
    color: white;
    transform: translateY(-3px);
}

/* Formulario */
.contacto-form {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
}

.form-label {
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: 0.5rem;
}

.form-control {
    border: 2px solid var(--color-light);
    border-radius: 10px;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    transition: var(--transition);
}

.form-control:focus {
    border-color: var(--color-secondary);
    box-shadow: 0 0 0 0.2rem rgba(3, 227, 167, 0.25);
}

.form-check-input {
    border: 2px solid var(--color-light);
}

.form-check-input:checked {
    background-color: var(--color-secondary);
    border-color: var(--color-secondary);
}

.form-check-label a {
    color: var(--color-primary);
    text-decoration: none;
}

.form-check-label a:hover {
    color: var(--color-secondary);
}

/* ========================================
   FOOTER
   ======================================== */
.footer-section {
    background: var(--color-dark);
    color: white;
    padding: 3rem 0 1rem;
}

.footer-brand {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.footer-heading {
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--color-secondary);
}

.footer-links,
.footer-contact {
    list-style: none;
    padding: 0;
}

.footer-links li,
.footer-contact li {
    margin-bottom: 0.7rem;
}

.footer-links a,
.footer-contact a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover,
.footer-contact a:hover {
    color: var(--color-secondary);
    padding-left: 5px;
}

.footer-contact i {
    color: var(--color-secondary);
    margin-right: 0.5rem;
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.2);
    margin: 2rem 0 1.5rem;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
    font-size: 0.9rem;
}

.footer-links-inline a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 0.9rem;
    margin: 0 0.5rem;
    transition: var(--transition);
}

.footer-links-inline a:hover {
    color: var(--color-secondary);
}

/* ========================================
   WHATSAPP FLOTANTE
   ======================================== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    text-decoration: none;
    box-shadow: var(--shadow-lg);
    z-index: 1000;
    transition: var(--transition);
    animation: pulse-whatsapp 2s infinite;
}

.whatsapp-float:hover {
    background: #128C7E;
    transform: scale(1.1);
}

@keyframes pulse-whatsapp {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    50% {
        box-shadow: 0 0 0 20px rgba(37, 211, 102, 0);
    }
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 991px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-stats {
        gap: 2rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .nav-pribox-especial {
        margin-left: 0;
        margin-top: 0.5rem;
        justify-content: center;
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn-primary-custom,
    .btn-primary-custom-2,
    .btn-outline-light {
        width: 100%;
        text-align: center;
    }
    
    .hero-stats {
        justify-content: space-between;
        gap: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .subsection-title {
        font-size: 1.5rem;
    }
    
    .contacto-info {
        margin-bottom: 2rem;
    }
}
