body {
  --period-theme: var(--primary-green);
  --background-plan: #A6FEC9;
  --color-text: #143822;
}

/* PLANS  */

.plans-section {
  padding-top: 4rem;
  padding-bottom: 10rem;
  scroll-margin-top: 2rem;
  overflow: hidden;
}

.plans-section-overview-box {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  width: 100%;
}

.plans-section-overview {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.plans-overview {
  text-align: center;
}

.plans-overview span {
  letter-spacing: 0.385em;
  text-transform: uppercase;
  color: #00695A;
  font-size: 14px;
  line-height: 1.5rem;
  letter-spacing: 0.385em;
  text-transform: uppercase;
  font-family:"bornamedium";
  margin-bottom: 0.8rem;
  
}

.plans-overview h1 {
  font-size: 36px;
  letter-spacing: -0.015em;
  color: #021A1A;
  font-family: "bornasemibold";
  font-weight:normal;
}

/* Modernized Plans Overview */
.plans-overview--modern {
  margin-bottom: 1.5rem;
}

.plans-overview--modern h1 {
  margin-bottom: 0.8rem;
}

.plans-overview--modern > p {
  margin-top: 0;
}

/* New Inline Period Toggle - Minimalist Design */
.period-toggle-inline {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
}

.period-toggle-wrapper {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: #f5f7f6;
  padding: 0.4rem;
  border-radius: 10rem;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.period-toggle-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.4rem;
  border: none;
  background: transparent;
  border-radius: 10rem;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #6F7D7D;
  transition: all 0.25s ease;
}

.period-toggle-btn:hover {
  color: #00695A;
}

.period-toggle-btn.active {
  background: #ffffff;
  color: #00695A;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.period-toggle-label {
  font-weight: 600;
}

.period-toggle-badge {
  display: inline-block;
  background: linear-gradient(135deg, #00DF82 0%, #00c389 100%);
  color: #063020;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  padding: 0.25rem 0.6rem;
  border-radius: 10rem;
}

.period-toggle-btn--mensal .period-toggle-badge {
  display: none;
}

/* Hide old box-signature-format when using modern toggle */
.plans-overview--modern + .box-signature-format {
  display: none;
}

/* Legacy support - keep old styles */
.box-signature-format {
  border: 1px solid rgba(0,0,0,0.2);
  border-radius: 1.6rem;
  padding: 40px 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 590px;
}

.period-selector-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding-right: 4rem;
  border-right: 1px solid rgba(0,0,0,0.2);
  width: 100%;
  gap: 1rem;
}

.period-selector-box p {
  font-size: 14px;
  color: var(--grey-medium);
}

.title-signature {
  padding-left: 4rem;
  color: var(--grey-medium);
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 112% !important;
}

.title-signature span {
  color: #00695A;
}

.plans-overview p {
  font-family: "Inter", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--grey-dark);
  margin-top:10px;
}

.plans-overview p a {
  color: #1c875a;
  font-weight: 500;
}

.period-selector {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.7rem;
  width: 12rem;
  border-radius: 14rem;
  border: 1px solid var(--period-theme);
  cursor: pointer;
}

.box--btn {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
}

.btn--header {
  color:#29302D;
  padding: 0.6rem 1.5rem;
  display: inline-block;
  font-size: 15px;
  border-radius: 100px;
  font-family: 'Inter', sans-serif;
}

.btn--green {
  background: #00DF82;
}

.btn--blue {
  background: #2CC295;
}

.period {
  border-radius: 14rem;
  width: 3rem;
  height: 3rem;
}

.period-selector:has(.toggle-period:checked+#label-mensal) {
  background: var(--period-theme);
  transition: all 200ms ease-in-out;
}

.period-selector:has(.toggle-period:checked+#label-anual) {
  background: #00695A;
  transition: all 200ms ease-in-out;
}

.period-selector>input[type="radio"].toggle-period {
  display: none;
}

.period-selector>input[type="radio"].toggle-period+label {
  cursor: pointer;
  transition: all 200ms ease-in-out;
}

.period-selector>input[type="radio"].toggle-period:checked+label {
  cursor: pointer;
  width: 3rem;
  height: 3rem;
}

.period-selector>input[type="radio"].toggle-period+#label-mensal {
  display: none;
}

.period-selector>input[type="radio"].toggle-period+#label-anual {
  background: var(--white);
  transform: translateX(calc(120px - 44px));
}

.period-selector>input[type="radio"].toggle-period:checked+#label-anual {
  transform: translateX(0);
}

.plans {
  display: flex;
  justify-content: space-between;
  width: 100%;
  position: relative;
}

.plan {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  padding: 3rem 1rem;
  font-family: 'Inter', sans-serif;
  position: relative;
}

.plan.mei {
  overflow: hidden;
}

.plan>p {
  line-height: 125%;
}


@media(max-width: 640px) {
  .box-signature-format {
    flex-direction: column-reverse;
    gap: 3rem;
  }

  .title-signature {
    padding: 0;
    text-align: center;
  }

  .period-selector-box {
    padding: 0;
    border: none;
    text-align: center;
  }

  /* Responsive inline toggle */
  .period-toggle-wrapper {
    gap: 0.3rem;
    padding: 0.35rem;
  }

  .period-toggle-btn {
    padding: 0.5rem 1rem;
    font-size: 13px;
  }

  .period-toggle-badge {
    font-size: 9px;
    padding: 0.2rem 0.5rem;
  }
}

.plan>span {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  width: 100%;
  font-size: 2rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--grey-dark);
}

.plan-price:has(.price) {
  margin-top: 4rem;
}

.plan-price.mei:has(.price) {
  margin-top: 2rem;
}

.plan-price:has(.discount-percent) {
  margin-top: 1rem;
}

.plan-price {
  margin-bottom: 4rem;
  width: 100%;
}

.plan-price.final {
  margin-bottom: 8rem;
}


.plan-price .price.final {
  margin-top: -1rem;
}

.mensal .plan-price.final {
  margin-top: 2rem;
  margin-bottom: 4rem;
}

.plans-choose {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  align-items: center;
  position: relative;
}

.discount-percent {
  font-size: 1.4rem;
  font-weight: 600;
  color: #6F7D7D;
  margin-bottom: 1rem;
}

.price {
  font-size: 1.4rem;
  color: #2CC295;
  font-weight: 700;
}

.price>span {
  font-size: 3.8rem;
  font-weight:600;
  color: #2CC295;
}

.price.mei>span {
  font-size: 4.2rem;
  line-height: 112%;
  color: #143822;
}

.promo-btn{
  margin-top: 1rem;
  font-size: 12px;
  color: #6F7D7D;
}

.plans .swiper-wrapper {
  align-items: stretch;
}

.plans-section--without-start .plans .swiper-wrapper {
  justify-content: center;
}

.plans-section--without-start .plans-in-table-box {
  justify-content: center;
}

