/* ===========================
   RESET
=========================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{

    background:#000;

    color:#fff;

    overflow:hidden;

    font-family:Arial,Helvetica,sans-serif;

}

/* ===========================
   MATRIX
=========================== */

#matrix{

    position:fixed;

    inset:0;

    width:100%;

    height:100%;

    z-index:-2;

}

/* ===========================
   SPLASH
=========================== */

#splash{

    position:fixed;

    inset:0;

    display:flex;

    justify-content:center;

    align-items:center;

    background:transparent;

    z-index:999;

    transition:1s;

}

.hero{

    text-align:center;

    max-width:900px;

    padding:20px;

}

.hero-divider{
    width:300px;
    height:2px;
    margin:28px auto 40px;

    background:linear-gradient(
        90deg,
        transparent,
        #00ff88,
        transparent
    );

    box-shadow:
        0 0 8px rgba(0,255,136,.5),
        0 0 15px rgba(0,255,136,.25);

    border-radius:50px;
}

.marca{

    color:#00c878;

    letter-spacing:8px;

    font-size:14px;

    margin-bottom:30px;

}

.hero h1{

    font-size:90px;

    line-height:0.95;

    font-weight:900;

    text-transform:uppercase;

    margin-bottom:35px;

    text-shadow:
    0 0 5px #70ecb2,
    0 0 10px rgba(0,255,136,.6);

}

.frase{

    color:#bdbdbd;

    font-size:24px;

    margin-bottom:55px;

}

#entrar{

    background:transparent;

    color:white;

    border:2px solid #00c878;

    border-radius:50px;

    padding:18px 55px;

    cursor:pointer;

    font-size:16px;

    transition:.35s;

}

#entrar:hover{

    background:#00c878;

    color:black;

    box-shadow:0 0 25px rgba(0,200,120,.45);

}

/* ===========================
   WEBSITE
=========================== */

#website{

    display:none;

    min-height:100vh;

    background:transparent;
    position:relative;
    z-index:2;

}
/* ===========================
   HEADER
=========================== */

header{

    position:sticky;

    top:0;

    width:100%;

    padding:25px 8%;

    display:flex;

    justify-content:space-between;

    align-items:center;

    background:rgba(0,0,0,.15);

    backdrop-filter:blur(15px);

    border-bottom:1px solid rgba(255,255,255,.05);

    z-index:100;

}

.logo{

    font-size:22px;

    font-weight:bold;

    letter-spacing:2px;

}

nav{

    display:flex;

    gap:35px;

}

nav a{

    color:rgb(255, 255, 255);

    text-decoration:none;

    transition:.3s;

    opacity:.8;

}

nav a:hover{

    color:#00c878;

    opacity:1;

}

/* ===========================
   PROGRAMAS
=========================== */

.programas{

    padding:30px 8%;

}

.programas h2{

    text-align:center;

    font-size:60px;

    margin-bottom:80px;

}

.cards{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));

    gap:35px;

}

.card{

    padding:40px;

    border-radius:25px;

    background:rgba(255,255,255,.04);

    border:1px solid rgba(255,255,255,.08);

    backdrop-filter:blur(15px);

    transition:.4s;

    cursor:pointer;

}

.card:hover{

    transform:translateY(-12px);

    border-color:#00c878;

    box-shadow:0 20px 45px rgba(0,200,120,.18);

}

.card span{

    color:#00c878;

    letter-spacing:3px;

    font-size:13px;

}

.card h3{

    margin-top:22px;

    color:#8a8a8a;

    font-size:18px;

}

.card h4{

    margin:15px 0;

    font-size:30px;

}

.card p{

    color:#bdbdbd;

    line-height:1.8;

}

/* ===========================
   BLOG
=========================== */

.blog{

    padding:140px 10%;

    text-align:center;

}

.blog h2{

    font-size:60px;

    margin-bottom:35px;

}

.blog p{

    max-width:850px;

    margin:auto;

    color:#bdbdbd;

    font-size:22px;

    line-height:1.8;

}

/* ===========================
   SOBRE MI
=========================== */

.sobre{

    padding:140px 10%;

    text-align:center;

    background:#080808;

}

.sobre h2{

    font-size:60px;

    margin-bottom:35px;

}

.sobre p{

    max-width:900px;

    margin:auto;

    color:#bdbdbd;

    line-height:2;

    font-size:22px;

}
/*==========================
FOOTER
==========================*/

footer{

    padding:60px 20px;

    text-align:center;

    color:#777;

    border-top:1px solid rgba(255,255,255,.06);

}

/*==========================
ANIMACIONES
==========================*/

@keyframes fadeIn{

from{

opacity:0;

transform:translateY(30px);

}

to{

opacity:1;

transform:translateY(0);

}

}

.hero{

animation:fadeIn 1.2s ease;

}

.programas,
.blog,
.sobre{

animation:fadeIn 1s ease;

}

/*==========================
TRANSICIÓN SPLASH
==========================*/

#splash.ocultar{

opacity:0;

visibility:hidden;

transform:scale(1.08);

transition:all 1s ease;

}

#website.mostrar{

display:block;

animation:fadeIn 1s ease;

}

/*==========================
RESPONSIVE
==========================*/

@media(max-width:900px){

.hero h1{

font-size:60px;

}

.frase{

font-size:20px;

}

header{

flex-direction:column;

gap:20px;

}

nav{

flex-wrap:wrap;

justify-content:center;

}

.programas h2,
.blog h2,
.sobre h2{

font-size:42px;

}

}

@media(max-width:600px){

.hero h1{

font-size:42px;

}

.marca{

font-size:12px;

letter-spacing:5px;

}

#entrar{

padding:15px 40px;

}

.cards{

grid-template-columns:1fr;

}

}
/* =====================================================
   VERSIÓN PREMIUM 2.0
===================================================== */

/* HEADER */

header{

    position:sticky;

    top:0;

    z-index:1000;

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:22px 8%;

    background:rgba(0,0,0,.55);

    backdrop-filter:blur(18px);

    border-bottom:1px solid rgba(255,255,255,.05);

}

