.wcf-gevca-proyecto-container {
    width: 100%;
}

/* Carrusel */
.project-carousel {
    position: relative;
    width: 100%;
    height: 60vh;
    min-height: 400px;
    overflow: hidden;
    background: #f0f0f0;
}

.carousel-slides {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.carousel-slide.active {
    opacity: 1;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Controles */
.carousel-prev, .carousel-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.7);
    color: white;
    border: none;
    padding: 15px 20px;
    cursor: pointer;
    font-size: 18px;
    z-index: 10;
}

.carousel-prev { left: 20px; }
.carousel-next { right: 20px; }

.carousel-prev:hover, .carousel-next:hover {
    background: rgba(0,0,0,0.9);
}

/* Indicadores */
.carousel-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: background 0.3s;
}

.indicator.active,
.indicator:hover {
    background: white;
}

/* Información del proyecto */
.project-info {
    padding: 60px 0;
    background: #f8f9fa;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.project-title {
    font-size: 3rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 30px;
    color: #333;
}

.project-type-badge {
    text-align: center;
    margin-bottom: 30px;
}

.badge {
    display: inline-block;
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.badge-arquitectura { background: #e3f2fd; color: #1976d2; }
.badge-mep { background: #fff3e0; color: #f57c00; }
.badge-bim { background: #e8f5e8; color: #388e3c; }
.badge-modelado { background: #fce4ec; color: #c2185b; }
.badge-nube-puntos { background: #f3e5f5; color: #7b1fa2; }

.project-description {
    text-align: center;
    margin-bottom: 40px;
}

.project-description p {
    font-size: 1.2rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.project-detailed-description {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    line-height: 1.7;
    color: #444;
}

/* Responsive */
@media (max-width: 768px) {
    .project-carousel {
        height: 40vh;
        min-height: 300px;
    }
    
    .project-title {
        font-size: 2rem;
    }
    
    .carousel-prev, .carousel-next {
        padding: 12px 15px;
        font-size: 16px;
    }
    
    .carousel-prev { left: 10px; }
    .carousel-next { right: 10px; }
    
    .project-description p,
    .project-detailed-description {
        padding: 20px;
    }
}