
@import url('https://fonts.googleapis.com/css2?family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');

html, body {
  height: 100%;
  overflow: hidden;
}

body {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  background: #FBFBFB;
  background-size: cover;
    
}

main {
  overflow-y: auto;
  max-height: 100%;
  width: 100%;
  padding-bottom: 30px;
}



/* Estilos del Header */
.custom-header {
  background: linear-gradient(to right, #6a00a7, #00cdcd);
  padding: 15px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: white;
  position: relative;
  overflow: hidden; /* Para asegurar que la forma de flecha no cause problemas de layout */
}


.header-title {
  font-size: 1.4em;
  font-weight: 500;
  position: relative; /* Para asegurar que esté sobre el pseudo-elemento */
  z-index: 2;
}

.header-logo {
  font-size: 1.5em;
  font-weight: bold;
  position: relative; /* Para asegurar que esté sobre el pseudo-elemento */
  z-index: 2;
  margin-right: 70px; /* Espacio para que la "cola" no lo tape tanto, ajustar según necesidad */
}
/* Si tienes una imagen de logo, puedes usar algo como esto:
.header-logo img {
  height: 40px; // Ajusta el tamaño según tu logo
  display: block;
}
*/
/* Estilos de .table-form */
.table-form {
  border-collapse: collapse;
  width: 100%;
  max-width: 900px;
  background: linear-gradient(to right, #6a00a7, #00cdcd);
  padding: 2px;
  border-radius: 6px;
  margin: 2px auto; /* Añadido margen superior para separar del header */
  display: block;
}

.table-form table {
  width: 100%;
  background-color: #e9f0ff;
  border-collapse: collapse;
  border-radius: 4px;
}

.table-form td {
    padding: 6px;
    border: 1px solid #c0d5e9;
    font-family: 'Ubuntu';
    background: white;
}
.table-form input[type="text"],
.table-form input[type="email"],
.table-form input[type="number"],
.table-form input[type="tel"],
.table-form input[type="url"] {
  width: 100%;
  padding: 6px;
  border: none;
  background-color: #dbeafd;
  border-radius: 4px;
  box-sizing: border-box;
  font-family: 'Ubuntu', sans-serif;
}

/* Estilos de .section-wrapper */
.section-wrapper {
  border: 2px solid #00CDCD;
  border-radius: 12px;
  padding: 10px;
  margin: 30px auto;
  max-width: 900px;
  position: relative;
}

.section-wrapper legend {
    font-weight: bold;
    color: #6A00A7;
    text-align: center;
    font-size: 15px;
    padding: 0 10px;
    background: #FBFBFB;
    position: absolute;
    top: -12px;
    left: 20px;
    font-family: 'Ubuntu', sans-serif;
    border-radius: 10px;
}

.section-wrapper input[type="text"],
.section-wrapper textarea {
  width: 100%;
  padding: 10px;
  border: none;
  background-color: #dbeafd;
  border-radius: 8px;
  font-size: 14px;
  box-sizing: border-box;
  font-family: 'Ubuntu', sans-serif;
}

/* Estilos de .locaciones-row-horizontal */
.locaciones-row-horizontal {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
}

.locaciones-row-horizontal label {
  display: flex;
  align-items: center;
  font-size: 14px;
  color: #333;
  background-color: white;
  padding: 6px 10px;
  border-radius: 12px;
  border: 1px solid #00CDCD;
  gap: 8px;
  font-family: 'Ubuntu', sans-serif;
}

.locaciones-row-horizontal input[type="number"] {
    width: 60px;
    padding: 5px;
    border: 2px solid #00CDCD;
    background-color: #dbeafd;
    border-radius: 6px;
    font-family: 'Ubuntu', sans-serif;
}

/* Estilos de .radio-options */
.radio-options {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 10px;
}

.radio-options label {
  background-color: white;
  border: 1px solid #00CDCD;
  border-radius: 12px;
  padding: 8px 16px;
  font-weight: bold;
  color: #222;
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: 'Ubuntu', sans-serif;
}

.radio-options input[type="radio"] {
  accent-color: #00CDCD;
  border:none;
}

/* Estilos de .gestion-grid */
.gestion-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 10px 20px;
  margin-top: 10px;
}

.gestion-grid label {
  display: flex;
  align-items: center;
  background-color: white;
  padding: 6px 12px;
  border-radius: 12px;
  border: 1px solid #00CDCD;
  font-size: 14px;
  gap: 8px;
  white-space: nowrap;
  font-family: 'Ubuntu', sans-serif;
}

.gestion-grid input[type="text"] {
  padding: 5px;
  border: none;
  border-radius: 6px;
  background-color: #fff;
  font-family: 'Ubuntu', sans-serif;
}

/* Estilos de .subsection-title y .ventas-digitales-grid */
.subsection-title {
  font-weight: bold;
  color: #6A00A7;
  margin-top: 10px;
  text-align: center;
  font-family: 'Ubuntu', sans-serif;
}

.ventas-digitales-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 10px 20px;
  margin: 10px 0 20px;
}

