#expand{
    width: 900px !important; margin: 0 auto ; margin-top: -120px
}
.pricing-section {

  padding: 5rem 5%;

  & h2 {
    text-align: center;
    font-size: 1.85rem;
    padding-bottom: 1.4em;
    text-wrap: balance; /*  Only supported by ~65.04% of browsers, but cosmetic change. */
    width: 500px;
    max-width: 90%;
    margin: 0 auto;
  }
}

.item-pricing {
  display: flex;
  flex-direction: column;
  flex: 0 0 100%;
  text-align: center;


  &:first-child div {
    border-left: 0;
  }

  &:last-child div {
    border-right: 0;
  }

  & > div {
    display: flex;
    flex-direction: column;
    justify-content: center;

    min-height: 60px;
    /*border: 2px solid #ccc !important;*/
    border-top: 1px solid #F1F1F1 !important;
    border-bottom: none;
    font-size: 1.2rem;
  }

  & > div:first-child {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-top: none;
    gap: 0.8rem;
    background-color: #f1f1f1 !important;
    min-height: 250px;
  }

  & > div:nth-child(n + 2):nth-child(-n + 9) {
    min-height: 64px;
  }

  & div:last-child {
    /*border-bottom: 1px solid #333;*/
  }
}

.item-heading-container {
  flex: 0 0 25%;

  & div {
    padding: 0.3rem;
    font-size: 1rem;
    font-weight: var(--font-weight-title);
  }
}

.item-heading {
  font-weight: var(--font-weight-title);
  font-size: 1.4rem;
}

.item-price {
  font-size: 2.1rem;
  font-weight: var(--font-weight-title);
}

.item-user {
  font-size: 0.85rem;
  margin-top: -0.9rem;
  margin-bottom: 0.3rem;
}

.item-heading-mobile {
  font-weight: var(--font-weight-title);
  font-size: 0.9rem;
}

.item-detail {
  font-size: 0.9rem;
}

.item-flex {
  display: flex;
  flex-direction: column;
  justify-content: center;
  /* padding: 0.2rem; */
  gap: 0.3rem;
}

.clearborder-top {
  border-top: none !important;
}

.item-category {
  font-weight: 800 !important;
  font-size: 1.1rem !important;
}

.carousel-container {
  position: relative;
  overflow: hidden;
}

.carousel {
  display: flex;
  transition: transform 0.3s ease-in-out;
   outline: none !important;
}

.highlight-notice {
  display: block;
  background-color: #BCDFFD;
  color: var(--color-white);
  border-radius: 100px;
  padding: 0.5rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.035rem;
  margin-bottom: 0.5rem;
}

.slider-previous,
.slider-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  padding: 0 0.05em;
  cursor: pointer;
  left: 0;
  right: initial;
  height: 100%;
  border: none;
  background: transparent;
  font-size: 2em;
  color: var(--color-primary);
  transition: 0.2s ease-in-out;
   outline: none !important;

  &:hover {
    color: black;
     outline: none !important;
  }
}

/* Overriding slider-previous values */
.slider-next {
  left: initial;
  right: 0;
}

.slider-nav-container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 1.2em;
  padding: 2.2rem;

  & button {
    font-size: 1rem;
    background: none;
    border: none;
    color: var(--color-primary);
     outline: none !important;
  }
}

.button {
  display: block;
  color: #fff;
  font-size: 0.9rem;
  text-decoration: none;
  border-radius: 0.5rem;
  padding: 0.5em 1.8em;
  transition: all 0.3s ease-in-out;
  text-align: center;
  border: 1px solid #0050C3;
  background-color: #0050C3;

  &:hover {
    background-color: #fff;
    border: 1px solid #0050C3;
    color: #0050C3;
    opacity: 0.9;
     outline: none !important;
  }
}


.display-none {
  display: none;
   outline: none !important;
}

.display-flex {
  display: flex;
}

.display-block {
  display: block;
}

.c-primary {
  color: var(--color-primary);
}

.bg-transparent {
  background-color: transparent !important;
}

