/* Contenedor de contacto */
.contacto-section{
    max-width: 800px;
    margin: 80px auto;
    text-align: center;
}

.contacto-section h2{
    font-size: 36px;
    margin-bottom: 20px;
    color: #333;
}

.contacto-section p{
    font-size: 18px;
    color: #555;
    margin-bottom: 40px;
}

/* Formulario */
.contact-form{
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form .form-group{
    display: flex;
    flex-direction: column;
    text-align: left;
}

.contact-form label{
    font-weight: 500;
    margin-bottom: 5px;
    color: #333;
}

.contact-form input,
.contact-form textarea{
    padding: 12px;
    border-radius: 6px;
    border: 1px solid #ccc;
    font-size: 16px;
    resize: none;
}

.contact-form button{
    padding: 15px 60px;
    font-size: 18px;
    background: #46a2fd;
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}

.contact-form button:hover{
    opacity: 0.9;
}

/* Responsive */
@media screen and (max-width: 800px){
    .contacto-section h2{
        font-size: 28px;
    }
    .contacto-section p{
        font-size: 16px;
    }
    .contact-form button{
        width: 100%;
        padding: 15px;
    }
}