.plans-section--showcase {
  --plans-accent: #00c389;
  --plans-dark: #0b1422;
  --plans-border: #e3edf2;
  background: linear-gradient(180deg, #f6fbf9 0%, #ffffff 65%);
  padding-top: 5rem;
}

.plans-section--showcase .plans-section-overview {
  gap: 0.5rem;
}

.plans-section--showcase .period-toggle-inline {
  margin-top: 1rem;
  margin-bottom: 2.5rem;
}

.plans-section--showcase .box-signature-format {
  background: #ffffff;
  border-color: var(--plans-border);
  box-shadow: 0 18px 40px rgba(7, 19, 28, 0.08);
}

.plans-section--showcase .plans .swiper-wrapper {
  gap: 2rem;
  padding: 1rem 0 2.5rem;
}

.plans-section--showcase .plans .swiper-slide {
  display: flex;
  justify-content: center;
}

.plans-section--showcase .plan {
  background: #ffffff;
  border: 1px solid var(--plans-border);
  border-radius: 2.4rem;
  box-shadow: 0 18px 38px rgba(10, 20, 32, 0.08);
  padding: 3rem 2.4rem 2.6rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.plans-section--showcase .plan:hover {
  transform: translateY(-0.6rem);
  box-shadow: 0 25px 45px rgba(10, 20, 32, 0.12);
  border-color: var(--plans-accent);
}

/* Keep Business always elevated and styled */
.plans-section--showcase .plan.plan-business.active-plan:hover {
  transform: translateY(-1.4rem);
}

.plans-section--showcase .plan.active-plan {
  background: radial-gradient(120% 120% at 10% 0%, #1a2a3a 0%, #0b1422 65%);
  border: 2px solid var(--plans-accent);
  box-shadow: 0 26px 60px rgba(0, 195, 137, 0.25), 0 20px 50px rgba(10, 20, 32, 0.5);
  transform: translateY(-1.2rem);
}

.plans-section--showcase .plan.active-plan:hover {
  transform: translateY(-1.4rem);
}

.plans-section--showcase .plan.active-plan::before {
  content: "RECOMENDADO";
  position: absolute;
  top: -1.6rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--plans-accent);
  color: #0b1b14;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  padding: 0.5rem 1.6rem;
  border-radius: 999px;
  box-shadow: 0 10px 20px rgba(0, 195, 137, 0.25);
}

.plans-section--showcase .plan > span {
  font-size: 1.6rem;
  letter-spacing: 0.2em;
  color: #5f6b77;
}

.plans-section--showcase .plan.active-plan > span {
  color: #9bdcc3;
}

.plans-section--showcase .price {
  color: #0f1b2d;
}

.plans-section--showcase .price > span {
  font-size: 4.2rem;
  color: #0f1b2d;
}

.plans-section--showcase .annual-discount,
.plans-section--showcase .promo-btn {
  color: #7a8794;
}

.plans-section--showcase .plan.active-plan .price,
.plans-section--showcase .plan.active-plan .price > span,
.plans-section--showcase .plan.active-plan .annual-discount,
.plans-section--showcase .plan.active-plan .promo-btn {
  color: rgba(255, 255, 255, 0.8);
}

.plans-section--showcase .plan.active-plan .annual-discount span {
  color: #ffffff;
}

.plans-section--showcase .plan-btn {
  background: #0d1828;
  border: 0;
  border-radius: 2rem;
  color: #ffffff;
  box-shadow: none;
  margin-top: 1.5rem;
  padding: 1.2rem 3rem;
  font-size: 1.1rem;
  font-weight: 600;
}

/* PME - Espaçamento extra no botão */
.plans-section--showcase .plan.plan-pme .plan-btn {
  margin-top: 2rem;
}

/* PME - Espaçamento proporcional no preço */
.plan-price--pme {
  margin-top: 2.5rem;
  margin-bottom: 1.5rem;
}

/* Business - Espaçamento mais compacto */
.plan-price--business {
  margin-top: 1rem;
  margin-bottom: 0.8rem;
}

/* Link dentro do promo-btn */
.promo-link {
  color: #00c389;
  text-decoration: underline;
  cursor: pointer;
  transition: color 0.2s ease;
}

.promo-link:hover {
  color: #00a070;
}

.plans-section--showcase .plan-btn:hover {
  background: #13233a;
  color: #ffffff;
}

.plans-section--showcase .plan.active-plan .plan-btn {
  background: var(--plans-accent);
  color: #063020;
  box-shadow: none;
}

.plans-section--showcase .advantage {
  padding-left: 0;
}

.plans-section--showcase .advantage > i {
  color: var(--plans-accent);
}

.plans-section--showcase .plan.active-plan .advantage p {
  color: rgba(255, 255, 255, 0.85);
}

.plans-section--showcase .plan.active-plan .advantage span {
  color: #ffffff;
}

.plans-section--showcase .plan.active-plan .advantage.filled,
.plans-section--showcase .plan.active-plan .advantage.filled.feature {
  background-color: rgba(0, 195, 137, 0.15);
  border-radius: 1.2rem;
  padding: 0.4rem 0.8rem;
}

/* =====================================================
   PLANOS MODERNIZADOS - 2026
   Taglines descritivas e destaque Business 2K
   ===================================================== */

/* Tagline descritiva dos planos */
.plan-tagline {
  font-family: 'Inter', sans-serif;
  font-size: 1.3rem;
  font-weight: 400;
  color: #6F7D7D;
  line-height: 1.5;
  margin-top: 1rem;
  margin-bottom: 0;
  text-align: left;
  min-height: 4rem;
  width: 100%;
}

.plans-section--showcase .plan-tagline {
  color: #7a8794;
  font-size: 1.25rem;
  margin-top: 0.8rem;
  min-height: 3.8rem;
}

.plans-section--showcase .plan.active-plan .plan-tagline {
  color: rgba(255, 255, 255, 0.7);
}

/* Destaque especial para CNPJs Ilimitados */
.advantage.cnpj-highlight {
  background: linear-gradient(135deg, #00c389 0%, #00a878 100%) !important;
  border-radius: 1.2rem !important;
  padding: 0.6rem 1rem !important;
  position: relative;
  overflow: hidden;
  animation: pulse-cnpj 2.5s ease-in-out infinite;
}

.advantage.cnpj-highlight::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  0% { left: -100%; }
  100% { left: 100%; }
}

@keyframes pulse-cnpj {
  0%, 100% { box-shadow: 0 0 0 0 rgba(0, 195, 137, 0.4); }
  50% { box-shadow: 0 0 0 6px rgba(0, 195, 137, 0); }
}

.advantage.cnpj-highlight i {
  color: #ffffff !important;
  font-size: 1.2rem;
}

.advantage.cnpj-highlight p,
.advantage.cnpj-highlight span {
  color: #ffffff !important;
  font-weight: 700 !important;
}

/* Plano Business - Estilo padrão (não destacado) */
.plans-section--showcase .plan.plan-business {
  position: relative;
  background: linear-gradient(180deg, #ffffff 0%, #f8faf9 100%);
  border: 1px solid #e0e8e6;
}

.plans-section--showcase .plan.plan-business:hover {
  border-color: var(--plans-accent);
  box-shadow: 0 20px 40px rgba(0, 195, 137, 0.12);
}

.plans-section--showcase .plan.plan-business span {
  color: var(--color-text);
}

.plans-section--showcase .plan.plan-business .plan-tagline {
  color: #6F7D7D;
}

.plans-section--showcase .plan.plan-business .price,
.plans-section--showcase .plan.plan-business .price span {
  color: var(--color-text);
}

.plans-section--showcase .plan.plan-business .price-from {
  color: #6F7D7D;
}

.plans-section--showcase .plan.plan-business .advantage p,
.plans-section--showcase .plan.plan-business .advantage p span {
  color: var(--color-text);
}

.plans-section--showcase .plan.plan-business .advantage.filled p,
.plans-section--showcase .plan.plan-business .advantage.filled p span {
  color: #ffffff;
}

.plans-section--showcase .plan.plan-business .plan-btn {
  background: #0d1828;
  color: #ffffff;
}

/* Badge "MAIS ESCOLHIDO" removido conforme solicitação */

/* Plano Enterprise - Estilo premium */
.plan.plan-enterprise {
  position: relative;
}

.plans-section--showcase .plan.plan-enterprise {
  background: linear-gradient(180deg, #ffffff 0%, #f8faf9 100%);
  border-color: #d0e8e0;
}

.plans-section--showcase .plan.plan-enterprise:hover {
  border-color: #00c389;
  background: linear-gradient(180deg, #ffffff 0%, #f0f8f5 100%);
}

/* Fix hover colors - prevent white text */
.plans-section--showcase .plan.plan-enterprise:hover > span {
  color: #1a2a3a !important;
  -webkit-text-fill-color: #1a2a3a !important;
}

.plans-section--showcase .plan.plan-enterprise:hover .plan-tagline {
  color: #5a6a6a !important;
}

.plans-section--showcase .plan.plan-enterprise:hover .advantage p,
.plans-section--showcase .plan.plan-enterprise:hover .advantage span {
  color: #3a4a4a !important;
}

.plans-section--showcase .plan.plan-enterprise:hover .enterprise-consult-text {
  color: #3a4a4a !important;
}

.plans-section--showcase .plan.plan-enterprise > span {
  font-weight: 800;
  color: #1a2a3a;
}

/* Business "A partir de" label - positioned below price */
.price-from {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  font-weight: 400;
  color: #6F7D7D;
  letter-spacing: 0.02em;
  margin-top: 0.3rem;
  margin-bottom: 0;
}

.plan-price--business {
  margin-top: 1.5rem;
  margin-bottom: 1rem;
}

.plans-section--showcase .plan.active-plan .price-from {
  color: rgba(255, 255, 255, 0.55);
  font-size: 1.1rem;
  margin-top: 0.4rem;
}

/* Enterprise Price Section */
.enterprise-price {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1.5rem 0 0.5rem 0;
}

.enterprise-consult-text {
  margin-bottom: 0.5rem;
}

/* Enterprise Requests Animation - Clean Linear Style */
.enterprise-requests-animation {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  margin-bottom: 0.8rem;
  width: 100%;
}

.requests-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  position: relative;
  padding: 0 10px;
  width: 85%;
}

.requests-line::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  background: repeating-linear-gradient(90deg, #c0c0c0 0px, #c0c0c0 4px, transparent 4px, transparent 8px);
  transform: translateY(-50%);
}

.request-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #00c389;
  position: relative;
  z-index: 1;
  animation: dotPulse 2s ease-in-out infinite;
}

.request-dot.single {
  width: 8px;
  height: 8px;
  background: #00695A;
  animation: singleDotPulse 2s ease-in-out infinite;
}

.requests-dots-group {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: 20px;
}

.requests-dots-group .request-dot:nth-child(1) { animation-delay: 0s; }
.requests-dots-group .request-dot:nth-child(2) { animation-delay: 0.15s; }
.requests-dots-group .request-dot:nth-child(3) { animation-delay: 0.3s; }
.requests-dots-group .request-dot:nth-child(4) { animation-delay: 0.45s; }
.requests-dots-group .request-dot:nth-child(5) { animation-delay: 0.6s; }

@keyframes dotPulse {
  0%, 100% {
    opacity: 0.4;
    transform: scale(0.8);
  }
  50% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes singleDotPulse {
  0%, 100% {
    opacity: 0.6;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.2);
  }
}

/* Enterprise Plan Advantages - Better Spacing */
.plan-advantages--enterprise {
  height: auto !important;
  min-height: auto;
  margin-top: 0.5rem;
  margin-bottom: 1rem;
}

.plans-section--showcase .plan.plan-enterprise .plan-advantages {
  gap: 0.5rem;
}

/* Enterprise Active Plan Styles */
.plans-section--showcase .plan.plan-enterprise.active-plan {
  background: radial-gradient(120% 120% at 10% 0%, #0a2a3a 0%, #051520 65%);
  border-width: 2px;
  border-color: #00c389;
}

.plans-section--showcase .plan.plan-enterprise.active-plan span {
  color: #ffffff;
}

.plans-section--showcase .plan.plan-enterprise.active-plan .plan-tagline {
  color: rgba(255, 255, 255, 0.7);
}

.plans-section--showcase .plan.plan-enterprise.active-plan .enterprise-consult-text {
  color: #ffffff;
}

.plans-section--showcase .plan.plan-enterprise.active-plan .advantage i {
  color: #00c389;
}

.plans-section--showcase .plan.plan-enterprise.active-plan .advantage p,
.plans-section--showcase .plan.plan-enterprise.active-plan .advantage p span {
  color: #ffffff;
}

.plans-section--showcase .plan.plan-enterprise.active-plan .plan-btn {
  background: var(--plans-accent);
  color: #063020;
  box-shadow: none;
}

.plans-section--showcase .plan.plan-enterprise.active-plan .request-dot {
  background: #00c389;
}

.plans-section--showcase .plan.plan-enterprise.active-plan .requests-line::before {
  background: repeating-linear-gradient(90deg, rgba(255,255,255,0.3) 0px, rgba(255,255,255,0.3) 4px, transparent 4px, transparent 8px);
}

.enterprise-consult-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #00c389 0%, #00695A 100%);
  border-radius: 50%;
  margin-bottom: 0.8rem;
  box-shadow: 0 8px 24px rgba(0, 105, 90, 0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.enterprise-consult-icon:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 32px rgba(0, 105, 90, 0.35);
}

.enterprise-consult-icon svg {
  width: 32px;
  height: 32px;
  fill: #ffffff;
}

.enterprise-consult-text {
  font-family: 'Inter', sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #1a2a3a;
  margin-top: 0;
  text-align: center;
}

.enterprise-consult-subtext {
  font-family: 'Inter', sans-serif;
  font-size: 1.2rem;
  color: #6F7D7D;
  margin-top: 0.3rem;
  text-align: center;
}

/* Remove old animation classes */
.enterprise-consult-animation {
  display: none;
}

/* Ajustes de espaçamento com tagline */
.plan:has(.plan-tagline) .plan-price:has(.price) {
  margin-top: 2rem;
}

.plan:has(.plan-tagline) .plan-price:has(.discount-percent) {
  margin-top: 1rem;
}

/* Ajuste altura das vantagens com tagline */
.plan:has(.plan-tagline) .plan-advantages {
  height: 26rem;
}

/* Responsividade das taglines */
@media (max-width: 1150px) {
  .plan-tagline {
    font-size: 1.2rem;
    min-height: 4.5rem;
  }
}

@media (max-width: 991px) {
  .plan-tagline {
    text-align: center;
    min-height: auto;
    margin-bottom: 1rem;
  }
  
  .plans-section--showcase .plan.plan-business.active-plan::after {
    bottom: -1rem;
    font-size: 0.9rem;
    padding: 0.3rem 1rem;
  }
}

@media (max-width: 768px) {
  .plan-tagline {
    font-size: 1.3rem;
    padding: 0 1rem;
  }
}

@media (max-width: 480px) {
  .plan-tagline {
    font-size: 1.2rem;
    padding: 0 0.5rem;
  }
  
  .advantage.cnpj-highlight {
    padding: 0.5rem 0.8rem !important;
  }
}

@media (min-width: 992px) {
  .plans-section--showcase .plans .swiper-slide {
    width: 32rem;
  }
}

@media (max-width: 768px) {
  .plans-section--showcase .plan,
  .plans-section--showcase .plan.active-plan {
    transform: none;
  }

  .plans-section--showcase .plan.active-plan::before {
    top: -1.2rem;
  }
}

.plans .swiper-wrapper.mensal {
  width: max-content;
  margin: 0 auto;
}

.plans .swiper-wrapper .swiper-slide {
  height: auto;
}

.active-plan>.promo-btn {
  color: var(--color-text);
}

.annual-discount {
  font-size: 1.3rem;
  color: #6F7D7D;
  white-space: nowrap;
}

.annual-discount span {
  font-weight: 700;
  color: #6F7D7D;
}

.active-plan .annual-discount { 
  color:#6F7D7D;
}

.plan-advantages {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  height: 28rem;
  max-width: 100%;
}

.advantage {
  display: flex;
  align-items: center;
  padding: 0 0 0 1rem;
}

.mensal .advantage.filled {
  background-color: #19695a;
  border-radius: 10rem;
  padding: 0.5rem 1rem;
  color:#FFFFFF;
}

.mensal .advantage.filled.feature {
  background-color: #19695a;
  border-radius: 10rem;
  padding: 0.5rem 1rem;
  color: #FFFFFF;
}

.mensal .advantage.filled.feature span,
.mensal .advantage.filled.feature p {
  color: #FFFFFF;
}

.mensal .advantage.filled p {
  color: #FFFFFF;
}

.anual .advantage.filled {
  background-color: #2CC295;
  border-radius: 10rem;
  padding: 0.5rem 1rem;
}

.anual .active-plan .advantage.filled {
  background-color: #2CC295;
}

.anual .advantage.filled.feature {
  background-color: #2CC295;
  border-radius: 10rem;
  padding: 0.5rem 1rem;
}

.advantage p {
  font-size: 1.4rem;
  font-weight: 400;
  color: #143822;
  line-height: normal;
  font-family: "Inter", sans-serif;
}

.advantage.filled p,
.advantage.filled span {
  color: #FFFFFF;
  font-weight:600;
}


.advantage span {
  font-weight: 700;
}

.advantage>i {
  color: var(--primary-green);
  margin-right: 1rem;
}

.advantage.filled>i {
  color: #1a9048;
}

.anual .advantage.filled.feature p {
  color: #FFFFFF;
  line-height: 13px;
  padding: 2px 0px 3px;
}

.plan .img-plan-mei {
  position: absolute;
  bottom: -3rem;
  right: -3rem;
  max-width: 20rem;
}

.plan-btn {
  text-align: center;
  text-transform: uppercase;
  border: 1px solid #2CC295;
  padding: 1rem 2rem;
  border-radius: 14rem;
  color: #2CC295;
  background-color: var(--white);
  font-size:14px;
  font-weight:700;
  font-family: 'Inter', sans-serif;
  transition: all 200ms ease-in;
  position: relative;
  display: block;
  z-index:200;
  min-width: 170px;
}

.free-btn {
  width: 79%;
}

.plan-btn:hover {
  background-color: #143822;
  color: var(--white);
}

.active-plan {
  background: #F0FFEB;
  border-radius: 1rem;
}

.active-plan>span,
.active-plan .price,
.active-plan .price>span {
  color: var(--color-text);
}

.mensal .active-plan>span, 
.mensal .active-plan .price, 
.mensal .active-plan .price>span, 
.mensal .active-plan>.promo-btn {
  color: #0c4233;
}

.active-plan>.plan-btn,
.active-plan>.plan-btn:hover {
  color: #00DF82;
  background: #00695A;
  border-color:#00695A;
}

.active-plan>.plan-btn.mei {
  background-color: var(--color-text);
  color: #fff;
}

.plan-btn.mei {
  position: absolute;
  bottom: 5.5rem;
}

.active-plan>.plan-btn:hover {
  background-color: #2CC295;
  color: #FFFFFF;
  border: 1px solid #2CC295
}

.plans-pagination {
  display: none;
}

.selector-plan-box {
  display: none;
  margin-top: 3rem;
  justify-content: center;
  gap: 2rem;
  height: 2.7rem;
}

.selector-plan-box button {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: 50%;
  background: transparent;
  width: 2.7rem;
  border: 1px solid var(--period-theme);
}

.discount-warning {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1.5rem;
  color: var(--period-theme);
  font-size: 1.3rem;
}

.selector-plan-box button i {
  color: var(--period-theme);
}

@media (max-width: 1150px) {
  .plan-btn {
    font-size:12px;
    padding: 1rem 1.5rem;
  }

  .advantage p {
    font-size: 1.2rem;
  }

  .plan-advantages {
    height: 32rem;
  }

  /*.price>span {
    font-size: 3rem;
  }*/

  .annual-discount,
  .price {
    font-size: 1.2rem;
  }
}

.table-btn {
  display: flex;
  justify-content: center;
  gap: 1rem;
  align-items: center;
  margin: 0;
  cursor: pointer;
  border: 1px solid var(--period-theme);
  border-radius: 10rem;
  padding: 1rem 3.4rem;
}

.table-btn p {
  font-size: 1.6rem;
  text-transform: uppercase;
  color: var(--period-theme);
  font-weight: 600;
}

.table-btn i {
  color: var(--period-theme);
  transition: transform 300ms ease-in;
  transform: rotate(180deg);
}

.table-btn i.hide {
  transform: rotate(0deg);
}

.plans-table {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  width: 100%;
}

.plans-table.hide {
  display: none;
}

.table-box-mobile {
  display: none;
}

.box-switch {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.box-switch span {
  text-transform: uppercase;
  font-weight: 700;
  font-size: 14px;
  color: var(--grey-medium);
}

.plan-in-table .plan-price {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  margin: 0;
}

.plan-in-table .plan-price .price {
  color: #fff;
}

.plan-in-table .discount-percent {
  font-size: 1.4rem;
  font-weight: 600;
  color: #fff;
}

.plan-in-table .price>span {
  font-size: 3.6rem;
  color: var(--white);
}

.plan-in-table .annual-discount span,
.plan-in-table .annual-discount {
  font-size: 1.2rem;
  color: #fff;
  white-space: nowrap;
}

.annual-discount.mei {
  white-space: wrap;
  line-height: 112%;
  margin-top: 1.5rem;
  color: var(--color-text);
}

.plan-in-table .plan-btn {
  justify-content: center;
  cursor: pointer;
  text-align: center;
  text-transform: uppercase;
  padding: 1rem;
  border-radius: 14rem;
  color: var(--period-theme);
  background-color: var(--white);
  font-size: 1.4rem;
  border: 0;
}

.plan-in-table .promo-btn {
  text-align: center;
  color: var(--white);
}

.plans-in-table {
  position: fixed;
  top: 7.5rem;
  max-width: 1115px;
  width: 100%;
  height: auto;
  opacity: 1;
  transition: all ease-in-out .2s;
}

.hide-plans-in-table {
  height: 0;
  opacity: 0;
  pointer-events: none;
}

.plans-in-table-box {
  display: flex;
  gap: 0.1rem;
  align-items: stretch;
  justify-content: flex-end;
}

.plans-in-table-box .plan-in-table.mensal,
.plans-in-table-box .mensal {
  display: none;
}

.plan-in-table {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  max-width: 21.5rem;
  width: 100%;
  border-radius: 0.8rem;
  background-color: var(--period-theme);
  padding: 2rem;
  height: 23rem;
  font-family: 'Inter', sans-serif;
}

.plans-in-table.anual .plan-in-table {
  max-width: 29rem; 
}

.plan-in-table>span {
  font-size: 1.6rem;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--white);
  width: 100%;
}

.table {
  table-layout: fixed;
  width: 100%;
  border-collapse: collapse;
  border-radius: 2rem;
  overflow: hidden;
  margin-top:50px;
}

.table thead th>.head-1 {
  padding-left: 1.6rem;
}

.head-1 {
  display: flex;
  align-items: center;
  max-width: 31.2rem;
}

.head-1>img {
  width: 1.6rem;
  height: 1.6rem;
  margin-right: 1.2rem;
}

.head-1>p {
  text-align: start;
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: -0.015em;
  color: #FFFFFF;
  line-height: normal !important;
}

.em_breve {
  font-size: 13px !important;
}

.table td,
.table th {
  border-right: 1px solid #AACBC4;
  border-left: 1px solid #AACBC4;
}

#borderBottomTable {
  border-bottom: 1px solid #AACBC4;
}

#borderTopTable {
  border-top: 1px solid #AACBC4;
}

.table tbody td {
  height: 4.2rem;
  font-family: "Inter", sans-serif;
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: -0.015em;
  color: rgba(84, 88, 93, 0.86);
  text-align: center;
}

.table tbody td:nth-child(1) {
  font-size: 1.4rem;
  color: var(--grey-medium) !important;
}

td>img {
  align-self: center;
  justify-self: center;
  margin-top: 4px;
  width: 1.8rem;
  height: 1.8rem;
}

#column-1 {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  color: var(--grey-black);
  text-align: unset;
  padding: 1.6rem;
}

.table tr:nth-child(odd) {
  background: #f8f9fb;
}

.table th {
  background: #ffffff;
}

.table thead th {
  height: 5.6rem;
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: -0.015em;
  color: #FFFFFF;
  text-align: center;
  background:#2CC295;
}

.table th:nth-child(1) {
  width: 250px;
  background-color:#2CC295;
}

.table-attendance-rows {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 1.6rem;
}

.table-attendance-rows h2 {
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: -0.015em;
  color: var(--grey-medium);
  margin-bottom: 0.6rem;
}

.table-attendance-rows p {
  font-family: "Inter", sans-serif;
  font-size: 1.2rem;
  font-weight: 400;
  letter-spacing: -0.015em;
  color: rgba(84, 88, 93, 0.86);
  width: 28.1rem;
  text-align: left;
}

td p {
  font-family: "Inter", sans-serif;
  font-size: 1.2rem;
  font-weight: 400;
  max-width: 90%;
  letter-spacing: -0.015em;
  color: rgba(84, 88, 93, 0.86);
  text-align: left;
}

.attendance-deadline {
  width: 19.4rem;
}

.attendance-deadline p {
  font-family: "Inter", sans-serif;
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: -0.015em;
  color: rgba(84, 88, 93, 0.86);
}

.attendance-deadline span {
  font-weight: 600;
  color: var(--grey-medium);
}

.table-additional-information {
  display: flex;
  justify-content: center;
  flex-direction: column;
  font-family: "Inter", sans-serif;
  font-size: 1.4rem;
  text-align:center;
  font-weight: 400;
  border-radius: 1.6rem;
  background: #F0FFEB;
  height: 5.6rem;
  color:#646464;
  padding-left: 7.4rem;
  margin-top: 5rem;
}

.table-additional-information i,
th>i,
.attendance-deadline i {
  color: var(--primary-green);
}

.table-additional-information span {
  font-weight: 700;
}

.distrito-federal-box {
  height: 6rem !important;
}

.distrito-federal {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-green);
  font-weight: 600;
}

