/*
Theme Name: Salient Child Theme
Description: This is a custom child theme for Salient
Theme URI:   https://themeforest.net/item/salient-responsive-multipurpose-theme/4363266
Author: ThemeNectar
Author URI:  https://themeforest.net/user/themenectar
Template: salient
Version: 1.0
*/


/* Contenedor de filas */
.cf7-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
  }
  
  /* Columnas mitad y mitad */
  .cf7-col {
    flex: 1;
  }
  
  /* Fila completa */
  .cf7-row.full {
    display: block;
  }
  
  /* Inputs y textarea estilo Salient limpio */
  .cf7-row input,
  .cf7-row textarea {
    width: 100%;
    padding: 12px;
    border-radius: 6px;
    border: 1px solid #ddd;
    font-size: 16px;
  }
  
  /* Textarea más alto */
  .cf7-row textarea {
    min-height: 140px;
  }
  
  /* Botón */
  .submit-row {
    justify-content: flex-start;
  }
  
  .submit-row input[type="submit"] {
    background-color: #000;
    color: #fff;
    padding: 14px 28px;
    border-radius: 30px;
    border: none;
    cursor: pointer;
    transition: 0.3s ease;
  }
  
  .submit-row input[type="submit"]:hover {
    background-color: #333;
  }

.wpcf7 .wpcf7-response-output {
    background-color: TRANSPARENT;
    margin-left: 0;
    margin-top: 10px;
}
  
  /* Responsive móvil */
  @media (max-width: 768px) {
    .cf7-row {
      flex-direction: column;
    }
  }


