/* Estilo para el bloque de información de contacto */
.contacto_centrado {
  text-align: center;
  font-family: 'Century Gothic', sans-serif;
  color: #3D2314;
  font-size: 16px;
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
}

/* Contenedor flexible para imagen y mapa */
.info-contacto {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin: 30px auto;
  max-width: 800px;
}


/* Estilos para el formulario */
.contacto_formulario {
  max-width: 600px;
  margin: 40px auto;
  padding: 20px;
  font-family: 'Century Gothic', sans-serif;
  background-color: #fdfaf7;
  border: 1px solid #ccc;
  border-radius: 10px;
}

.contacto_formulario h2 {
  text-align: center;
  color: #3D2314;
  margin-bottom: 20px;
}

.contacto_formulario label {
  display: block;
  margin-top: 15px;
  margin-bottom: 5px;
  font-weight: bold;
  color: #3D2314;
}

.contacto_formulario input,
.contacto_formulario textarea {
  width: 100%;
  padding: 10px;
  font-size: 14px;
  border: 1px solid #aaa;
  border-radius: 5px;
  box-sizing: border-box;
}

.contacto_formulario button {
  margin-top: 20px;
  background-color: #3D2314;
  color: #FFFEFD;
  border: none;
  padding: 10px 20px;
  font-size: 16px;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.contacto_formulario button:hover {
  background-color: #BF6F45;
}