
        /* 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;
        }


        /* Sección Áreas */
        .areas {
            padding: 80px 0;
            background-color: var(--secondary-color);
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 2rem;
            position: relative;
            font-size: 2rem;
            color: var(--primary-color);
        }
        
        .section-title:after {
            content: '';
            display: block;
            width: 60px;
            height: 2px;
            background-color: var(--accent-color);
            margin: 15px auto 0;
        }
        
        .section-subtitle {
            text-align: center;
            margin-bottom: 3rem;
            color: #666;
            font-size: 1.1rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .areas-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 25px;
            margin-bottom: 40px;
        }
        
        .area-card {
            background-color: var(--light-gray);
            padding: 30px 20px;
            text-align: center;
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            position: relative;
            overflow: hidden;
            cursor: pointer;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            height: 220px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        
        .area-card:before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 3px;
            background-color: var(--accent-color);
            transition: left 0.4s ease;
        }
        
        .area-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
        }
        
        .area-card:hover:before {
            left: 0;
        }
        
        .card-content {
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            position: relative;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
        }
        
        .area-icon {
            width: 60px;
            height: 60px;
            margin: 0 auto 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary-color);
            font-size: 1.6rem;
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            opacity: 1;
            transform: translateY(0);
        }
        
        .area-card:hover .area-icon {
            opacity: 0;
            transform: translateY(-15px);
        }
        
        .area-card h3 {
            font-size: 1.2rem;
            margin-bottom: 10px;
            color: var(--primary-color);
            font-weight: 600;
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            opacity: 1;
            transform: translateY(0);
            line-height: 1.3;
        }
        
        .area-card:hover h3 {
            opacity: 0;
            transform: translateY(-15px);
        }
        
        .description-container {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 100%;
            padding: 0 15px;
            opacity: 0;
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }
        
        .area-card:hover .description-container {
            opacity: 1;
        }
        
        .area-card .description {
            font-size: 0.9rem;
            color: #666;
            line-height: 1.5;
            margin-bottom: 12px;
        }
        
        .area-link {
            color: var(--accent-color);
            text-decoration: none;
            font-weight: 600;
            font-size: 0.85rem;
            display: inline-flex;
            align-items: center;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            position: relative;
            padding-bottom: 2px;
        }
        
        .area-link:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 1px;
            background-color: var(--accent-color);
            transition: width 0.3s ease;
        }
        
        .area-link:hover:after {
            width: 100%;
        }
        
        .area-link span {
            margin-left: 4px;
            transition: transform 0.3s ease;
        }
        
        .area-link:hover span {
            transform: translateX(3px);
        }

        .area-card.hidden {
            display: none;
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            
            .section-title {
                font-size: 1.6rem;
                margin-bottom: 1.5rem;
            }
            
            .section-subtitle {
                margin-bottom: 2.5rem;
                font-size: 1rem;
            }
            
            .areas-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            
            .area-card:hover .description-container {
                opacity: 1;
            }

            .show-more-btn {
                padding: 10px 25px;
                font-size: 0.9rem;
            }
        }

        @media (max-width: 480px) {
                        
            .area-card  {
                height: 150px;
            }
            .area-card h3 {
                font-size: 1rem;
            }

            
            .area-card .description p{
                font-size: 14px;
            }
        }
        
        

