
/* CSS Refinado */
.greenhands-contact {
    max-width: 100%;
    font-family: "fuente-ev-web-local", sans-serif;
    color: #444;
    margin-right: 18%; /* El margen que agregaste */
    padding: 50px;
}

.greenhands-contact .row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.greenhands-contact .field {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.greenhands-contact label {
    font-weight: 500;
    margin-bottom: 8px;
    font-size: 0.85rem;
    color: #222;
}

.greenhands-contact input, .greenhands-contact textarea {
    padding: 14px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    font-size: 0.95rem;
    transition: border-color 0.3s ease;
}

.greenhands-contact input:focus, .greenhands-contact textarea:focus {
    outline: none;
    border-color: #38DC82;
}

.greenhands-contact .services-group {
    margin: 30px 0;
}

.greenhands-contact .services-group label {
    display: block;
    font-weight: 400;
    margin-bottom: 10px;
    cursor: pointer;
    font-size: 0.9rem;
}

.btn-submit {
    background-color: #38DC82;
    color: white;
    padding: 16px;
    border: 2px solid #38DC82 !important;
    border-radius: 4px;
    font-weight: bold;
    font-size: 1rem;
    cursor: pointer;
    width: fit-content;
    transition: all 0.3s ease;
    margin-top: 10px;
    min-width: 200px;
}

.btn-submit:hover {
    background-color: transparent !important;
    color: #38DC82;
}

#formResponse {
    margin-top: 20px;
    padding: 15px;
    border-radius: 4px;
    display: none;
    font-size: 0.9rem;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 850px) {
    .greenhands-contact { margin-right: 0; padding: 30px 20px; }
    .greenhands-contact .row { flex-direction: column; gap: 15px; }
}

a{
    text-decoration: none;
}