.pagina-contacto {
    margin-top: 100px;
    margin-bottom: 60px;
}
.pagina-contacto h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #766B5D;
    margin-bottom: 30px;
}
.formulario-contacto {
    max-width: 700px;
    margin: 0 auto;
    background: #EBE9DD;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(118,107,93,0.12);
}
.campo-formulario {
    margin-bottom: 25px;
}
.campo-formulario label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: #766B5D;
}
.campo-formulario input,
.campo-formulario select,
.campo-formulario textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #D4C7AF;
    border-radius: 10px;
    font-size: 1rem;
    transition: border 0.3s ease;
    background: #f7f5ef;
    color: #4a4238;
}
.campo-formulario input:focus,
.campo-formulario select:focus,
.campo-formulario textarea:focus {
    outline: none;
    border-color: #A8A696;
}
.campo-formulario textarea {
    resize: vertical;
    min-height: 120px;
}
.btn-enviar {
    background: #766B5D;
    color: #EBE9DD;
    border: none;
    padding: 14px 30px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}
.btn-enviar:hover {
    background: #5c5449;
    transform: translateY(-2px);
}
.mensaje-exito {
    background: #d4edda;
    color: #155724;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 20px;
    text-align: center;
}
.mensaje-error {
    background: #f8d7da;
    color: #721c24;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 20px;
    text-align: center;
}
@media (max-width: 768px) {
    .pagina-contacto {
        margin-top: 80px;
    }
    .formulario-contacto {
        padding: 25px;
        margin: 0 15px;
    }
    .pagina-contacto h1 {
        font-size: 2rem;
    }
}