/* Etiquetas */
.cf7-label {
  color: #2c3e50;
  font-weight: 600;
  display: block;
  margin-bottom: 5px;
  font-family: 'Arial', sans-serif;
}

/* Campos de texto y textarea */
.cf7-input {
  color: #000000 !important;             /* TEXTO NEGRO dentro del campo */
  background-color: #ecf0f1 !important;  /* Fondo gris claro */
  border: 1px solid #bdc3c7 !important;
  border-radius: 5px !important;
  padding: 10px !important;
  width: 100% !important;
  font-size: 16px !important;
  font-family: 'Arial', sans-serif !important;
  box-sizing: border-box !important;
}

/* Placeholder (texto gris dentro de los campos) */
.cf7-input::placeholder {
  color: #7f8c8d !important;
}

/* Enfoque del campo */
.cf7-input:focus {
  border-color: #2980b9 !important;
  box-shadow: 0 0 5px rgba(41, 128, 185, 0.5) !important;
  outline: none;
}

/* Botón de enviar */
.cf7-submit {
  color: #ffffff !important;
  background-color: #D5F0EF !important;
  border: none !important;
  border-radius: 5px !important;
  padding: 12px 25px !important;
  font-size: 16px !important;
  font-weight: 600 !important;
  cursor: pointer !important;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.cf7-submit:hover {
  background-color: #c0392b !important;
  transform: scale(1.05);
}












/* --- FORMULARIO CONTACT FORM 7 --- */

/* 1. Mensaje general al final del formulario */
.wpcf7-response-output {
    border-radius: 100px; /* Bordes redondeados */
    font-weight: bold;
    color: #000000 !important; /* Texto SIEMPRE negro */
}

/* Cuando el mensaje es de ERROR (Bordes rojos, pero texto negro) */
.wpcf7-mail-sent-ng, .wpcf7-aborted, .wpcf7-spam, .wpcf7-validation-errors {
    border: 2px solid #ff0000 !important; 
    background-color: #ffe6e6 !important; 
    color: #000000 !important; /* Texto negro */
}

/* Cuando el mensaje es de ÉXITO (Bordes verdes, pero texto negro) */
.wpcf7-mail-sent-ok {
    border: 2px solid #00b300 !important; 
    background-color: #e6ffec !important; 
    color: #000000 !important; /* Texto negro */
}

/* 2. Alertas individuales debajo de cada campo */
.wpcf7-not-valid-tip {
    color: #000000 !important; /* Texto de advertencia en negro */
    font-size: 14px;
    margin-top: 5px;
    font-weight: bold; /* Opcional: para que se vea mejor al ser negro */
}

/* 3. Texto del BOTÓN de envío */
.wpcf7-submit {
    color: #000000 !important; /* Color de la letra del botón en negro */
}