.logo{

    font-size:24px;

    font-weight:700;

    letter-spacing:2px;

    color:rgb(9, 114, 35);

}

nav{

    display:flex;

    gap:35px;

}

nav a{

    text-decoration:none;

    color:#bfbfbf;

    transition:.3s;

    font-size:15px;

}

nav a:hover{

    color:#00c878;

}

/* TITULOS */

.programas h2{

font-size:58px;

    text-align:center;

    margin-bottom:12px;

    font-weight:800;
}    
.blog h2{

font-size:18px;

    text-align:center;

    margin-bottom:12px;

    font-weight:800;
}    
.sobre h2{

    font-size:18px;

    text-align:center;

    margin-bottom:12px;

    font-weight:800;


}

/* GRID */

.cards{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));

    gap:35px;

    margin-top:70px;

}

/* TARJETAS */

.card{

    position:relative;

    padding:45px;

    border-radius:28px;

    overflow:hidden;

    background:rgba(255,255,255,.03);

    border:1px solid rgba(255,255,255,.08);

    backdrop-filter:blur(18px);

    transition:.45s;

}

.card::before{

    content:"";

    position:absolute;

    inset:0;

    background:linear-gradient(
        130deg,
        transparent,
        rgba(0,200,120,.08),
        transparent
    );

    transform:translateX(-100%);

    transition:.8s;

}

.card:hover::before{

    transform:translateX(100%);

}

.card:hover{

    transform:translateY(-15px);

    border-color:#00c878;

    box-shadow:

    0 15px 45px rgba(0,200,120,.15),

    0 0 25px rgba(0,200,120,.10);

}

/* NUMERO */

.numero{

    width:48px;

    height:48px;

    border-radius:50%;

    background:#00c878;

    color:black;

    display:flex;

    align-items:center;

    justify-content:center;

    font-weight:bold;

    margin-bottom:30px;

}

/* TEXTOS */

.card h3{

    color:#8b8b8b;

    margin-bottom:10px;

    font-size:18px;

}

.card h4{

    font-size:32px;

    margin-bottom:20px;

}

.card p{

    color:#bdbdbd;

    line-height:1.9;

    margin-bottom:35px;

}

/* BOTÓN */

.card button{

    padding:14px 32px;

    border:none;

    border-radius:40px;

    cursor:pointer;

    background:#00c878;

    color:black;

    font-weight:bold;

    transition:.35s;

}

.card button:hover{

    transform:scale(1.05);

    box-shadow:0 0 20px rgba(0,200,120,.45);

}

/* BLOG */

.blog{

    padding:50px 10%;

    text-align:center;
    background:transparent;

}

.blog p{

    max-width:850px;

    margin:auto;

    font-size:22px;

    line-height:1.9;

    color:#0b9a06;

}

.blog-subtitle{

    margin:60px 0 40px;

    text-align:center;

    font-size:1.7rem;

    color:#fff;

    letter-spacing:2px;

    text-shadow:
        0 0 8px rgba(0,255,136,.25);

}

.blog-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));

    gap:35px;

}

.blog-card{

    background:rgba(15,15,15,.55);

    backdrop-filter:blur(15px);

    border:1px solid rgba(255,255,255,.08);

    border-radius:22px;

    overflow:hidden;

    transition:.35s;

}

.blog-card:hover{

    transform:translateY(-10px);

    border-color:#00ff88;

    box-shadow:0 0 25px rgba(0,255,136,.2);

}

.blog-card img{

    width:100%;

    height:220px;

    object-fit:cover;

}

.blog-card h4{

    padding:20px 25px 10px;

    color:white;

    font-size:1.4rem;

}

.blog-card p{

    padding:0 25px;

    color:#d8d8d8;

    line-height:1.8;

}

.blog-card a{

    display:inline-block;

    margin:25px;

    color:#00ff88;

    text-decoration:none;

    font-weight:bold;

}

/* SOBRE MI */

.sobre{

    padding:10px 10%;

    text-align:center;

    background:transparent;

    margin: 30px;
    

}

.sobre p{

    max-width:900px;

    margin:auto;

    font-size:15px;

    line-height:2;

    color:#bdbdbd;

}

/* =====================================
FOOTER
===================================== */

.footer{

    margin-top:80px;

    padding:40px 20px;

    text-align:center;

    border-top:none;

}

.footer-content{

    max-width:1200px;

    margin:auto;

}

.footer-copy{

    color:#777;

    margin-bottom:18px;

    font-size:.95rem;

}

.footer-links{

    display:flex;

    justify-content:center;

    align-items:center;

    gap:15px;

    flex-wrap:wrap;

}

.footer-links span{

    color:#555;

}

.footer-links a{

    color:#777;

    text-decoration:none;

    transition:.3s;

    font-size: .95rem;

}

.footer-links a:hover{

    color:#64ff64;

}

/* RESPONSIVE */

@media(max-width:900px){

header{

flex-direction:column;

gap:20px;

}

nav{

flex-wrap:wrap;

justify-content:center;

}

.programas h2,
.blog h2,
.sobre h2{

font-size:42px;

}

.cards{

grid-template-columns:1fr;

}

.hero h1{

font-size:58px;

}

}

.hero-subtitle{
    margin-top:2px;
    max-width:700px;
    margin-left:auto;
    margin-right:auto;
    text-align:center;

    font-size:1rem;
    line-height:1.8;
    letter-spacing:1px;

    color:rgba(190,255,220,.85);
    text-shadow:0 0 8px rgba(0,255,136,.12);
}

.section-divider{
    width:300px;
    height:2px;

    margin:50px auto 10px;

    background:linear-gradient(
        90deg,
        transparent,
        rgba(0,255,136,.9),
        transparent
    );

    border-radius:50px;

    box-shadow:
        0 0 8px rgba(0,255,136,.45),
        0 0 18px rgba(0,255,136,.25);
}

.about-container{

    display:flex;

    align-items:center;

    gap:70px;

    margin-top:60px;

    flex-wrap:wrap;

}

