/* RESET */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:Inter,Arial,sans-serif;
    background:#0b0f17;
    color:white;
    line-height:1.6;
}


/* GENERAL */

.container{
    width:min(1200px,90%);
    margin:auto;
}

a{
    text-decoration:none;
}

img{
    display:block;
    width:100%;
}


/* HEADER */

.header{
    position:sticky;
    top:0;
    z-index:1000;
    background:rgba(11,15,23,.95);
    backdrop-filter:blur(12px);
    border-bottom:1px solid rgba(255,255,255,.08);
}


.nav{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:22px 0;
    position:relative;
}


.logo{
    font-size:28px;
    font-weight:700;
    color:white;
}


.nav-links{
    display:flex;
    gap:30px;
}


.nav-links a{
    color:#d1d5db;
    transition:.3s;
}


.nav-links a:hover{
    color:white;
}


.menu-toggle{
    display:none;
    background:none;
    border:none;
    color:white;
    font-size:32px;
    cursor:pointer;
}



/* HERO */

.hero{
    padding:120px 0;
}


.hero-grid{
    display:grid;
    grid-template-columns:1.2fr .8fr;
    gap:50px;
    align-items:center;
}


.tag{
    display:inline-block;
    padding:10px 18px;
    border:1px solid rgba(255,255,255,.12);
    border-radius:50px;
    color:#cbd5e1;
    margin-bottom:25px;
}


.hero h1{
    font-size:68px;
    line-height:1.05;
    margin-bottom:25px;
}


.hero p{
    color:#b8c2d1;
    font-size:18px;
    max-width:700px;
    margin-bottom:35px;
}


.hero-buttons{
    display:flex;
    gap:15px;
}


/* BOTONES */

.btn-primary{

    background:linear-gradient(135deg,#8b5cf6,#3b82f6);

    color:white;

    border:none;

    padding:16px 28px;

    border-radius:12px;

    cursor:pointer;

    font-weight:600;

    transition:.3s;

}


.btn-primary:hover{
    transform:translateY(-2px);
}


.btn-secondary{

    border:1px solid rgba(255,255,255,.15);

    color:white;

    padding:16px 28px;

    border-radius:12px;

}


.btn-secondary:hover{

    background:rgba(255,255,255,.05);

}



/* HERO CARD */


.hero-card{

    background:#111827;

    border:1px solid rgba(255,255,255,.08);

    padding:35px;

    border-radius:24px;

}


.hero-card h3{
    margin-bottom:20px;
}


.hero-card ul{
    list-style:none;
}


.hero-card li{

    margin-bottom:15px;

    color:#cbd5e1;

}



/* SECCIONES */


.section{

    padding:100px 0;

}


.dark-section{

    background:#111827;

}


.section-title{

    text-align:center;

    max-width:800px;

    margin:auto auto 60px;

}


.section-title span{

    color:#8b5cf6;

    font-weight:600;

}


.section-title h2{

    font-size:48px;

    margin:15px 0;

}


.section-title p{

    color:#b8c2d1;

}



/* FEATURES */


.features{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:25px;

}


.feature-box{

    background:#111827;

    border:1px solid rgba(255,255,255,.08);

    padding:30px;

    border-radius:20px;

}


.feature-box h3{

    margin-bottom:15px;

}


.feature-box p{

    color:#cbd5e1;

}



/* ABOUT */


.about-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:50px;

    align-items:center;

}


.about-grid h2{

    font-size:48px;

    margin-bottom:25px;

}


.about-grid p{

    color:#cbd5e1;

    margin-bottom:20px;

}


.photo-card{

    height:500px;

    overflow:hidden;

    border-radius:24px;

    border:1px solid rgba(255,255,255,.08);

}


.photo-card img{

    height:100%;

    object-fit:cover;

}



/* STEPS */


.steps{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:25px;

}


.step-card{

    background:#111827;

    border:1px solid rgba(255,255,255,.08);

    border-radius:20px;

    padding:30px;

}


.step-card span{

    color:#8b5cf6;

    font-weight:700;

}


.step-card h3{

    margin:15px 0;

}


.step-card p{

    color:#cbd5e1;

}



/* APPLICATION */


.application-section{

    background:#111827;

}


.application-card{

    max-width:900px;

    margin:auto;

    background:#0f172a;

    border:1px solid rgba(255,255,255,.08);

    border-radius:24px;

    padding:50px;

}


.application-card h2{

    font-size:42px;

    margin-bottom:15px;

}


.application-card p{

    color:#cbd5e1;

    margin-bottom:35px;

}


.application-form{

    display:flex;

    flex-direction:column;

    gap:25px;

}


.form-group{

    display:flex;

    flex-direction:column;

    gap:10px;

}


.form-group input,
.form-group select,
.form-group textarea{

    padding:18px;

    border-radius:12px;

    border:1px solid rgba(255,255,255,.1);

    background:#111827;

    color:white;

    font-size:15px;

}


.form-group textarea{

    min-height:160px;

    resize:vertical;

}


.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus{

    outline:none;

    border-color:#8b5cf6;

}


.radio-group{

    display:flex;

    flex-direction:column;

    gap:15px;

}


.radio-option{

    display:flex;

    align-items:center;

    gap:12px;

    background:#111827;

    border:1px solid rgba(255,255,255,.08);

    border-radius:14px;

    padding:18px;

}


.submit-btn{

    width:100%;

}



/* FOOTER */


.footer{

    padding:60px 0;

    text-align:center;

    border-top:1px solid rgba(255,255,255,.08);

}


.footer p{

    color:#94a3b8;

}



/* TABLET */

@media(max-width:1024px){


.hero-grid{

    grid-template-columns:1fr;

}


.about-grid{

    grid-template-columns:1fr;

}


.features{

    grid-template-columns:1fr;

}


.steps{

    grid-template-columns:1fr 1fr;

}


.hero h1{

    font-size:52px;

}


.results-grid{

    grid-template-columns:1fr;

}


}



/* MOVIL */

@media(max-width:768px){


.nav{

    flex-direction:row;

}


.menu-toggle{

    display:block;

}



.nav-links{

    display:none;

    position:absolute;

    top:75px;

    left:0;

    width:100%;

    background:#0b0f17;

    flex-direction:column;

    align-items:center;

    gap:20px;

    padding:25px 0;

    border-bottom:1px solid rgba(255,255,255,.08);

}


.nav-links.active{

    display:flex;

}



.nav-links a{

    padding:8px 0;

}



.hero{

    padding:80px 0;

}


.hero h1{

    font-size:42px;

}


.hero-buttons{

    flex-direction:column;

}


.steps{

    grid-template-columns:1fr;

}


.section-title h2,
.about-grid h2,
.application-card h2{

    font-size:34px;

}


.application-card{

    padding:30px;

}


.results-text h3{

    font-size:26px;

}


}



/* RESULTADOS */


.results-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:60px;

    align-items:center;

}


.results-text h3{

    font-size:32px;

    margin-bottom:20px;

}


.results-text p{

    color:#cbd5e1;

    margin-bottom:20px;

}


.results-images{

    display:flex;

    flex-direction:column;

    gap:30px;

}


.result-image-slot{

    overflow:hidden;

    border-radius:24px;

    border:1px solid rgba(255,255,255,.08);

}


.result-image-slot img{

    width:100%;

}