/* Estilos específicos para la página de proyectos */
        .projects-hero {
            background: linear-gradient(rgba(16, 52, 100, 0.85), rgba(16, 52, 100, 0.9)), url('img/projects-bg.jpg') center/cover no-repeat;
            color: white;
            padding: 100px 0;
            text-align: center;
        }
        
        .projects-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 50px 20px;
        }
        
        .projects-intro {
            text-align: center;
            margin-bottom: 50px;
        }
        
        .projects-intro p {
            max-width: 800px;
            margin: 0 auto;
            font-size: 1.1rem;
            line-height: 1.6;
            color: #555;
        }
        
        .projects-filter {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 10px;
            margin-bottom: 40px;
        }
        
        .filter-btn {
            background: #f5f5f5;
            border: none;
            padding: 10px 20px;
            border-radius: 30px;
            cursor: pointer;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        
        .filter-btn:hover, .filter-btn.active {
            background: #103464;
            color: #FFD700;
        }
        
        .projects-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 30px;
        }
        
        .project-card {
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            background: white;
        }
        
        .project-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }
        
        .project-image {
            height: 250px;
            overflow: hidden;
            position: relative;
        }
        
        .project-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .project-card:hover .project-image img {
            transform: scale(1.1);
        }
        
        .project-category {
            position: absolute;
            top: 15px;
            right: 15px;
            background: #FFD700;
            color: #103464;
            padding: 5px 15px;
            border-radius: 30px;
            font-size: 0.8rem;
            font-weight: bold;
        }
        
        .project-content {
            padding: 25px;
        }
        
        .project-content h3 {
            color: #103464;
            margin-bottom: 15px;
            font-size: 1.4rem;
        }
        
        .project-content p {
            color: #666;
            line-height: 1.6;
            margin-bottom: 20px;
        }
        
        .project-details {
            display: flex;
            justify-content: space-between;
            border-top: 1px solid #eee;
            padding-top: 15px;
            margin-top: 20px;
        }
        
        .detail-item {
            display: flex;
            align-items: center;
            gap: 8px;
            color: #555;
            font-size: 0.9rem;
        }
        
        .detail-item i {
            color: #FFD700;
        }
        
        .project-btn {
            display: inline-block;
            background-color: #103464;
            color: white;
            padding: 10px 20px;
            border-radius: 4px;
            text-decoration: none;
            font-weight: bold;
            transition: background-color 0.3s ease;
            margin-top: 15px;
        }
        
        .project-btn:hover {
            background-color: #FFD700;
            color: #103464;
        }
        
        .projects-cta {
            background-color: #103464;
            color: white;
            text-align: center;
            padding: 80px 20px;
            margin-top: 80px;
            border-radius: 10px;
        }
        
        .projects-cta h2 {
            margin-bottom: 20px;
        }
        
        .projects-cta p {
            max-width: 700px;
            margin: 0 auto 30px;
            font-size: 1.1rem;
        }
        
        .cta-btn {
            display: inline-block;
            background-color: #FFD700;
            color: #103464;
            padding: 15px 35px;
            border-radius: 4px;
            text-decoration: none;
            font-weight: bold;
            font-size: 1.1rem;
            transition: all 0.3s ease;
        }
        
        .cta-btn:hover {
            background-color: white;
            transform: scale(1.05);
        }

        
/* 📱 RESPONSIVIDAD */
@media (max-width: 992px) {
    .projects-container {
        padding: 40px 15px;
    }

    .projects-grid {
        gap: 20px;
    }

    .project-image {
        height: 180px;
    }
}

@media (max-width: 768px) {
    .projects-hero {
        padding: 80px 15px;
    }

    .projects-intro p {
        font-size: 1rem;
    }

    .project-content h3 {
        font-size: 1.2rem;
    }

    .projects-cta {
        padding: 60px 15px;
    }
}

@media (max-width: 576px) {
    .projects-hero {
        padding: 60px 10px;
    }

    .projects-intro {
        margin-bottom: 30px;
    }

    .project-content {
        padding: 15px;
    }

    .project-content h3 {
        font-size: 1rem;
    }

    .project-content p {
        font-size: 0.9rem;
    }

    .cta-btn {
        width: 100%;
        padding: 12px;
    }
}
        