.about-image img{

    width:360px;

    border-radius:20px;

    border:2px solid rgba(0,255,136,.25);

    box-shadow:0 0 30px rgba(0,255,136,.20);

}

.about-content{

    flex:1;

}

.about-content h3{

    font-size:2rem;

    color:white;

    margin-bottom:25px;

}

.about-content p{

    color:#d9d9d9;

    line-height:1.9;

    margin-bottom:25px;

}

.about-content ul{

    list-style:none;

    padding:0;

}

.about-content li{

    margin:15px 0;

    color:#00ff88;

}

.about-btn{

    display:inline-block;

    margin-top:30px;

    padding:14px 35px;

    border:1px solid #00ff88;

    border-radius:50px;

    color:#00ff88;

    text-decoration:none;

    transition:.3s;

}

.about-btn:hover{

    background:#00ff88;

    color:#000;

    box-shadow:0 0 25px rgba(0,255,136,.35);

}

/*======================================================
        PANTALLA - DOMINA TU REALIDAD
======================================================*/

.program-screen{

    position:fixed;

    top:0;
    left:0;

    width:100%;
    height:100vh;

    overflow-y:auto;

    display:none;

    opacity:0;

    background:rgba(0, 0, 0, 0.35);

    backdrop-filter:blur(10px);

    z-index:999;

    transition:opacity .8s ease;

}

.program-screen.active{

    display:block;

    opacity:1;

}

/*======================================
    ANIMACIÓN DEL CONTENIDO
======================================*/

.program-hero h1,
.hero-text,
.hero-line,
.hero-image,
.program-block{

    opacity:0;
    transform:translateY(35px);

    transition:
        opacity .7s ease,
        transform .7s ease;

}

.program-screen.active .program-hero h1{

    opacity:1;
    transform:translateY(0);
    transition-delay:.2s;

}

.program-screen.active .hero-text{

    opacity:1;
    transform:translateY(0);
    transition-delay:.45s;

}

.program-screen.active .hero-line{

    opacity:1;
    transform:translateY(0);
    transition-delay:.65s;

}

.program-screen.active .hero-image{

    opacity:1;
    transform:translateY(0);
    transition-delay:.85s;

}

.program-screen.active .program-block{

    opacity:1;
    transform:translateY(0);

}

.program-screen.active .program-block:nth-of-type(1){

    transition-delay:1.1s;

}

.program-screen.active .program-block:nth-of-type(2){

    transition-delay:1.3s;

}

.program-screen.active .program-block:nth-of-type(3){

    transition-delay:1.5s;

}

.program-screen.active .program-block:nth-of-type(4){

    transition-delay:1.7s;

}

.program-wrapper{

    width:90%;

    max-width:1100px;

    margin:auto;

    padding:100px 0 120px;

}

/*==================================
            BOTÓN VOLVER
==================================*/

.back-button{

    position:fixed;

    top:35px;

    left:35px;

    background:none;

    border:none;

    color:#00ff88;

    font-size:1rem;

    cursor:pointer;

    transition:.3s;

    z-index:1000;

}

.back-button:hover{

    color:#ffffff;

    transform:translateX(-6px);

}

/*==================================
            HERO
==================================*/

.program-hero{

    text-align:center;

    margin-bottom:90px;

}

.program-hero h1{

    font-size:3rem;

    color:#ffffff;

    margin-bottom:20px;

    text-shadow:
    0 0 10px rgba(0,255,136,.25),
    0 0 25px rgba(0,255,136,.15);

}

.hero-text{

    max-width:800px;

    margin:auto;

    color:#d5d5d5;

    font-size:1.2rem;

    line-height:1.9;
    

}

.hero-line{

    width:220px;

    height:2px;

    margin:40px auto;

    background:linear-gradient(
        90deg,
        transparent,
        #00ff88,
        transparent
    );

    box-shadow:
    0 0 10px rgba(0,255,136,.5);

}

.hero-image{

    width:30%;

    max-width:900px;

    border-radius:22px;

    border:1px solid rgba(0,255,136,.20);

    box-shadow:
    0 0 35px rgba(0,255,136,.18);

    transition:.5s;

}

.hero-image:hover{

    transform:scale(1.02);

}

/*==================================
            SECCIONES
==================================*/

.program-block{

    margin:80px 0;

}

.program-block h2{

    color:#ffffff;

    font-size:2.3rem;

    text-align:center;

    margin-bottom:35px;

}

.program-block p{

    max-width:850px;

    margin:auto;

    color:#d7d7d7;

    text-align:center;

    line-height:2;

    font-size:1.05rem;

}

/*==================================
            TARJETAS
==================================*/

.includes-grid{

    display:flex;

    justify-content:center;

    align-items:stretch;

    flex-wrap:wrap;

    gap:24px;

    margin-top:50px;

}

.include-card{

    background:rgba(255,255,255,.05);

    border:1px solid rgba(0,255,136,.18);

    border-radius:22px;

    backdrop-filter:blur(15px);

    padding:28px;

    width:280px;

    min-height:180px;

    transition:.35s;

}

.include-card:hover{

    transform:translateY(-8px);

    border-color:#00ff88;

    box-shadow:
    0 0 25px rgba(0,255,136,.20);

}

.include-card h3{

    color:#00ff88;

    margin-bottom:16px;

    font-size:1.3rem;

}

.include-card p{

    text-align:left;

    line-height:1.7;

}

/*==================================
            LISTA
==================================*/

.program-list{

    list-style:none;

    max-width:700px;

    margin:50px auto;

    padding:0;

}

.program-list li{

    color:#ffffff;

    font-size:1.1rem;

    margin:18px 0;

    padding:15px 20px;

    border-left:2px solid #00ff88;

    background:rgba(255,255,255,.03);

    border-radius:10px;

}

/*==================================
            BOTÓN APLICAR
==================================*/

.final-cta{

    text-align:center;

}

.apply-button{

    display:inline-block;

    margin-top:50px;

    padding:18px 55px;

    border-radius:60px;

    text-decoration:none;

    color:#00ff88;

    border:1px solid #00ff88;

    transition:.35s;

    font-size:1.05rem;

    font-weight:600;

}

