/* ==========================================================
   LODAGU - INICIO.CSS
   Página principal
   ========================================================== */

.home-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 150px 0 90px;
    background-color: var(--white);
}

.home-hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 80px;
    align-items: center;
}

.home-copy h1 {
    margin: 22px 0;
    font-size: clamp(2.8rem, 5.2vw, 4.5rem);
    line-height: 1.08;
}

.lead {
    max-width: 650px;
    margin-bottom: 34px;
    font-size: 18px;
}

.hero-image {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.hero-image img {
    display: block;
    width: 100%;
    max-width: 540px;
    height: auto;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: var(--shadow);
}

.reflection p {
    font-size: 18px;
}

.question-list {
    display: grid;
    gap: 14px;
    margin: 32px 0;
}

.emphasis {
    padding: 24px;
    font-weight: 500;
    background-color: var(--soft);
    border-left: 4px solid var(--green);
}

.about-summary h2 {
    margin-top: 18px;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.2;
}

.home-cta {
    padding: 80px 0;
    text-align: center;
    background-color: var(--green);
}

.home-cta h2 {
    max-width: 900px;
    margin: 0 auto 28px;
    color: var(--white);
    font-size: clamp(1.9rem, 3.5vw, 3rem);
}
