@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/* Hero fixa da home */
.home-hero {
    margin-top: 70px; /* compensa o header fixo no desktop */
    height: 480px;
    position: relative;
    overflow: hidden;
}

.home-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.home-hero-content {
    position: absolute;
    top: 20%;
    left: 10%;
    transform: none;
    text-align: left;
    max-width: 50%;
    color: #000;
    text-shadow: 0 5px 10px #0004; /* igual ao carousel */
}

.home-hero-title {
    color: #6e8646;
    font-size: 5em; /* mesmo tamanho do carousel */
    font-weight: bold;
    line-height: 1.3em;
    margin-bottom: 0.1em;
}

.home-hero-topic {
    color: #b3c199;
    font-size: 5em; /* mesmo tamanho do carousel */
    font-weight: bold;
    line-height: 1.3em;
    margin-bottom: 0.4em;
}

.home-hero-text {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.home-hero-buttons {
    display: flex;
    gap: 10px;
}

.home-hero button,
.home-hero-buttons a {
    border: none;
    border-radius: 25px;
    padding: 12px 24px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.home-hero-buttons .btn-primary {
    background-color: #6e8646;
    color: #fff;
}

.home-hero-buttons .btn-primary:hover {
    background-color: #5a6e38;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.home-hero-buttons .btn-secondary {
    background-color: transparent;
    border: 2px solid #6e8646 !important;
    color: #6e8646;
}

.home-hero-buttons .btn-secondary:hover {
    background-color: #6e8646;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

@media (max-width: 768px) {
    .home-hero {
        margin-top: 60px;
        height: 360px;
    }

    .home-hero-content {
        top: 18%;
        left: 8%;
        max-width: 70%;
    }

    .home-hero-title,
    .home-hero-topic {
        font-size: 3em;
    }
}

@media (max-width: 480px) {
    .home-hero {
        margin-top: 55px;
        height: 320px;
    }

    .home-hero-content {
        top: 55%;
        left: 50%;
        transform: translate(-50%, -50%);
        text-align: center;
        max-width: 90%;
    }

    .home-hero-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* whatsapp */
.wpp {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 1;
    cursor: pointer;
}

.wpp a img {
    width: 70px;
}

.wpp a img:hover {
    width: 95px;
    transition-duration: 1s;
}

/* Seção de texto de saúde - estilo inspirado na página Sobre */
.home-health-section {
    background: #f9f9f9;
    padding: 40px;
    border-radius: 10px;
    margin: 40px auto 60px;
    border-left: 5px solid #5e7e46;
}

.home-health-section h4 {
    color: #5e7e46;
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.home-health-section p {
    color: #555;
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 15px;
}

@media (max-width: 768px) {
    .home-health-section {
        padding: 25px 20px;
        margin: 30px 20px 40px;
    }

    .home-health-section h4 {
        font-size: 1.4rem;
    }

    .home-health-section p {
        font-size: 0.95rem;
    }
}