.apply-button:hover{

    background:#00ff88;

    color:#000;

    box-shadow:
    0 0 25px rgba(0,255,136,.35);

}

/*==================================
            RESPONSIVE
==================================*/

@media(max-width:768px){

.program-hero h1{

    font-size:2.8rem;

}

.hero-text{

    font-size:1rem;

}

.program-block h2{

    font-size:1.8rem;

}

.back-button{

    left:20px;

    top:20px;

}

}

/*======================================
    EFECTO CINEMATOGRÁFICO
======================================*/

#website{

    transition:
        opacity .8s ease,
        transform .8s ease,
        filter .8s ease;

}

#website.hide{

    opacity:0;

    transform:scale(1.05);

    filter:blur(10px);

}

/*======================================
      LO QUE OBTENDRÁS
======================================*/

.benefits-box{

    border:2px solid #4cff72;

    border-radius:20px;

    padding:25px;

    margin:60px auto;

    max-width:400px;

    background:rgba(255,255,255,.03);

    box-shadow:0 0 30px rgba(76,255,114,.12);

}

.benefits-box h2{

    color:#4cff72;

    text-align:center;

    font-size:1.5rem;

    margin-bottom:24px;

}

.benefits-list{

    list-style:none;

    padding:0;

    margin:0;

}

.benefits-list li{

    color:#fff;

    font-size:1 rem;

    line-height:2;

    margin-bottom:12px;

    position:relative;

    padding-left:34px;

}

.benefits-list li::before{

    content:"✓";

    position:absolute;

    left:0;

    color:#4cff72;

    font-weight:bold;

    font-size:1.2rem;

}

/*==================================
        VIDEO RESPONSIVE
==================================*/

.video-container{

    width:85%;

    max-width:700px;

    margin:30px auto;

    border-radius:18px;

    overflow:hidden;

    border:2px solid rgba(0,255,136,.25);

    box-shadow:0 0 22px rgba(0,255,136,.12);

}

.video-container iframe{

    width:100%;

    aspect-ratio:16/9;

    display:block;

}

/*==================================
        CUADRO DE ATENCIÓN
==================================*/

.warning-box{

    max-width:600px;

    margin:40px auto;

    padding:22px 28px;

    background:rgba(255,40,40,.05);

    border:2px solid #ff3b3b;

    border-radius:18px;

    box-shadow:0 0 20px rgba(255,0,0,.18);

    text-align:center;

}

.warning-box h2{

    color:#ff4d4d;

    font-size:1.6rem;

    margin-bottom:12px;

}

.warning-box p{

    color:#f5f5f5;

    font-size:0.98rem;

    line-height:1.7;

}

.warning-box strong{

    color:white;

}

/* ========================================= */
/* BIBLIOTECA DIGITAL */
/* ========================================= */

#biblioteca-section {

    padding: 40px 20px;

}


#biblioteca-section .program-container {

    max-width: 1100px;
    margin: auto;
    text-align: center;

}


.library-grid {

    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin-top: 40px;

}


.library-card {

    background: rgba(255,255,255,0.08);
    border-radius: 20px;
    padding: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.15);
    transition: .3s;

}


.library-card:hover {

    transform: translateY(-8px);

}


.library-cover {

    width: 100%;
    max-height: 320px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 20px;

}


.library-card h3 {

    font-size: 22px;
    margin-bottom: 15px;

}


.library-card p {

    line-height: 1.6;
    margin-bottom: 20px;

}


.library-note {

    margin-top: 50px;
    padding: 25px;
    border-radius: 20px;
    background: rgba(0,0,0,0.25);

}


.program-title {

    font-size: 42px;
    margin-bottom: 20px;

}


.program-subtitle {

    font-size: 18px;
    max-width: 800px;
    margin: auto;
    line-height: 1.6;

}

/*======================================
      ARTÍCULO DEL BLOG 1
======================================*/

#articuloProposito h1{

    color:#64ff64;

}

#articuloProposito h1 + p{
    text-align: center;
    color: #d8d8d8;
    font-size: 1.2rem;
    margin: 20px auto 40px;
    max-width: 800px;
    line-height: 1.7;
}

#articuloProposito h2{

    color:#64ff64;

    margin-bottom:20px;

}

#articuloProposito p{

    color:#e6e6e6;

    line-height:2;

    font-size:18px;

    text-align:justify;

}

#articuloProposito strong{

    color:#64ff64;

}

/*=============================
  ARTÍCULO
==============================*/

#articuloProposito .program-block{
    max-width: 900px;
    margin: 0 auto 60px;
}

#articuloProposito h2{
    color:#64ff64;
    font-size:2rem;
    text-align:center;
    margin-bottom:35px;
    line-height:1.3;
}

#articuloProposito p{
    color:#d8d8d8;
    font-size:1.1rem;
    line-height:2;
    margin-bottom:22px;
    text-align:justify;
}

#articuloProposito strong{
    color:#64ff64;
    font-weight:700;
}

#articuloProposito ul{
    margin:25px 0;
    padding-left:35px;
}

#articuloProposito li{
    color:#ffffff;
    margin-bottom:18px;
    font-size:1.08rem;
    line-height:1.9;
}

#articuloProposito blockquote{
    border-left:4px solid #64ff64;
    padding-left:20px;
    margin:35px 0;
    color:#ffffff;
    font-style:italic;
}

#articuloProposito hr{
    border:none;
    height:1px;
    background:#64ff64;
    width:180px;
    margin:40px auto;
}

/*======================================
      ARTÍCULO DEL BLOG 2
======================================*/

#articuloMente h1{

    color:#64ff64;

}

#articuloMente h1 + p{
    text-align: center;
    color: #d8d8d8;
    font-size: 1.2rem;
    margin: 20px auto 40px;
    max-width: 800px;
    line-height: 1.7;
}

#articuloMente h2{

    color:#64ff64;

    margin-bottom:20px;

}

