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

html{
scroll-behavior:smooth;
}

body{
background:#050505;
font-family:'Inter',sans-serif;
color:white;
overflow-x:hidden;
}

a{
text-decoration:none;
color:white;
}

.startup-popup{
position:fixed;
inset:0;
background:rgba(0,0,0,.82);
display:flex;
justify-content:center;
align-items:center;
z-index:999999;
backdrop-filter:blur(14px);
}

.popup-box{
width:440px;
padding:50px;
background:#0c0c0c;
border:1px solid rgba(255,255,255,.08);
position:relative;
text-align:center;
}

.popup-mini{
font-size:11px;
letter-spacing:4px;
color:#888;
margin-bottom:16px;
}

.popup-box h2{
font-size:58px;
line-height:.9;
letter-spacing:-3px;
margin-bottom:22px;
}

.popup-box p{
line-height:1.8;
color:#bdbdbd;
margin-bottom:32px;
}

.close-popup{
position:absolute;
top:18px;
right:18px;
background:none;
border:none;
color:white;
font-size:20px;
cursor:pointer;
}

.header{
position:fixed;
top:0;
width:100%;
padding:28px 60px;
display:flex;
align-items:center;
z-index:9999;
background:rgba(0,0,0,.35);
backdrop-filter:blur(18px);
border-bottom:1px solid rgba(255,255,255,.05);
}

.brand{
font-size:17px;
letter-spacing:6px;
font-weight:500;
}

.nav{
margin-left:auto;
display:flex;
gap:34px;
padding-right:40px;
}

.nav a{
font-size:11px;
letter-spacing:2px;
position:relative;
padding-bottom:8px;
}

.nav a::after{
content:'';
position:absolute;
left:0;
bottom:0;
width:0;
height:1px;
background:#d5ab67;
transition:.35s ease;
}

.nav a:hover::after{
width:100%;
}

.hero{
height:100vh;
position:relative;
display:flex;
align-items:center;
padding:0 60px;
overflow:hidden;
}

.hero-video{
position:absolute;
inset:0;
width:100%;
height:100%;
object-fit:cover;
filter:brightness(.18) grayscale(100%);
}

.overlay{
position:absolute;
inset:0;
background:linear-gradient(to right,rgba(0,0,0,.96),rgba(0,0,0,.55));
}

.hero-content{
position:relative;
z-index:2;
max-width:760px;
}

.hero-kicker,
.section-mini{
font-size:11px;
letter-spacing:5px;
color:#999;
margin-bottom:24px;
}

.hero h1,
.enemy h2,
.final-cta h2,
.executor h2{
font-size:138px;
line-height:.82;
letter-spacing:-7px;
font-weight:900;
}

.hero p,
.executor p,
.enemy p,
.final-cta p{
margin-top:28px;
line-height:1.9;
max-width:520px;
color:#d0d0d0;
}

.hero-buttons{
display:flex;
gap:18px;
margin-top:42px;
}

.gold-btn,
.glass-btn,
.header-btn,
.card-btn{
padding:16px 30px;
font-size:11px;
letter-spacing:2px;
transition:.35s ease;
display:inline-block;
}

.gold-btn,
.header-btn,
.card-btn{
background:#d5ab67;
color:black;
font-weight:700;
}

.glass-btn{
border:1px solid rgba(255,255,255,.1);
}

.executor,
.programs,
.final-cta{
padding:140px 60px;
}

.executor{
display:grid;
grid-template-columns:1fr 1fr;
gap:60px;
}

.executor-card{
padding:50px;
border:1px solid rgba(255,255,255,.06);
background:rgba(255,255,255,.02);
}

.executor-card h3{
font-size:42px;
margin-bottom:22px;
letter-spacing:-2px;
}

.enemy{
height:90vh;
position:relative;
display:flex;
align-items:center;
padding:0 60px;
background:url('https://images.unsplash.com/photo-1517836357463-d25dfeac3438?q=80&w=1600&auto=format&fit=crop') center/cover;
}

.enemy-overlay{
position:absolute;
inset:0;
background:rgba(0,0,0,.72);
}

.enemy-content{
position:relative;
z-index:2;
max-width:720px;
}

.section-title{
font-size:58px;
text-align:center;
letter-spacing:-3px;
margin-bottom:80px;
}

.program-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:24px;
}

.program-card{
padding:42px;
border:1px solid rgba(255,255,255,.06);
background:rgba(255,255,255,.02);
transition:.35s ease;
}

.program-card:hover{
transform:translateY(-8px);
border-color:rgba(213,171,103,.2);
}

