        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --azul-principal: #0047AB;
            --azul-oscuro: #002366;
            --azul-claro: #4169E1;
            --amarillo-principal: #FFD700;
            --amarillo-oscuro: #FFA500;
            --verde: #28a745;
            --rojo: #DC3545;
            --gris: #495057;
            --gris-claro: #f8f9fa;
            --blanco: #ffffff;
            --negro: #212529;
        }

        body {
            font-family: 'Poppins', sans-serif;
            line-height: 1.6;
            color: var(--negro);
            overflow-x: hidden;
        }

        /* Navbar */
        nav {
            background: var(--blanco);
            padding: 0;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 20px rgba(0,0,0,0.1);
            border-bottom: 3px solid var(--amarillo-principal);
        }

        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0.8rem 3rem;
        }

        .logo {
            display: flex;
            align-items: center;
        }

        .logo-img {
            height: 70px;
            width: auto;
            object-fit: contain;
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 0.3rem;
            flex: 1;
            justify-content: flex-end;
        }

        .nav-item {
            position: relative;
        }

        .nav-link {
            color: var(--azul-oscuro);
            text-decoration: none;
            font-weight: 600;
            font-size: 0.95rem;
            padding: 1rem 1.3rem;
            display: block;
            transition: all 0.3s;
            border-radius: 8px;
        }

        .nav-link:hover {
            background: var(--amarillo-principal);
            color: var(--azul-oscuro);
            transform: translateY(-2px);
        }

        .dropdown-menu {
            position: absolute;
            top: 100%;
            left: 0;
            background: var(--blanco);
            min-width: 280px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.15);
            border-radius: 12px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(20px);
            transition: all 0.3s;
            padding: 1rem 0;
            margin-top: 0.5rem;
            border-top: 3px solid var(--amarillo-principal);
        }

        .nav-item:hover .dropdown-menu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .dropdown-menu a {
            display: block;
            padding: 0.75rem 1.5rem;
            color: var(--azul-oscuro);
            text-decoration: none;
            font-weight: 500;
            font-size: 0.9rem;
            transition: all 0.3s;
            border-left: 3px solid transparent;
        }

        .dropdown-menu a:hover {
            background: var(--gris-claro);
            border-left-color: var(--amarillo-principal);
            padding-left: 2rem;
        }

        .mobile-toggle {
            display: none;
            font-size: 1.8rem;
            color: var(--azul-principal);
            cursor: pointer;
            padding: 0.5rem;
        }

        .nav-menu.active {
            display: flex;
            flex-direction: column;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            background: white;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            padding: 1rem 0;
            z-index: 999;
        }

        .nav-menu.active .nav-item {
            width: 100%;
        }

        .nav-menu.active .nav-link {
            padding: 1rem 2rem;
            border-radius: 0;
        }

        .nav-menu.active .dropdown-menu {
            position: static;
            opacity: 1;
            visibility: visible;
            transform: none;
            box-shadow: none;
            border: none;
            border-left: 3px solid var(--amarillo-principal);
            margin: 0;
            padding: 0.5rem 0;
            background: var(--gris-claro);
            display: none;
        }

        .nav-menu.active .nav-item.active .dropdown-menu {
            display: block;
        }

        /* Hero Objetivos */
        .hero-objetivos {
            margin-top: 90px;
            height: 60vh;
            background: linear-gradient(135deg, rgba(0,71,171,0.9), rgba(0,35,102,0.9)), 
                        url('https://images.unsplash.com/photo-1522202176988-66273c2fd55f?w=1600&h=900&fit=crop');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }

        .hero-objetivos::before {
            content: '';
            position: absolute;
            width: 600px;
            height: 600px;
            background: var(--amarillo-principal);
            border-radius: 50%;
            bottom: -300px;
            right: -200px;
            opacity: 0.1;
            animation: float 8s ease-in-out infinite;
        }

        .hero-content {
            text-align: center;
            color: white;
            z-index: 2;
            padding: 2rem;
        }

        .hero-content h1 {
            font-size: 4rem;
            font-weight: 800;
            text-shadow: 2px 2px 20px rgba(0,0,0,0.3);
            margin-bottom: 1rem;
        }

        .hero-content .subtitle {
            font-size: 1.3rem;
            opacity: 0.95;
            font-weight: 300;
        }

        /* Objetivo General */
        .objetivo-general-section {
            padding: 6rem 2rem;
            background: white;
        }

        .objetivo-general-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 5rem;
            align-items: center;
        }

        .objetivo-general-image {
            width: 100%;
            height: 550px;
            border-radius: 25px;
            background: url('https://images.unsplash.com/photo-1544928147-79a2dbc1f389?w=800&h=800&fit=crop');
            background-size: cover;
            background-position: center;
            box-shadow: 0 20px 60px rgba(0,71,171,0.3);
            position: relative;
            overflow: hidden;
        }

        .objetivo-general-image::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(0,71,171,0.15), rgba(255,215,0,0.15));
        }

        .objetivo-general-text {
            padding: 2rem;
        }

        .objetivo-label {
            display: inline-block;
            background: var(--verde);
            color: white;
            padding: 0.6rem 1.8rem;
            border-radius: 30px;
            font-weight: 700;
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 2rem;
        }

        .objetivo-general-text h2 {
            font-size: 3rem;
            color: var(--azul-principal);
            margin-bottom: 2rem;
            font-weight: 800;
            line-height: 1.2;
        }

        .objetivo-general-text p {
            font-size: 1.25rem;
            color: var(--gris);
            line-height: 2;
            text-align: justify;
        }

        /* Objetivos Específicos */
        .objetivos-especificos-section {
            padding: 6rem 2rem;
            background: var(--gris-claro);
        }

        .objetivos-especificos-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .section-header {
            text-align: center;
            margin-bottom: 5rem;
        }

        .section-title {
            font-size: 3rem;
            font-weight: 800;
            color: var(--azul-principal);
            margin-bottom: 1rem;
            position: relative;
            display: inline-block;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 5px;
            background: var(--amarillo-principal);
            border-radius: 10px;
        }

        .section-subtitle {
            font-size: 1.2rem;
            color: var(--gris);
            margin-top: 2rem;
        }

        .objetivos-grid {
            display: grid;
            gap: 3rem;
        }

        .objetivo-especifico-card {
            background: white;
            border-radius: 25px;
            padding: 4rem;
            box-shadow: 0 15px 40px rgba(0,0,0,0.08);
            display: grid;
            grid-template-columns: auto 1fr;
            gap: 3rem;
            align-items: center;
            transition: all 0.4s;
            position: relative;
            overflow: hidden;
        }

        .objetivo-especifico-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 60px rgba(0,0,0,0.15);
        }

        .objetivo-especifico-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 8px;
            height: 100%;
            background: linear-gradient(180deg, var(--azul-principal), var(--azul-claro));
        }

        .objetivo-icon-wrapper {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--azul-principal), var(--azul-claro));
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            flex-shrink: 0;
            box-shadow: 0 10px 30px rgba(0,71,171,0.3);
        }

        .objetivo-icon-wrapper::before {
            content: '';
            position: absolute;
            width: 140px;
            height: 140px;
            border-radius: 50%;
            border: 3px solid var(--amarillo-principal);
            opacity: 0.3;
        }

        .objetivo-icon {
            font-size: 3.5rem;
        }

        .objetivo-content h3 {
            font-size: 2rem;
            color: var(--azul-principal);
            margin-bottom: 1.5rem;
            font-weight: 700;
        }

        .objetivo-content p {
            font-size: 1.1rem;
            color: var(--gris);
            line-height: 2;
            text-align: justify;
        }

        /* Footer */
        footer {
            background: var(--negro);
            color: white;
            padding: 3rem 2rem 1.5rem;
        }

        .footer-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 3rem;
            margin-bottom: 2rem;
        }

        .footer-section h3 {
            color: var(--amarillo-principal);
            font-size: 1.3rem;
            margin-bottom: 1.5rem;
            font-weight: 700;
        }

        .footer-section p {
            color: rgba(255,255,255,0.8);
            margin-bottom: 0.8rem;
            line-height: 1.8;
            font-size: 0.95rem;
        }

        .footer-section a {
            color: rgba(255,255,255,0.8);
            text-decoration: none;
            display: block;
            margin-bottom: 0.6rem;
            transition: all 0.3s;
        }

        .footer-section a:hover {
            color: var(--amarillo-principal);
            padding-left: 10px;
        }

        .social-links {
            display: flex;
            gap: 1rem;
            margin-top: 1.5rem;
            align-items: center;
        }

        .social-link {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
            color: white;
            text-decoration: none;
            position: relative;
            overflow: hidden;
            flex-shrink: 0;
        }

        .social-link.facebook {
            background: #1877f2;
        }

        .social-link.instagram {
            background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
        }

        .social-link:hover {
            transform: translateY(-5px) scale(1.1);
            box-shadow: 0 10px 25px rgba(0,0,0,0.3);
        }

        .social-link svg {
            width: 24px;
            height: 24px;
            fill: white;
            flex-shrink: 0;
            display: block;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(255,255,255,0.1);
            color: rgba(255,255,255,0.6);
            font-size: 0.9rem;
        }

        /* Animaciones */
        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-30px); }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(40px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInRight {
            from {
                opacity: 0;
                transform: translateX(40px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .nav-menu {
                display: none;
            }

            .mobile-toggle {
                display: block;
            }

            .objetivo-general-container {
                grid-template-columns: 1fr;
                gap: 3rem;
            }

            .objetivo-especifico-card {
                grid-template-columns: 1fr;
                gap: 2rem;
                padding: 3rem 2rem;
                text-align: center;
            }

            .objetivo-icon-wrapper {
                margin: 0 auto;
            }

            .footer-container {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media (max-width: 768px) {
            .hero-objetivos {
                height: 50vh;
            }

            .hero-content h1 {
                font-size: 2.5rem;
            }

            .objetivo-general-text h2 {
                font-size: 2rem;
            }

            .objetivo-general-text p {
                font-size: 1rem;
            }

            .section-title {
                font-size: 2rem;
            }

            .objetivo-content h3 {
                font-size: 1.5rem;
            }

            .objetivo-content p {
                font-size: 1rem;
            }

            .footer-container {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 480px) {
            .hero-content h1 {
                font-size: 2rem;
            }

            .objetivo-general-image {
                height: 350px;
            }

            .objetivo-especifico-card {
                padding: 2rem 1.5rem;
            }

            .objetivo-icon-wrapper {
                width: 100px;
                height: 100px;
            }

            .objetivo-icon {
                font-size: 2.5rem;
            }
        }