#articuloMente p{

    color:#e6e6e6;

    line-height:2;

    font-size:18px;

    text-align:justify;

}

#articuloMente strong{

    color:#64ff64;

}

/*=============================
  ARTÍCULO
==============================*/

#articuloMente .program-block{
    max-width: 900px;
    margin: 0 auto 60px;
}

#articuloMente h2{
    color:#64ff64;
    font-size:2rem;
    text-align:center;
    margin-bottom:35px;
    line-height:1.3;
}

#articuloMente p{
    color:#d8d8d8;
    font-size:1.1rem;
    line-height:2;
    margin-bottom:22px;
    text-align:justify;
}

#articuloMente strong{
    color:#64ff64;
    font-weight:700;
}

#articuloMente ul{
    margin:25px 0;
    padding-left:35px;
}

#articuloMente li{
    color:#ffffff;
    margin-bottom:18px;
    font-size:1.08rem;
    line-height:1.9;
}

#articuloMente blockquote{
    border-left:4px solid #64ff64;
    padding-left:20px;
    margin:35px 0;
    color:#ffffff;
    font-style:italic;
}

#articuloMente hr{
    border:none;
    height:1px;
    background:#64ff64;
    width:180px;
    margin:40px auto;
}

/*======================================
      ARTÍCULO DEL BLOG 3
======================================*/

#articuloDisciplina h1{

    color:#64ff64;

}

#articuloDisciplina h1 + p{
    text-align: center;
    color: #d8d8d8;
    font-size: 1.2rem;
    margin: 20px auto 40px;
    max-width: 800px;
    line-height: 1.7;
}

#articuloDisciplina h2{

    color:#64ff64;

    margin-bottom:20px;

}

#articuloDisciplina p{

    color:#e6e6e6;

    line-height:2;

    font-size:18px;

    text-align:justify;

}

#articuloDisciplina strong{

    color:#64ff64;

}

/*=============================
  ARTÍCULO
==============================*/

#articuloDisciplina .program-block{
    max-width: 900px;
    margin: 0 auto 60px;
}

#articuloDisciplina h2{
    color:#64ff64;
    font-size:2rem;
    text-align:center;
    margin-bottom:35px;
    line-height:1.3;
}

#articuloDisciplina p{
    color:#d8d8d8;
    font-size:1.1rem;
    line-height:2;
    margin-bottom:22px;
    text-align:justify;
}

#articuloDisciplina strong{
    color:#64ff64;
    font-weight:700;
}

#articuloDisciplina ul{
    margin:25px 0;
    padding-left:35px;
}

#articuloDisciplina li{
    color:#ffffff;
    margin-bottom:18px;
    font-size:1.08rem;
    line-height:1.9;
}

#articuloDisciplina blockquote{
    border-left:4px solid #64ff64;
    padding-left:20px;
    margin:35px 0;
    color:#ffffff;
    font-style:italic;
}

#articuloDisciplina hr{
    border:none;
    height:1px;
    background:#64ff64;
    width:180px;
    margin:40px auto;
}

/* ======================================================
   AVISO DE PRIVACIDAD / TÉRMINOS Y CONDICIONES
====================================================== */

#avisoPrivacidad{

    background:#d7d7d7;

    color:#111;

    min-height:100vh;

    overflow-y:auto;

    padding:90px 25px;

}

#TerminosCondiciones{

    background:#d7d7d7;

    color:#111;

    min-height:100vh;

    overflow-y:auto;

    padding:90px 25px;

}

/* ========= CONTENEDOR ========= */

.legal-wrapper{

    width:100%;

    display:flex;

    justify-content:center;

    align-items:flex-start;

}

/* ========= DOCUMENTO ========= */

.legal-document{

    width:100%;

    max-width:950px;

    background:#f4f4f4;

    border-radius:18px;

    padding:70px;

    box-shadow:
        0 10px 35px rgba(0,0,0,.15);

}

/* ========= TITULO PRINCIPAL ========= */

.legal-document h1{

    font-size:3.3rem;

    color:#111;

    font-weight:800;

    text-transform:uppercase;

    letter-spacing:1px;

    margin-bottom:25px;

    text-align: center;

}

/* ========= TEXTO ACCIÓN Y PROPÓSITO ========= */

.legal-document > p:first-of-type{

    font-size:1.2rem;

    margin-bottom:8px;

}

/* ========= FECHA ========= */

.legal-update{

    color:#666;

    font-size:1rem;

    margin-bottom:40px;

}

/* ========= SUBTÍTULOS ========= */

.legal-document h2{

    font-size:2.25rem;

    color:#111;

    font-weight:800;

    line-height:1.25;

    margin-top:10px;

    margin-bottom:28px;

    text-align: left;

}

/* ========= PÁRRAFOS ========= */

.legal-document p{

    color:#222;

    font-size:1.08rem;

    line-height:2;

    margin-bottom:22px;

    text-align:justify;

}

/* ========= NEGRITAS ========= */

.legal-document strong{

    font-weight:800;

    color:#000;

}

/* ========= ENLACES ========= */

.email-link{

    color:#111;

    text-decoration:none;

    font-weight:700;

    transition:.25s;

}

.email-link:hover{

    color:#0b8b4d;

}

/* ========= LÍNEAS DIVISORIAS ========= */

.legal-document hr{

    border:none;

    height:1px;

    background:#c8c8c8;

    margin:50px 0;

}

/* ========= BOTÓN VOLVER ========= */

#avisoPrivacidad .back-button{

    position:fixed;

    top:30px;

    left:30px;

    z-index:999;

    color: #000;

}

#TerminosCondiciones .back-button{

    position:fixed;

    top:30px;

    left:30px;

    z-index:999;

    color: #000;

}

/* ========= BOTÓN FINAL ========= */

.legal-end{

    margin-top:70px;

    text-align:center;

}

.premium-badge{
    display:inline-block;

    margin-top:16px;
    margin-bottom:15x;

    border:1px solid gold;
    color:gold;

    padding:4px 12px;

    border-radius:20px;

    font-size:8px;
    font-weight:700;
    float: right;

}

