/* CONTENEDOR */
.proyecto-item {
    background: #ffffff;
    border-radius: 28px;
    padding: 50px;
    margin-bottom: 20px;

    box-shadow: 0 25px 60px rgba(0,0,0,0.08);
}

/* IMAGEN WRAP */
.proyecto-img-wrap {
    background: linear-gradient(145deg, #0b2c4d, #123e6b);
    border-radius: 24px;
    padding: 20px;
}

.proyecto-img {
    width: 100%;
    height: 320px;
    object-fit: contain;
}

/* TITULO */
.proyecto-title {
    font-size: 34px;
    font-weight: 800;
    color: #0b2c4d;
}

.proyecto-desc {
    color: #475569;
    margin: 15px 0 20px;

    text-align: justify;
    text-justify: inter-word;
}

/* TAGS */
.proyecto-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.proyecto-tags span {
    background: rgba(11,44,77,0.08);
    color: #0b2c4d;

    padding: 6px 12px;
    border-radius: 999px;

    font-size: 0.8rem;
    font-weight: 600;
}

/* BOTONES */
.proyecto-actions {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
}

.btn-proyecto {
    background: #0b2c4d;
    color: #fff;

    padding: 10px 22px;
    border-radius: 999px;
    border: none;
    text-decoration: none;

    font-weight: 700;
    transition: .25s;
}



.btn-proyecto:hover {
    background: #123e6b;
}

.btn-ficha {
    background: transparent;
    border: 2px solid #0b2c4d;
    color: #0b2c4d;

    padding: 10px 22px;
    border-radius: 999px;

    font-weight: 700;
    transition: .25s;
}

.btn-ficha:hover {
    background: #0b2c4d;
    color: #fff;
}

/* FICHA */
.proyecto-ficha {
    max-height: 0;
    overflow: hidden;

    transition: max-height 0.4s ease;

    background: #f8fafc;
    border-radius: 14px;
    padding: 0 15px;

    font-size: 0.9rem;
    color: #334155;
}

.proyecto-ficha.show {
    max-height: 400px;
    padding: 15px;
    margin-top: 10px;
}

/* GRID */
.ficha-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px 25px;
}

/* ITEM */
.ficha-item {
    display: flex;
    flex-direction: column;
}

/* LABEL */
.ficha-item span {
    font-size: 0.75rem;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* VALOR */
.ficha-item strong {
    font-size: 0.95rem;
    color: #0b2c4d;
    font-weight: 700;
}

/* MOBILE */
@media (max-width: 768px) {
    .ficha-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================
   HERO CONTENEDORES
========================= */

.containers-hero{
    position: relative;

    max-width: 1250px;

    margin: 0 auto 90px;

    padding: 90px 50px;

    border-radius: 40px;

    overflow: hidden;

    background:
        linear-gradient(
            135deg,
            #0b2c4d 0%,
            #123e6b 45%,
            #0f355d 100%
        );

    box-shadow:
        0 30px 80px rgba(11,44,77,.28);
}

/* OVERLAY */
.containers-hero::before{
    content: '';

    position: absolute;
    inset: 0;

    background:
        radial-gradient(
            circle at top left,
            rgba(255,255,255,.10),
            transparent 35%
        ),
        radial-gradient(
            circle at bottom right,
            rgba(245,158,11,.12),
            transparent 30%
        );

    pointer-events: none;
}

/* LÍNEA DECORATIVA */
.containers-hero::after{
    content: '';

    position: absolute;

    width: 180px;
    height: 180px;

    border: 1px solid rgba(255,255,255,.08);

    border-radius: 50%;

    top: -60px;
    right: -60px;
}

/* BADGE */
.containers-badge{
    position: relative;
    z-index: 2;

    display: inline-flex;
    align-items: center;
    gap: 10px;

    padding: 12px 20px;

    border-radius: 999px;

    background: rgba(255,255,255,.08);

    border: 1px solid rgba(255,255,255,.10);

    color: #f59e0b;

    font-size: .82rem;
    font-weight: 700;

    text-transform: uppercase;
    letter-spacing: .12em;

    backdrop-filter: blur(12px);

    margin-bottom: 32px;
}

/* TITULO */
.section-title{
    position: relative;
    z-index: 2;

    max-width: 900px;

    margin: 0 auto 30px;

    font-size: clamp(3rem, 7vw, 5.8rem);

    line-height: .92;

    font-weight: 900;

    letter-spacing: -0.05em;

    color: #fff;
}

/* HIGHLIGHT */
.section-title span{
    display: block;

    margin-top: 8px;

    background: linear-gradient(
        90deg,
        #f59e0b,
        #ffd089
    );

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* SUBTITLE */
.section-subtitle{
    position: relative;
    z-index: 2;

    max-width: 880px;

    margin: 0 auto;

    font-size: 1.12rem;
    line-height: 2;

    color: rgba(255,255,255,.78);

    font-weight: 300;

    text-align: center;
}

/* MOBILE */
@media (max-width: 768px){

    .containers-hero{
        padding: 70px 25px;
        border-radius: 28px;
    }

    .section-title{
        line-height: 1;
    }

    .section-subtitle{
        font-size: 1rem;
        line-height: 1.8;
    }

}