/* -------------------------
   Estilo general del formulario
-------------------------- */
.contact-form-section {
  background-color: #fdfdfd;
  padding: 30px 20px;
  display: none; /* Oculto por defecto */
  justify-content: center;
}

.contact-form-container {
  width: 100%;
  max-width: 500px;
  background: #ffffff;
  padding: 30px 25px;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  transition: all 0.3s ease-in-out;
}

.contact-form-container:hover {
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

.contact-form-title {
  font-size: 1.8em;
  font-weight: 600;
  color: #006699;
  margin-bottom: 25px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.contact-form-group {
  margin-bottom: 18px;
}

.contact-form-control {
  width: 100%;
  padding: 12px 15px;
  font-size: 1em;
  border: 1px solid #ccc;
  border-radius: 8px;
  outline: none;
  transition: all 0.3s ease;
}

.contact-form-control:focus {
  border-color: #006699;
  box-shadow: 0 0 6px rgba(0,102,153,0.2);
}

.contact-form-textarea {
  resize: none;
}

.contact-form-button {
  width: 100%;
  background-color: #006699;
  color: #fff;
  font-weight: 600;
  font-size: 1em;
  border: none;
  border-radius: 8px;
  padding: 12px 0;
  cursor: pointer;
  transition: all 0.3s ease;
}

.contact-form-button:hover {
  background-color: #004d66;
  box-shadow: 0 4px 12px rgba(0,102,153,0.3);
}

.contact-form-enviado {
  display: none;
  text-align: center;
  color: #006699;
  font-weight: 600;
  margin-top: 10px;
}

/* Checkbox */
.contact-form-group label {
  font-size: 0.9em;
  color: #333;
}

.contact-form-group input[type="checkbox"] {
  margin-right: 8px;
}

/* Links */
.contact-form-group a {
  color: #006699;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.contact-form-group a:hover {
  color: #004d66;
}

/* -------------------------
   Responsive móvil
-------------------------- */
@media (max-width: 480px) {
  .contact-form-section {
    display: flex; /* Solo visible en móviles */
  }

  .contact-form-container {
    padding: 20px 15px;
  }

  .contact-form-title {
    font-size: 1.5em;
  }

  .contact-form-button {
    font-size: 0.95em;
  }
}
