/*
Theme Name: OceanWP Child Theme
Theme URI: https://oceanwp.org/
Description: OceanWP WordPress theme. Sample child theme.
Author: OceanWP
Author URI: https://oceanwp.org/
Template: oceanwp
Version: 1.0
*/

/* Parent stylesheet should be loaded from functions.php not using @import */
a:focus,.focus a {
	outline: none !important;
}
div#ocean-customizer-reset {
    display: none;
}

/* Contenedor del formulario */
.wpcf7 form {
  background: #ffffff;
  padding: 20px;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

/* Campos de texto, email, tel, select y textarea */
.wpcf7 input.wpcf7-text,
.wpcf7 input.wpcf7-number,
.wpcf7 input.wpcf7-date,
.wpcf7 select.wpcf7-select,
.wpcf7 textarea.wpcf7-textarea {
  width: 100%;
  background: #ffffff;
  border: 1px solid #ccc;
  border-radius: 4px;
  padding: 10px 12px;
  font-size: 15px;
  line-height: 1.4;
  color: #333;
  box-sizing: border-box;
  transition: border-color 0.2s ease;
}

.wpcf7 input.wpcf7-text:focus,
.wpcf7 input.wpcf7-number:focus,
.wpcf7 input.wpcf7-date:focus,
.wpcf7 select.wpcf7-select:focus,
.wpcf7 textarea.wpcf7-textarea:focus {
  outline: none;
  border-color: #0073aa;
}

/* Botón de envío */
.wpcf7 input.wpcf7-submit {
  background: #0073aa;
  color: #ffffff;
  border: none;
  border-radius: 4px;
  padding: 12px 20px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.2s ease;
}

.wpcf7 input.wpcf7-submit:hover {
  background: #005f8d;
}
