/* Start custom CSS for shortcode, class: .elementor-element-3edba2b *//* Diseño moderno para Contact Form 7 */
.wpcf7 {
  max-width: 650px;
  margin: 0 auto;
  padding: 30px;
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
  font-family: inherit;
}

/* Campos */
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 input[type="number"],
.wpcf7 textarea,
.wpcf7 select {
  width: 100%;
  padding: 14px 16px;
  margin-bottom: 16px;
  border: 1px solid #ddd;
  border-radius: 12px;
  background: #f9f9f9;
  font-size: 15px;
  color: #222;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

/* Efecto al hacer clic */
.wpcf7 input:focus,
.wpcf7 textarea:focus,
.wpcf7 select:focus {
  outline: none;
  border-color: #00A8B4;
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(0, 168, 180, 0.15);
}

/* Textarea */
.wpcf7 textarea {
  min-height: 130px;
  resize: vertical;
}

/* Labels */
.wpcf7 label {
  font-weight: 600;
  color: #222;
  margin-bottom: 6px;
  display: block;
}

/* Botón */
.wpcf7 input[type="submit"] {
  width: 100%;
  padding: 15px 20px;
  background: #00A8B4;
  color: #ffffff;
  border: none;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* Botón hover */
.wpcf7 input[type="submit"]:hover {
  background: #008d98;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 168, 180, 0.25);
}

/* Mensajes */
.wpcf7-response-output {
  border-radius: 10px !important;
  padding: 12px 15px !important;
  font-size: 14px;
  margin-top: 15px !important;
}

/* Errores */
.wpcf7-not-valid-tip {
  font-size: 13px;
  color: #c0392b;
  margin-top: -10px;
  margin-bottom: 12px;
}

/* Adaptación móvil */
@media (max-width: 600px) {
  .wpcf7 {
    padding: 22px;
    border-radius: 14px;
  }

  .wpcf7 input[type="submit"] {
    font-size: 15px;
  }
}/* End custom CSS */