.contact-page {
max-width: 900px;
margin: auto;
padding: 30px;
background: #f9fff9;
border-radius: 20px;
box-shadow: 0 5px 18px rgba(0,0,0,0.1);
font-family: ‘Segoe UI’, sans-serif;
}
.contact-header {
text-align: center;
margin-bottom: 30px;
}
.contact-header h2 {
font-size: 2rem;
color: #0077B6;
margin-bottom: 10px;
}
.contact-header p {
color: #555;
}
.contact-content {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 30px;
}
.contact-form {
display: flex;
flex-direction: column;
}
.contact-form label {
margin: 10px 0 5px;
font-weight: bold;
color: #0077B6;
}
.contact-form input,
.contact-form textarea {
padding: 12px;
border: 1px solid #cce0cc;
border-radius: 10px;
outline: none;
font-size: 1rem;
}
.contact-form input:focus,
.contact-form textarea:focus {
border-color: #2e7d32;
box-shadow: 0 0 5px rgba(46,125,50,0.3);
}
.contact-form button {
margin-top: 15px;
padding: 12px;
background: #2e7d32;
color: white;
font-size: 1rem;
border: none;
border-radius: 12px;
cursor: pointer;
transition: background 0.3s;
}
.contact-form button:hover {
background: #1b5e20;
}
.contact-info {
padding: 20px;
background: #eafbea;
border-radius: 15px;
color: #333;
}
.contact-info h3 {
margin-bottom: 15px;
color: #0077B6;
text-align:center;
}
/* Botón WhatsApp */
.whatsapp-btn {
display: inline-block;
margin-top: 15px;
padding: 12px 18px;
background: #25D366;
color: white;
font-size: 1rem;
border-radius: 12px;
text-decoration: none;
font-weight: bold;
transition: background 0.3s;
}
.whatsapp-btn:hover {
background: #1ebc57;
}
@media (max-width: 768px) {
.contact-content {
grid-template-columns: 1fr;
}
}