.bg-light-gray {
  background-color: var(--color-light-gray);
}

/* d displays */
@media (min-width: 768px) {

  .pricing-section {
    font-size: 1.4rem;
    /* padding: 5rem 12%; */
    margin: 0 auto;

    & h2 {
      font-size: 2.6rem;
    }
  }

  .item-pricing {
    flex: 1 1 25%;
  }

  .item-heading-mobile {
    display: none;
  }

  .carousel-container {
    width: 100%;
     outline: none !important;
  }

  .carousel {
    transform: translateX(
      0
    ) !important; /* Resets translation if resizing from mobile to desktop */
     outline: none !important;
  }

  .slider-previous,
  .slider-next {
    display: none;
    outline: none !important;
  }

  .display-flex-lg {
    display: flex;
  }

  .display-none-lg {
    display: none;
  }
}

@media (min-width: 992px) {
  .pricing-section {
    padding: 5rem 10%;
     outline: none !important;
  }
}

@media only screen and (max-width: 700px) {
  #expand{
    width: 95% !important; margin: 0 auto ; margin-top: -100px
}

}





/* Contêiner principal da seção de preços */
.pricing-section-container {
    padding: 3rem 1rem;
    background-color: #f8f8f8; /* Um fundo suave */
    text-align: center;
}

/* Contêiner dos cartões de preço */
.pricing-cards-wrapper {
    display: flex;
    flex-wrap: wrap; /* Permite que os cartões quebrem para a próxima linha em telas menores */
    justify-content: center;
    gap: 1.5rem; /* Espaço entre os cartões */
    margin-top: 3rem;
}

/* Estilo individual do cartão de preço */
.pricing-card {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08); /* Sombra mais suave */
    padding: 2.5rem 2rem;
    width: 100%; /* Largura total em mobile */
    max-width: 450px; /* Largura máxima para desktops 350 */
   /*  max-width: 550px; */
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #eee; /* Borda suave */
}

.pricing-card:hover {
    /* transform: translateY(-5px); */ /* Efeito de elevação ao passar o mouse */
    box-shadow: 0 22px 35px rgba(0, 0, 0, 0.12);
}

/* Destaque para o plano mais popular */
.pricing-card.popular {
    border: 2px solid #0050C3; /* Borda mais destacada */
    transform: scale(1.03); /* Levemente maior */
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.pricing-card.popular .plan-name {
    color: #0050C3; /* Cor do nome do plano em destaque */
}

.pricing-card .popular-badge {
    background-color: #0050C3;
    color: #fff;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: bold;
    margin-bottom: 1rem;
    position: absolute; /* Para posicionar dentro do card */
    top: -15px; /* Ajusta a posição vertical */
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap; /* Evita que o texto quebre */
}

.pricing-card {
    position: relative; /* Necessário para posicionar o badge */
}

/* Título do plano */
.plan-name {
    font-size: 1.1rem;
    font-weight: 400;
    color: #333;
    margin-bottom: 1rem;
}

/* Preço do plano */
.plan-price {
    font-size: 2.3rem;
   
    color: #333; /* Cor primária */
    margin-bottom: 0.5rem;
    display: flex;
    align-items: baseline;
}

.plan-price .currency {
    font-size: 1.5rem; /* Tamanho do R$ */
    margin-right: 0.2rem;
}

.plan-price .period {
    font-size: 1.1rem;
    font-weight: normal;
    color: #777;
    margin-left: 0.2rem;
}

/* Lista de características */
.plan-features {
    list-style: none; /* Remove marcadores de lista */
    padding: 0;
    margin: 1.5rem 0;
    width: 100%;
}

.plan-features li {
    font-size: 1rem;
    color: #555;
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center; /* Centraliza o ícone e o texto */
}

.plan-features li i {
    color: #28a745; /* Cor verde para o check */
    margin-right: 0.5rem;
    font-size: 1.1rem;
}

.plan-features li.unavailable i {
    color: #dc3545; /* Cor vermelha para o X */
}

/* Botão de ação */
.plan-button {
    background-color: #0050C3;
    color: #fff;
    padding: 0.8rem 2rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 1.5rem;
    transition: background-color 0.3s ease;
    display: inline-block; /* Para que padding e margin funcionem bem */
}

.plan-button:hover {
    background-color: #003a8d;
}

/* Responsividade para telas menores */
@media (max-width: 768px) {
    .pricing-cards-wrapper {
        flex-direction: column;
        align-items: center;
    }
    .pricing-card {
        padding: 2rem 1.5rem;
    }
    .plan-name {
        font-size: 1.6rem;
    }
    .plan-price {
        font-size: 2.5rem;
    }
}


/* --- Estilos para o Seletor de Período de Planos --- */
.plan-period-selector {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 2rem; /* Adiciona um espaço acima do switch */
    margin-bottom: 2rem; /* Adiciona um espaço abaixo do switch */
    gap: 1rem; /* Espaço entre os elementos do switch */
}

.toggle-control {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

.toggle-control input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
    border-radius: 34px;
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
    border-radius: 50%;
}

input:checked + .toggle-slider {
    background-color: #0050C3; /* Cor primária do seu botão */
}

input:focus + .toggle-slider {
    box-shadow: 0 0 1px #0050C3;
}

input:checked + .toggle-slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
}

