/* =========================
   RESET
========================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family: 'Segoe UI', sans-serif;
    background:#ffffff;
    color:#1b1b1b;
    line-height:1.6;
}

/* =========================
   VARIABLES
========================= */

:root{
    --orange:#f97316;
    --dark:#0f172a;
    --light:#f8fafc;
    --gray:#64748b;
    --border:#e2e8f0;
}

/* =========================
   HEADER
========================= */

.header{
    width:100%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px 8%;
    background:#fff;
    position:sticky;
    top:0;
    z-index:999;
    box-shadow:0 2px 10px rgba(0,0,0,0.05);
}

.logo h2{
    color:var(--orange);
    font-size:2rem;
    font-weight:900;
    line-height:1;
}

.logo span{
    color:#777;
    font-size:1rem;
}

.nav{
    display:flex;
    gap:30px;
}

.nav a{
    text-decoration:none;
    color:var(--dark);
    font-weight:600;
    transition:0.3s;
}

.nav a:hover{
    color:var(--orange);
}

.btn-header{
    background:var(--orange);
    color:#fff;
    padding:12px 24px;
    border-radius:10px;
    text-decoration:none;
    font-weight:700;
    transition:0.3s;
}

.btn-header:hover{
    background:#ea580c;
}

/* =========================
   HERO
========================= */

.hero{
    min-height:90vh;
    display:grid;
    grid-template-columns:1fr 1fr;
    align-items:center;
    padding:80px 8%;
    gap:60px;
    background: url("assets/hero-taller-autobiografico.png"  ) center/cover no-repeat ;
}

.tag{
    color:var(--orange);
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
}

.hero h1{
    font-size:5rem;
    line-height:0.95;
    color:var(--dark);
    margin:20px 0;
}

.hero-subtitle{
    font-size:2rem;
    font-weight:700;
    margin-bottom:20px;
}

.hero p{
    color:#555;
    max-width:550px;
}

.hero-buttons{
    margin-top:40px;
    display:flex;
    gap:20px;
    flex-wrap:wrap;
}

.btn-primary{
    background:var(--orange);
    color:#fff;
    padding:16px 28px;
    border-radius:12px;
    text-decoration:none;
    font-weight:700;
}

.btn-secondary{
    border:2px solid var(--dark);
    color:var(--dark);
    padding:16px 28px;
    border-radius:12px;
    text-decoration:none;
    font-weight:700;
}

.hero-image img{
    width:100%;
    border-radius:30px;
    object-fit:cover;
}

/* =========================
   BENEFITS
========================= */

.benefits{
    background:var(--dark);
    color:#fff;
    padding:100px 8%;
    text-align:center;
}

.benefits h2{
    font-size:3rem;
    margin-bottom:60px;
}

.benefit-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:30px;
}

.benefit-card{
    background:rgba(255,255,255,0.05);
    border:1px solid rgba(255,255,255,0.08);
    padding:40px 25px;
    border-radius:20px;
    transition:0.3s;
}

.benefit-card:hover{
    transform:translateY(-10px);
}

.benefit-card img{
    width:70px;
    margin-bottom:20px;
}

.benefit-card h3{
    margin-bottom:15px;
    color:#fff;
}

.benefit-card p{
    color:#cbd5e1;
}

/* =========================
   ABOUT
========================= */

.about{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    padding:100px 8%;
    align-items:center;
}

.about h2{
    font-size:3rem;
    color:var(--dark);
    margin-bottom:20px;
}

.about p{
    margin-bottom:20px;
    color:#555;
}

.about ul{
    margin-top:20px;
    padding-left:20px;
}

.about li{
    margin-bottom:12px;
    color:#444;
}

.quote-box{
    margin-top:30px;
    background:#fff7ed;
    border-left:5px solid var(--orange);
    padding:25px;
    border-radius:12px;
    font-weight:700;
}

.about-image img{
    width:100%;
    border-radius:25px;
}

/* =========================
   METHODOLOGY
========================= */

