/*fonts*/
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/* Resets */
.img-fluid {
    width: 100%;
}

.noPadding {
    padding: 0;
}

.row {
    padding: 0 !important;
    margin: 0 !important;
}

.row.no-gutters {
    margin-right: 0;
    margin-left: 0;
}

.row.no-gutters>[class^="col-"],
.row.no-gutters>[class*=" col-"] {
    padding-right: 0;
    padding-left: 0;
}

section.noPadding {
    padding: 0em 0;
}

/* Fonts */
/* Fonts */
body,
input,
textarea,
select {
    font-family: 'Gilroy','Poppins', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Gilroy','Poppins', sans-serif;
    font-display: swap;
    letter-spacing: .5px;
}

h1 {
    font-size: 56px;
    line-height: 1em;
    font-weight: 700;
}

h2 {
    font-size: 32px;
    font-weight: 500;
}

h3 {
    font-size: 22px;
    font-weight: 500;
}

h4 {
    font-size: 18px;
    color: #6E6E73;
    font-weight: 700;
}

p,
li,
label {
    font-family: 'Gilroy','Poppins', sans-serif;
    font-size: 18px;
    font-weight: 500;
}

label b{
    font-weight: 600;
    color: var(--gray-strong);
}

.smallTxt {
    font-size: 0.7em;
    text-align: center;
}

/* Color */
/* Color */
.bg-rojo {
    background: red;
}

.bg-verde {
    background: green;
}

.bg-amarillo {
    background: yellow;
}

.bg-blanco {
    background: white;
}

/* links */
/* links */
/* a {
    color: #F73939;
    text-decoration: underline;
    transition: color 0.3s;
} */

a:hover,
a:active,
a:focus {
    color: var(--white) !important;
}

.linkMain {
    color: #fff;
    transition: color 0.3s;
}

.linkMain:hover {
    color: #fff;
    text-decoration: underline;
}

/* Buttons */
/* Buttons */
.btn {
    font-style: normal;
    font-weight: 400;
    font-size: 1em;
    padding: 0.8em 1.3em !important;
    text-decoration: none;
    transition: color 0.4s, border 0.3s;
    position: relative;
    transition: color 0.3s, background-color 0.3s;
    text-transform: none !important;
    -webkit-border-radius: 0.4em;
    -ms-border-radius: 0.4em;
    -o-border-radius: 0.4em;
    border-radius: 0.4em;
    font-family: 'Gilroy','Poppins', sans-serif;
}

.btnMain {
    background: #9B8143;
    color: #fff !important;
    border: 1px solid #9B8143;
}

.btnMain:hover {
    color: #846825 !important;
    background: #fff;
    border: 1px solid #846825;
}

/*Elementos generales*/

:root{
    --purple: #742ED5;
    --black: #000;
    --blue: #467DE4;
    --white: #fff;
    --gray-light:#F1F1F1;
    --gray-strong: #6E6E73;
}

