/* Contenedor del formulario */


/* Campos de texto y textarea */
.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="url"],
.wpcf7-form textarea {
  width: 100%;
  padding: 1.5rem 1.75rem;
  border: 1px solid #ddd;
  border-radius: 10px;
  font-size: 1.5rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  background-color: #fafafa;
  transition: border 0.25s ease, box-shadow 0.25s ease;
}

.wpcf7-form input:focus,
.wpcf7-form textarea:focus {
  border-color: #7A00AA;
  box-shadow: 0 0 6px rgba(122,0,170,0.08);
  outline: none;
}

/* Botón enviar */
/* === Botón Enviar con Efecto de Brillo === */
.wpcf7-form .wpcf7-submit {
  display: block;
  width: 100%;
  background: linear-gradient(90deg, #7A00AA, #B000E0);
  color: #fff;
  padding: 1.5rem 2rem;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.4rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  cursor: pointer;
  text-align: center;
  box-shadow: 0 6px 18px rgba(122, 0, 170, 0.3);
  position: relative;
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  animation: pulsoBrillo 2.8s ease-in-out infinite;
}

/* === Luz que se mueve por el botón === */
.wpcf7-form .wpcf7-submit::before {
  content: "";
  position: absolute;
  top: 0;
  left: -80%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0.3) 0%,
    rgba(255, 255, 255, 0.7) 50%,
    rgba(255, 255, 255, 0.3) 100%
  );
  transform: skewX(-25deg);
  animation: brilloDeslizante 3.8s linear infinite;
}

/* === Hover con efecto === */
.wpcf7-form .wpcf7-submit:hover {
  background: #0a76a8de;
}

/* === Animaciones === */
@keyframes brilloDeslizante {
  0% {
    left: -80%;
  }
  100% {
    left: 140%;
  }
}

@keyframes pulsoBrillo {
  0%, 100% {
    filter: brightness(1);
  }
  50% {
    filter: brightness(1.25);
  }
}



/* Contenedor principal centrado y separado del header */
main.contenido-centrado {
  margin-top: 70px;      /* separa todo el contenido del header */
  padding: 3rem 2rem 4rem; /* padding interno del card */
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
 
}

/* 🔹 Título fuera del card */
.titulo-pagina-wrapper {
  text-align: center;
  margin: 5rem 0 2rem;
}

.titulo-pagina-wrapper .titulo-pagina {
  font-family: var(--fuente-headings);
  font-size: 4.2rem;
  color: var(--primario);
  margin: 0;
}

/* 🔹 Ajuste: elimina fondo blanco solo del título */
main.contenido-centrado {
  background: #fff; /* mantiene el fondo blanco del contenido */
  border-radius: 14px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.05);
  padding: 4rem 2rem;
  margin: 0 auto;
  max-width: 850px;
}

/* 🔹 Ajuste superior para separar el card del título */
main.contenido-centrado .contenedor {
  margin-top: 2rem;
}


/* Encabezado para el título del formulario */
.titulo-formulario {
  margin-top: 2rem;
  margin-bottom: 4rem !important;
 
  font-weight: 600;
  line-height: 1.3;
  color: var(--secundario);
  text-align: center;
}


/* Botones de contacto */
.tarjeta-contacto {
    margin-top: 35px;
    padding-top: 25px;
    border-top: 1px solid #e5e7eb;
    background: transparent;
}

.promind-contacto-botones {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

/* Botón base más sobrio */
.promind-btn {
    padding: 10px 20px;
    border-radius: 40px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all .25s ease;
    border: 1px solid transparent;
}

/* Teléfono (oscuro elegante) */
.promind-btn-tel {
    background: #1e293b;
    color: #fff;
}

.promind-btn-tel:hover {
    background: #0f172a;
}

/* WhatsApp más suave */
.promind-btn-wp {
    background: #22c55e;
    color: #fff;
}

.promind-btn-wp:hover {
    background: #16a34a;
}

/* Email estilo outline */
.promind-btn-mail {
    background: transparent;
    border: 1px solid #d1d5db;
    color: #374151;
}

.promind-btn-mail:hover {
    background: #f3f4f6;
}
.promind-contacto-footer {
    margin-top: 18px;
    font-size: 14px;
    color: #6b7280;
}

