/**
 * Page Section Styles
 */

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--gradient-dark);
    overflow: hidden;
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-overlay);
    z-index: 1;
}

.hero-animated-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.15;
    background-image:
        radial-gradient(circle at 20% 50%, var(--lider-gold) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, var(--lider-gold) 0%, transparent 50%);
    animation: pulse 8s ease-in-out infinite;
}

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

.hero-title {
    font-size: var(--font-size-6xl);
    font-weight: var(--font-weight-black);
    color: var(--text-light);
    margin-bottom: var(--spacing-lg);
    line-height: var(--line-height-tight);
    text-shadow: 2px 2px 20px rgba(212, 175, 55, 0.3);
}

.hero-brand-name {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.hero-subtitle {
    font-size: var(--font-size-2xl);
    color: var(--text-light-secondary);
    margin-bottom: var(--spacing-xl);
    font-weight: var(--font-weight-light);
    line-height: var(--line-height-relaxed);
}

.hero-stats {
    display: flex;
    gap: var(--spacing-3xl);
    margin-top: var(--spacing-3xl);
    flex-wrap: wrap;
}

/* Particles Container */
#particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 2;
}

/* Branches Section */
.branches-section {
    background: var(--gradient-light);
}

/* Services Section */
.services-section {
    background: var(--gradient-dark);
    color: var(--text-light);
}

.services-section .section-title {
    color: var(--text-light);
}

.services-section .section-subtitle {
    color: var(--text-light-muted);
}

/* Features Section */
.features-section {
    background: var(--bg-white);
}

/* CTA Section */
.cta-section {
    background: var(--gradient-gold);
    color: var(--lider-navy);
    padding: 120px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.2) 0%, transparent 50%);
    animation: pulse 8s ease-in-out infinite;
}

.cta-content {
    position: relative;
    z-index: 10;
}

.cta-title {
    font-size: var(--font-size-5xl);
    font-weight: var(--font-weight-black);
    margin-bottom: var(--spacing-lg);
}

.cta-subtitle {
    font-size: var(--font-size-xl);
    margin-bottom: var(--spacing-2xl);
    opacity: 0.9;
}

/* Header */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: var(--z-sticky);
    transition: all var(--transition-base);
    background: transparent;
}

.site-header.scrolled {
    background: var(--lider-navy);
    box-shadow: var(--shadow-md);
}

.site-header .navbar {
    padding: var(--spacing-md) 0;
}

.site-header .navbar-brand {
    font-size: var(--font-size-2xl);
    font-weight: var(--font-weight-black);
    color: var(--text-light);
}

.site-header .navbar-brand .brand-gold {
    color: var(--lider-gold);
}

.site-header .nav-link {
    color: var(--text-light);
    font-weight: var(--font-weight-medium);
    padding: var(--spacing-xs) var(--spacing-md);
    transition: all var(--transition-base);
}

.site-header .nav-link:hover {
    color: var(--lider-gold);
}

/* Footer */
.site-footer {
    background: var(--lider-navy);
    color: var(--text-light);
    padding: var(--spacing-3xl) 0 var(--spacing-lg);
}

.footer-brand {
    font-size: var(--font-size-2xl);
    font-weight: var(--font-weight-black);
    margin-bottom: var(--spacing-md);
}

.footer-brand .brand-gold {
    color: var(--lider-gold);
}

.footer-description {
    color: var(--text-light-muted);
    line-height: var(--line-height-relaxed);
    margin-bottom: var(--spacing-lg);
}

.footer-title {
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-bold);
    margin-bottom: var(--spacing-md);
    color: var(--lider-gold);
}

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

.footer-links li {
    margin-bottom: var(--spacing-xs);
}

.footer-links a {
    color: var(--text-light-muted);
    transition: all var(--transition-base);
}

.footer-links a:hover {
    color: var(--lider-gold);
    padding-left: var(--spacing-xs);
}

.footer-social {
    display: flex;
    gap: var(--spacing-md);
    margin-top: var(--spacing-md);
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-full);
    background: rgba(212, 175, 55, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--lider-gold);
    transition: all var(--transition-base);
}

.footer-social a:hover {
    background: var(--lider-gold);
    color: var(--lider-navy);
    transform: translateY(-3px);
}

.footer-bottom {
    margin-top: var(--spacing-2xl);
    padding-top: var(--spacing-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: var(--text-light-muted);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-section {
        min-height: auto;
        padding: 80px 0;
    }

    .hero-title {
        font-size: var(--font-size-4xl);
    }

    .hero-subtitle {
        font-size: var(--font-size-lg);
    }

    .hero-stats {
        gap: var(--spacing-lg);
    }

    .cta-title {
        font-size: var(--font-size-3xl);
    }

    .cta-subtitle {
        font-size: var(--font-size-base);
    }

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

    .site-footer {
        padding: var(--spacing-2xl) 0 var(--spacing-md);
    }
}
