:root {
    --primary-purple: #33166a;
    --secondary-purple: #532ea2;
    --accent-red: #a20000;
    --neutral-gray: #b2b2b2;
    --white: #ffffff;
    --gradient-1: linear-gradient(135deg, #33166a 0%, #532ea2 100%);
    --gradient-2: linear-gradient(135deg, #532ea2 0%, #a20000 100%);
}

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

body {
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
    background: #f8f9fa;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
}

/* Navegación Fija Innovadora */
.navbar-custom {
    background: var(--gradient-1);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar-custom .navbar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    color: var(--white) !important;
    font-size: 1.5rem;
}

.navbar-custom .nav-link {
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 500;
    margin: 0 10px;
    transition: all 0.3s ease;
    position: relative;
}

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

.navbar-custom .nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--white);
    transition: width 0.3s ease;
}

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

.social-links a {
    color: var(--white);
    margin-left: 15px;
    font-size: 1.3rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    transform: scale(1.2);
    color: #ffd700;
}

/* Hero Section Diagonal */
.hero-section {
    margin-top: 76px;
    background: var(--gradient-2);
    color: var(--white);
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(10deg); }
}

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

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 25px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 20px;
    font-weight: 300;
}

.cta-buttons {
    margin-top: 40px;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-custom {
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-facebook {
    background: #1877f2;
    color: var(--white);
}

.btn-facebook:hover {
    background: #145dbf;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(24, 119, 242, 0.3);
    color: var(--white);
}

.btn-email {
    background: var(--white);
    color: var(--primary-purple);
    border: 2px solid var(--white);
}

.btn-email:hover {
    background: transparent;
    color: var(--white);
    transform: translateY(-3px);
}

/* Secciones con Layout Asimétrico */
.section-container {
    padding: 100px 0;
    position: relative;
}

.section-card {
    background: var(--white);
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    margin-bottom: 60px;
}

.section-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.section-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 25px;
}

.icon-economy {
    background: var(--gradient-1);
}

.icon-society {
    background: linear-gradient(135deg, #a20000 0%, #532ea2 100%);
}

.icon-tech {
    background: linear-gradient(135deg, #532ea2 0%, #33166a 100%);
}

.icon-environment {
    background: linear-gradient(135deg, #228B22 0%, #32CD32 100%);
}

.icon-indicators {
    background: linear-gradient(135deg, #FF6B6B 0%, #FF8E53 100%);
}

.section-content {
    padding: 50px;
}

.section-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-purple);
    margin-bottom: 25px;
}

.section-content p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: #555;
    margin-bottom: 15px;
}

.section-image {
    position: relative;
    overflow: hidden;
    height: 100%;
    min-height: 400px;
}

.section-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.section-card:hover .section-image img {
    transform: scale(1.1);
}

.section-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(51, 22, 106, 0.3), transparent);
}

/* Layout en Columnas */
.column-layout {
    column-count: 2;
    column-gap: 40px;
    text-align: justify;
}

.column-layout p {
    break-inside: avoid;
    margin-bottom: 20px;
}

/* Indicadores */
.indicators-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.indicator-card {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    border-left: 5px solid var(--accent-red);
}

.indicator-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.indicator-number {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--primary-purple);
    margin-bottom: 10px;
}

.indicator-label {
    font-size: 1rem;
    font-weight: 600;
    color: #555;
    margin-bottom: 8px;
}

.indicator-description {
    font-size: 0.9rem;
    color: #777;
    line-height: 1.6;
}

/* Footer CTA */
.footer-cta {
    background: var(--gradient-1);
    color: var(--white);
    padding: 80px 0;
    text-align: center;
    clip-path: polygon(0 15%, 100% 0, 100% 100%, 0 100%);
    margin-top: 60px;
}

.footer-cta h2 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 20px;
    margin-top: 40px;
}

.footer-cta p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.95;
}

/* Decorative Elements */
.decorative-line {
    width: 80px;
    height: 4px;
    background: var(--gradient-2);
    margin: 25px 0;
    border-radius: 2px;
}

/* Responsive */
@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .section-content h2 {
        font-size: 2rem;
    }
    
    .column-layout {
        column-count: 1;
    }
    
    .section-image {
        min-height: 300px;
    }
    
    .indicators-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .btn-custom {
        width: 100%;
        justify-content: center;
    }
    
    .section-content {
        padding: 30px;
    }
    
    .indicators-grid {
        grid-template-columns: 1fr;
    }
}