.icon{
width:74px;
height:74px;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
font-size:32px;
margin-bottom:28px;
}

.gold{
background:rgba(213,171,103,.12);
color:#d5ab67;
}

.blue{
background:rgba(84,138,255,.12);
color:#7ea8ff;
}

.red{
background:rgba(255,88,88,.12);
color:#ff7b7b;
}

.program-card h3{
font-size:24px;
margin-bottom:18px;
}

.program-card p{
line-height:1.8;
margin-bottom:28px;
color:#cfcfcf;
}

.final-cta{
text-align:center;
}

.large-btn{
margin-top:40px;
}

.footer{
display:grid;
grid-template-columns:1fr 1fr 1fr;
align-items:center;
padding:40px 60px;
border-top:1px solid rgba(255,255,255,.05);
}

.footer-name{
font-size:14px;
letter-spacing:5px;
margin-bottom:10px;
}

.footer-tag,
.copy,
.connect{
font-size:10px;
letter-spacing:3px;
color:#777;
}

.footer-center{
text-align:center;
}

.executor-title{
font-size:24px;
letter-spacing:6px;
margin-bottom:10px;
}

.footer-right{
display:flex;
flex-direction:column;
align-items:flex-end;
}

.socials{
display:flex;
gap:18px;
margin-top:16px;
}

.social{
width:58px;
height:58px;
border:1px solid rgba(255,255,255,.08);
display:flex;
align-items:center;
justify-content:center;
border-radius:16px;
background:rgba(255,255,255,.02);
backdrop-filter:blur(10px);
transition:all .45s cubic-bezier(.19,1,.22,1);
position:relative;
overflow:hidden;
}

.social::before{
content:'';
position:absolute;
inset:0;
background:linear-gradient(
135deg,
rgba(255,255,255,.08),
transparent
);
opacity:0;
transition:.45s ease;
}

.social svg{
width:22px;
height:22px;
color:white;
transition:.45s cubic-bezier(.19,1,.22,1);
position:relative;
z-index:2;
}

.social:hover{
transform:translateY(-8px) scale(1.06);
border-color:rgba(255,255,255,.18);
box-shadow:
0 10px 35px rgba(0,0,0,.45);
}

.social:hover::before{
opacity:1;
}

.instagram:hover{
background:linear-gradient(
135deg,
rgba(131,58,180,.22),
rgba(253,29,29,.18),
rgba(252,176,69,.18)
);
}

.tiktok:hover{
background:linear-gradient(
135deg,
rgba(0,242,234,.16),
rgba(255,0,80,.16)
);
}

.youtube:hover{
background:linear-gradient(
135deg,
rgba(255,0,0,.18),
rgba(120,0,0,.18)
);
}

.twitter:hover{
background:linear-gradient(
135deg,
rgba(255,255,255,.08),
rgba(120,120,120,.08)
);
}

.social:hover svg{
transform:scale(1.12) rotate(3deg);
}
@media(max-width:1100px){

.nav{
display:none;
}

.hero h1,
.enemy h2,
.final-cta h2,
.executor h2{
font-size:72px;
}

.executor,
.program-grid,
.footer{
grid-template-columns:1fr;
}

.footer{
gap:40px;
text-align:center;
}

.footer-right{
align-items:center;
}

}

/* ======================================= */
/* PEGAR AL FINAL DE TU styles.css */
/* ======================================= */

.story-section{
    padding:140px 60px;
    display:grid;
    grid-template-columns:1fr 1fr 1fr;
    gap:40px;
    align-items:center;
    background:#050505;
}

.story-card{
    display:flex;
    flex-direction:column;
}

.story-image{
    height:520px;
    border-radius:26px;
    overflow:hidden;
    border:1px solid rgba(255,255,255,.05);
}

.story-image img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.grayscale img{
    filter:grayscale(100%) brightness(.75);
}

.story-center{
    text-align:center;
}

.story-center h2{
    font-size:78px;
    line-height:.9;
    letter-spacing:-4px;
    font-weight:900;
}

.story-center p{
    margin-top:24px;
    color:#bdbdbd;
    letter-spacing:2px;
}

.story-tag{
    margin-top:18px;
    font-size:11px;
    letter-spacing:4px;
    color:#8d8d8d;
}

.gold-text{
    color:#d5ab67;
}

.results-section{
    padding:140px 60px;
    background:#050505;
}

.results-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:24px;
}

.result-card{
    padding:48px;
    border:1px solid rgba(255,255,255,.06);
    background:rgba(255,255,255,.02);
    transition:.35s ease;
}