.distrito-federal>img {
  width: 1.8rem;
  height: 1.8rem;
}

.plans-table-title {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}

.plans-table-title img {
  height: 0.2rem;
  width: 3.4rem;
  margin-left: 1.1rem;
}

.plans-table-title>h1 {
  font-size: 2.4rem;
  font-weight: 500;
  letter-spacing: -.015em;
  color: var(--grey-black);
}

.table .mensal {
  display: none;
}

.plans-pagination {
  display: flex;
  justify-content: center;
}

.plans-choose>.plans-pagination>.swiper-pagination-bullet {
  margin: 0.5rem;
  background-color: var(--period-theme);
}

/* PLANS - MEDIA QUERIES */
/* Valores em px e rem para funcionar em  navegadores que não suportam a unidade rem */

@media (max-width: 991px) {

  /*.price>span {
    font-size: 2rem;
  }*/

  /*.price {
    margin-left: 1rem;
  }*/

  .plan-btn {
    width: 15rem;
    font-size: 1rem;
  }

  .annual-discount {
    font-size: 1.3rem;
  }

  .plan-price {
    align-items: center;
  }

  .advantage p {
    width: 15rem;
  }

}

@media (max-width: 820px) {
  .advantage p {
    font-size: 1rem;
  }

  .plan-btn {
    font-size: 1rem;
    width: 14rem;
    padding: 1rem;
  }
}

