/* ===== PROCESO SECTION ===== */
.process-section {
    padding: 60px 0;
}
.process-step {
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    padding: 32px 20px 24px 20px;
    text-align: center;
    margin-bottom: 30px;
    position: relative;
    transition: var(--transition);
}
.process-step:hover {
    box-shadow: var(--shadow-medium);
    transform: translateY(-6px);
}
.process-number {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    margin: 0 auto 18px auto;
    box-shadow: 0 4px 16px rgba(11,170,231,0.10);
    border: 3px solid var(--white);
    z-index: 1;
    position: relative;
}
/* ===== AUTO-SCROLLING BRAND CAROUSEL ===== */
.brand-carousel-outer {
    overflow: hidden;
    width: 100%;
    margin-bottom: 30px;
    position: relative;
}
.brand-carousel-track {
    display: flex;
    align-items: center;
    gap: 40px;
    /*
     * To adjust the speed of the brand carousel, change the duration below (in seconds):
     * Lower = faster, higher = slower. Example: 12s is fast, 30s is slow.
     */
    animation: scrollBrands 18s linear infinite;
    width: max-content;
    padding: 20px 0;
}
.brand-carousel-outer:hover .brand-carousel-track {
    animation-play-state: paused;
}
.brand-carousel-track .brand-logo {
    width: 120px;
    height: 60px;
    object-fit: contain;
    filter: grayscale(0.2) brightness(0.95);
    transition: filter 0.3s, transform 0.3s;
    margin: 0 10px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.brand-carousel-track .brand-logo:hover {
    filter: none;
    transform: scale(1.08);
}
@keyframes scrollBrands {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
/* ===== CSS VARIABLES ===== */
:root {
    --primary-color: #0baae7;
    --secondary-color: #1e3a8a;
    --accent-color: #f59e0b;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f8fafc;
    --white: #ffffff;
    --shadow-light: 0 2px 20px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 10px 30px rgba(0, 0, 0, 0.1);
    --shadow-heavy: 0 20px 40px rgba(0, 0, 0, 0.15);
    --border-radius: 20px;
    --transition: all 0.3s ease;
}

/* ===== RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
}

/* ===== NAVIGATION ===== */
/* Standardize navbar logo height across all pages */
.navbar-brand img {
    height: 60px !important;
    width: auto !important;
    object-fit: contain !important;
}

.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    padding: 1rem 0;
    min-height: 80px;
}

/* Ensure consistent navbar height across all pages */
.navbar-nav {
    align-items: center;
}

.navbar-toggler {
    border: none;
    padding: 0.25rem 0.5rem;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--primary-color);
}

.brand-text {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
}

.nav-link {
    font-weight: 500;
    color: var(--text-dark) !important;
    margin: 0 15px;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover {
    color: var(--primary-color) !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 100%;
}

/* ===== HERO SECTION ===== */
.hero-section {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    color: var(--white);
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-visual {
    text-align: center;
}

.hero-placeholder {
    background: rgba(255, 255, 255, 0.1);
    border: 2px dashed rgba(255, 255, 255, 0.3);
    border-radius: var(--border-radius);
    padding: 60px 40px;
    color: var(--white);
}

.hero-placeholder i {
    font-size: 4rem;
    margin-bottom: 1rem;
    display: block;
}

.hero-placeholder span {
    font-size: 1.2rem;
    font-weight: 500;
}

/* ===== BUTTONS ===== */
.btn-primary-custom {
    background: var(--accent-color);
    border: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
    color: var(--white);
    display: inline-block;
}

.btn-primary-custom:hover {
    background: #d97706;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.4);
    color: var(--white);
}

.btn-outline-custom {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    margin-left: 15px;
}

.btn-outline-custom:hover {
    background: var(--primary-color);
    color: #fff;
}

/* ===== SECTION STYLES ===== */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.services-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.service-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow-medium);
    transition: var(--transition);
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transform: scaleX(0);
    transition: var(--transition);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
}

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

.about-section {
    padding: 80px 0;
}

.about-visual {
    text-align: center;
}

.about-placeholder {
    background: var(--bg-light);
    border: 2px dashed var(--primary-color);
    border-radius: var(--border-radius);
    padding: 80px 40px;
    color: var(--text-dark);
}

.about-placeholder i {
    font-size: 4rem;
    margin-bottom: 1rem;
    display: block;
    color: var(--primary-color);
}

.about-placeholder span {
    font-size: 1.2rem;
    font-weight: 500;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

/* ===== STATS SECTION ===== */
.stats-section {
    background: var(--secondary-color);
    color: var(--white);
    padding: 60px 0;
}

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

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* ===== CTA SECTION ===== */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer h5 {
    color: var(--accent-color);
    margin-bottom: 20px;
}

.footer a {
    color: #d1d5db;
    transition: var(--transition);
}

.footer a:hover {
    color: var(--accent-color);
}

.footer-brand {
    margin-bottom: 20px;
}

.footer-brand .brand-text {
    font-size: 1.5rem;
    color: var(--accent-color);
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: var(--white);
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    margin-right: 10px;
    transition: var(--transition);
}

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

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
}

/* ===== ESPECTACULOS HIGHLIGHT SECTION ===== */
.espectaculos-highlight {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--bg-light) 0%, #e8f4fd 100%);
    position: relative;
    overflow: hidden;
}

.espectaculos-highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain2" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%230baae7" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23grain2)"/></svg>');
    opacity: 0.5;
}

.espectaculos-features {
    margin: 2rem 0;
}

.espectaculos-features .feature-item {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.espectaculos-visual {
    text-align: center;
}

.espectaculos-placeholder {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: var(--border-radius);
    padding: 60px 40px;
    color: var(--white);
    box-shadow: var(--shadow-medium);
}

.espectaculos-placeholder i {
    font-size: 4rem;
    margin-bottom: 1rem;
    display: block;
}

.espectaculos-placeholder span {
    font-size: 1.2rem;
    font-weight: 500;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .btn-outline-custom {
        margin-left: 0;
        margin-top: 15px;
        display: block;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .service-card {
        padding: 30px 20px;
    }
    
    .hero-placeholder,
    .about-placeholder {
        padding: 40px 20px;
    }
    
    .hero-placeholder i,
    .about-placeholder i {
        font-size: 3rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .service-card {
        padding: 25px 15px;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

/* ===== UTILITY CLASSES ===== */
.text-gradient {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.shadow-custom {
    box-shadow: var(--shadow-medium);
}

.rounded-custom {
    border-radius: var(--border-radius);
}

.transition-custom {
    transition: var(--transition);
}
