.black-color li a {
  color: black!important;
}

header a.open_close .black-color {

  color: #000000!important;

}

ul#top_menu li a.black-login:before {

  color: #000000!important;
}

/* === ESTILOS GENERALES DEL FORMULARIO === */
#wizard_container {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    padding: 40px 50px;
    max-width: 900px;
    margin: 50px auto;
    position: relative;
    font-family: 'Inter', 'Poppins', sans-serif;
    transition: all 0.3s ease;
  }
  
  #wizard_container h3.main_question {
    font-size: 2rem!important;
    font-weight: 700;
    color: #111;
    margin-bottom: 40px;
  }
  
  /* === PROGRESS BAR === */
  #top-wizard {
    margin-bottom: 20px;
  }
  
  #progressbar {
    background: #eee;
    border-radius: 10px;
    height: 8px;
    overflow: hidden;
  }
  
  /* #progressbar::after {
    content: "";
    display: block;
    height: 100%;
    width: 33%;
    background: linear-gradient(90deg, #18a84c, #2ccc69);
    border-radius: 10px;
    transition: width 0.4s ease;
  }
   */
  /* === CAMPOS DE FORMULARIO === */
  .form-group {
    margin-bottom: 20px;
  }


  
  .form-group label {
    font-weight: 500;
    color: #333;
    margin-bottom: 6px;
    display: block;
    font-size: 1rem!important;
  }

  .form-group .label-tittle {
    font-weight: 500;
    color: #333;
    margin-bottom: 6px;
    display: block;
    font-size: 1.3rem!important;
  }
  
  .form-control,
  select.wide {
    width: 100%;
    border: 1px solid #ccc;
    border-radius: 10px;
    padding: 10px 15px;
    font-size: 1rem;
    transition: border 0.3s ease, box-shadow 0.3s ease;
  }
  
  .form-control:focus,
  select.wide:focus {
    border-color: #18a84c;
    box-shadow: 0 0 0 3px rgba(24,168,76,0.2);
    outline: none;
  }
  
  /* === RADIO Y CHECKBOX === */
  .container_radio,
  .container_check {
    position: relative;
    display: block;
    padding-left: 45px;
    margin-bottom: 18px;
    cursor: pointer;
    font-size: 1.15rem;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.5;
    user-select: none;
    transition: color 0.3s ease;
  }
  
  .container_radio:hover,
  .container_check:hover {
    color: #18a84c;
  }
  
  .container_radio input,
  .container_check input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
  }
  
  .container_radio .checkmark,
  .container_check .checkmark {
    position: absolute;
    top: 3px;
    left: 0;
    height: 24px;
    width: 24px;
    background-color: #f2f2f2;
    border-radius: 50%;
    border: 2px solid #bbb;
    transition: all 0.25s ease;
  }
  
  .container_check .checkmark {
    border-radius: 6px;
  }
  
  .container_radio input:checked ~ .checkmark,
  .container_check input:checked ~ .checkmark {
    background-color: #18a84c;
    border-color: #18a84c;
  }
  
  .container_radio .checkmark:after,
  .container_check .checkmark:after {
    content: "";
    position: absolute;
    display: none;
  }
  
  .container_radio input:checked ~ .checkmark:after,
  .container_check input:checked ~ .checkmark:after {
    display: block;
  }
  
  .container_radio .checkmark:after {
    top: 6px;
    left: 6px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: white;
  }
  
  .container_check .checkmark:after {
    left: 7px;
    top: 3px;
    width: 6px;
    height: 12px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
  }
  
  /* === BOTONES === */
  button.backward,
  button.forward,
  button.submit,
  .btn_1 {
    border: none;
    border-radius: 10px;
    background: linear-gradient(90deg, #18a84c, #2ccc69);
    color: #fff;
    font-weight: 600;
    padding: 12px 25px;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  button.backward:hover,
  button.forward:hover,
  button.submit:hover,
  .btn_1:hover {
    background: linear-gradient(90deg, #149940, #27b45e);
    transform: translateY(-2px);
  }
  
  .btn_1.outline {
    background: transparent;
    border: 2px solid #18a84c;
    color: #18a84c;
  }
  
  .btn_1.outline:hover {
    background: #18a84c;
    color: #fff;
  }
  
  /* === RESUMEN (PASO 3) === */
  .summary-box, .payment-box {
    background: #f8fff9;
    border: 1px solid #c5f0d2;
    border-radius: 15px;
    padding: 25px 30px;
    margin-bottom: 20px;
  }
  
  .summary-box h4, .payment-box h4 {
    color: #111;
    font-weight: 600;
    margin-bottom: 15px;
  }
  
  .summary-box ul, .payment-box ul {
    list-style: none;
    padding-left: 0;
    font-size: 1rem;
  }
  
  .summary-box li, .payment-box li {
    display: flex;
    justify-content: space-between;
    padding: 5px 0;
    border-bottom: 1px solid #eee;
  }
  
  .payment-box li:last-child {
    border-bottom: none;
    font-weight: 700;
  }
  
  /* === RESPONSIVE === */
  @media (max-width: 768px) {
    #wizard_container {
      padding: 25px 20px;
    }
  
    .btn_1, button.forward, button.backward {
      width: 100%;
      margin-top: 10px;
    }
  
    .container_radio,
    .container_check {
      font-size: 1rem;
    }
  }


  .comparison-table {
    border-collapse: collapse;
    width: 100%;
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
  }
  
  .comparison-table th {
    background: #18a84c;
    color: #fff;
    text-align: center;
    font-weight: 600;
    padding: 15px;
  }
  
  .comparison-table td {
    padding: 15px;
    text-align: left;
    color: #333;
    font-size: 0.95rem;
  }
  
  .comparison-table tr:nth-child(even) {
    background: #f9fdfb;
  }
  
  .comparison-table td:first-child {
    font-weight: 600;
    color: #111;
  }
  
  .comparison-table th:first-child {
    border-top-left-radius: 15px;
  }
  
  .comparison-table th:last-child {
    border-top-right-radius: 15px;
  }

  
  /**/

  .accordion-button {
    background: #589442;
    color: #fff;
    font-weight: 600;
    border-radius: 10px;
    box-shadow: none;
  }
  
  .accordion-button:not(.collapsed) {
    background: linear-gradient(90deg, #589442, #2ccc69);
    color: #fff;
  }
  
  .accordion-button:focus {
    box-shadow: 0 0 0 3px rgba(24,168,76,0.2);
  }
  
/* Form page*/

.main_question {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-family: "Inter", "Poppins", sans-serif;
    font-size: 22px;
    font-weight: 500;
    color: #000000;
    margin: 30px 0;
    text-align: center;
  }
  
  .main_question strong {
    color: #000000;
    
    font-weight: 600;
    font-size: 18px;
  }

  .accordion-item:first-of-type>.accordion-header .accordion-button {

    font-size: 1.3125rem !important;
}
  .accordion-item {
    border: none;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    overflow: hidden;
  }
  
  .accordion-body {
    background: #fff;
    border-top: none;
    border-radius: 0 0 15px 15px;
  }
  
  .summary_list {
    list-style: none;
    padding-left: 0;
  }
  
  .summary_list li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    color: #333;
  }
  
  .summary_list li:last-child {
    border-bottom: none;
  }
  
  .state-container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 20px;
    align-items: flex-start;
  }

  /* Opciones de estados */
  .state-selector {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .state-option {
    border: 2px solid #ddd;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 10px;
    cursor: pointer;
    transition: all 0.3s 
ease;
  }

  .state-option:hover {
    border-color: #16a34a;
    background-color: #f8fff9;
  }

  .state-option.active {
    border-color: #16a34a;
    background-color: #e9fce9;
    font-weight: 600;
  }

  /* Información del estado seleccionado */
  .state-info {
    background: #f9f9fb;
    border-radius: 10px;
    padding: 25px;
    min-height: 200px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
  }

  .state-info h2 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #333;
  }

  .state-info p {
    color: #555;
    line-height: 1.5;
  }

  .state-rate {
    font-size: 24px;
    font-weight: 600;
    color: #000000;
    margin-top: 10px;
  }

  @media (max-width: 768px) {
    .state-container {
      grid-template-columns: 1fr;
    }
  }
  
/* Errors form*/
input.error,
textarea.error {
  border-color: #dc3545 !important;
  background-color: #fff5f5 !important;
}

.tooltip-error {
  position: absolute;
  background: #dc3545;
  color: #fff;
  font-size: 13px;
  padding: 4px 8px;
  border-radius: 4px;
  top: 100%;
  left: 0;
  margin-top: 4px;
  white-space: nowrap;
  z-index: 10;
  animation: fadeIn 0.2s ease-in-out;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-3px); }
  to { opacity: 1; transform: translateY(0); }
}