.result-card:hover{
    transform:translateY(-8px);
    border-color:rgba(213,171,103,.2);
}

.metric{
    font-size:72px;
    font-weight:900;
    color:#d5ab67;
    margin-bottom:18px;
}

.result-card p{
    color:#d0d0d0;
    font-size:18px;
}

@media(max-width:1100px){

    .story-section,
    .results-grid{
        grid-template-columns:1fr;
    }

    .story-center h2{
        font-size:64px;
    }

}
/* ========================= */
/* FILOSOFÍA PREMIUM */
/* ========================= */

.filosofia{
padding:120px 8%;
border-top:1px solid rgba(255,255,255,.05);
border-bottom:1px solid rgba(255,255,255,.05);
background:#050505;
position:relative;
}

.section-mini-title{
text-align:center;
font-size:13px;
letter-spacing:6px;
color:#d1d1d1;
margin-bottom:70px;
font-weight:600;
}

.filosofia-grid{
display:grid;
grid-template-columns:repeat(6,1fr);
gap:0;
}

.filosofia-card{
padding:40px 20px;
border-left:1px solid rgba(255,255,255,.05);
display:flex;
flex-direction:column;
align-items:center;
justify-content:center;
text-align:center;
transition:.5s cubic-bezier(.19,1,.22,1);
position:relative;
overflow:hidden;
}

.filosofia-card:last-child{
border-right:1px solid rgba(255,255,255,.05);
}

.filosofia-card::before{
content:'';
position:absolute;
inset:0;
background:linear-gradient(
180deg,
rgba(255,255,255,.04),
transparent
);
opacity:0;
transition:.5s ease;
}

.filosofia-card:hover{
transform:translateY(-10px);
}

.filosofia-card:hover::before{
opacity:1;
}

.filosofia-icon{
width:52px;
height:52px;
margin-bottom:28px;
display:flex;
align-items:center;
justify-content:center;
}

.filosofia-icon svg{
width:100%;
height:100%;
filter:
drop-shadow(0 0 12px rgba(230,194,122,.12));
transition:.5s ease;
}

.filosofia-card:hover svg{
transform:scale(1.08);
filter:
drop-shadow(0 0 18px rgba(230,194,122,.28));
}

.filosofia-card h3{
font-size:14px;
line-height:1.9;
letter-spacing:2px;
font-weight:600;
color:#f5f5f5;
}

