.inicio-wrapper {
    --ucr-azul: #005DA4;
    --ucr-azul-oscuro: #003B71;
    --ucr-amarillo: #FDB913;
    --ucr-celeste: #51C8E8;
    --texto-principal: #263238;
    --texto-secundario: #5f6770;
    --fondo-suave: #f5f8fb;
    --borde-suave: #e4ebf1;

    width: 100%;
    margin: 0;
    padding: 0;
    background: var(--fondo-suave);
}

.inicio-wrapper section {
    min-height: auto;
}

.inicio-hero {
    position: relative;
    overflow: hidden;
    margin: 0;
    padding: 3.5rem 0;
    border-radius: 0;
    background:
        radial-gradient(circle at top right, rgba(81, 200, 232, .28), transparent 36%),
        linear-gradient(135deg, var(--ucr-azul) 0%, var(--ucr-azul-oscuro) 100%);
    color: #fff;
    box-shadow: 0 18px 45px rgba(0, 93, 164, .18);
}

.inicio-hero::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 6px;
    background: var(--ucr-amarillo);
}

.inicio-badge {
    display: inline-block;
    padding: .45rem .85rem;
    margin-bottom: 1.15rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, .14);
    border: 1px solid rgba(255, 255, 255, .35);
    color: #fff;
    font-size: .9rem;
    font-weight: 700;
    letter-spacing: .01em;
}

.inicio-hero h1 {
    max-width: 760px;
    margin-bottom: 1.25rem;
    font-size: clamp(2.2rem, 4vw, 4rem);
    font-weight: 800;
    line-height: 1.08;
}

.inicio-hero p {
    max-width: 700px;
    margin-bottom: 1.7rem;
    color: rgba(255, 255, 255, .92);
    font-size: 1.08rem;
    line-height: 1.7;
}

.inicio-btns {
    display: flex;
    gap: .85rem;
    flex-wrap: wrap;
}

.inicio-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: .75rem 1.15rem;
    border-radius: 999px;
    font-weight: 800;
    text-decoration: none;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.inicio-btn:hover {
    transform: translateY(-2px);
    text-decoration: none;
}

.inicio-btn-primary {
    color: var(--ucr-azul-oscuro);
    background: #fff;
    box-shadow: 0 10px 22px rgba(0, 0, 0, .18);
}

.inicio-btn-primary:hover {
    color: var(--ucr-azul-oscuro);
    background: #f7fbff;
}

.inicio-btn-outline {
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .8);
    background: rgba(255, 255, 255, .08);
}

.inicio-btn-outline:hover {
    color: #fff;
    background: rgba(255, 255, 255, .16);
}

.inicio-video-card {
    position: relative;
    z-index: 2;
    padding: .75rem;
    border-radius: 22px;
    background: rgba(255, 255, 255, .98);
    border: 1px solid rgba(255, 255, 255, .7);
    box-shadow: 0 22px 50px rgba(0, 0, 0, .28);
}

.inicio-video-responsive {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    overflow: hidden;
    border-radius: 16px;
    background: #000;
}

.inicio-video-responsive iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.inicio-contenido {
    margin: 0;
    padding: 2rem 0 2.5rem;
    background: #fff;
}

.inicio-section-title {
    position: relative;
    display: inline-block;
    margin-bottom: 1.35rem;
    color: var(--texto-principal);
    font-size: 1.75rem;
    font-weight: 800;
}

.inicio-section-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -.35rem;
    width: 70px;
    height: 4px;
    border-radius: 999px;
    background: var(--ucr-amarillo);
}

.inicio-card {
    height: 100%;
    padding: 1.5rem;
    border-radius: 16px;
    background: #fff;
    border: 1px solid var(--borde-suave);
    border-top: 5px solid var(--ucr-azul);
    box-shadow: 0 12px 28px rgba(0, 93, 164, .08);
    transition: transform .2s ease, box-shadow .2s ease;
}

.inicio-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 34px rgba(0, 93, 164, .14);
}

.inicio-card h2 {
    margin-bottom: .75rem;
    color: var(--ucr-azul-oscuro);
    font-size: 1.22rem;
    font-weight: 800;
}

.inicio-card p {
    margin-bottom: 0;
    color: var(--texto-secundario);
    line-height: 1.7;
}

.inicio-descripcion {
    margin-top: 2rem;
    padding: 2rem;
    border-radius: 18px;
    background: linear-gradient(90deg, rgba(0, 93, 164, .06), rgba(81, 200, 232, .04));
    border: 1px solid var(--borde-suave);
    border-left: 6px solid var(--ucr-azul);
}

.inicio-descripcion h2 {
    margin-bottom: 1rem;
    color: var(--ucr-azul-oscuro);
    font-size: 1.55rem;
    font-weight: 800;
}

.inicio-descripcion p {
    max-width: 1120px;
    margin-bottom: 0;
    color: var(--texto-secundario);
    font-size: 1.05rem;
    line-height: 1.85;
    text-align: justify;
}

@media (max-width: 991.98px) {
    .inicio-hero {
        padding: 2.5rem 0;
    }

    .inicio-video-card {
        margin-top: 1rem;
    }
}

@media (max-width: 767.98px) {
    .inicio-hero {
        padding: 2rem 0;
    }

    .inicio-hero h1 {
        font-size: 2.15rem;
    }

    .inicio-hero p {
        font-size: 1rem;
    }

    .inicio-btn {
        width: 100%;
        text-align: center;
    }

    .inicio-contenido {
        padding: 1.5rem 0 2rem;
    }

    .inicio-descripcion {
        padding: 1.4rem;
    }

    .inicio-descripcion p {
        text-align: left;
    }
}

/* Desplazamiento hacia el footer desde el botón "Ver contacto" */
html {
    scroll-behavior: smooth;
}

#contacto-footer {
scroll-margin-top: 20px;
}