/* Al final de style.css */

/* ==========================================================
        RESPONSIVE v3.0 - PARTE 1
        Splash · Hero · Header · Menú Principal
==========================================================*/

@media screen and (max-width: 768px){

    /* ===========================
       GENERAL
    =========================== */

    body{
        overflow-x:hidden;
    }

    section{
        padding-left:20px !important;
        padding-right:20px !important;
    }

    /* ===========================
       SPLASH
    =========================== */

    .hero{
        max-width:100%;
        padding:20px;
    }

    .marca{
        font-size:11px;
        letter-spacing:4px;
        margin-bottom:18px;
    }

    .hero h1{
        font-size:48px !important;
        line-height:1.05;
        margin-bottom:20px;
    }

    .hero-divider{
        width:170px;
        margin:22px auto 28px;
    }

    .frase{
        font-size:17px;
        line-height:1.7;
        margin-bottom:35px;
        padding:0 10px;
    }

    .hero-subtitle{
        font-size:.90rem;
        line-height:1.7;
        padding:0 10px;
    }

    #entrar{
        padding:14px 34px;
        font-size:15px;
    }

    /* ===========================
       HEADER
    =========================== */

    header{

        padding:18px 20px;

        flex-direction:column;

        gap:18px;

    }

    .logo{

        font-size:22px;

        text-align:center;

    }

    nav{

        width:100%;

        display:grid;

        grid-template-columns:repeat(2,1fr);

        gap:12px;

    }

    nav a{

        text-align:center;

        padding:10px;

        border:1px solid rgba(255,255,255,.08);

        border-radius:14px;

        background:rgba(255,255,255,.03);

        font-size:14px;

    }

    /* ===========================
       TITULOS
    =========================== */

    .programas{

        padding-top:35px;

    }

    .programas h2{

        font-size:36px !important;

        margin-bottom:15px;

    }

    .blog h2{

        font-size:36px !important;

    }

    .sobre h2{

        font-size:36px !important;

    }

    .program-subtitle{

        font-size:15px;

        line-height:1.7;

        max-width:95%;

    }

    /* ===========================
       TARJETAS PRINCIPALES
    =========================== */

    .cards{

        grid-template-columns:repeat(2,1fr);

        gap:16px;

        margin-top:35px;

    }

    .card{

        padding:20px;

        border-radius:18px;

    }

    .numero{

        width:38px;

        height:38px;

        font-size:14px;

        margin-bottom:16px;

    }

    .card span{

        font-size:10px;

        letter-spacing:1px;

    }

    .card h3{

        font-size:13px;

        margin-bottom:8px;

    }

    .card h4{

        font-size:20px;

        margin-bottom:12px;

        line-height:1.3;

    }

    .card p{

        font-size:13px;

        line-height:1.6;

        margin-bottom:18px;

    }

    .card button{

        width:100%;

        padding:12px;

        font-size:13px;

    }

}

/* ===========================================
   iPhone SE / Mini
=========================================== */

@media screen and (max-width:430px){

    .hero h1{

        font-size:40px !important;

    }

    .cards{

        grid-template-columns:repeat(2,1fr);

        gap:12px;

    }

    .card{

        padding:16px;

    }

    .card h4{

        font-size:17px;

    }

    .card p{

        display:none;

    }

}

/* ======================================================
   RESPONSIVE v3.0 - PARTE 2
   SOBRE MI | BIBLIOTECA | PREMIUM | CONSULTORIA
   Acción y Propósito
   ====================================================== */


/* ===============================
   SOBRE MI
   =============================== */

@media (max-width: 768px) {

    .sobre-container,
    .about-container {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }


    .sobre-img,
    .about-img {
        width: 80%;
        max-width: 320px;
        margin: auto;
    }


    .sobre-texto,
    .about-text {
        width: 100%;
        font-size: 0.95rem;
        line-height: 1.7;
    }


    .sobre-texto h2,
    .about-text h2 {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }


    .sobre-texto h3,
    .about-text h3 {
        font-size: 1.2rem;
    }

}



/* ===============================
   BIBLIOTECA
   =============================== */

@media (max-width: 768px) {


    .biblioteca-container,
    .library-container {

        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
        padding: 10px;

    }


    .libro-card,
    .ebook-card,
    .material-card {

        padding: 15px;
        border-radius: 15px;

    }


    .libro-card img,
    .ebook-card img,
    .material-card img {

        width: 100%;
        height: auto;
        margin-bottom: 12px;

    }


    .libro-card h3,
    .ebook-card h3,
    .material-card h3 {

        font-size: 0.95rem;

    }


    .libro-card p,
    .ebook-card p,
    .material-card p {

        font-size: 0.80rem;
        line-height: 1.4;

    }


    .libro-card button,
    .ebook-card button,
    .material-card button {

        width: 100%;
        font-size: 0.75rem;
        padding: 10px 8px;

    }

}



/* ===============================
   PROGRAMA PREMIUM
   =============================== */


@media (max-width: 768px) {


    .premium-container,
    .programa-container {

        display: flex;
        flex-direction: column;
        gap: 25px;

    }


    .premium-card,
    .programa-card {

        padding: 20px;
        border-radius: 18px;

    }


    .premium-card h2,
    .programa-card h2 {

        font-size: 1.4rem;

    }


    .premium-card h3,
    .programa-card h3 {

        font-size: 1.1rem;

    }


    .premium-card p,
    .programa-card p {

        font-size: 0.90rem;
        line-height: 1.6;

    }


    .premium-card ul,
    .programa-card ul {

        padding-left: 18px;
        text-align: left;

    }


    .premium-card li,
    .programa-card li {

        font-size: 0.85rem;
        margin-bottom: 8px;

    }


    .premium-card button,
    .programa-card button {

        width: 100%;
        margin-top: 15px;

    }

}



/* ===============================
   CONSULTORIA
   =============================== */