.period-label {
    font-weight: bold;
    color: #555;
    transition: color 0.3s ease;
    user-select: none; /* Impede que o texto seja selecionado */
    cursor: pointer; /* Indica que é um elemento clicável */
}

.period-label.active-period {
    color: #0050C3; /* Cor da label ativa */
}

/* Tabela planos */

  .air__container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px;
}

.air__banner-wrapper img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.air__quote,
.air__style-block,
.air__copy-settings,
.air__search-block {
  margin: 15px 0;
  padding: 24px;
  background: #f4f8f0;
  border-left: 6px solid #78be21;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.air__quote h3,
.air__style-block h3,
.air__copy-settings h3,
.air__search-block h3 {
  margin-top: 0;
  font-size: 1.2rem;
  color: #222;
}

.air__style-block,
.air__copy-settings,
.air__search-block {
  border-left-color: #4a90e2;
}

.air__quote {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}
.air__quote img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
}

.air__quote-text {
  font-size: 1rem;
}

.air__style-switcher,
.air__copy-options {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 12px;
}
.air__style-switcher label,
.air__copy-options label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-size: 0.9rem;
  color: #333;
}
.air__style-switcher label input[type=radio],
.air__copy-options label input[type=radio] {
  appearance: none;
  width: 16px;
  height: 16px;
  border: 2px solid #4a90e2;
  border-radius: 50%;
  position: relative;
}
.air__style-switcher label input[type=radio]:checked::before,
.air__copy-options label input[type=radio]:checked::before {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4a90e2;
}

.table {
  width: 100%;
  border-collapse: collapse;
  background-color: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  margin-bottom: 40px;
}
.table th, .table td {
  border: 1px solid #ddd;
  padding: 16px;
  text-align: center;
}
.table td:first-child {
  font-size: 15px;
  text-align: left;
  background: #fbfbfb;
  font-weight: 500;
}
.table tr:hover {
  background: #f8f8f8;
}
.table tfoot td {
  font-style: normal;
  font-size: 0.9rem;
  text-align: center;
}
.table.green thead th {
  background: #78be21;
  color: #ffffff;
}
.table.violet thead th {
  background: #a259ff;
  color: #ffffff;
}
.table.blue thead th {
  background: #4a90e2;
  color: #ffffff;
}
.table.monochrome thead th {
  background: #555;
  color: #ffffff;
}
.table.minimal thead th {
  background: #f0f0f0;
  color: #222;
  border-bottom: 2px solid #ddd;
}

