/* Fonte geral */
body 
.header.header-banner {
    font-family: 'Merriweather', serif;
    margin: 0;
    padding: 0;
    background-color: #ffe0e0;
    color: #333;
}

header.header-banner {
    background-color: #0b5c00; /* tom quente natural */
    color: #fff;
    text-align: center;
    padding: 0px 0px;
}

header.header-banner h1 {
    font-family: 'Dancing Script', cursive;
    font-size: 3em;
    margin: 0;
}

header.header-banner p {
    font-size: 1.2em;
    margin-top: 0px;
}

main.contato {
 display: flex;
 flex-direction: column; /* Deixa os itens em coluna */
    justify-content: center; /* Centraliza verticalmente */
   align-items: center; /* Centraliza horizontalmente */
    gap: 30px;
    min-height: 80vh; /* Dá altura para centralizar verticalmente */
    padding: 20px;
}

.contato-form,
.contato-info {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 20px; /* aumentei o padding para ficar mais espaçado */
    width: 100%;
    max-width: 900px; /* limite de largura */
    margin: 10px auto; /* centraliza horizontalmente */
}


.contato-form h2,
.contato-info h2,
.contato-info h3 {
    color: #0b5c00;
    margin-bottom: 15px;
    font-size: 1.8em;
}

form label {
    display: block;
    margin-top: px;
    font-weight: bold;
}

form input,
form textarea {
    width: 100%;
    padding: 0px;
    margin-top: 5px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 1em;
    transition: border-color 0.3s;
}

form input:focus,
form textarea:focus {
    border-color: #0b5c00;
    outline: none;
}

form button {
    background-color: #0b5c00;
    color: #fff;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 1.1em;
    cursor: pointer;
    margin-top: 20px;
    transition: background-color 0.3s, transform 0.2s;
}

form button:hover {
    background-color: #b67e4f;
    transform: scale(1.05);
}

.contato-info p {
    margin: 10px 0;
    font-size: 1.1em;
}

.mapa iframe {
    width: 100%;
    height: 300px;
    border: none;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

/* Rodapé */
footer {
    background-color: #162e00;
    color: #fff;
    text-align: center;
    padding: 15px 10px;
    font-size: 0.95em;
}

/* Responsivo */
@media (max-width: 768px) {
    header.header-banner h1 {
        font-size: 2.2em;
    }
    main.contato {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 768px) {
    header.header-banner h1 {
        font-size: 2.2em;
    }
    main.contato {
        flex-direction: column;
        gap: 20px;
        padding: 10px;
    }
    .contato-form,
    .contato-info {
        width: 100%;
        max-width: 100%;
        padding: 15px;
    }
    form button {
        width: 100%; /* botão ocupa largura total no mobile */
    }
    .mapa iframe {
        height: 200px; /* reduz altura do mapa no mobile */
    }
}