
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

:root {
    --green: #1b5e20;
    --green-light: #2ea248;
    --text: #0b0b0b;
    --gray: #6d6d6d;
}

body { background: #fff; }

header {
    width: 100%;
    background: #fff;
    padding: 20px 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: fixed;
    top: 0;
    z-index: 999;
    border-bottom: 1px solid #e5e5e5;
}

header .logo img {
    height: 70px;
}

nav ul {
    display: flex;
    gap: 40px;
    list-style: none;
}

nav ul li a {
    text-decoration: none;
    color: #111;
    font-weight: 600;
    transition: 0.2s;
}

nav ul li a:hover {
    color: var(--green-light);
}

/* HERO */
.hero {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 50px;
    position: relative;

    width: 100%;
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.hero-slides {
    position: absolute;
    inset: 0;
}
.hero-slides img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.6s ease-in-out;
}

.hero-slides img.active {
    opacity: 1;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(10, 50, 10, 0.7); /* overlay verde igual ao layout */
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-content .welcome {
    color: var(--green-light);
    font-size: 14px;
    letter-spacing: 4px;
    margin-bottom: 10px;
}

.hero-content h1 {
    color: #fff;
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 25px;
}

.hero-content a {
    background: var(--green-light);
    padding: 12px 30px;
    border-radius: 6px;
    color: #fff;
    font-weight: 600;
    display: inline-block;
    margin-top: 10px;
    text-decoration: none;
}

/* BENEFÍCIOS */
.beneficios {
    width: 100%;
    padding: 80px 0;
    text-align: center;
}

.beneficios h4 {
    color: var(--green-light);
    margin-bottom: 10px;
    letter-spacing: 5px;
    font-size: 14px;
}

.beneficios h2 {
    font-size: 30px;
    color: var(--green);
    margin-bottom: 50px;
}

.benefit-cards {
    width: 90%;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.benefit-card {
    background: #efefef;
    padding: 30px;
    border-radius: 12px;
    text-align: left;
    min-height: 200px;
}

.benefit-card h3 {
    color: var(--green);
    font-size: 18px;
    margin-bottom: 10px;
}

.benefit-card p {
    color: var(--gray);
    font-size: 14px;
}

/* SERVIÇOS */
.services-section {
    background: var(--green);
    padding-top: 10px;
    padding-bottom: 80px;
    text-align: center;
    border-radius: 60px 60px 0 0;
}

.services-section h2 {
    color: #fff;
    font-size: 28px;
    margin-bottom: 35px;
    margin-top: 35px;
}

.service-grid {
    width: 70%;
    margin: auto;
    display: grid;
    gap: 25px;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.service-card {
    background: #fff;
    border-radius: 10px;
    text-align: left;
    padding: 20px;
    min-height: 150px;
}

.service-card h3 {
    color: var(--green);
    font-size: 18px;
    margin-bottom: 10px;
}

.service-card p {
    color: var(--gray);
    font-size: 14px;
}

.service-card a {
    color: var(--green-light);
    font-size: 14px;
    font-weight: 600;
}

/* MISSÃO */
.mission {
    display: flex;
    align-items: center;
    padding: 80px 70px;
    gap: 50px;
}

.mission img {
    width: 48%;
    border-radius: 14px;
}

.mission h4 {
    color: var(--green-light);
    margin-bottom: 10px;
    letter-spacing: 4px;
    font-size: 14px;
}

.mission h2 {
    color: var(--green);
    font-size: 30px;
    margin-bottom: 20px;
}

.mission p {
    font-size: 15px;
    color: #333;
    margin-bottom: 20px;
}

.signature {
    font-family: "Brush Script MT", cursive;
    font-size: 38px;
    color: var(--green);
    margin: 20px 0;
}

.mission a {
    background: var(--green-light);
    padding: 12px 28px;
    color: #fff;
    display: inline-block;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
}

/* FORMULÁRIO */
.form-section {
    width: 100%;
    padding: 80px 70px;
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

.form-section-left {
    width: 55%;
}

.form-section-left h2 {
    color: var(--green);
    font-size: 30px;
    margin-bottom: 20px;
}

.form-section-left p {
    font-size: 15px;
    color: #444;
    margin-bottom: 15px;
}

form {
    width: 100%;
}

form label {
    font-size: 14px;
    font-weight: 600;
}

form input, textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    margin-bottom: 18px;
    border-radius: 4px;
}

.form-section button {
    background: var(--green-light);
    padding: 12px 32px;
    border: none;
    border-radius: 6px;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
}

/* RESPONSIVO */
@media(max-width: 950px){
    .mission {
        flex-direction: column;
        text-align: center;
    }
    .mission img {
        width: 100%;
    }
}

@media(max-width: 850px) {
    header {
        padding: 20px;
    }
    .form-section {
        flex-direction: column;
    }
    .form-section-left, .form-section-right {
        width: 100%;
    }
}