.elementor-36466 .elementor-element.elementor-element-aa19bd3{--display:flex;--background-transition:0.3s;--padding-block-start:0px;--padding-block-end:0px;--padding-inline-start:0px;--padding-inline-end:0px;}/* Start custom CSS for html, class: .elementor-element-bcfa1be */#formRecomendador {
  width: 100%;
  margin: 0 auto;
  padding: 20px;
}


.input-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);  
  gap: 20px;
}

label {
  font-size: 1em;
  color: #666;
  margin-top: 5px;
  transition: all 0.3s ease;
  padding: 15px 0;
}


#formRecomendador input[type="number"],
#formRecomendador select {
  width: 100%;
  padding: 8px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 5px;
}


#segurosVigentes {
  width: 100%;
  margin-top: 20px;
}


.checkboxes {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
}
.checkboxes label{
  padding: 0px;
  color: #000;
  
}
.checkbox-column {
  flex: 1;
  display: flex;
  flex-direction: column;
  /*width: 48%; */
    display: grid;
  grid-template-columns: repeat(3, 1fr);
}


.checkbox-column label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 14px;
}


.checkbox-column input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin: 0;
  cursor: pointer;
  accent-color: #B5121D; 
  
}


.checkbox-column input[type="checkbox"]:not(:checked) {
  border: 2px solid #ccc;
  border-radius: 4px;
}

.checkbox-column input[type="checkbox"]:checked {
  border: 2px solid #B5121D;
  background-color: #B5121D;
}



/* Estilo del botón de recomendar */
.submit-button {
  display: block;
  width: 50%;
  margin: 50px auto 0; /* Centrar el botón */
  padding: 12px;
  background-color: #B5121D !important;
  border-radius: 25px;
  color: white;
  font-size: 16px;
  /*font-weight: bold;*/
  border: none;
  cursor: pointer;
  text-align: center;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

/* Animación en hover */
.submit-button:hover {
  background-color: #9e0e1d !important;
  transform: scale(1.01);
}

#vistaResultado{
  padding: 50px;
}
/*RESULTADOS*/
.resultado-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  border: 1px solid #ccc;
  padding: 10px;
  border-radius: 8px;
  margin-bottom: 10px;
  gap: 10px;
}

.resultado-img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  margin-right: 15px;
  border-radius: 8px;
}

.resultado-info {
  flex: 1;
  min-width: 250px;
}

.resultado-info h4 {
  margin: 0;
  font-size: 16px;
}

.resultado-info p {
  margin: 5px 0;
  font-size: 14px;
}

.resultado-boton {
  background-color: #B5121D !important;
  border-radius: 25px;
  color: white !important;
  padding: 8px 15px;
  white-space: nowrap;
  text-align: center;
  flex-shrink: 0;
  min-width: 120px;
  transition: background 0.3s ease;
}

.resultado-boton:hover {
  background-color: #0056b3;
}

.button-back{
    color: #b5121d !important;
    background-color: white !important;
}
.button-back:hover{
    color:white !important;
    background-color: #b5121d !important;
}
.final-text{
   padding: 15px 25px;
}

/*RESPONSIVEE*/
@media (max-width: 768px) {
  .input-container {
    grid-template-columns: 1fr; 
  }

  .checkbox-column {
    grid-template-columns: 1fr; 
  }

  .submit-button {
    width: 100%; 
  }
  
  #vistaResultado{
    padding: 0px;
  }
  .resultado-container {
    flex-direction: column;
    text-align: left;
  }

  .resultado-img {
    width: 25%;
  }

  .resultado-boton {
    width: 100%;
  }
  .resultado-info {
    min-width: 0px;
  }
  .submit-button {
    font-size: 14px;

  }
}/* End custom CSS */