.methodology{
    padding:100px 8%;
    background:#f8fafc;
    display:grid;
    grid-template-columns:1fr 1fr 320px;
    gap:40px;
}

.methodology h2{
    font-size:2.5rem;
    margin-bottom:30px;
    color:var(--dark);
}

.method-card{
    background:#fff;
    padding:25px;
    border-radius:18px;
    margin-bottom:20px;
    box-shadow:0 5px 20px rgba(0,0,0,0.05);
}

.method-card h3{
    margin-bottom:10px;
    color:var(--dark);
}

.program ol{
    padding-left:20px;
}

.program li{
    margin-bottom:12px;
    color:#444;
}

.details-card{
    background:#fff;
    padding:35px;
    border-radius:20px;
    box-shadow:0 5px 20px rgba(0,0,0,0.05);
    height:fit-content;
}

.details-card p{
    margin-bottom:20px;
}

/* =========================
   IMPACT
========================= */

.impact{
    padding:100px 8%;
    text-align:center;
}

.impact h2{
    font-size:3rem;
    margin-bottom:50px;
    color:var(--dark);
}

.impact-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:25px;
    margin-bottom:30px;
}

.impact-grid img{
    width:100%;
    border-radius:20px;
    object-fit:cover;
}

.impact p{
    font-size:1.3rem;
    font-weight:700;
    color:var(--orange);
}

/* =========================
   TESTIMONIALS
========================= */

.testimonials{
    padding:100px 8%;
    background:#fffaf5;
}

.testimonials h2{
    text-align:center;
    font-size:3rem;
    margin-bottom:50px;
}

.testimonial-card{
    background:#fff;
    padding:40px;
    border-radius:20px;
    margin-bottom:30px;
    box-shadow:0 5px 20px rgba(0,0,0,0.05);
}

.testimonial-card p{
    font-size:1.1rem;
    margin-bottom:20px;
    color:#444;
}

.testimonial-card strong{
    color:var(--orange);
}

/* =========================
   CTA
========================= */

.cta{
    padding:100px 8%;
    background:linear-gradient(135deg,var(--orange),#ea580c);
    color:#fff;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:50px;
    align-items:center;
}

.cta h2{
    font-size:3rem;
    margin-bottom:20px;
}

.contact-form{
    display:grid;
    gap:20px;
}

.contact-form input,
.contact-form textarea{
    width:100%;
    padding:18px;
    border:none;
    border-radius:12px;
    font-size:1rem;
}

.contact-form textarea{
    min-height:140px;
    resize:none;
}

.contact-form button{
    background:var(--dark);
    color:#fff;
    border:none;
    padding:18px;
    border-radius:12px;
    font-size:1rem;
    font-weight:700;
    cursor:pointer;
    transition:0.3s;
}

.contact-form button:hover{
    background:#020617;
}

/* =========================
   FOOTER
========================= */

.footer{
    background:var(--dark);
    color:#fff;
    padding:60px 8%;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:40px;
}

.footer h3{
    margin-bottom:20px;
    color:var(--orange);
}

.footer p{
    color:#cbd5e1;
    margin-bottom:10px;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:1100px){

    .hero,
    .about,
    .methodology,
    .cta{
        grid-template-columns:1fr;
    }

    .hero h1{
        font-size:4rem;
    }

}

@media(max-width:768px){

    .header{
        flex-direction:column;
        gap:20px;
    }

    .nav{
        flex-wrap:wrap;
        justify-content:center;
    }

    .hero{
        text-align:center;
    }

    .hero-buttons{
        justify-content:center;
    }

    .hero h1{
        font-size:3rem;
    }

    .benefits h2,
    .about h2,
    .impact h2,
    .testimonials h2,
    .cta h2{
        font-size:2.2rem;
    }

}

@media(max-width:500px){

    .hero h1{
        font-size:2.5rem;
    }

    .hero-subtitle{
        font-size:1.4rem;
    }

    .btn-primary,
    .btn-secondary,
    .btn-header{
        width:100%;
        text-align:center;
    }

}