/*==================================================
        CECNE - PROGRAMA DE FORMACIÓN
==================================================*/

:root{

    --azul:#1E88E5;
    --magenta:#C2185B;
    --verde:#43A047;
    --naranja:#FB8C00;

    --gris:#555;
    --gris-claro:#f8fafc;
    --blanco:#fff;

    --radio:20px;

}

*{

    margin:0;
    padding:0;
    box-sizing:border-box;

}

html{

    scroll-behavior:smooth;

}

body{

    font-family:'Poppins',sans-serif;

    color:var(--gris);

    background:white;

    overflow-x:hidden;

    padding-top:76px;

}

.btn-cecne{

    background:linear-gradient(135deg,var(--azul),var(--magenta));

    color:white;

    border:none;

    border-radius:50px;

    padding:13px 28px;

    font-weight:600;

    transition:.35s;

}

.btn-cecne:hover{

    color:white;

    transform:translateY(-3px);

    box-shadow:0 15px 35px rgba(0,0,0,.15);

}
/*==========================
        NAVBAR
==========================*/

body.pagina-programa .navbar{

    background:rgba(255,255,255,.96);

    backdrop-filter:blur(12px);

    padding:16px 0;

    border-bottom:1px solid #ececec;

    box-shadow:0 5px 20px rgba(0,0,0,.05);

}

body.pagina-programa .logo-navbar{

    height:70px;

    width:auto;

    transition:.3s;

}

body.pagina-programa .nav-link{

    color:#333;

    font-weight:600;

    margin-left:20px;

}

body.pagina-programa .nav-link:hover{

    color:var(--azul);

}
/*==================================
    PÁGINA PROGRAMA
==================================*/

body.pagina-programa{

    padding-top:75px !important;

}

/*==================================
            HERO
==================================*/

