/* ========================================
   VARIÁVEIS
   ======================================== */
:root {
    --primary-color: #3d7f3f;
    --secondary-color: #2d5f2e;
    --text-dark: #1a1a1a;
    --text-gray: #767676;
    --white: #ffffff;
    --bg-light: #f8f9fa;
    --font-lato: 'Lato', sans-serif;
}

/* ========================================
   SEÇÃO PRINCIPAL DE CONTATO
   ======================================== */
.contato-principal {
    min-height: 727px;
    background-color: var(--white);
}

.contato-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 727px;
}

/* ========================================
   LADO ESQUERDO - INFORMAÇÕES
   ======================================== */
.contato-info {
    background:
        linear-gradient(rgba(61, 127, 63, 0.75), rgba(61, 127, 63, 0.75)),
        url('../images/contato-background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: var(--primary-color);
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: var(--white);
    position: relative;
}

.contato-titulo {
    font-family: var(--font-lato);
    font-size: 42px;
    font-weight: 700;
    color: var(--white);
    margin: 0 0 24px 0;
    line-height: 1.3;
    max-width: 500px;
}

.contato-subtitulo {
    font-family: var(--font-lato);
    font-size: 16px;
    font-weight: 400;
    color: var(--white);
    margin: 0 0 48px 0;
    line-height: 1.5;
    max-width: 500px;
}

.contato-detalhes {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contato-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.contato-icone {
    width: 38.58px;
    height: 38.58px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    flex-shrink: 0;
}

.contato-texto {
    font-family: var(--font-lato);
    font-size: 16px;
    font-weight: 400;
    color: var(--white);
    line-height: 1.5;
}

/* ========================================
   LADO DIREITO - FORMULÁRIO
   ======================================== */
.contato-form-container {
    background-color: var(--white);
    padding: 80px 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contato-form {
    width: 100%;
    max-width: 666px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.form-row {
    display: flex;
    gap: 18px;
}

.form-row input {
    flex: 1;
}

.contato-form input,
.contato-form textarea {
    width: 100%;
    height: 67px;
    border: 1px solid #E0E0E0;
    border-radius: 8px;
    font-family: var(--font-lato);
    font-size: 16px;
    padding: 20px 24px;
    background-color: var(--white);
    color: var(--text-dark);
    transition: border-color 0.3s ease;
    outline: none;
}

.contato-form input::placeholder,
.contato-form textarea::placeholder {
    color: #BDBDBD;
    font-weight: 400;
}

.contato-form input:focus,
.contato-form textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(61, 127, 63, 0.1);
}

.contato-form textarea {
    height: 196px;
    resize: none;
    font-family: var(--font-lato);
}

.contato-form button {
    width: 248px;
    height: 78px;
    background-color: var(--primary-color);
    border: none;
    border-radius: 8px;
    font-family: var(--font-lato);
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 6px;
}

.contato-form button:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 991px) {
    .contato-container {
        grid-template-columns: 1fr;
    }

    .contato-info,
    .contato-form-container {
        padding: 60px 40px;
    }

    .contato-titulo {
        font-size: 36px;
    }
}

@media (max-width: 767px) {
    .contato-info {
        padding: 40px 20px;
    }

    .contato-form-container {
        padding: 40px 20px;
    }

    .contato-titulo {
        font-size: 32px;
    }

    .contato-subtitulo {
        font-size: 14px;
        margin-bottom: 32px;
    }

    .form-row {
        flex-direction: column;
    }

    .contato-form button {
        width: 100%;
    }
}
