.contacto-seccion {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0rem 1rem;
  font-family: 'Poppins', sans-serif;
}

.titulo-contacto {
  text-align: center;
  font-size: 2rem;
  color: #ffc107;
  margin-bottom: 2rem;
}

.contacto-contenido {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
  align-items: flex-start;
}

.contacto-info {
  flex: 1;
  min-width: 280px;
}

.contacto-descripcion {
  font-size: 1rem;
  margin-bottom: 1.5rem;
  color: #333;
}

.contacto-detalles div {
  display: flex;
  align-items: center;
  margin-bottom: 0.8rem;
  color: #333;
}

.contacto-icono {
  margin-right: 0.7rem;
  color: #ffc107;
  font-size: 1.2rem;
}

.formulario-contacto {
  flex: 1;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.formulario-contacto input,
.formulario-contacto textarea {
  padding: 0.8rem 1rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
  width: 100%;
}

.formulario-contacto textarea {
  resize: vertical;
  min-height: 120px;
}

.formulario-contacto button {
  background-color: #ffc107;
  color: #000;
  border: none;
  font-weight: bold;
  padding: 0.8rem 1rem;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.formulario-contacto button:hover {
  background-color: #e0a800;
}

/* Mapa */
.contacto-mapa {
  margin-top: 2rem;
  border-radius: 10px;
  overflow: hidden;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-top: 2rem;
}

.contacto-mapa iframe {
  display: block;
  width: 100%;
  height: 450px;
  border: none;

}

.contacto-form-box {
  background: #fff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  /*max-width: 600px;*/
  width: 40%;
  margin: auto;
  margin-top: 2rem;
}

.mensaje-exito {
  background: #d4edda;
  color: #155724;
  padding: 1rem;
  margin-bottom: 1rem;
  border-left: 4px solid #28a745;
  border-radius: 6px;
}

.mensaje-error {
  background: #f8d7da;
  color: #721c24;
  padding: 1rem;
  margin-bottom: 1rem;
  border-left: 4px solid #dc3545;
  border-radius: 6px;
}


/* 📱 Responsive */
@media (max-width: 768px) {
  .contacto-contenido {
    flex-direction: column;
  }

  .formulario-contacto {
    width: 100%;
  }

  .contacto-form-box {
    padding: 1.5rem 1rem;
    margin: 1rem;
    width: 93%;
  }
}