.hero-programa{

    position:relative;

    overflow:hidden;

    min-height:85vh;

    display:flex;

    align-items:center;

    padding:40px 0;

    background:
    radial-gradient(circle at top right,#dceeff 0%,transparent 40%),
    radial-gradient(circle at bottom left,#ffe8f1 0%,transparent 40%),
    linear-gradient(180deg,#ffffff,#f8fbff);

}

.hero-programa .container{

    position:relative;

    z-index:2;

}

.hero-programa::before{

    content:"";

    position:absolute;

    width:650px;

    height:650px;

    border-radius:50%;

    background:rgba(30,136,229,.05);

    top:-250px;

    right:-220px;

}

.hero-programa::after{

    content:"";

    position:absolute;

    width:450px;

    height:450px;

    border-radius:50%;

    background:rgba(194,24,91,.05);

    left:-180px;

    bottom:-180px;

}
.badge-programa{

    display:inline-block;

    padding:10px 24px;

    background:var(--verde);

    color:white;

    border-radius:40px;

    font-weight:600;

    margin-bottom:25px;

}
.hero-programa h1{

    font-size:clamp(2rem,4vw,3.2rem);

    font-weight:800;

    line-height:1.1;

    margin-bottom:18px;

    color:#1c2431;

}
.hero-programa .lead{

    font-size:1.15rem;

    line-height:1.9;

    color:#666;

    max-width:620px;

}

.hero-checks{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:18px;

    margin:35px 0;

}

.hero-checks div{

    background:white;

    border-radius:18px;

     padding:10px 15px;

    box-shadow:0 12px 35px rgba(0,0,0,.08);

    transition:.3s;

}

.hero-checks div:hover{

    transform:translateY(-6px);

}

.hero-checks i{

    color:var(--verde);

    margin-right:10px;

}

.hero-programa .btn{

    padding:12px 26px;

    border-radius:40px;

    margin-right:12px;

    margin-top:12px;

}
.hero-buttons{

    margin-top:-40px;

}

.hero-programa-img{

    width:100%;

    max-width:420px;

    border-radius:25px;

    border:6px solid white;

    box-shadow:
        0 25px 60px rgba(0,0,0,.15);

    transition:.4s;

}

.hero-programa-img:hover{

    transform:

        translateY(-8px)

        rotate(-1deg);

}

@media(max-width:991px){

.hero-programa{

text-align:center;

padding:60px 0;

}

.hero-checks{

grid-template-columns:1fr;

}

.hero-programa-img{

margin-top:50px;

max-width:380px;

}

}
/*==================================
      INFORMACIÓN RÁPIDA
==================================*/

.quick-info{

    position:relative;

    margin-top:-30px;

    z-index:10;

}

.quick-card{

    background:#fff;

    border-radius:22px;

    padding:30px 20px;

    text-align:center;

    height:100%;

    box-shadow:0 20px 50px rgba(0,0,0,.08);

    transition:.35s;

    border:1px solid #edf2f7;

}

.quick-card:hover{

    transform:translateY(-10px);

    box-shadow:0 30px 60px rgba(0,0,0,.12);

}

.quick-card i{

    font-size:2.3rem;

    color:var(--azul);

    margin-bottom:15px;

}

.quick-card h5{

    font-size:1.1rem;

    font-weight:700;

    color:#222;

    margin-bottom:8px;

}

.quick-card p{

    margin:0;

    color:#666;

    font-size:.95rem;

}

@media(max-width:991px){

    .quick-info{

        margin-top:40px;

    }

}

/*==================================
      FEATURES
==================================*/

.programa-section{

padding:120px 0;

background:#f8fbff;

}

.section-header{

max-width:850px;

margin:auto;

}

.section-badge{

display:inline-block;

padding:10px 24px;

background:#eef6ff;

color:var(--azul);

border-radius:40px;

font-weight:600;

margin-bottom:20px;

}

.section-header h2{

font-size:2.8rem;

font-weight:800;

margin-bottom:20px;

color:#1d2430;

}

.section-header p{

font-size:1.15rem;

line-height:1.9;

color:#666;

}

.feature-card{

background:white;

border-radius:25px;

padding:35px;

height:100%;

transition:.35s;

border:1px solid #edf2f7;

box-shadow:0 15px 40px rgba(0,0,0,.06);

}

.feature-card:hover{

transform:translateY(-10px);

box-shadow:0 30px 70px rgba(0,0,0,.12);

}

.feature-icon{

width:75px;

height:75px;

border-radius:20px;

display:flex;

justify-content:center;

align-items:center;

background:linear-gradient(135deg,var(--azul),var(--magenta));

color:white;

font-size:2rem;

margin-bottom:25px;

}

.feature-card h4{

font-weight:700;

margin-bottom:18px;

}

.feature-card p{

line-height:1.8;

color:#666;

}

/*==================================
        MALLA CURRICULAR
==================================*/

.malla-section{

padding:120px 0;

background:linear-gradient(180deg,#ffffff,#f7fbff);

}

.malla-card{

background:white;

padding:38px;

border-radius:25px;

height:100%;

border:1px solid #edf2f7;

box-shadow:0 20px 45px rgba(0,0,0,.06);

transition:.35s;

position:relative;

overflow:hidden;

}

.malla-card::before{

content:"";

position:absolute;

left:0;

top:0;

width:100%;

height:6px;

background:linear-gradient(90deg,var(--azul),var(--magenta));

}

.malla-card:hover{

transform:translateY(-10px);

box-shadow:0 35px 70px rgba(0,0,0,.12);

}

.malla-icon{

width:80px;

height:80px;

border-radius:22px;

display:flex;

justify-content:center;

align-items:center;

font-size:2rem;

color:white;

margin-bottom:25px;

}

.malla-card h4{

font-size:1.45rem;

font-weight:700;

margin-bottom:18px;

}

.malla-card p{

line-height:1.8;

margin-bottom:20px;

color:#666;

}

.malla-card ul{

padding-left:20px;

margin:0;

}

.malla-card li{

margin-bottom:10px;

line-height:1.7;

}
.azul{

background:linear-gradient(135deg,#1E88E5,#42A5F5);

}

.verde{

background:linear-gradient(135deg,#43A047,#66BB6A);

}

.magenta{

background:linear-gradient(135deg,#C2185B,#EC407A);

}

.naranja{

background:linear-gradient(135deg,#FB8C00,#FFA726);

}
/*==================================
      RUTA DE APRENDIZAJE
==================================*/

.ruta-section{

padding:120px 0;

background:#0f4c81;

color:white;

}

.ruta-section .section-badge{

background:rgba(255,255,255,.15);

color:white;

}

.ruta-section h2{

color:white;

}

.ruta-section p{

color:rgba(255,255,255,.85);

}

.timeline{

display:flex;

justify-content:space-between;

align-items:flex-start;

margin-top:70px;

position:relative;

gap:20px;

}

.timeline-item{

flex:1;

text-align:center;

position:relative;

}

.timeline-icon{

width:90px;

height:90px;

margin:auto;

border-radius:50%;

background:white;

color:var(--azul);

display:flex;

justify-content:center;

align-items:center;

font-size:2rem;

box-shadow:0 20px 40px rgba(0,0,0,.20);

margin-bottom:25px;

}

.timeline-line{

height:4px;

background:rgba(255,255,255,.25);

flex:0.3;

margin-top:45px;

}

.timeline-item h4{

margin-bottom:15px;

font-weight:700;

}

.timeline-item p{

font-size:.95rem;

line-height:1.7;

}

@media(max-width:991px){

.timeline{

flex-direction:column;

}

.timeline-line{

width:4px;

height:60px;

margin:auto;

}

}
/*==================================
        SIDEBAR
==================================*/

.sidebar-programa{

    position:fixed;

    right:10px;

    top:110px;

    width:210px;

    background:rgba(255,255,255,.92);

    backdrop-filter:blur(16px);

    border-radius:24px;

    padding:25px;

    box-shadow:0 20px 60px rgba(0,0,0,.12);

    z-index:1000;

}

.sidebar-header{

    text-align:center;

    margin-bottom:25px;

}

.sidebar-header span{

    font-size:1rem;

}

.sidebar-header h5{

    margin:10px 0 5px;

    font-weight:700;

}

.sidebar-header small{

    color:#666;

}

.sidebar-programa ul{

    list-style:none;

    padding:0;

    margin:0 0 25px;

}

.sidebar-programa li{

    margin-bottom:10px;

}

.sidebar-programa a{

    display:flex;

    align-items:center;

    gap:12px;

    text-decoration:none;

    color:#444;

    padding:12px 16px;

    border-radius:14px;

    transition:.3s;

}

.sidebar-programa ul a:hover{

    background:#eef6ff;

    color:var(--azul);

}

.sidebar-programa i{

    font-size:1.0rem;

}

/*==================================
    AJUSTE PARA MENÚ LATERAL
==================================*/

@media(min-width:1200px){

.hero-programa .container,
.quick-info .container,
.programa-section .container,
.malla-section .container,
.ruta-section .container{

    max-width:1050px;
    margin-left:80px;

}

}