@media (max-width: 768px) {

  .advantage p {
    font-size: 1.4rem;
  }

  .selector-plan-box {
    display: flex;
  }

  .plans-in-table {
    display: none !important;
  }

  .plans-table .table-box {
    display: none;
  }

  .table tbody tr th.mensal,
  .table thead tr th.mensal {
    display: none;
  }

  .table-box-mobile {
    display: flex;
    flex-direction: column;
  }

  .table-box-mobile-header {
    display: flex;
    justify-content: space-between;
    width: 100%;
  }

  .prev-plan,
  .next-plan {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 4rem;
    width: 12rem;
    border-radius: 0.4rem;
  }

  .prev-plan,
  .next-plan {
    background-color: var(--period-theme);
  }

  .prev-plan i,
  .next-plan i {
    color: var(--white);
  }

  .plans-table-title {
    display: none;
  }

  .table-box-mobile-plan-type .mensal {
    display: none;
  }

  .table-box-mobile-plan-type {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }

  .slide-table-header-box {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0.6rem 0 4rem;
  }

  .slide-table-header-box h2 {
    font-size: 24px;
    font-size: 2.4rem;
    color: var(--grey-black);
    font-weight: 700;
    letter-spacing: -0.015em;
  }

  .slide-table-header-box>.swiper-pagination-bullet {
    background: transparent;
  }

  .table-box-mobile-content {
    display: flex;
    height: 100%;
    width: 100%;
    overflow: hidden;
  }

  .slide-table-content-box ul {
    margin: 0 auto;
    width: 100%;
    height: 90%;
  }

  .slide-table-content-box ul li {
    padding: 1.5rem;
    margin: 1.6rem 0;
    background: #eceef4;
    border-radius: 0.8rem;
  }

  .slide-table-content-box ul li .table-mobile-title {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
  }

  .slide-table-content-box ul li .table-mobile-title h2 {
    font-size: 18px;
    font-size: 1.8rem;
    font-weight: 500;
    color: var(--grey-black);
  }

  .slide-table-content-box ul li .table-mobile-title img {
    width: 18px;
    width: 1.8rem;
    height: 18px;
    height: 1.8rem;
    margin-right: 12px;
    margin-right: 1.2rem;
  }

  .slide-table-content-box ul li>img {
    position: absolute;
    width: 12px;
    width: 1.2rem;
    height: 10px;
    height: 1rem;
    margin-top: 5px;
    right: 12%;
  }

  .slide-table-content-box ul li input[type="checkbox"] {
    position: absolute;
    cursor: pointer;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0;
  }

  .slide-table-content-box ul li input[type="checkbox"]~img {
    transform: rotate(180deg);
    transition: transform 0.2s linear;
  }

  .slide-table-content-box ul li input[type="checkbox"]:checked~img {
    transform: rotate(0deg);
  }

  .slide-table-content-box ul li input[type="checkbox"]:checked~.plan-contents {
    margin-top: 0;
    max-height: 0;
    opacity: 0;
    transform: translate(0, 50%);
  }

  .plan-contents {
    margin-top: 30px;
    margin-top: 3rem;
  }

  .plan-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.5rem;
    width: 100%;
    background: #f8f9fb;
    border-radius: 0.4rem;
    margin: 1rem 0;
    padding: 1rem;
  }

  .plan-content p {
    font-weight: 500;
    letter-spacing: -0.015em;
    color: var(--grey-medium);
  }

  .plan-content p>span {
    font-weight: bold;
  }

  .plan-content p:last-child {
    font-family: "Inter", sans-serif;
    font-weight: 400;
    color: rgba(84, 88, 93, 0.86);
  }

  .plan-content img {
    width: 2rem;
    height: 2rem;
  }

  .nfs-e {
    font-family: "Inter", sans-serif;
    text-align: center;
    width: 130px;
    width: 13rem;
  }

  .nfs-e span {
    color: var(--primary-green);
    font-size: 14px;
    font-size: 1.4rem;
  }

  .nfs-e p {
    color: var(--grey-medium);
    opacity: 0.86;
    font-size: 10px;
    font-size: 1rem;
  }

  .atendimento-webbr {
    letter-spacing: -0.015em;
    color: var(--grey-medium);
  }

  .atendimento-webbr span {
    font-weight: 500;
    font-size: 15px;
    font-size: 1.5rem;
  }

  .atendimento-webbr p {
    font-family: "Inter", sans-serif;
    font-size: 12px;
    font-size: 1.2rem;
    font-weight: 400;
    opacity: 0.86;
    width: 240px !important;
    width: 24rem !important;
  }

  .table-additional-information {
    display: none;
  }
}