.air__button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: #ffffff;
  border: 2px solid #78be21;
  padding: 10px 16px;
  border-radius: 12px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 500;
  color: #222;
}
.air__button:hover {
  background-color: #78be21;
  color: #ffffff;
}
.air__button.green {
  border-color: #78be21;
}
.air__button.green:hover {
  background-color: #78be21;
}
.air__button.violet {
  border-color: #a259ff;
}
.air__button.violet:hover {
  background-color: #a259ff;
}
.air__button.blue {
  border-color: #4a90e2;
}
.air__button.blue:hover {
  background-color: #4a90e2;
}
.air__button.monochrome {
  border-color: #555;
}
.air__button.monochrome:hover {
  background-color: #555;
}
.air__button.minimal {
  border-color: #ddd;
}
.air__button.minimal:hover {
  background-color: #f0f0f0;
  color: #222;
}

.air__icon {
  display: inline-block;
  width: 16px;
  height: 16px;
  background-color: #78be21;
  mask-size: cover;
  mask-repeat: no-repeat;
  -webkit-mask-size: cover;
  -webkit-mask-repeat: no-repeat;
  transition: background-color 0.3s ease;
}
.air__icon.green {
  background-color: #78be21;
}
.air__icon.violet {
  background-color: #a259ff;
}
.air__icon.blue {
  background-color: #4a90e2;
}
.air__icon.monochrome {
  background-color: #555;
}
.air__icon.minimal {
  background-color: #888;
}

.air__modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  justify-content: center;
  align-items: center;
  z-index: 1000;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.air__modal.active {
  display: flex;
}
.air__modal.show {
  opacity: 1;
}
.air__modal .air__modal-content {
  background: #fff;
  padding: 24px;
  border-radius: 12px;
  max-width: 650px;
  width: 90%;
  transform: translateY(-40px);
  transition: transform 0.3s ease;
  position: relative;
}
.air__modal .air__modal-content h2 {
  margin-top: 0;
  margin-right: 36px;
}
.air__modal.show .air__modal-content {
  transform: translateY(0);
}
.air__modal .air__modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}
.air__modal .air__modal-close {
  position: absolute;
  top: 30px;
  right: 30px;
  width: 24px;
  height: 24px;
  background-color: #78be21;
  mask-image: url("https://air-wp.com/air-user-interface-icon-pack/png-64/close.png");
  -webkit-mask-image: url("https://air-wp.com/air-user-interface-icon-pack/png-64/close.png");
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  mask-size: contain;
  -webkit-mask-size: contain;
  transition: all 0.3s ease;
  cursor: pointer;
}
.air__modal .air__modal-close:hover {
  transform: rotate(90deg);
  background-color: #222;
}

.air__fixed-tabs {
  position: fixed;
  bottom: 20px;
  left: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 10000;
  display: none

}
.air__fixed-tabs .air__tab-button {
  display: flex;
  align-items: center;
  gap: 8px;
  background-color: #ffffff;
  border: 2px dashed #78be21;
  border-radius: 14px;
  padding: 10px 14px;
  color: #333;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.95rem;
  backdrop-filter: blur(4px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.air__fixed-tabs .air__tab-button .air__icon {
  width: 20px;
  height: 20px;
  background-color: #78be21;
}
.air__fixed-tabs .air__tab-button:hover {
  background-color: #78be21;
  color: #ffffff;
}
.air__fixed-tabs .air__tab-button:hover .air__icon {
  background-color: #ffffff;
}

.table-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: 12px;
}

@media (max-width: 768px) {
  .table-wrapper {
    border: 1px solid #ddd;
  }

  .table {
    min-width: 600px;
  }
  .table td:first-child {
    position: static;
    font-weight: bold;
    background: rgba(0, 0, 0, 0.03);
  }
  .table th, .table td {
    padding: 12px 8px;
    font-size: 14px;
  }

  .air__button {
    padding: 8px 12px;
    font-size: 14px;
  }
}
@media (max-width: 480px) {
  .air__container {
    padding: 15px;
  }

  .air__quote,
.air__style-block,
.air__copy-settings,
.air__search-block {
    margin: 15px 0;
    padding: 20px;
  }

  .air__style-switcher,
.air__copy-options {
    gap: 10px;
  }

  .air__fixed-tabs {
    bottom: 10px;
    right: 10px;
  }
}