/* CTA */
.call_section {
    background-position: center center;
    background-repeat: no-repeat;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    min-height: 380px;
    padding: 8% 0;
  }
  .call_section .box_1 {
    background-color: #121921;
    color: #fff;
    padding: 45px;
    border-radius: 5px;
  }
  .call_section .box_1 p {
    opacity: 0.8;
    font-size: 16px;
    font-size: 1rem;
  }
  .call_section .box_1 h3 {
    color: #fff;
  }
/* Asistant */

.quiz-step { display: none; }
.quiz-step.active { display: block; animation: fadeIn 0.4s ease; }
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
.options label {
  display: block;
  background: #f7f8fa;
  border-radius: 10px;
  padding: 12px 16px;
  margin-bottom: 10px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.options label:hover {
  background: #e9f7f3;
}
.options input[type="radio"] {
  margin-right: 8px;
}


.plan-price {
  font-size: 2.2rem;
  font-weight: 800;
  color: #ffffff;
  text-align: center;
  margin: 0;
  line-height: 1.2;
  padding-top: 9%;
}

.plan-period {
display: block;
font-size: 1rem;
font-weight: 500;
color: #2e7d32; /* verde corporativo SkapaLLC */
text-align: center;
margin-top: 4px;
text-transform: none;
letter-spacing: 0;
}

/* Ajuste general del bloque para evitar saltos extraños */

.plan-tall .plan-title h3 {
  color: #fff;
  font-weight: 700;
}

.plan .plan-title {
margin-bottom: 15px;
}

.plan .plan-features {
  margin-top: 20px;
  text-align: left;
  margin-left: 10%;
}

.plan {
text-align: center;
}
.plan-features li {
list-style: none;
margin-bottom: 10px;
display: flex;
align-items: center;
font-size: 0.95rem;
line-height: 1.2;
}

.plan-features li i {
font-size: 1.5rem;
}

.plan-desc {
line-height: 1.2em;;
}

.price-det {
font-size: 0.8em;
}

.follow_us {
  display: none;
}

/* plan form */
.plan-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.plan-selector {
  flex: 1;
  min-width: 250px;
}

.plan-option {
  border: 2px solid #ddd;
  padding: 15px;
  border-radius: 8px;
  margin-bottom: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.plan-option:hover {
  border-color: #16a34a;
  background-color: #f8fff9;
}

.plan-option.active {
  border-color: #16a34a;
  background-color: #e9fce9;
}

.plan-info {
  flex: 1.5;
  min-width: 300px;
}
