  * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Arial', sans-serif;
            line-height: 1.6;
            color: #333;
            background: #f8f9fa;
        }

        /* Header Styles */
        .header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            z-index: 1000;
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
             
        }

     
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-img {
   
    height: 50px; /* o el tamaño que desees */
 display: flex;
            align-items: center;

}


.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    
    max-width: 1200px;
    margin: 0 auto;
}

/* Por esto: */
.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
   
    max-width: 1200px;
    margin: 0 auto;
}

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 2rem;
            align-items: center;
           padding: 23px 0;
          
        }

        .nav-link {
            text-decoration: none;
            color: #333;
            font-weight: 500;
            transition: color 0.3s ease;
            position: relative;
        }

        .nav-link:hover,
        .nav-link.active {
          color:#ff6b35;
        }

        .nav-link.active::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            right: 0;
            height: 2px;
            background:#ff6b35 ;
        }

        /* Mobile Menu */
        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            padding: 5px;
        }

        .hamburger span {
            width: 25px;
            height: 3px;
            background: #333;
            margin: 3px 0;
            transition: 0.3s;
        }

        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }

        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }

        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -6px);
        }

        /* Hero Section */
        .hero {
            height: 70vh;
            background: url('ej-yao-D46mXLsQRJw-unsplash.jpg');
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
            margin-top: 80px;
        }

        .hero-content h1 {
            font-size: 3.5rem;
            margin-bottom: 1rem;
            font-weight: 300;
            animation: fadeInUp 1s ease-out;
        }

        .hero-content p {
            font-size: 1.4rem;
            opacity: 0.9;
            animation: fadeInUp 1s ease-out 0.3s both;
            max-width: 800px;
            margin: 0 auto;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* About Section */
        .about-section {
            padding: 80px 5%;
            max-width: 1200px;
            margin: 0 auto;
        }

        .section-card {
            background: white;
            border-radius: 15px;
            padding: 3rem;
            margin-bottom: 3rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
        }

        .section-card:hover {
            transform: translateY(-5px);
        }

        .section-title {
            font-size: 2.5rem;
            color: #2c3e50;
            margin-bottom: 1.5rem;
            position: relative;
            display: inline-block;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 60px;
            height: 3px;
            background: linear-gradient(45deg, #3498db, #2c3e50);
            border-radius: 2px;
        }

        .section-content {
            font-size: 1.1rem;
            line-height: 1.8;
            color: #666;
        }

        /* Mission Vision Cards */
        .mission-vision {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 3rem;
            margin: 4rem 0;
        }

        .mission-card,
        .vision-card {
            background: white;
            border-radius: 15px;
            padding: 2.5rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            position: relative;
            overflow: hidden;
            transition: transform 0.3s ease;
        }

        .mission-card:hover,
        .vision-card:hover {
            transform: translateY(-5px);
        }

        .mission-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: linear-gradient(45deg, #e74c3c, #f39c12);
        }

        .vision-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: linear-gradient(45deg, #3498db, #9b59b6);
        }

        .card-icon {
            width: 80px;
            height: 80px;
            margin-bottom: 1.5rem;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            color: white;
        }

        .mission-card .card-icon {
            background: linear-gradient(45deg, #e74c3c, #f39c12);
        }

        .vision-card .card-icon {
            background: linear-gradient(45deg, #f39c12, #9b59b6);
        }

        .card-title {
            font-size: 1.8rem;
            color: #2c3e50;
            margin-bottom: 1rem;
            font-weight: 600;
        }

        .card-content {
            font-size: 1rem;
            line-height: 1.7;
            color: #666;
        }

        /* Values Section */
        .values-section {
            background: linear-gradient(135deg, #667eea 0%, #f39c12 100%);
            padding: 80px 5%;
            color: white;
            text-align: center;
        }

        .values-title {
            font-size: 2.5rem;
            margin-bottom: 3rem;
            font-weight: 300;
        }

        .values-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            max-width: 1000px;
            margin: 0 auto;
        }

        .value-card {
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(10px);
            border-radius: 15px;
            padding: 2rem;
            border: 1px solid rgba(255, 255, 255, 0.2);
            transition: all 0.3s ease;
        }

        .value-card:hover {
            transform: translateY(-10px);
            background: rgba(255, 255, 255, 0.25);
        }

        .value-icon {
            width: 60px;
            height: 60px;
            margin: 0 auto 1rem;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.2);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
        }

        .value-name {
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
        }

        .value-description {
            font-size: 0.9rem;
            opacity: 0.9;
            line-height: 1.5;
        }

        /* Stats Section */
        .stats-section {
            padding: 80px 5%;
            background: white;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            max-width: 800px;
            margin: 0 auto;
        }

        .stat-card {
            text-align: center;
            padding: 2rem;
        }

        .stat-number {
            font-size: 3rem;
            font-weight: bold;
            color: #3498db;
            margin-bottom: 0.5rem;
        }

        .stat-label {
            font-size: 1.1rem;
            color: #666;
            font-weight: 500;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .hamburger {
                display: flex;
            }
     
            .nav-menu {
                position: fixed;
                left: -100%;
                top: 70px;
                flex-direction: column;
                background-color: rgba(255, 255, 255, 0.98);
                width: 100%;
                text-align: center;
                transition: 0.3s;
                box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
                padding: 2rem 0;
                gap: 1rem;
            }

            .nav-menu.active {
                left: 0;
            }

  .logo {
                font-size: 1.2rem;
            }

            .logo img {
               
                height: 80px;
            }


            .hero {
                margin-top: 70px;
                height: 60vh;
            }

            .hero-content h1 {
                font-size: 2.5rem;
            }

            .hero-content p {
                font-size: 1.1rem;
            }

            .section-card {
                padding: 2rem;
                margin-bottom: 2rem;
            }

            .section-title {
                font-size: 2rem;
            }

            .mission-vision {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .mission-card,
            .vision-card {
                padding: 2rem;
            }

            .values-section {
                padding: 60px 5%;
            }

            .values-title {
                font-size: 2rem;
            }

            .values-grid {
                grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
                gap: 1.5rem;
            }

            .value-card {
                padding: 1.5rem;
            }

            .stats-section {
                padding: 60px 5%;
            }

            .stat-number {
                font-size: 2.5rem;
            }
        }

        @media (max-width: 480px) {
            .nav {
                padding: 1rem 3%;
            }

            
            .hero-content h1 {
                font-size: 2rem;
            }

            .hero-content p {
                font-size: 1rem;
            }

            .about-section {
                padding: 60px 3%;
            }

            .section-card {
                padding: 1.5rem;
            }

            .section-title {
                font-size: 1.8rem;
            }

            .values-section {
                padding: 40px 3%;
            }

            .value-card {
                padding: 1rem;
            }

            .mission-card,
            .vision-card {
                padding: 1.5rem;
            }
        }