/* FONDO BLANCO */
.proy-wrapper {
    background: #fff;
    padding: 4rem 0 5rem;
}

.proy-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* TÍTULO AZUL GRANDE CENTRADO */
.proy-titulo {
    font-size: 4rem;
    font-weight: 700;
    color: #1E2452;
    font-family: MiFuenteDos, sans-serif;
    text-align: center;
    margin-bottom: 1rem;
}

/* SUBTÍTULO */
.proy-subtitulo {
    font-size: 1.5rem;
    color: #333;
    font-family: MiFuente, sans-serif;
    text-align: center;
    margin-bottom: 2rem;
}

/* LÍNEA DE SEPARACIÓN */
.proy-linea {
    width: 100%;
    height: 2px;
    background: #ccc;
    margin-bottom: 3.5rem;
}

/* 3 CARDS AZULES EN HORIZONTAL */
.proy-cards-row {
    margin-bottom: 3rem;
}

.proy-card {
    background: #1E2452;
    border-radius: 15px;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
    margin-bottom: 2rem;
    align-items: center;
    text-align: center;
    justify-content: center;
}

.proy-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(30, 36, 82, 0.3);
}

.proy-card-img {
    width: 90%;
    height: 200px;
    border-radius: 20px;
    object-fit: cover;
    align-items: center;
    text-align: center;
    display: block;
    padding-top: 3%;
}

.proy-card-body {
    padding: 1.8rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    gap: 1rem;
    align-items: center;
    text-align: center;
}

.proy-card-titulo {
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
    font-family: MiFuenteDos, sans-serif;
    margin: 0;
    line-height: 1.3;
}

.proy-card-desc {
    font-size: 0.95rem;
    color: #e0e0e0;
    font-family: MiFuente, sans-serif;
    line-height: 1.6;
    margin: 0;
    flex-grow: 1;
}

/* BOTÓN LEER MÁS - Blanco con letras azules */
.proy-btn-leer {
    background: #fff;
    color: #1E2452;
    border: 2px solid #fff;
    border-radius: 10px;
    padding: 0.7rem 1.8rem;
    font-size: 1rem;
    font-weight: 600;
    font-family: MiFuente, sans-serif;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    text-decoration: none;
    width: fit-content;
    margin-top: auto;
}

.proy-btn-leer:hover {
    background: transparent;
    color: #fff;
    border-color: #fff;
    transform: translateX(3px);
}

.proy-btn-leer i {
    font-size: 1.1rem;
}

/* LÍNEA CON TEXTO CENTRADO */
.proy-separador-texto {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 4rem 0 3rem;
}

.proy-separador-texto::before,
.proy-separador-texto::after {
    content: '';
    flex: 1;
    border-bottom: 2px solid #ccc;
}

.proy-separador-texto span {
    padding: 0 2rem;
    font-size: 1.8rem;
    font-weight: 700;
    color: #1E2452;
    font-family: MiFuenteDos, sans-serif;
}

/* CAROUSEL */
.proy-carousel {
    position: relative;
    padding: 0 4rem;
}

.proy-carousel-img {
    height: 220px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
}

.proy-carousel-img:hover {
    transform: scale(1.05);
}

.proy-carousel-control {
    width: 50px;
    height: 50px;
    background: #1E2452;
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 1;
}

.proy-carousel-control:hover {
    background: #141836;
}

.carousel-control-prev {
    left: -10px;
}

.carousel-control-next {
    right: -10px;
}

.proy-carousel-indicators {
    position: relative;
    margin-top: 2rem;
    margin-bottom: 0;
}

.proy-carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ccc;
    border: none;
    margin: 0 5px;
}

.proy-carousel-indicators button.active {
    background-color: #1E2452;
    width: 30px;
    border-radius: 6px;
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .proy-titulo {
        font-size: 3rem;
    }

    .proy-card-img {
        height: 180px;
    }
}

@media (max-width: 767px) {
    .proy-container {
        padding: 0 1rem;
    }

    .proy-titulo {
        font-size: 2.2rem;
    }

    .proy-subtitulo {
        font-size: 1.2rem;
    }

    .proy-card-titulo {
        font-size: 1.2rem;
    }

    .proy-card-desc {
        font-size: 0.9rem;
    }

    .proy-separador-texto span {
        font-size: 1.4rem;
        padding: 0 1rem;
    }

    .proy-carousel {
        padding: 0 2.5rem;
    }

    .proy-carousel-img {
        height: 180px;
    }

    .carousel-control-prev {
        left: -5px;
    }

    .carousel-control-next {
        right: -5px;
    }
}