@media (max-width: 520px) {
  
  /* Ajustes gerais da seção */
  .plans-section {
    padding-top: 2rem;
    padding-bottom: 6rem;
  }
  
  /* Ajustes dos botões header */
  .box--btn {
    flex-direction: column;
    gap: 0.8rem;
    padding: 0 1.5rem;
  }
  
  .btn--header {
    font-size: 14px;
    width: 100%;
    text-align: center;
    padding: 0.8rem 1rem;
  }
  
  /* Ajustes do overview */
  .plans-overview {
    padding: 0 1.5rem;
  }
  
  .plans-overview h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
  }
  
  .plans-overview p {
    font-size: 1.4rem;
    line-height: 1.5;
  }
  
  /* Ajustes do seletor de período */
  .box-signature-format {
    padding: 0 1.5rem;
    margin-top: 2rem;
  }
  
  .period-selector-box p {
    font-size: 1.3rem;
    margin-bottom: 1rem;
  }
  
  .box-switch {
    gap: 0.8rem;
  }
  
  .box-switch span {
    font-size: 1.3rem;
  }
  
  .title-signature {
    font-size: 1.3rem;
    margin-top: 1.5rem;
  }
  
  /* Ajustes da tabela mobile */
  .table-box-mobile {
    padding: 0 1rem;
  }
  
  .table-box-mobile-header {
    padding: 1rem 0;
  }
  
  .prev-plan,
  .next-plan {
    padding: 0.8rem;
    font-size: 1.2rem;
  }
  
  .slide-table-header-box h2 {
    font-size: 1.8rem;
  }
  
  /* Ajustes do conteúdo dos planos */
  .plan-contents {
    margin-top: 2rem;
    padding: 0 1rem;
  }
  
  .plan-content {
    padding: 0.8rem 0;
    font-size: 1.3rem;
  }
  
  .plan-content p {
    font-size: 1.3rem;
    line-height: 1.4;
  }
  
  .table-mobile-title {
    padding: 1.5rem 1rem;
    gap: 0.8rem;
  }
  
  .table-mobile-title h2 {
    font-size: 1.6rem;
  }
  
  .table-mobile-title img {
    width: 2rem;
    height: 2rem;
  }
  
  /* Ajustes dos cards de planos */
  .plans {
    padding: 0 1rem;
  }
  
  .plan {
    width: 100%;
    max-width: 100%;
    padding: 2rem 1.5rem;
  }
  
  .plan h1 {
    font-size: 2rem;
  }
  
  .plan-price .price {
    font-size: 2.8rem;
  }
  
  .plan-price .price-month {
    font-size: 1.2rem;
  }
  
  /* Ajuste do disclaimer */
  .discount-warning {
    font-size: 1.1rem;
    padding: 0 1.5rem;
    line-height: 1.4;
  }
}

@media (max-width: 480px) {

  /* Sobrescrever estilos do 520px quando necessário */
  .btn--header {
    font-size: 13px;
    padding: 0.7rem 0.8rem;
  }

  .plans-overview h1 {
    font-size: 2.4rem;
    text-align: center;
    margin-bottom: 1rem;
  }

  .plans .swiper-slide {
    display: flex;
    justify-content: center;
  }

  .plan {
    margin-left: 0;
  }
  .discount-warning {
    text-align: center;
    padding: 0 2rem;
    font-size: 1.2rem;
    margin: 0;
  }

  .slide-table-content-box {
    margin: 0 auto;
    overflow: hidden;
  }

  .table-targeting {
    margin-bottom: 10px;
    margin-bottom: 1rem;
  }

  .button-next {
    display: none;
  }

  .plan-price {
    align-items: flex-start;
  }

  .price {
    margin-left: 0;
  }

  .table-btn {
    padding: 1rem 3rem;
  }

  .table-btn p {
    font-size: 1.2rem;
  }
  
  /* Ajustes adicionais para 480px */
  .plans-overview p {
    font-size: 1.3rem;
  }
  
  .plan h1 {
    font-size: 1.8rem;
  }
  
  .plan-price .price {
    font-size: 2.4rem;
  }
  
  .plan-content {
    font-size: 1.2rem;
  }
  
  .slide-table-header-box h2 {
    font-size: 1.6rem;
  }
  
  .table-mobile-title h2 {
    font-size: 1.4rem;
  }
}

@media (max-width: 375px) {
  .plans-section {
    padding-top: 1rem;
    padding-bottom: 4rem;
  }
  
  /* Ajustes extremos para telas muito pequenas */
  .plans-overview h1 {
    font-size: 2rem;
  }
  
  .btn--header {
    font-size: 12px;
    padding: 0.6rem 0.5rem;
  }
  
  .box--btn {
    gap: 0.6rem;
  }
  
  .plans-overview p,
  .period-selector-box p,
  .box-switch span,
  .title-signature {
    font-size: 1.2rem;
  }
  
  .plan {
    padding: 1.5rem 1rem;
  }
  
  .plan h1 {
    font-size: 1.6rem;
  }
  
  .plan-price .price {
    font-size: 2rem;
  }
  
  .plan-price .price-month {
    font-size: 1rem;
  }
  
  .plan-content p,
  .table-mobile-title h2 {
    font-size: 1.2rem;
  }
  
  .slide-table-header-box h2 {
    font-size: 1.4rem;
  }
  
  .discount-warning {
    font-size: 1rem;
    padding: 0 1rem;
  }
}

@media (max-width: 320px) {
  /* Ajustes para telas muito pequenas (320px) */
  .plans-section {
    padding-top: 0.5rem;
    padding-bottom: 3rem;
  }
  
  .plans-overview h1 {
    font-size: 1.8rem;
    line-height: 1.1;
  }
  
  .btn--header {
    font-size: 11px;
    padding: 0.5rem 0.3rem;
  }
  
  .box--btn {
    gap: 0.5rem;
    padding: 0 1rem;
  }
  
  .plans-overview,
  .box-signature-format {
    padding: 0 1rem;
  }
  
  .plans-overview p,
  .period-selector-box p,
  .box-switch span,
  .title-signature,
  .plan-content p,
  .table-mobile-title h2 {
    font-size: 1.1rem;
  }
  
  .period-selector {
    transform: scale(0.9);
  }
  
  .plan {
    padding: 1.2rem 0.8rem;
  }
  
  .plan h1 {
    font-size: 1.4rem;
  }
  
  .plan-price .price {
    font-size: 1.8rem;
  }
  
  .plan-price .price-month {
    font-size: 0.9rem;
  }
  
  .slide-table-header-box h2 {
    font-size: 1.2rem;
  }
  
  .table-mobile-title {
    padding: 1rem 0.8rem;
  }
  
  .table-mobile-title img {
    width: 1.6rem;
    height: 1.6rem;
  }
  
  .plan-contents {
    padding: 0 0.5rem;
  }
  
  .plan-content {
    padding: 0.6rem 0;
  }
  
  .plan-content img {
    width: 1.6rem;
    height: 1.6rem;
  }
  
  .table-btn {
    padding: 0.8rem 1.5rem;
    font-size: 1.1rem;
  }
  
  .discount-warning {
    font-size: 0.9rem;
    padding: 0 0.8rem;
  }
  
  /* Garantir que não há scroll horizontal */
  .plans-choose,
  .table-box-mobile {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }
}

/* SOME DIFFERENTIALS - MODERN REDESIGN */

.some-differentials {
  background: #00695A;
  padding: 8.1rem 0 8.2rem 0;
}

.some-differentials--modern {
  background: linear-gradient(135deg, #004D40 0%, #00695A 50%, #00897B 100%);
  padding: 6rem 0 7rem 0;
  position: relative;
  overflow: hidden;
}

.some-differentials--modern::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 80%, rgba(0, 223, 130, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.05) 0%, transparent 40%);
  pointer-events: none;
}

