/* Estilo para a Seção Hero e Formulário */
.hero-quote {
    position: relative;
    padding: 80px 0;
    background: url('images/garden-bg.jpg') no-repeat center center/cover;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 80vh;
}

.overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.6); /* Escurece o fundo para destacar o form */
}

.form-wrapper {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 600px;
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.quote-header-text {
    text-align: center;
    margin-bottom: 30px;
}

.quote-header-text h1 {
    font-family: 'Montserrat', sans-serif;
    color: #2d5a27; /* Verde grama escuro */
    margin-bottom: 10px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    margin-bottom: 8px;
    color: #333;
}

.form-group input, .form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.btn-submit {
    width: 100%;
    padding: 15px;
    background: #4CAF50; /* Verde vibrante */
    color: white;
    border: none;
    border-radius: 6px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 18px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-submit:hover {
    background: #388E3C;
}

/* Responsividade para Celular */
@media (max-width: 600px) {
    .form-row {
        grid-template-columns: 1fr;
    }
    .form-wrapper {
        margin: 20px;
        padding: 20px;
    }
}