@media (max-width: 768px) {


    .consultoria-container,
    .coaching-container {

        flex-direction: column;
        gap: 25px;

    }


    .consultoria-card,
    .coaching-card {

        width: 100%;
        padding: 20px;

    }


    .consultoria-card h2,
    .coaching-card h2 {

        font-size: 1.5rem;

    }


    .consultoria-card p,
    .coaching-card p {

        font-size: 0.9rem;
        line-height: 1.6;

    }


    .consultoria-card .btn,
    .coaching-card .btn {

        width: 100%;
        padding: 12px;

    }


}



/* ===============================
   AJUSTES IPHONE PEQUEÑO
   430px
   =============================== */


@media (max-width: 430px) {


    .biblioteca-container,
    .library-container {

        gap: 12px;

    }


    .libro-card,
    .ebook-card,
    .material-card {

        padding: 12px;

    }


    .libro-card h3,
    .ebook-card h3,
    .material-card h3 {

        font-size: 0.85rem;

    }


    .premium-card,
    .programa-card,
    .consultoria-card {

        padding: 15px;

    }


    .premium-card h2,
    .programa-card h2,
    .consultoria-card h2 {

        font-size: 1.25rem;

    }


}

/* ======================================================
   RESPONSIVE v3.0 - PARTE 3
   BLOG | ARTICULOS | PRIVACIDAD | TERMINOS
   Acción y Propósito
   ====================================================== */


/* ===============================
   BLOG
   =============================== */


@media (max-width: 768px) {


    .blog-container,
    .posts-container,
    .blog-grid {

        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
        padding: 10px;

    }


    .blog-card,
    .post-card,
    .article-card {

        padding: 15px;
        border-radius: 18px;

    }


    .blog-card img,
    .post-card img,
    .article-card img {

        width: 100%;
        height: auto;
        border-radius: 12px;

    }


    .blog-card h2,
    .post-card h2,
    .article-card h2 {

        font-size: 1rem;
        line-height: 1.3;

    }


    .blog-card p,
    .post-card p,
    .article-card p {

        font-size: 0.82rem;
        line-height: 1.5;

    }


    .blog-card button,
    .post-card button,
    .article-card button {

        width: 100%;
        font-size: 0.75rem;
        padding: 10px;

    }

}



/* ===============================
   ARTICULO COMPLETO
   =============================== */


@media (max-width: 768px) {


    .article-container,
    .articulo-container,
    .article-content {

        width: 100%;
        padding: 20px 15px;
        margin: auto;

    }


    .article-content h1,
    .articulo-container h1 {

        font-size: 1.8rem;
        line-height: 1.25;
        text-align: center;
        margin-bottom: 20px;

    }


    .article-content h2,
    .articulo-container h2 {

        font-size: 1.35rem;
        margin-top: 25px;
        margin-bottom: 12px;

    }


    .article-content h3,
    .articulo-container h3 {

        font-size: 1.1rem;

    }


    .article-content p,
    .articulo-container p {

        font-size: 0.95rem;
        line-height: 1.75;
        text-align: justify;

    }


    .article-content ul,
    .article-content ol {

        padding-left: 20px;

    }


    .article-content li {

        font-size: 0.92rem;
        line-height: 1.6;
        margin-bottom: 8px;

    }


}



/* ===============================
   BOTON REGRESAR ARTICULO
   =============================== */


@media (max-width: 768px) {


    .btn-back,
    .back-button,
    .volver-btn {

        width: 100%;
        text-align: center;
        padding: 12px;
        font-size: 0.85rem;
        margin-bottom: 20px;

    }

}



/* ===============================
   AVISO PRIVACIDAD
   =============================== */


@media (max-width: 768px) {


    .privacy-container,
    .privacidad-container,
    .legal-container {


        width: 100%;
        padding: 20px 15px;

    }



    .privacy-container h1,
    .privacidad-container h1 {


        font-size: 1.7rem;
        text-align: center;

    }



    .privacy-container h2,
    .privacidad-container h2 {


        font-size: 1.25rem;
        margin-top: 25px;

    }



    .privacy-container p,
    .privacidad-container p {


        font-size: 0.9rem;
        line-height: 1.7;
        text-align: justify;

    }



    .privacy-container li,
    .privacidad-container li {


        font-size: 0.88rem;
        line-height: 1.6;

    }


}



/* ===============================
   TERMINOS Y CONDICIONES
   =============================== */


@media (max-width: 768px) {


    .terms-container,
    .terminos-container {


        width: 100%;
        padding: 20px 15px;

    }



    .terms-container h1,
    .terminos-container h1 {


        font-size: 1.7rem;
        text-align: center;

    }



    .terms-container h2,
    .terminos-container h2 {


        font-size: 1.25rem;

    }



    .terms-container p,
    .terminos-container p {


        font-size: 0.9rem;
        line-height: 1.7;
        text-align: justify;

    }



}



/* ===============================
   AJUSTE IPHONE SE / MINI
   =============================== */


@media (max-width: 430px) {


    .blog-container,
    .posts-container,
    .blog-grid {


        grid-template-columns: 1fr;

    }



    .article-content,
    .articulo-container {


        padding: 15px 12px;

    }



    .article-content h1,
    .articulo-container h1 {


        font-size: 1.5rem;

    }



    .article-content p,
    .articulo-container p {


        font-size: 0.9rem;

    }



    .privacy-container,
    .terms-container {


        padding: 15px 12px;

    }


}

/* ======================================================
   RESPONSIVE v3.0 - PARTE 4
   AJUSTES FINALES | SAFARI | OPTIMIZACION MOVIL
   Acción y Propósito
   ====================================================== */


/* ===============================
   AJUSTES GLOBALES MOVIL
   =============================== */


@media (max-width: 768px) {


    html,
    body {

        overflow-x: hidden;
        width: 100%;

    }


    * {

        max-width: 100%;

    }



    section {

        padding-left: 15px;
        padding-right: 15px;

    }



    img {

        max-width: 100%;
        height: auto;

    }



    h1,
    h2,
    h3 {

        word-wrap: break-word;

    }


}



/* ===============================
   HEADER / NAVEGACION SAFARI
   =============================== */