.some-differentials-box {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 2rem;
  position: relative;
  z-index: 1;
}

.some-differentials-box-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.some-differentials-header-content {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.some-differentials-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 0.6rem 1.4rem;
  border-radius: 100px;
  font-size: 1.2rem;
  font-weight: 500;
  color: #A6FEC9;
  width: fit-content;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.some-differentials-box-header h1 {
  font-size: 3.6rem;
  font-family: "bornasemibold";
  letter-spacing: -0.02em;
  color: var(--white);
  font-weight: normal;
  margin: 0;
}

.some-differentials-subtitle {
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 400;
  line-height: 1.5;
  max-width: 500px;
  margin: 0;
}

.buttons-slider {
  display: flex;
  gap: 0.8rem;
}

.buttons-slider button {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4.8rem;
  height: 4.8rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 1.2rem;
  color: white;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.buttons-slider button:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-2px);
}

.buttons-slider button:active {
  transform: translateY(0);
}

.buttons-slider button svg {
  width: 2rem;
  height: 2rem;
}

.buttons-slider button>img {
  width: 1rem;
  height: 1rem;
}

.some-differentials-box-slider {
  width: 100%;
  overflow: hidden;
}

/* Card antigo - mantido para retrocompatibilidade */
.differential-box {
  display: flex;
  flex-direction: column;
  height: 35rem;
  background: var(--white);
  border-radius: 0.8rem;
  padding: 3.6rem 3rem 2.2rem 3rem;
}

.differential-box>img {
  width: 4.6rem;
  height: 4.6rem;
  margin-bottom: 1.6rem;
}

.differential-box h2 {
  font-size: 2rem;
  font-weight: 600;
  color: #2CC295;
  margin-bottom: 1.4rem;
}

.differential-box p {
  font-family: "Inter", sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: rgba(34, 36, 39, 0.7);
}

.differential-box-img {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.4rem;
  background: #e5f5ec;
  width: 4.6rem;
  height: 4.6rem;
  margin-bottom: 1.6rem;
}

.differential-box-img>img {
  width: 2.5rem;
  height: 2.5rem;
}

/* Card moderno - novo design */
.differential-box--modern {
  display: flex;
  flex-direction: column;
  height: 34rem;
  background: rgba(255, 255, 255, 0.98);
  border-radius: 2rem;
  padding: 2.8rem;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(0, 105, 90, 0.08);
  box-shadow: 
    0 4px 6px -1px rgba(0, 0, 0, 0.05),
    0 10px 15px -3px rgba(0, 0, 0, 0.05);
}

.differential-box--modern::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #00DF82, #00695A);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.differential-box--modern:hover {
  transform: translateY(-8px);
  box-shadow: 
    0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.differential-box--modern:hover::before {
  opacity: 1;
}

.differential-box-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 6rem;
  height: 6rem;
  border-radius: 1.6rem;
  margin-bottom: 2rem;
  transition: all 0.3s ease;
}

.differential-box-icon svg {
  width: 3.2rem;
  height: 3.2rem;
}

