/* Imagen de fondo */
.contacto-fondo {
  background-image: url("<?php echo get_stylesheet_directory_uri(); ?>/assets/images/fondocontacto.jpg");
  background-size: cover;
  background-position: center;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 30px;
  gap: 20px;
}

/* Caja del formulario */
.contacto-formulario {
  background: rgba(0, 0, 0, 0.65);
  color: #fff;
  max-width: 500px;
  width: 100%;
  gap: 20px;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 0 15px rgba(0,0,0,0.4);
}

.contacto-formulario h2 {
  text-align: center;
  margin-bottom: 20px;
  font-size: 1.6rem;
  letter-spacing: 1px;
}

.contacto-formulario label {
  display: block;
  margin-top: 10px;
  font-weight: bold;
}

.contacto-formulario input,
.contacto-formulario textarea {
  width: 100%;
  padding: 10px;
  margin-top: 5px;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  background: #f9f9f9;
  color: #333;
}

.contacto-formulario textarea {
  resize: vertical;
}

.contacto-formulario button {
  margin-top: 15px;
  width: 100%;
  background: #007bff;
  border: none;
  color: #fff;
  padding: 12px;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s;
}

.contacto-formulario button:hover {
  background: #0056b3;
}

.mensaje {
  background: rgba(255, 255, 255, 0.2);
  padding: 10px;
  text-align: center;
  border-radius: 8px;
  margin-bottom: 15px;
  font-weight: bold;
}

.container {
      display: flex;
      width: 100%;
      max-width: 500px;
      justify-content: space-between;
      gap: 20px;
      padding: 20px;
      background-color: rgba(0, 0, 0, 0.4);
      border-radius: 12px;
    }

.info {
      flex: 1;
      padding: 60px;
      border-radius: 10px;
	  text-align: center;
    }
	
.info img {
      margin-top: 15px;
      max-width: 150px;
    }

/* Responsive */
@media (max-width: 600px) {
  .contacto-formulario {
    padding: 15px;
  }
}