/*scroll bar*/
/* width */
::-webkit-scrollbar {
    width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
    border-radius: 5px;
    background-color: var(--gray-light);
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: var(--purple);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.btn {
    text-decoration: none;
    display: inline-block;
    font-size: 1em;
    color: var(--purple);
    border: 1px solid var(--purple);
    max-width: 200px;
    width: 100%;
    padding: .5em 0em 0em 0em;
    -webkit-border-radius: 2.2em;
    -ms-border-radius: 2.2em;
    -o-border-radius: 2.2em;
    transition: .3s ease;
}

.btn:hover {
    background-color: var(--purple);
    color: var(--white) !important;
}

.btn.morado {
    text-decoration: none;
    display: inline-block;
    font-size: 1em;
    background-color: var(--purple);
    color: var(--white);
    max-width: 200px;
    width: 100%;
    padding: .5em 0em 0em 0em;
    border-radius: 2.2em;
    -webkit-border-radius: 2.2em;
    -ms-border-radius: 2.2em;
    -o-border-radius: 2.2em;
    transition: .3s ease;
}

.btn.morado:hover {
    background-color: #6E6E73;
}

.custom-select {
    width: 80%;
    max-width: 400px;
    border-radius: 6px;
    border: 1px solid #ccc;
    padding: 8px;
    font-size: 14px;
}

.gray {
    color: #6E6E73;
}

p a {
    color: #000;
    transition: .3s ease;
}

p a:hover {
    color: var(--purple) !important;
}

/*:::::::CONTENIDO::::::::::::::*/

/*header*/

header.header{
    background-color: var(--gray-light);
}

header .img-fluid {
    max-width: 150px;
    width: 100%;
}

.header{
    position: relative;
    width: 100%;
    transition: .3s ease;
    top:0;
    left: 0;
}

/**Hero/*/

.hero {
    background-color: var(--gray-light);
    border-radius: 1em;
}

.hero h1 span {
    background: rgb(116, 46, 213);
    background: linear-gradient(90deg, rgba(116, 46, 213, 1) 0%, rgba(116, 46, 213, 1) 48%, rgba(60, 123, 237, 1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

section.hero h2 {
    color: var(--white);

}

/*Section 1*/
section.section1 .form-group {
    background-color: var(--gray-light);
    border-radius: .5em;
}

section.section1 .form-check .form-check-label{
    cursor: pointer;
}

.form-check{
    padding-left: 0;
}

.form-check .form-check-input{
    margin-left: 0 !important;
    padding: .5em;
}

.form-check-input:checked{
    background-color: var(--purple);
    border-color: var(--purple);
}

.form-check-input:focus{
    box-shadow: #742ed527 0px 0px 0px 0.25rem;

}

/*FOOTER*/
footer {
    background-color: #474747;
}

footer img.logo {
    max-width: 150px;
    width: 100%;
}

footer p {
    color: var(--white);
    font-size: 14px;
}

footer img.buro {
    max-width: 40px;
    width: 100%;
}

footer a {
    text-decoration: none;
    color: var(--white);
    display: inline-block;
    margin: 0 .5em;
    transition: .3s ease;
}

footer a:hover {
    color: var(--purple) !important;
}

footer hr {
    color: var(--white);
}


/*<<<<<Thank You Page>>>>*/

header.headerTY{
    background-color: var(--white) !important;
}

section.thankYou{
    min-height: 50vh;
}

section.thankYou .logo{
    max-width: 150px;
    width: 100%;
    margin: 1.5em auto;
    display: block;
}

section.thankYou .text_thankYou {

}

section.thankYou h1{
    font-size: 40px;
}

section.thankYou h1 span {
    background: rgb(116, 46, 213);
    background: linear-gradient(90deg, rgba(116, 46, 213, 1) 0%, rgba(116, 46, 213, 1) 48%, rgba(60, 123, 237, 1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

section.thankYou .text_thankYou .iconCheck{
    max-width: 150px;
    width: 100%;
    margin: 1.5em auto;
    display: block;

}

/*Responsive*/
@media only screen and (max-width: 575px) {

    section.hero h1 {
        font-size: 32px;
    }

    section.hero h2 {
        font-size: 24px;
    }

    section.section1 .form-check .form-check-label{
        width: 100%;
        text-align: center;
        margin-top: .5em;
    }

}

#mala-atencion-suboptions {
  margin-left: 25px;
}

.form-check-label {
  font-size: 16px;
  color: #6E6E73;
}

  
  
  
  

section.cs-konfio-hero-001 {
  background: rgb(116, 46, 213);
  background: linear-gradient(90deg, rgb(116, 46, 213) 0%, rgb(116, 46, 213) 48%, rgb(60, 123, 237) 100%);
}
section.cs-konfio-hero-001 h1,
section.cs-konfio-hero-001 p {
  color: #fff;
}
  
  
  @media (max-width: 768px) {
    .form-check {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .form-check-input {
      margin-bottom: 5px;
    }
  }
  
  

.form-group {
    padding: 1.5rem;
    background: #f5f5f5; 
    border-radius: 10px; 
    margin-bottom: 1.5rem; 
}
  
  
  .opciones-horizontal {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
  
  
  
  

.form-check {
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-check-input {
    transform: scale(1.2); 
}
  
  
  

@media screen and (max-width: 768px) {
    .form-check {
        display: flex;
        align-items: center;
        gap: 10px; /* Espaciado entre radio button y texto */
        flex-wrap: wrap; /* Permite que los elementos bajen de línea si es necesario */
    }

    .form-check-input {
        transform: scale(1.3); /* Hace los radio buttons un poco más grandes */
    }

    .opciones-horizontal {
        display: flex;
        flex-direction: column; /* Coloca los elementos en columna */
        gap: 8px; /* Espaciado entre opciones */
    }
}
@media screen and (max-width: 768px) {
    /* Asegurar que los radio buttons de la Pregunta 5 estén en columna y centrados */
    .pregunta5 .form-check {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        gap: 10px; /* Espacio entre opciones */
    }

    /* Asegurar que los textos de las opciones estén centrados */
    .pregunta5 .form-check-label {
        width: 100%;
        text-align: center;
    }
}
  
  
  
@media screen and (max-width: 575px) {
  .pregunta5 .form-check {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 1rem;
  }

  .pregunta5 .form-check-label {
    font-size: 16px;
    color: #6E6E73;
    margin-top: 0.5rem;
    width: 100%;
  }

  .pregunta5 .form-check-input {
    transform: scale(1.3);
    margin-bottom: 0.5rem;
  }
}  
  
  
  
  @media screen and (max-width: 575px) {
  .form-group {
    padding: 1rem;
  }
}
  
  
  
  
  
  
  
  @media screen and (max-width: 575px) {
  .form-check input[type="radio"] {
    order: 2;
    margin-top: 0.5rem;
  }

  .form-check label {
    order: 1;
    width: 100%;
    text-align: center;
    font-size: 16px;
    margin-bottom: 0.25rem;
  }

  .form-check {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 1rem;
  }

  .form-check-input {
    transform: scale(1.3);
  }
}
  
  
  
  
  /* Imagen banner más visible en la thank you page */
.thankyou-banner {
    width: 100%;
    max-width: 100%;
    text-align: center;
    margin-bottom: 2rem;
}

.banner-img {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
}
  
  
  .text-purple {
  color: #742ED5;
}

.text-purple:hover {
  text-decoration: underline;
  color: #5b24ad;
}
  
  
  .small-toggle-btn {
  font-size: 14px;
  line-height: 1.2;
  padding-top: 4px !important;
  padding-bottom: 4px !important;
  border-width: 1px;
}
  
  
  .btn-xs {
  font-size: 12px;
  padding: 2px 10px;
  border-radius: 20px;
  line-height: 1.2;
  font-weight: 600;
}

.btn-outline-purple {
  border: 1px solid var(--purple);
  color: var(--purple);
  background-color: transparent;
}

.btn-outline-purple:hover {
  background-color: var(--purple);
  color: white;
}
  
  
  .small-toggle-btn {
  font-size: 13px;
  text-decoration: none;
  font-weight: 500;
}
  
  
  
  .chat-bubble.bot {
  background-color: #742ed5;
  color: white;
  border-radius: 20px;
  padding: 12px 20px;
  max-width: 80%;
  margin-bottom: 10px;
}
.btn-purple {
  background-color: #742ed5;
  color: white;
  border: none;
  padding: 8px 18px;
  border-radius: 999px;
}
  
  
  .fade-in {
  animation: fadeIn 0.5s ease-in-out forwards;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
  
  
  .btn-chat {
  background-color: #742ed5;
  color: white;
  border-radius: 999px;
  padding: 8px 20px;
  border: none;
}
  
  
  .chat-input input {
  border-radius: 999px;
  padding: 10px 15px;
  border: 1px solid #ccc;
  font-family: 'Gilroy', sans-serif;
}
.question-card {
  border: 1px solid transparent;
  background-image: linear-gradient(#fff, #fff), linear-gradient(90deg, #742ed5, #3b82f6);
  background-origin: border-box;
  background-clip: padding-box, border-box;
  border-radius: 10px;
  padding: 2px;
  margin-bottom: 10px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.question-card input.form-control {
  border: none;
  outline: none;
  font-size: 16px;
  padding: 10px 14px;
  width: 100%;
  background-color: #fff;
  color: #333;
  border-radius: 8px;
}

.form-control::placeholder {
  color: #999;
}

.form-control:focus {
  outline: none;
  box-shadow: none;
}
  
  
  
  .gradient-box {
  background: linear-gradient(90deg, #742ed5 0%, #3b82f6 100%);
  border-radius: 12px;
  padding: 18px 16px;
}

.checkbox-group {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.custom-checkbox {
  color: white;
  font-size: 15px;
  position: relative;
  padding-left: 28px;
  cursor: pointer;
  user-select: none;
}

.custom-checkbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.custom-checkbox .checkmark {
  position: absolute;
  left: 0;
  top: 2px;
  height: 18px;
  width: 18px;
  background-color: white;
  border-radius: 4px;
}

.custom-checkbox input:checked ~ .checkmark {
  background-color: #5f3dc4;
}

.custom-checkbox .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.custom-checkbox input:checked ~ .checkmark:after {
  display: block;
}

.custom-checkbox .checkmark:after {
  left: 6px;
  top: 2px;
  width: 4px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
  
  
  .pregunta-label {
  font-weight: 600;
  font-size: 17px;
  color: #1f1f1f;
  display: block;
  margin-bottom: 2px;
}

.pregunta-subtexto {
  font-size: 14px;
  color: #555;
  margin-bottom: 8px;
  display: block;
}

.required {
  color: red;
}

.checkbox-container-gradient {
  border-radius: 12px;
  padding: 15px;
  background: linear-gradient(90deg, #742ed5 0%, #3b82f6 100%);
  color: white;
  max-width: 500px;
  margin: 0 auto;
}

.checkbox-container-gradient .form-check {
  margin-bottom: 10px;
}

.checkbox-container-gradient .form-check-label {
  font-weight: 500;
}

.checkbox-container-gradient .form-check-input {
  margin-right: 8px;
  accent-color: white;
}
  
  
  
  
  .section-checkboxes {
  margin-top: 30px;
  margin-bottom: 20px;
}

.section-title {
  font-weight: 600;
  font-size: 17px;
  display: block;
  margin-bottom: 6px;
}

.required {
  color: red;
}

.checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 10px;
}

.custom-checkbox {
  position: relative;
  padding-left: 28px;
  cursor: pointer;
  font-size: 15px;
  color: #222;
  user-select: none;
}

.custom-checkbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.checkmark {
  position: absolute;
  top: 2px;
  left: 0;
  height: 18px;
  width: 18px;
  border: 1.5px solid #742ed5;
  border-radius: 3px;
  background-color: white;
}

.custom-checkbox input:checked ~ .checkmark {
  background-color: #742ed5;
  border: 1.5px solid #742ed5;
}

.checkmark::after {
  content: "";
  position: absolute;
  display: none;
}

.custom-checkbox input:checked ~ .checkmark::after {
  display: block;
}

.custom-checkbox .checkmark::after {
  left: 5px;
  top: 1px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
  
  .checkbox-container-gradient .form-check-label {
  color: white !important;
}
  
  
  
  
  .checkbox-modern-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 500px;
  margin: 0 auto;
}

.checkbox-modern {
  position: relative;
  padding-left: 32px;
  cursor: pointer;
  font-size: 15px;
  color: #333;
  user-select: none;
  font-weight: 500;
  line-height: 1.4;
}

.checkbox-modern input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.checkbox-modern .checkmark {
  position: absolute;
  top: 2px;
  left: 0;
  height: 20px;
  width: 20px;
  background-color: #fff;
  border-radius: 5px;
  border: 2px solid;
  border-image: linear-gradient(90deg, #742ed5 0%, #3b82f6 100%);
  border-image-slice: 1;
}

.checkbox-modern input:checked ~ .checkmark {
  background: linear-gradient(90deg, #742ed5 0%, #3b82f6 100%);
}

.checkbox-modern .checkmark:after {
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  box-shadow: 0 0 2px #742ed5;
}

.checkbox-modern input:checked ~ .checkmark:after {
  display: block;
}

.checkbox-modern .checkmark:after {
  left: 6px;
  top: 2px;
  width: 5px;
  height: 10px;
  border: solid #cce6ff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
  
  .checkbox-modern:hover .checkmark {
  box-shadow: 0 0 0 2px rgba(116, 46, 213, 0.2);
}
  
  
  .form-wrapper {
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
  
  
  
  .contentText {
  margin-top: -10px;
}
  
  
  
  
  
  .radio-modern-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.radio-modern {
  position: relative;
  padding-left: 28px;
  cursor: pointer;
  font-size: 15px;
  user-select: none;
}

.radio-modern input[type="radio"] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.checkmark-radio {
  position: absolute;
  top: 2px;
  left: 0;
  height: 18px;
  width: 18px;
  border: 1.5px solid #742ed5;
  border-radius: 50%;
  background-color: white;
}

.radio-modern input:checked ~ .checkmark-radio {
  background-color: #742ed5;
  border: 1.5px solid #742ed5;
}

.checkmark-radio::after {
  content: "";
  position: absolute;
  display: none;
}

.radio-modern input:checked ~ .checkmark-radio::after {
  display: block;
}

.radio-modern .checkmark-radio::after {
  top: 4px;
  left: 4px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: white;
}
  
  

  
  

  
  .perfil-otro-input {
  border: 1.5px solid #742ed5;
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 15px;
  color: #333;
}

#otro-input-container {
  margin-left: 28px; /* alineado con los radios */
}

  
  .perfil-otro {
  border: 1px solid #ccc;
  border-radius: 6px;
  padding: 10px 14px;
  font-size: 15px;
  color: #333;
  margin-top: 8px;
}
  
  
  #perfilOtro {
  margin-top: 8px;
  margin-left: 26px; 
  width: calc(100% - 32px); 
  border: 1px solid #742ed5;
  border-radius: 6px;
  padding: 6px 12px;
  font-size: 14px;
  font-family: 'Gilroy', sans-serif;
  color: #333;
  max-width: 100%;
}

#perfilOtro::placeholder {
  color: #999;
  font-style: italic;
}
  
  
  .d-none {
  display: none !important;
}
  
  
  input[type="checkbox"] {
  accent-color: #b38bfa; /* morado tenue */
}
  
  
  .input-otro {
  margin-top: 12px;
  border-radius: 8px;
  border: 1px solid #742ed5;
  font-size: 15px;
  padding: 10px 14px;
  color: #333;
  background-color: #fff;
  width: 100%;
}

.input-otro::placeholder {
  color: #bbb;
  font-style: italic;
}
  .checkbox-term {
  position: relative;
  padding-left: 32px;
  cursor: pointer;
  font-size: 16px;
  color: #333;
  font-weight: 300;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.checkbox-term input {
  position: absolute;
  opacity: 0;
  height: 0;
  width: 0;
}

.checkmark-term {
  position: absolute;
  top: 2px;
  left: 0;
  height: 20px;
  width: 20px;
  background-color: #fff;
  border-radius: 6px;
  border: 2px solid #742ed5;
}

.checkbox-term input:checked ~ .checkmark-term {
  background-color: #742ed5;
}

.checkmark-term:after {
  content: "";
  position: absolute;
  display: none;
  left: 6px;
  top: 2px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.checkbox-term input:checked ~ .checkmark-term:after {
  display: block;
}

.checkbox-term input:focus ~ .checkmark-term {
  outline: none;
  box-shadow: none;
}

.link-morado {
  color: #742ed5 !important;
  font-weight: 400;
  text-decoration: underline;
  pointer-events: auto;
}

.link-morado:hover,
.link-morado:focus,
.link-morado:active 
.link-morado:visited {
  color: #742ed5 !important;
  text-decoration: underline;
}
  
  
  
  
.input-otro-peque {
  width: 200px;
  padding: 6px 10px;
  font-size: 14px;
  border: 1px solid #742ed5;
  border-radius: 6px;
  margin-left: 4px; 
  height: 20px;
  position: relative;
  top: -5px;
}
@media (max-width: 576px) {
  .input-otro-peque {
    width: 100%;
    margin-left: 0;
    margin-top: 8px;
  }
}
  
  .radio-modern.otro-inline {
  display: flex !important;
  align-items: left;
  flex-wrap: nowrap;
}
  
  header.cs-konfio-navbar-001, header.cs-konfio-navbar-002 {
  background: rgb(116, 46, 213);
  background: linear-gradient(90deg, rgb(116, 46, 213) 0%, rgb(116, 46, 213) 48%, rgb(60, 123, 237) 100%);
  color: #fff;
}
  
  
  
  
  .terms-wrapper {
  max-width: 500px;
  margin: 0 auto;
}

.checkbox-term {
  position: relative;
  padding-left: 32px;
  cursor: pointer;
  font-size: 16px;
  color: #333;
  font-weight: 300;
  display: block;
  line-height: 1.5;
}

.checkmark-term {
  position: absolute;
  top: 2px;
  left: 0;
  height: 20px;
  width: 20px;
  background-color: #fff;
  border-radius: 6px;
  border: 2px solid #742ed5;
}

#terms-error-container {
  margin-top: 8px;
  padding-left: 32px;
}

#terms-error-container .error-msg {
  color: #dc3545;
  font-size: 14px;
  line-height: 1.4;
}
  
  
  .logo {
  margin-bottom: 16px;
}