.ventas-digitales-grid label {
  display: flex;
  align-items: center;
  background-color: white;
  padding: 6px 10px;
  border-radius: 12px;
  border: 1px solid #00CDCD;
  font-size: 14px;
  gap: 6px;
  font-family: 'Ubuntu', sans-serif;
}

.ventas-digitales-grid input[type="text"] {
  padding: 5px;
  border: none;
  border-radius: 6px;
  background-color: #fff;
  font-family: 'Ubuntu', sans-serif;
}

/* Estilos de .ventas-fuerza-row */
.ventas-fuerza-row {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 10px;
  flex-wrap: wrap;
}

.ventas-fuerza-row label {
  display: flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 12px;
  border: 1px solid #00CDCD;
  font-size: 14px;
  gap: 8px;
  font-family: 'Ubuntu', sans-serif;
}

.ventas-fuerza-row input[type="number"] {
  width: 70px;
  padding: 5px;
  border: 2px solid #00CDCD;
  background-color: #fff;
  border-radius: 6px;
  font-family: 'Ubuntu', sans-serif;
}

/* Estilos de .tabla-mapeo */
.tabla-mapeo-wrapper {
  overflow-x: auto;
}

.tabla-mapeo {
  width: 100%;
  border-collapse: collapse;

}

.tabla-mapeo th, .tabla-mapeo td {
  border: 1px solid #b8d8e4;
  padding: 8px;
  text-align: left;
  font-size: 14px;
  font-family: 'Ubuntu', sans-serif;
}

.tabla-mapeo th {
  color: black;
  text-align: center;
  font-weight: bold;
}
.tabla-mapeo input[type="number"] {
  width: 100%;
  padding: 6px;
  border: none;
  background-color: #dbeafd;
  border-radius: 6px;
  box-sizing: border-box;
  font-family: 'Ubuntu', sans-serif;
}

/* Estilos de .comentarios-title y textarea en .section-wrapper */
.comentarios-title {
  background: linear-gradient(to right, #6a00a7, #00cdcd);
  color: white;
  font-weight: bold;
  text-align: center;
  padding: 8px;
  border-radius: 12px 12px 0 0;
  margin: 40px auto -10px;
  max-width: 900px;
  font-family: 'Ubuntu', sans-serif;
}

/* Para asegurar que la fuente se aplique a los placeholders también, si es necesario. */
::placeholder {
  font-family: 'Ubuntu', sans-serif;
  opacity: 1;
}

:-ms-input-placeholder {
  font-family: 'Ubuntu', sans-serif;
}

::-ms-input-placeholder {
  font-family: 'Ubuntu', sans-serif;
}

.multiline-text {
  width: 100%;
  height: 40px;
  min-height: 40px;
  max-height: 200px;
  padding: 10px;
  resize: none;
  overflow-y: auto;
  border: none;
  background-color: #dbeafd;
  border-radius: 8px;
  font-size: 14px;
  box-sizing: border-box;
  font-family: 'Ubuntu', sans-serif;
  line-height: 1.4em;
}


input, textarea {
  transition: background-color 0.3s ease;
}




.header-banner-zeus {
  background-image: url('<?php echo get_template_directory_uri(); ?>/images/headercaracterizacion.svg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  height: 56px; /* Altura igual a la de la imagen */
  width: 100%;
}


.submit-container {
  display: flex;
  justify-content: center;
  margin: 40px auto;
  width: 100%;
}

.submit-button {
  background: linear-gradient(to right, #6a00a7, #00cdcd);
  color: white;
  font-size: 16px;
  font-weight: 500;
  border: none;
  border-radius: 30px;
  padding: 12px 40px;
  font-family: 'Ubuntu', sans-serif;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  transition: background 0.3s ease, transform 0.2s ease;
}

.submit-button:hover {
  transform: translateY(-2px);
  background: linear-gradient(to right, #5a0095, #00b3b3);
}


input[type="checkbox"],
input[type="radio"] {
  accent-color: #00CDCD;
}

