 

        
        /* Banner Nosotros */
        .nosotros-banner {
            height: 70vh;
            position: relative;
            overflow: hidden;
            background-color: var(--primary-color);
        }
        
        .banner-image {
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            position: relative;
        }
        
        .banner-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, rgba(28, 47, 80, 0.7) 0%, rgba(28, 47, 80, 0.9) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .banner-content {
            text-align: center;
            color: var(--secondary-color);
            max-width: 800px;
            padding: 0 20px;
        }
        
        .banner-quote {
            font-size: 1.5rem;
            font-style: italic;
            margin-bottom: 20px;
            line-height: 1.5;
        }
        
        .banner-source {
            font-size: 1rem;
            opacity: 0.8;
        }
        
        /* Navegación de pestañas */
        .nosotros-tabs {
            display: flex;
            justify-content: center;
            background: var(--light-gray);
            border-bottom: 1px solid var(--medium-gray);
        }
        
        .tab-item {
            padding: 20px 30px;
            cursor: pointer;
            position: relative;
            transition: all 0.3s ease;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            font-size: 0.9rem;
        }
        
        .tab-item.active {
            color: var(--accent-color);
        }
        
        .tab-item.active:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background-color: var(--accent-color);
        }
        
        .tab-item:hover {
            color: var(--accent-color);
        }
        
        /* Contenido de las pestañas */
        .tab-content {
            display: none;
            padding: 80px 0;
        }
        
        .tab-content.active {
            display: block;
            animation: fadeIn 0.5s ease;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        
        /* Sección Quiénes Somos */
        .quienes-somos {
            background: #f5f5f5;
        }
        
        .section-header {
            text-align: center;
            margin-bottom: 50px;
        }
        
        .section-title {
            font-size: 1.5rem;
            color: var(--primary-color);
            margin-bottom: 20px;
            text-transform: uppercase;
            font-weight: 700;
        }
        
        .section-subtitle {
            font-size: 13px;
            color: #666;
            max-width: 800px;
            margin: 0 auto;
            line-height: 1.7;
        }
        
        .download-brochure {
            text-align: center;
            margin-top: 30px;
        }
        
        .brochure-link {
            display: inline-block;
            background: var(--accent-color);
            color: var(--secondary-color);
            padding: 12px 25px;
            text-decoration: none;
            border-radius: 4px;
            font-weight: 600;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        
        .brochure-link:hover {
            background: #9d8261;
            transform: translateY(-2px);
        }
        
        /* Misión y Visión */
        .mision-vision {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 100%;
            margin-top: 60px;
        }
        
        .mision, .vision {
            max-width: 337px;
            width: 100%;
        }
        
        .mision h3, .vision h3 {
            margin-bottom: 12px;
            color: var(--primary-color);
        }

        .vision h3 {
            text-align: left;
        }

        .mision h3{
            text-align: right;
        }
        
        .mision p, .vision p {
            font-size: 13px;
            line-height: 15px;
            letter-spacing: -0.02em;
            color: rgb(0, 0, 0,0.6);
        }
        
        .vision p {
            text-align: left;
        }

        .mision p {
            text-align: right;
        }
        
        .image-logo-mid {
            min-width: 446px;
            height: 234px;
            position: relative;
            background-repeat: no-repeat;
            background-position: center;
            background-size: contain;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .image-logo-mid::before,
        .image-logo-mid::after {
            content: '';
            position: absolute;
            width: 100%;
            height: 10px;
            z-index: -1;
        }
        
        
        .image-logo-mid img{
            max-width: 210px;
        }
    
        
        @media (max-width: 480px) {
            .image-logo-mid {
            min-width: 300px;
        }
            .mision-vision {
                gap: 25px;
            }
            
            .image-logo-mid::before {
                width: 120px;
                height: 120px;
            }
            
            .image-logo-mid img {
                max-width: 100px;
            }
            
            .mision h3, .vision h3 {
                font-size: 1.3rem;
            }
        }
        
        /* Compromiso con el País */
        .compromiso-pais {
            background: var(--light-gray);
        }
        
        .compromiso-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }
        
        .compromiso-item {
            background: var(--secondary-color);
            padding: 40px 30px;
            text-align: center;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
        }
        
        .compromiso-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
        }
        
        .compromiso-icon {
            font-size: 3rem;
            color: var(--accent-color);
            margin-bottom: 20px;
        }
        
        .compromiso-item h3 {
            font-size: 1.3rem;
            color: var(--primary-color);
            margin-bottom: 15px;
        }
        
        .compromiso-item p {
            color: #666;
            line-height: 1.6;
        }
        
        /* Responsive */
        @media (max-width: 900px) {
            .nosotros-banner {
                height: 65vh;
            }
            
            .banner-quote {
                font-size: 1.2rem;
            }
            
            .nosotros-tabs {
                flex-direction: column;
            }

            .mision-vision{
                flex-direction: column;
                gap: 25px;
            }

            .vision p, .vision h3 {
                text-align: right;
            }

            .mision p, .mision h3{
                text-align: left;
            }

            .tab-item {
                padding: 15px;
                text-align: center;
            }
            
            .tab-content {
                padding: 50px 0;
            }
        }
        
        @media (max-width: 480px) {
            
            .banner-quote {
                font-size: 1rem;
            }

        }