@media (max-width: 768px) {


    header {

        position: relative;
        width: 100%;
        overflow: hidden;

    }


    nav {

        width: 100%;

    }


    nav a {

        white-space: normal;
        text-align: center;

    }


}



/* ===============================
   BOTONES GENERALES
   =============================== */


@media (max-width: 768px) {


    button,
    .btn,
    a.btn,
    .cta-button {


        min-height: 42px;
        padding: 12px 18px;
        font-size: 0.85rem;
        border-radius: 12px;

    }



    button:hover,
    .btn:hover {

        transform: none;

    }



}



/* ===============================
   TARJETAS GLASSMORPHISM
   =============================== */


@media (max-width: 768px) {


    .card,
    .glass-card,
    .premium-card,
    .blog-card,
    .material-card {


        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);

    }



}



/* ===============================
   TITULOS GENERALES
   =============================== */


@media (max-width: 768px) {


    .section-title,
    .titulo-seccion {


        font-size: 1.8rem;
        line-height: 1.3;
        text-align: center;

    }



    .section-subtitle,
    .subtitulo-seccion {


        font-size: 0.95rem;
        line-height: 1.6;
        text-align: center;

    }



}




/* ===============================
   ANIMACIONES MOVIL
   =============================== */


@media (max-width: 768px) {


    .fade-in,
    .reveal,
    .animate {


        animation-duration: 0.8s !important;

    }



    .hover-effect:hover,
    .card:hover {


        transform: none;

    }



}



/* ===============================
   AJUSTE FORMULARIOS
   =============================== */


@media (max-width: 768px) {


    input,
    textarea,
    select {


        width: 100%;
        font-size: 16px;
        padding: 12px;

    }



    form {


        width: 100%;

    }



}



/* ===============================
   FOOTER
   =============================== */


@media (max-width: 768px) {


    footer {


        padding: 30px 15px;
        text-align: center;

    }



    footer p {


        font-size: 0.85rem;
        line-height: 1.5;

    }



    footer a {


        font-size: 0.85rem;

    }



}



/* ===============================
   IPHONE PEQUEÑO
   430px
   =============================== */


@media (max-width: 430px) {


    body {


        font-size: 15px;

    }



    section {


        padding-top: 35px;
        padding-bottom: 35px;

    }



    h1 {


        font-size: 1.6rem;

    }



    h2 {


        font-size: 1.35rem;

    }



    h3 {


        font-size: 1.1rem;

    }



    p {


        line-height: 1.65;

    }



    .btn,
    button {


        width: 100%;

    }



}



/* ===============================
   TABLETS
   769px - 1024px
   =============================== */


@media (min-width:769px) and (max-width:1024px) {


    .container {


        width: 90%;
        margin:auto;

    }



    .cards-container,
    .grid-container {


        grid-template-columns: repeat(2,1fr);

    }



}



/* ======================================================
   FIN RESPONSIVE v3.0
   Acción y Propósito
   ====================================================== */
   
   /* ======================================================
   RESPONSIVE DOCUMENTOS LEGALES
   AVISO DE PRIVACIDAD
   TÉRMINOS Y CONDICIONES
====================================================== */

@media screen and (max-width:768px){

    /* Pantalla completa */

    #avisoPrivacidad,
    #terminosCondiciones{

        padding:20px 15px !important;

        overflow-x:hidden;

    }


    /* Hoja del documento */

    .legal-wrapper{

        width:100%;

        padding:0;

        margin:auto;

    }


    .legal-document{

        width:100%;

        max-width:100%;

        padding:25px 20px;

        margin:auto;

        box-sizing:border-box;

        border-radius:18px;

    }


    /* TITULO */

    .legal-document h1{

        font-size:1.8rem;

        text-align:center;

        line-height:1.3;

        margin-bottom:25px;

    }


    /* SUBTITULOS */

    .legal-document h2{

        font-size:1.2rem;

        line-height:1.4;

        margin-bottom:15px;

        margin-top:30px;

    }


    /* PARRAFOS */

    .legal-document p{

        font-size:.95rem;

        line-height:1.8;

        text-align:left;

        margin-bottom:15px;

    }


    /* LISTAS */

    .legal-document ul{

        padding-left:22px;

        margin:15px 0;

    }

    .legal-document li{

        font-size:.92rem;

        line-height:1.8;

        margin-bottom:10px;

    }


    /* LINEAS */

    .legal-document hr{

        margin:30px 0;

    }


    /* EMAIL */

    .legal-document a{

        word-break:break-word;

    }

}



/* ===============================
   IPHONE
================================ */

@media screen and (max-width:430px){

    .legal-document{

        padding:18px 16px;

    }

    .legal-document h1{

        font-size:1.5rem;

    }

    .legal-document h2{

        font-size:1.05rem;

    }

    .legal-document p{

        font-size:.88rem;

    }

    .legal-document li{

        font-size:.88rem;

    }

}

/* ======================================================
   BOTÓN "VOLVER" FIJO EN LA PARTE SUPERIOR
   Funciona en todas las pantallas
====================================================== */

.back-button{

    position: sticky;

    top: 15px;

    left: 15px;

    z-index: 9999;

    display: inline-flex;

    align-items: center;

    gap: 8px;

    padding: 12px 22px;

    border-radius: 12px;

    backdrop-filter: blur(12px);

    -webkit-backdrop-filter: blur(12px);

    box-shadow: 0 8px 25px rgba(0,0,0,.35);

    margin-bottom:25px;

}

/* ======================================================
   BOTÓN VOLVER - DOCUMENTOS LEGALES
   Aviso de Privacidad y Términos
====================================================== */

#avisoPrivacidad .back-button,
#terminosCondiciones .back-button{

    position: fixed !important;

    top: 20px;

    left: 20px;

    z-index: 10000;

}

/* ==========================================
   BOTÓN DENTRO DEL DOCUMENTO
========================================== */

#avisoPrivacidad .back-button,
#terminosCondiciones .back-button{

    position: relative !important;
    display: inline-block;
    margin-bottom: 20px;

    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;

    z-index: 1;
}