/* Reset e Base */
* {
   margin: 0;
   padding: 0;
   box-sizing: border-box;
}
.planos {
   padding: 3rem 0rem;
   background: #ffffff2f;
}

.plan-titles {
   font-size: 2.25rem;
   font-weight: bold;
   color: var(--gray-dark);
}

.subsc-button {
   bottom: 2rem;
   left: 50%;
   transform: translateX(-50%);
   /* animation: bounce 2s infinite; */
}

.cta-button-adquirir {
   background: #060606;
   color: #fcfcfc;
   font-weight: bold;
   font-size: 1.025rem;
   padding: 0.5rem 1rem;
   border: none;
   border-radius: 0.5rem;
   cursor: pointer;
   box-shadow: var(--shadow);
   transition: var(--transition);
   transform: scale(1);
}

.cta-button-adquirir:hover {
    background: #020202;
    box-shadow: 0 25px 20px -5px #02020215;
    transform: scale(1.05);
    color: #ffffff;
}
/*--------------------------*/
/* .toggle-switch {
   margin-top: 20%;
  position: relative;
  display: inline-block;
  width: 56px;
  height: 24px;
}

.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: #e8e7e7;
  transition: 0.3s;
  border-radius: 34px;
}

.slider:before {
  position: absolute;
  content: "";
  height: 19px; width: 19px;
  left: 3px;
  bottom: 2px;
  background-color: #5ba3f5;
  transition: 0.2s;
  border-radius: 50%;
}


input:checked + .slider:before {
  transform: translateX(32px);
} */

.toggle-switch {
   position: relative;
   display: inline-block;
   width: 50px;
   height: 24px;
}

.toggle-switch input {
   opacity: 0;
   width: 0;
   height: 0;
}

.slider {
   position: absolute;
   cursor: pointer;
   top: 0;
   left: 0;
   right: 0;
   bottom: 0;
   background-color: #ccc;
   transition: 0.4s;
   border-radius: 24px;
}

.slider:before {
   position: absolute;
   content: "";
   height: 18px;
   width: 18px;
   left: 3px;
   bottom: 3px;
   background-color: white;
   transition: 0.4s;
   border-radius: 50%;
}

input:checked + .slider {
   background-color: #28a745;
}

input:checked + .slider:before {
   transform: translateX(26px);
}

/*--------------------------*/
/* Ícone de informação */
.info-icon {
   display: inline;
   margin-left: 10px;
   cursor: pointer;
   position: relative;
   font-size: 14px;
}
.tooltip-text {
   visibility: hidden;
   width: 220px;
   background-color: #333;
   color: #fff;
   text-align: center;
   border-radius: 6px;
   padding: 5px;
   position: absolute;
   z-index: 1;
   bottom: 20%;
   left: 100%;
   transform: translateX(2%);
   opacity: 0;
   transition: opacity 0.3s;
   font-size: 10px;
}

/* Setinha da tooltip */
.tooltip-text::after {
   content: "";
   position: absolute;
   top: 60%;
   left: -1.5%;
   margin-left: -5px;
   border-width: 5px;
   transform: translateY(-50%);
   border-style: solid;
   border-color: transparent #333 transparent transparent  ;
}
.info-icon:hover .tooltip-text {
   visibility: visible;
   opacity: 1;
   transition-delay: 1s; /* espera 1 segundo para começar a mostrar */
}