@media(max-width:1100px){

.filosofia-grid{
grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:700px){

.filosofia-grid{
grid-template-columns:1fr;
}

}
/* HERO PREMIUM */

/* HERO PREMIUM */

.hero{
min-height:100vh;

display:flex;

align-items:center;

padding:140px 8% 100px;

position:relative;

overflow:hidden;

/* IMAGEN HERO COMPLETA */
background-image:url("img/hero.jpeg");

background-size:contain;

background-position:85% center+;

background-repeat:no-repeat;
}

/* OSCURECER IZQUIERDA PARA LEER TEXTO */
.hero-overlay{
position:absolute;

inset:0;

background:linear-gradient(
90deg,
rgba(0,0,0,.96) 0%,
rgba(0,0,0,.82) 35%,
rgba(0,0,0,.45) 60%,
rgba(0,0,0,.10) 100%
);

z-index:1;
}

.hero::before{
content:'';
position:absolute;
inset:0;
background:
radial-gradient(circle at right,
rgba(255,215,140,.05),
transparent 40%);
pointer-events:none;
z-index:1;
}

.hero-left{
position:relative;

z-index:2;

max-width:850px;
}

.hero-top-text{
font-size:12px;
letter-spacing:8px;
color:#7d7d7d;
margin-bottom:30px;
}

.hero h1{

font-size:clamp(72px,8vw,140px);

line-height:.88;

font-weight:900;

letter-spacing:-7px;

color:white;

margin-bottom:30px;

max-width:950px;
}

.hero p{

font-size:24px;

line-height:1.7;

max-width:760px;

color:#d5d5d5;

margin-bottom:40px;
}

.hero-buttons{
display:flex;
gap:20px;
flex-wrap:wrap;
}

.btn-primary{
padding:18px 34px;
background:#c89b5d;
color:black;
font-size:12px;
letter-spacing:3px;
text-decoration:none;
font-weight:700;
transition:.4s ease;
}

.btn-primary:hover{
transform:translateY(-4px);
box-shadow:
0 15px 40px rgba(200,155,93,.3);
}

.btn-secondary{
padding:18px 34px;
border:1px solid rgba(255,255,255,.15);
color:white;
font-size:12px;
letter-spacing:3px;
text-decoration:none;
transition:.4s ease;
}

.btn-secondary:hover{
background:white;
color:black;
}

@media(max-width:1100px){

.hero{
padding-top:180px;
background-position:center;
}

.hero h1{
font-size:78px;
}

}

@media(max-width:700px){

.hero h1{
font-size:56px;
}

.hero p{
font-size:16px;
}

}
/* ========================= */
/* ULTRA SCROLL CINEMATIC */
/* ========================= */

section{
opacity:0;
transform:
translateY(140px)
scale(.92);
filter:blur(12px);

transition:
opacity 1.4s cubic-bezier(.19,1,.22,1),
transform 1.4s cubic-bezier(.19,1,.22,1),
filter 1.4s ease;

will-change:
transform,
opacity,
filter;
}

section.show{
opacity:1;
transform:
translateY(0)
scale(1);

filter:blur(0);
}

/* PARALLAX */

.hero,
.enemy{
background-attachment:fixed;
}

/* MOVIMIENTO PREMIUM */

.program-card:hover,
.result-card:hover,
.filosofia-card:hover,
.executor-card:hover{
transform:
translateY(-18px)
scale(1.03);

box-shadow:
0 30px 80px rgba(0,0,0,.55);
}
/* ================================= */
/* MOBILE GOD MODE */
/* ================================= */

@media(max-width:768px){

html,body{
overflow-x:hidden;
}

/* HEADER */

.header{
padding:18px 20px;
justify-content:space-between;
}

.brand{
font-size:12px;
letter-spacing:3px;
}

.header-btn{
display:none;
}

/* HERO */

.hero{
min-height:100vh;
padding:
140px 24px
80px;

align-items:flex-end;

background-size:cover;
background-position:center top;
}

.hero-overlay{
background:linear-gradient(
180deg,
rgba(0,0,0,.45) 0%,
rgba(0,0,0,.78) 45%,
rgba(0,0,0,.96) 100%
);
}

.hero-left{
max-width:100%;
}

.hero-top-text{
font-size:10px;
letter-spacing:4px;
margin-bottom:18px;
}

.hero h1{
font-size:52px;
line-height:.92;
letter-spacing:-3px;
margin-bottom:20px;
}

.hero p{
font-size:15px;
line-height:1.7;
margin-bottom:28px;
}

.hero-buttons{
flex-direction:column;
width:100%;
gap:14px;
}

.btn-primary,
.btn-secondary{
width:100%;
text-align:center;
padding:18px;
font-size:11px;
}

/* SECCIONES */

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

/* TITULOS */

.section-title,
.story-center h2,
.executor h2,
.enemy h2,
.final-cta h2{
font-size:44px !important;
line-height:.95;
letter-spacing:-2px;
}

/* STORY */

.story-section{
grid-template-columns:1fr;
gap:34px;
padding-top:90px;
padding-bottom:90px;
}

.story-image{
height:420px;
}

/* EXECUTOR */

.executor{
grid-template-columns:1fr;
gap:30px;
padding-top:90px;
padding-bottom:90px;
}

.executor-card{
padding:34px 24px;
}

/* ENEMY */

.enemy{
height:auto;
padding:
120px 24px;
background-position:center;
}

/* PROGRAMS */

.program-grid{
grid-template-columns:1fr;
}

.program-card{
padding:34px 24px;
}

/* RESULTS */

.results-grid{
grid-template-columns:1fr;
}

.metric{
font-size:54px;
}

/* FILOSOFIA */

.filosofia{
padding:
90px 24px;
}

.filosofia-grid{
grid-template-columns:1fr;
}

.filosofia-card{
padding:34px 20px;
border-right:1px solid rgba(255,255,255,.05);
border-bottom:1px solid rgba(255,255,255,.05);
}

/* FOOTER */

.footer{
grid-template-columns:1fr;
gap:40px;
text-align:center;
padding:50px 24px;
}

.footer-right{
align-items:center;
}

.socials{
justify-content:center;
flex-wrap:wrap;
}

/* POPUP */

.popup-box{
width:92%;
padding:34px 24px;
}

.popup-box h2{
font-size:42px;
}

/* SCROLL FX MÁS FLUIDO EN MOBILE */

section{
transform:
translateY(80px)
scale(.97);

filter:blur(6px);
}

/* DESACTIVAR PARALLAX LENTO */

.hero,
.enemy{
background-attachment:scroll;
}

}