/* Cores dos ícones por tipo */
.differential-box-icon--taxes {
  background: linear-gradient(135deg, #E8F5E9 0%, #C8E6C9 100%);
  color: #00695A;
}

.differential-box-icon--support {
  background: linear-gradient(135deg, #E3F2FD 0%, #BBDEFB 100%);
  color: #1565C0;
}

.differential-box-icon--contingency {
  background: linear-gradient(135deg, #FFF3E0 0%, #FFE0B2 100%);
  color: #E65100;
}

.differential-box-icon--security {
  background: linear-gradient(135deg, #F3E5F5 0%, #E1BEE7 100%);
  color: #7B1FA2;
}

.differential-box-icon--numbering {
  background: linear-gradient(135deg, #E0F2F1 0%, #B2DFDB 100%);
  color: #00796B;
}

.differential-box-icon--pdf {
  background: linear-gradient(135deg, #FFEBEE 0%, #FFCDD2 100%);
  color: #C62828;
}

.differential-box-icon--storage {
  background: linear-gradient(135deg, #E8EAF6 0%, #C5CAE9 100%);
  color: #303F9F;
}

.differential-box-icon--api {
  background: linear-gradient(135deg, #E0F7FA 0%, #B2EBF2 100%);
  color: #00838F;
}

.differential-box--modern:hover .differential-box-icon {
  transform: scale(1.05);
}

.differential-box-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.differential-box--modern h2 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #1A1A1A;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.differential-box--modern p {
  font-family: "Inter", sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: #5A6A6A;
  line-height: 1.7;
  flex: 1;
  margin: 0;
}

.differential-box-tag {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.differential-box-tag span {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, #E8F5E9 0%, #C8E6C9 100%);
  color: #00695A;
  padding: 0.6rem 1.2rem;
  border-radius: 100px;
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.some-diffenttials-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 3rem;
  margin-top: 2rem;
}

.some-differentials--modern .some-diffenttials-pagination {
  gap: 0.8rem;
}

.some-differentials-box>.some-diffenttials-pagination>.swiper-pagination-bullet {
  margin: 0.5rem;
  background-color: #fff;
}

.some-differentials--modern .some-diffenttials-pagination .swiper-pagination-bullet {
  width: 1rem;
  height: 1rem;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  transition: all 0.3s ease;
  margin: 0;
}

.some-differentials--modern .some-diffenttials-pagination .swiper-pagination-bullet-active {
  background: #00DF82;
  width: 3rem;
  border-radius: 1rem;
}

/* SOME DIFFERENTIALS - MEDIA QUERIES */

@media (max-width: 768px) {
  .some-differentials--modern {
    padding: 4rem 0 5rem 0;
  }

  .some-differentials-box-header {
    flex-direction: column;
    gap: 2rem;
    align-items: flex-start;
  }

  .some-differentials-box-header h1 {
    font-size: 2.8rem;
  }

  .some-differentials-subtitle {
    font-size: 1.4rem;
  }

  .buttons-slider {
    align-self: flex-end;
  }

  .differential-box--modern {
    min-height: 28rem;
    padding: 2.4rem;
    border-radius: 1.6rem;
  }

  .differential-box-icon {
    width: 5rem;
    height: 5rem;
    border-radius: 1.2rem;
  }

  .differential-box-icon svg {
    width: 2.4rem;
    height: 2.4rem;
  }

  .differential-box--modern h2 {
    font-size: 1.6rem;
  }

  .differential-box--modern p {
    font-size: 1.3rem;
  }
}

@media (max-width: 480px) {
  .some-differentials-box-header h1 {
    margin-left: 0;
    font-size: 2.4rem;
  }

  .some-differentials-badge {
    font-size: 1.1rem;
    padding: 0.5rem 1.2rem;
  }

  .buttons-slider {
    display: none;
  }

  .differential-box {
    margin-left: 2.5rem;
  }

  .differential-box--modern {
    margin-left: 1.5rem;
    margin-right: 1.5rem;
    min-height: auto;
  }

  .some-differentials-header-content {
    padding: 0 1.5rem;
  }
}

@media (max-width: 375px) {
  .differential-box {
    margin-left: 10px;
    margin-left: 0rem;
  }

  .differential-box--modern {
    margin-left: 1rem;
    margin-right: 1rem;
  }
}

.logos {
  display: flex; 
  align-items: center;
  gap: 20px;
}
.section_customer {
  background: #edf9e9;
}
.section_customer img {
  width: 12%;
}
.section_customer .text {
  width: 10%;
  float: left;
  display: flex; 
  align-items: center; 
  font-weight: 800;
  font-size: 14px;
  text-align: left;
  color:#225146;
}
.hero {
  padding:7rem 0;
}
@media (max-width: 991px) {
  .section_customer .logos {
    padding-left: 30px;
  }
}
@media (max-width: 700px) {
  .section_customer{
    display:none;
  }
  .hero {
      padding: 7rem 0 4rem;
  }
}

/* =====================================================
   PLANS FULLWIDTH - Layout Grid para página Nota Fiscal
   ===================================================== */

.plans-section--fullwidth {
  background: #ffffff;
  padding: 6rem 0 8rem;
}

.plans-section--fullwidth .plans-overview--modern {
  margin-bottom: 4rem;
}

/* Grid de Planos Full Width */
.plans-grid-fullwidth {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.4rem;
  width: 100%;
}

/* Card Base */
.plan-card {
  background: #ffffff;
  border-radius: 2rem;
  padding: 3rem;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid rgba(0, 105, 90, 0.1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.plan-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 105, 90, 0.12);
  border-color: rgba(0, 105, 90, 0.25);
}

/* Badge Recomendado */
.plan-card__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #00c389 0%, #00a878 100%);
  color: #063020;
  font-size: 1.1rem;
  font-weight: 700;
  padding: 0.6rem 1.8rem;
  border-radius: 50px;
  font-family: 'Inter', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  box-shadow: 0 4px 15px rgba(0, 195, 137, 0.35);
  white-space: nowrap;
}

/* Header do Card */
.plan-card__header {
  margin-bottom: 1.5rem;
  min-height: 7rem;
}

.plan-card__name {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #6F7D7D;
  margin-bottom: 0.8rem;
}

.plan-card__tagline {
  font-family: 'Inter', sans-serif;
  font-size: 1.35rem;
  font-weight: 400;
  color: #6F7D7D;
  line-height: 1.5;
  margin: 0;
}

/* Pricing Section */
.plan-card__pricing {
  margin-bottom: 1.5rem;
  min-height: 10rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.plan-card__price {
  display: flex;
  align-items: baseline;
  gap: 0.3rem;
}

.plan-card__price-value {
  font-family: 'Inter', sans-serif;
  font-size: 4.2rem;
  font-weight: 600;
  color: #143822;
  line-height: 1;
}

.plan-card__price-suffix {
  font-family: 'Inter', sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: #143822;
}

.plan-card__price-total,
.plan-card__price-installments {
  font-family: 'Inter', sans-serif;
  font-size: 1.3rem;
  color: #6F7D7D;
  margin: 0.3rem 0 0 0;
}

.plan-card__price-total strong,
.plan-card__price-installments strong {
  font-weight: 700;
  color: #6F7D7D;
}

.plan-card__price-from {
  font-family: 'Inter', sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: #6F7D7D;
  margin: 0 0 0.5rem 0;
}

/* CTA Section - Logo abaixo do preço */
.plan-card__cta {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.plan-card__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 1.5rem 2.5rem;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}

.plan-card__btn--primary {
  background: #00695A;
  color: #ffffff;
  border: 2px solid #00695A;
  box-shadow: 0 4px 14px rgba(0, 105, 90, 0.35);
}

.plan-card__btn--primary:hover {
  background: #004D40;
  border-color: #004D40;
  box-shadow: 0 6px 20px rgba(0, 105, 90, 0.45);
  transform: translateY(-2px);
}

/* Botão outline - borda verde escuro, fundo transparente */
.plan-card__btn--outline {
  background: transparent;
  color: #00695A;
  border: 2px solid #00695A;
  box-shadow: none;
}

.plan-card__btn--outline:hover {
  background: rgba(0, 105, 90, 0.08);
  border-color: #004D40;
  color: #004D40;
  transform: translateY(-2px);
}

.plan-card__btn--secondary {
  background: transparent;
  color: #00695A;
  border: none;
  padding: 0.6rem 2rem;
  font-weight: 600;
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.plan-card__btn--secondary:hover {
  color: #004D40;
  text-decoration: underline;
}

/* Link secundário com "ou" */
.plan-card__link-secondary {
  font-family: 'Inter', sans-serif;
  font-size: 1.3rem;
  text-align: center;
}

.plan-card__link-or {
  color: #143822;
  font-weight: 400;
}

.plan-card__link-secondary a {
  color: #00695A;
  font-weight: 500;
  text-decoration: none;
}

.plan-card__link-secondary a:hover {
  text-decoration: underline;
  color: #004D40;
}

.plan-card__btn--outline {
  background: #ffffff;
  color: #143822;
  border: 2px solid #143822;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.plan-card__btn--outline:hover {
  background: #143822;
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(20, 56, 34, 0.25);
  transform: translateY(-2px);
}

/* Features Section */
.plan-card__features {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  flex: 1;
}

.plan-card__features-title {
  font-family: 'Inter', sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: #143822;
  margin-bottom: 0.8rem;
}

.plan-card__feature {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  font-family: 'Inter', sans-serif;
  font-size: 1.4rem;
  color: #4a5568;
  padding: 0.5rem 0;
  line-height: 1.4;
}

.plan-card__feature i {
  color: #00695A;
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.plan-card__feature span {
  line-height: 1.5;
}

.plan-card__feature u {
  text-decoration: underline;
  text-decoration-color: #00695A;
  text-underline-offset: 2px;
}

.plan-card__feature strong {
  font-weight: 600;
  color: #143822;
}

/* Feature Highlight - Estilo sutil */
.plan-card__feature--highlight {
  background: transparent;
  border-radius: 0;
  padding: 0.5rem 0;
  color: #143822;
}

.plan-card__feature--highlight i {
  color: #00695A;
}

.plan-card__feature--highlight span {
  font-weight: 600;
  color: #143822;
}

.plan-card__feature--full {
  background: transparent;
}

/* Feature Premium (CNPJs Ilimitados) - Destaque especial mas sutil */
.plan-card__feature--premium {
  background: rgba(0, 105, 90, 0.08);
  border-radius: 8px;
  padding: 0.6rem 1rem;
  color: #00695A;
  animation: none;
}

.plan-card__feature--premium i {
  color: #00695A;
}

.plan-card__feature--premium span {
  font-weight: 700;
  color: #00695A;
}

/* =====================================================
   PME Card Styles
   ===================================================== */
.plan-card--pme {
  background: #ffffff;
}

/* =====================================================
   BUSINESS Card Styles
   ===================================================== */
.plan-card--business {
  background: linear-gradient(180deg, #ffffff 0%, #f8faf9 100%);
}

/* =====================================================
   ENTERPRISE Card Styles (Destacado - Identidade Webmania)
   ===================================================== */
.plan-card--enterprise {
  background: radial-gradient(120% 120% at 10% 0%, #0a2a3a 0%, #051520 65%);
  border: 2px solid #00c389;
  box-shadow: 0 20px 50px rgba(0, 105, 90, 0.15), 0 15px 40px rgba(5, 21, 32, 0.3);
  transform: translateY(-8px);
}

.plan-card--enterprise:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 60px rgba(0, 105, 90, 0.2), 0 20px 50px rgba(5, 21, 32, 0.35);
  border-color: #00DF82;
}

.plan-card--enterprise .plan-card__cta {
  border-bottom-color: rgba(255, 255, 255, 0.1);
}

.plan-card--enterprise .plan-card__name {
  color: #00c389;
}

.plan-card--enterprise .plan-card__tagline {
  color: rgba(255, 255, 255, 0.65);
}

.plan-card--enterprise .plan-card__features-title {
  color: rgba(255, 255, 255, 0.5);
}

.plan-card--enterprise .plan-card__feature {
  color: rgba(255, 255, 255, 0.75);
}

.plan-card--enterprise .plan-card__feature strong {
  color: #ffffff;
}

.plan-card--enterprise .plan-card__feature i {
  color: #00c389;
}

.plan-card--enterprise .plan-card__feature--highlight {
  background: transparent;
}

.plan-card--enterprise .plan-card__feature--highlight span {
  color: rgba(255, 255, 255, 0.85);
}

.plan-card--enterprise .plan-card__feature--premium {
  background: rgba(0, 195, 137, 0.12);
  border-radius: 8px;
}

.plan-card--enterprise .plan-card__feature--premium i,
.plan-card--enterprise .plan-card__feature--premium span {
  color: #00c389;
}

/* Enterprise Button - Borda branca, sem fundo */
.plan-card__btn--enterprise {
  background: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
  font-weight: 700;
  font-size: 1.4rem;
  padding: 1.5rem 2.5rem;
  box-shadow: none;
}

.plan-card__btn--enterprise:hover {
  background: #ffffff;
  color: #051520;
  border-color: #ffffff;
  box-shadow: none;
  transform: translateY(-2px);
}

/* Business Button Hover */
.plan-card__btn--outline:hover {
  background: #00695A;
  color: #ffffff;
  border-color: #00695A;
  transform: translateY(-2px);
}

/* Enterprise Pricing Visual */
.plan-card__pricing--enterprise {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 10rem;
  padding: 0;
}

.plan-card__enterprise-visual {
  margin-bottom: 1rem;
}

.enterprise-animation {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0.5rem 0;
}

.enterprise-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #00c389;
  animation: enterprisePulse 2s ease-in-out infinite;
}

.enterprise-dot--single {
  width: 8px;
  height: 8px;
  background: #00695A;
  animation: singlePulse 2s ease-in-out infinite;
}

.enterprise-dots-group {
  display: flex;
  align-items: center;
  gap: 6px;
}

.enterprise-dots-group .enterprise-dot:nth-child(1) { animation-delay: 0s; }
.enterprise-dots-group .enterprise-dot:nth-child(2) { animation-delay: 0.15s; }
.enterprise-dots-group .enterprise-dot:nth-child(3) { animation-delay: 0.3s; }
.enterprise-dots-group .enterprise-dot:nth-child(4) { animation-delay: 0.45s; }
.enterprise-dots-group .enterprise-dot:nth-child(5) { animation-delay: 0.6s; }

@keyframes enterprisePulse {
  0%, 100% { opacity: 0.4; transform: scale(0.8); }
  50% { opacity: 1; transform: scale(1); }
}

@keyframes singlePulse {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.2); }
}

.plan-card__scale-text {
  font-family: 'Inter', sans-serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: #ffffff;
  margin: 0;
}

/* =====================================================
   RESPONSIVIDADE - Grid Full Width
   ===================================================== */

@media (max-width: 1100px) {
  .plans-grid-fullwidth {
    gap: 2rem;
  }
  
  .plan-card {
    padding: 2.5rem;
  }
  
  .plan-card__price-value {
    font-size: 3.6rem;
  }
}

@media (max-width: 991px) {
  .plans-section--fullwidth {
    padding: 5rem 0 6rem;
  }
  
  .plans-grid-fullwidth {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }
  
  .plan-card--enterprise {
    transform: none;
  }
  
  .plan-card--enterprise:hover {
    transform: translateY(-8px);
  }
  
  .plan-card__header {
    min-height: auto;
  }
  
  .plan-card__pricing,
  .plan-card__pricing--enterprise {
    min-height: auto;
  }
}

@media (max-width: 768px) {
  .plans-section--fullwidth {
    padding: 4rem 0 5rem;
  }
  
  .plans-section--fullwidth .plans-overview h1 {
    font-size: 3rem;
  }
  
  .plan-card {
    padding: 2.5rem 2rem;
  }
  
  .plan-card__price-value {
    font-size: 3.4rem;
  }
  
  .plan-card__btn {
    padding: 1rem 1.8rem;
    font-size: 1.2rem;
  }
}

@media (max-width: 480px) {
  .plans-section--fullwidth {
    padding: 3rem 0 4rem;
  }
  
  .plans-section--fullwidth .plans-overview h1 {
    font-size: 2.6rem;
  }
  
  .plans-grid-fullwidth {
    max-width: 100%;
    padding: 0 1.5rem;
  }
  
  .plan-card {
    padding: 2rem 1.5rem;
    border-radius: 1.6rem;
  }
  
  .plan-card__badge {
    font-size: 1rem;
    padding: 0.5rem 1.4rem;
  }
  
  .plan-card__price-value {
    font-size: 3rem;
  }
  
  .plan-card__feature {
    font-size: 1.25rem;
  }
  
  .plan-card__btn {
    width: 100%;
  }
}

/* =====================================================
   LAYOUT MODERNO 3 COLUNAS - PME 500, BUSINESS 2K e ENTERPRISE
   ===================================================== */

/* Grid de 3 colunas */
.plans-grid-fullwidth--three-cols {
  grid-template-columns: repeat(3, 1fr);
  max-width: 1200px;
  margin: 0 auto;
  gap: 2.5rem;
}

/* Card moderno base */
.plan-card--modern {
  background: linear-gradient(180deg, #ffffff 0%, #fafcfb 100%);
  border: 1px solid #e8f0ed;
  border-radius: 2.4rem;
  padding: 3.5rem;
  position: relative;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.plan-card--modern:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0, 105, 90, 0.15);
  border-color: #00c389;
}

/* Card destacado (ENTERPRISE) */
.plan-card--featured {
  background: linear-gradient(135deg, #0a2a3a 0%, #051520 100%);
  border: 2px solid #00c389;
  box-shadow: 0 20px 50px rgba(0, 195, 137, 0.2), 0 15px 40px rgba(5, 21, 32, 0.3);
}

.plan-card--featured:hover {
  transform: translateY(-12px);
  box-shadow: 0 30px 60px rgba(0, 195, 137, 0.25), 0 20px 50px rgba(5, 21, 32, 0.35);
  border-color: #00DF82;
}

.plan-card--featured .plan-card__name {
  color: #00c389;
}

.plan-card--featured .plan-card__tagline {
  color: rgba(255, 255, 255, 0.7);
}

.plan-card--featured .plan-card__price-from {
  color: rgba(255, 255, 255, 0.6);
}

.plan-card--featured .plan-card__price-currency,
.plan-card--featured .plan-card__price-value,
.plan-card--featured .plan-card__price-suffix {
  color: #ffffff;
}

.plan-card--featured .plan-card__cta {
  border-bottom-color: rgba(255, 255, 255, 0.1);
}

.plan-card--featured .plan-card__btn--primary {
  background: #00c389;
  border-color: #00c389;
  color: #063020;
}

.plan-card--featured .plan-card__btn--primary:hover {
  background: #00DF82;
  border-color: #00DF82;
}

/* Botão ENTERPRISE - borda branca, fundo transparente, texto branco */
.plan-card--featured .plan-card__btn--enterprise {
  background: transparent;
  border: 2px solid #ffffff;
  color: #ffffff;
}

.plan-card--featured .plan-card__btn--enterprise:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #ffffff;
  color: #ffffff;
}

.plan-card--featured .plan-card__feature {
  color: rgba(255, 255, 255, 0.8);
}

.plan-card--featured .plan-card__feature i {
  color: #00c389 !important;
}

.plan-card--featured .plan-card__feature strong {
  color: #ffffff;
}

.plan-card--featured .plan-card__feature--premium,
.plan-card--featured .plan-card__feature--highlight {
  background: rgba(0, 195, 137, 0.15);
}

.plan-card--featured .plan-card__feature--premium span,
.plan-card--featured .plan-card__feature--highlight span {
  color: #00c389;
}

/* Escala ilimitada texto no featured */
.plan-card--featured .plan-card__scale-text {
  color: #ffffff;
}

/* Currency styling */
.plan-card__price-currency {
  font-family: 'Inter', sans-serif;
  font-size: 2rem;
  font-weight: 600;
  color: #143822;
  margin-right: 0.3rem;
}

/* Ícones pretos para PME e BUSINESS */
.plan-card--modern .plan-card__feature i {
  width: 2rem;
  text-align: center;
  color: #143822;
}

/* Card destacado (ENTERPRISE) - ícones verdes */
.plan-card--featured .plan-card__feature i {
  color: #00c389 !important;
}

/* =====================================================
   TABELA MODERNA 3 COLUNAS
   ===================================================== */

.table-box--modern {
  margin-top: 4rem;
}

.table--three-cols {
  max-width: 1100px;
  margin: 0 auto;
}

.table--three-cols th:nth-child(1) {
  width: 34%;
}

.table--three-cols th:nth-child(2),
.table--three-cols th:nth-child(3),
.table--three-cols th:nth-child(4) {
  width: 22%;
}

/* Destaque coluna BUSINESS */
.table-highlight {
  background: linear-gradient(180deg, rgba(0, 195, 137, 0.08) 0%, rgba(0, 195, 137, 0.03) 100%) !important;
  position: relative;
}

.table thead th.table-highlight {
  background: linear-gradient(135deg, #00695A 0%, #00897B 100%) !important;
  color: #ffffff;
  font-weight: 700;
}

.table tbody td.table-highlight {
  background: rgba(0, 195, 137, 0.06);
  font-weight: 500;
}

.table tbody tr:nth-child(odd) td.table-highlight {
  background: rgba(0, 195, 137, 0.1);
}

/* =====================================================
   TABELA MOBILE - ESTILOS ADICIONAIS
   ===================================================== */

.plan-badge-mobile {
  display: inline-block;
  background: linear-gradient(135deg, #00c389 0%, #00a878 100%);
  color: #063020;
  font-size: 1rem;
  font-weight: 700;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  margin-top: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.plan-content--highlight {
  background: rgba(0, 195, 137, 0.1) !important;
  border-left: 3px solid #00c389;
}

.slide-table-header-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

/* =====================================================
   RESPONSIVIDADE - 3 COLUNAS
   ===================================================== */

@media (max-width: 1100px) {
  .plans-grid-fullwidth--three-cols {
    gap: 2rem;
  }
  
  .plan-card--modern {
    padding: 2.5rem 2rem;
  }
}

@media (max-width: 991px) {
  .plans-grid-fullwidth--three-cols {
    grid-template-columns: 1fr;
    max-width: 500px;
    gap: 2.5rem;
  }
}

@media (max-width: 768px) {
  .plans-grid-fullwidth--three-cols {
    max-width: 100%;
    padding: 0 2rem;
  }
  
  .plan-card--modern {
    padding: 2.5rem 2rem;
    border-radius: 2rem;
  }
  
  .table--three-cols {
    font-size: 1.3rem;
  }
  
  .table--three-cols th:nth-child(1) {
    width: 35%;
  }
  
  .table--three-cols th:nth-child(2),
  .table--three-cols th:nth-child(3),
  .table--three-cols th:nth-child(4) {
    width: 21.66%;
  }
}

@media (max-width: 480px) {
  .plans-grid-fullwidth--three-cols {
    padding: 0 1.5rem;
    gap: 2rem;
  }
  
  .plan-card--modern {
    padding: 2rem 1.5rem;
    border-radius: 1.6rem;
  }
  
  .plan-card--modern .plan-card__feature {
    font-size: 1.3rem;
  }
  
  .plan-card--modern .plan-card__feature i {
    font-size: 1.2rem;
    width: 1.8rem;
  }
}

/* Badge ENTERPRISE mobile */
.plan-badge-mobile--enterprise {
  background: linear-gradient(135deg, #0a2a3a 0%, #051520 100%);
  color: #00c389;
  border: 1px solid #00c389;
}

/* =====================================================
   PLANOS FIXOS NA TABELA - 3 COLUNAS
   ===================================================== */

.plans-in-table-box--three-cols {
  justify-content: center;
  gap: 1rem;
}

.plans-in-table-box--three-cols .plan-in-table {
  max-width: 24rem;
  height: auto;
  min-height: 18rem;
}

.plan-in-table--featured {
  background: linear-gradient(135deg, #00695A 0%, #00897B 100%) !important;
  border: 2px solid #00c389;
  box-shadow: 0 8px 25px rgba(0, 195, 137, 0.3);
}

.plan-in-table--featured span {
  color: #00DF82 !important;
}

.plan-in-table--featured .plan-btn {
  background: #00c389;
  color: #063020;
  border: none;
}

.plan-in-table--featured .plan-btn:hover {
  background: #00DF82;
}

/* ENTERPRISE na tabela fixa */
.plan-in-table--enterprise {
  background: linear-gradient(135deg, #0a2a3a 0%, #051520 100%) !important;
  border: 2px solid #00c389;
  box-shadow: 0 8px 25px rgba(0, 195, 137, 0.25);
}

.plan-in-table--enterprise span {
  color: #00c389 !important;
}

.plan-in-table--enterprise .plan-btn {
  background: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}

.plan-in-table--enterprise .plan-btn:hover {
  background: #ffffff;
  color: #051520;
}
