.home-hero {
    min-height: 620px;
    background-image: linear-gradient(90deg, rgba(0, 59, 73, 0.9), rgba(10, 85, 101, 0.72), rgba(156, 205, 190, 0.28)), url("/images/agricultor.jpg");
    background-position: center;
    background-size: cover;
    color: #fff;
}

.home-hero-overlay {
    min-height: 620px;
    display: flex;
    align-items: center;
    padding: 96px 0 112px;
}

.home-hero-content {
    max-width: 760px;
}

.home-eyebrow,
.home-section-tag {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    margin-bottom: 18px;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
}

.home-eyebrow {
    background: rgba(255, 255, 255, 0.18);
    color: #fff;
    padding: 10px 16px;
}

.home-hero h1 {
    max-width: 830px;
    margin: 0 0 22px;
    font-size: clamp(2.2rem, 5vw, 4.25rem);
    font-weight: 900;
    line-height: 1.08;
}

.home-hero p {
    max-width: 690px;
    margin: 0 0 30px;
    color: #f4f9f8;
    font-size: 1.18rem;
    line-height: 1.75;
}

.home-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.home-actions-left {
    justify-content: flex-start;
}

.home-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 14px 24px;
    border: 2px solid transparent;
    border-radius: 8px;
    font-weight: 800;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease, color 0.18s ease;
}

.home-btn:hover {
    transform: translateY(-2px);
    text-decoration: none;
}

.home-btn-primary {
    background: #003b49;
    color: #fff;
    box-shadow: 0 14px 28px rgba(0, 59, 73, 0.24);
}

.home-btn-primary:hover {
    background: #0a5565;
    color: #fff;
}

.home-btn-light {
    background: #fff;
    color: #003b49;
}

.home-btn-light:hover {
    background: #f4f9f8;
    color: #0a5565;
}

.home-btn-outline-green {
    background: #9ccdbe;
    border-color: #9ccdbe;
    color: #003b49;
}

.home-btn-outline-green:hover {
    background: #83baaa;
    border-color: #83baaa;
    color: #003b49;
}

.home-btn-spaced {
    margin-top: 28px;
}

.home-section {
    padding: 86px 0;
}

.home-section h2 {
    display: inline-block;
    max-width: 100%;
    margin: 0 0 22px;
    padding: 14px 20px;
    border-radius: 8px;
    background: linear-gradient(135deg, #003b49, #0a5565);
    color: #fff;
    font-size: clamp(2rem, 3.5vw, 3.1rem);
    font-weight: 900;
    line-height: 1.12;
}

.home-section p {
    color: #1f2937;
    font-size: 1.05rem;
    line-height: 1.78;
}

.home-section-tag {
    background: #f4f9f8;
    color: #003b49;
    padding: 9px 15px;
    border: 1px solid #9ccdbe;
}

.home-lead {
    color: #1f2937;
    font-size: 1.16rem;
    font-weight: 600;
}

.home-section-programa {
    background: #f4f9f8;
}

.home-section-soft {
    background: linear-gradient(180deg, #f4f9f8 0%, #ffffff 100%);
}

.home-section-publico {
    background: #f4f9f8;
}

.home-modulos-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 26px;
}

.home-modulo-card {
    min-height: 72px;
    display: flex;
    align-items: center;
    padding: 16px;
    background: linear-gradient(135deg, #003b49, #0a5565);
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 8px;
    color: #fff;
    font-weight: 900;
    line-height: 1.35;
    box-shadow: 0 14px 30px rgba(0, 59, 73, 0.18);
    text-shadow: 0 1px 2px rgba(0, 59, 73, 0.24);
}

.home-image-frame {
    overflow: hidden;
    border-radius: 8px;
    background: #f4f9f8;
    box-shadow: 0 24px 56px rgba(0, 59, 73, 0.14);
}

.home-image-frame img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

@media (max-width: 991.98px) {
    .home-hero,
    .home-hero-overlay {
        min-height: 560px;
    }

    .home-hero-overlay {
        padding: 82px 0 92px;
    }

    .home-section {
        padding: 68px 0;
    }
}

@media (max-width: 767.98px) {
    .home-hero,
    .home-hero-overlay {
        min-height: 520px;
    }

    .home-hero-overlay {
        padding: 64px 0 76px;
    }

    .home-hero p,
    .home-section p {
        font-size: 1rem;
    }

    .home-section h2 {
        padding: 12px 14px;
        font-size: 1.75rem;
    }

    .home-actions,
    .home-actions-left {
        flex-direction: column;
        align-items: stretch;
    }

    .home-btn {
        width: 100%;
    }

    .home-modulos-grid {
        grid-template-columns: 1fr;
    }
}
