/* ============================================ */
/* CSS EXCLUSIVO PARA SEÇÃO DE PLANOS - INDEX */
/* ============================================ */

/* Prevenir scroll horizontal apenas na seção de planos */

/* ============================================ */
/* CORREÇÕES PARA FOOTER                       */
/* ============================================ */

/* Garantir que o footer não seja cortado */
.footer-section {
  margin-bottom: 0 !important;
  padding-bottom: 30px !important;
}

.footer-bottom {
  padding: 30px 0 40px !important;
}

/* Adicionar espaçamento interno ao container de copyright */
.footer-bottom-content {
  padding: 0 40px !important;
  margin: 0 auto !important;
  max-width: 1200px !important;
}

/* Ajustar links para não ficarem colados */
.footer-links {
  gap: 20px !important;
}

.footer-links a {
  padding: 8px 12px !important;
  border-radius: 4px !important;
  transition: all 0.3s ease !important;
}

.footer-credits {
  gap: 12px !important;
}

/* Ajustar para mobile */
@media (max-width: 768px) {
  .footer-section {
    padding-bottom: 50px !important;
  }

  .footer-bottom {
    padding: 35px 0 50px !important;
  }

  .footer-bottom-content {
    padding: 0 20px !important;
    gap: 20px !important;
  }

  .footer-links {
    gap: 15px !important;
  }
}

@media (max-width: 480px) {
  .footer-bottom-content {
    padding: 0 16px !important;
    gap: 25px !important;
  }

  .footer-links {
    flex-direction: column !important;
    gap: 12px !important;
  }

  .footer-links span {
    display: none !important;
  }
}

/* ============================================ */
/* CORREÇÕES PARA REDES SOCIAIS DO FOOTER      */
/* ============================================ */

/* Centralizar redes sociais abaixo do logo */
.footer-social {
  justify-content: center !important;
  margin-top: 20px !important;
  gap: 18px !important;
}

/* Mudar cor para laranja sólido */
.footer-social a,
.social-link {
  background: #ff7b00 !important;
  width: 44px !important;
  height: 44px !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: white !important;
  text-decoration: none !important;
  transition: all 0.3s ease !important;
  font-size: 1.2rem !important;
  box-shadow: 0 4px 15px rgba(255, 123, 0, 0.3) !important;
}

.footer-social a:hover,
.social-link:hover {
  background: #e56900 !important;
  transform: translateY(-3px) scale(1.1) !important;
  box-shadow: 0 8px 25px rgba(255, 123, 0, 0.5) !important;
}

/* Mobile - manter centralizado */
@media (max-width: 480px) {
  .footer-social {
    justify-content: center !important;
    gap: 15px !important;
  }

  .footer-social a,
  .social-link {
    width: 40px !important;
    height: 40px !important;
    font-size: 1.1rem !important;
  }
}

/* ============================================ */
/* SEÇÃO DE PLANOS                             */
/* ============================================ */
.plans-section {
  padding: 80px 0;
  margin-top: 0;
  position: relative;
  background:
    radial-gradient(circle at 10% 20%, rgba(59, 130, 246, 0.1) 0%, transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(139, 92, 246, 0.1) 0%, transparent 40%),
    linear-gradient(180deg, var(--primary-dark) 0%, rgba(26, 31, 58, 0.95) 100%);
  box-shadow:
    0 15px 40px rgba(59, 130, 246, 0.4),
    0 25px 60px rgba(0, 212, 255, 0.3),
    0 35px 80px rgba(59, 130, 246, 0.2);
  overflow-x: hidden;
}

/* Garantir que o body tenha scroll horizontal quando necessário */
html, body {
  overflow-x: hidden !important;
  max-width: 100vw !important;
  box-sizing: border-box !important;
}

/* Apenas ocultar overflow horizontal na seção de planos */
.plans-section {
  overflow-x: hidden !important;
  max-width: 100% !important;
}

/* ---------- Título da Seção ---------- */
.plans-section .section-title {
  text-align: center;
  font-size: 2.8rem;
  font-weight: 700;
  font-family: 'Segoe UI', system-ui, sans-serif;
  color: white;
  margin: 0 auto 35px;
  padding: 0;
  text-shadow:
    0 2px 10px rgba(0, 0, 0, 0.5),
    0 0 20px rgba(255, 255, 255, 0.1);
  letter-spacing: -0.01em;
  line-height: 1.2;
  position: relative;
  z-index: 2;
  max-width: 600px;
  animation: titlePulse 2s ease-in-out infinite;
}

/* Efeito de glow sutil por trás */
.plans-section .section-title::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 110%;
  height: 110%;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  z-index: -1;
  animation: glowPulse 3s ease-in-out infinite alternate;
}

/* Linha decorativa animada */
.plans-section .section-title::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #3b82f6, #f59e0b, #3b82f6);
  background-size: 200% 100%;
  border-radius: 2px;
  box-shadow: 0 0 10px rgba(59, 130, 246, 0.4);
  animation: lineShimmer 2s ease-in-out infinite;
}

/* Animações */
@keyframes titlePulse {
  0%, 100% {
    text-shadow:
      0 2px 10px rgba(0, 0, 0, 0.5),
      0 0 20px rgba(255, 255, 255, 0.1);
  }
  50% {
    text-shadow:
      0 2px 10px rgba(0, 0, 0, 0.5),
      0 0 25px rgba(255, 255, 255, 0.2);
  }
}

@keyframes glowPulse {
  0% {
    opacity: 0.3;
    transform: translate(-50%, -50%) scale(1);
  }
  100% {
    opacity: 0.6;
    transform: translate(-50%, -50%) scale(1.05);
  }
}

@keyframes lineShimmer {
  0% {
    background-position: -200% 0;
  }
  50% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

/* ---------- Botões de Categorias ---------- */
.plan-categories {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.category-btn {
  background: white;
  border: 2px solid #1e40af;
  color: #1e40af;
  padding: 14px 28px;
  border-radius: 25px;
  font-family: 'Segoe UI', system-ui, sans-serif;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.category-btn:hover,
.category-btn.active {
  background: linear-gradient(135deg, #1e40af, #3b82f6);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(30, 64, 175, 0.4);
  font-size: 16px;
}

/* ============================================ */
/* LAYOUT DOS PLANOS COM AVATAR                */
/* ============================================ */

/* DESKTOP - Layout com avatar posicionado absoluto */
@media screen and (min-width: 769px) {
  .plans-main-container {
    position: relative;
    width: 100vw;
    height: 100vh;
    margin: 0;
    padding: 40px;
    overflow: hidden;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .avatar-container {
    position: absolute;
    top: 50%;
    width: 220px;
    height: auto;
    z-index: 10;
    pointer-events: none;
    transform: translateY(-50%);
  }

  .avatar-stefani {
    right: 50px;
    transform: translateY(-50%) scale(1.2);
  }

  .avatar-robson {
    left: 50px;
    transform: translateY(-50%) scale(1.5);
  }

  .avatar-container .avatar-image {
    width: 100%;
    max-width: 220px;
    height: auto;
    filter: drop-shadow(0 15px 35px rgba(245, 158, 11, 0.4));
    /* Removida transição - avatares estáticos */
    pointer-events: auto;
  }

  .avatar-container .avatar-image:hover {
    /* Sem efeito hover - avatares estáticos */
  }

  .plans-container {
    display: block;
    width: 100%;
    position: relative;
    z-index: 1;
  }

  .plans-grid {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 15px !important;
    max-width: 1100px;
    margin: 0 auto;
    padding-right: 0;
  }

  /* Removido - não precisa mais anular */

  .plans-grid:not([style*="display: none"]) {
    display: grid !important;
  }

  .plans-grid[style*="display: none"] {
    display: none !important;
  }

  /* Removido - estava causando problemas */

  .plan-card {
    height: auto !important;
    max-height: 600px !important;
    width: 100% !important;
    max-width: 320px !important;
    margin: 0 auto;
  }
}

/* TABLET - Layout ajustado */
@media screen and (max-width: 1024px) and (min-width: 769px) {
  .plans-main-container {
    width: 100vw;
    height: 100vh;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .avatar-container {
    width: 200px;
  }

  .avatar-stefani {
    right: 40px;
    transform: translateY(-50%) scale(1.2);
  }

  .avatar-robson {
    left: 40px;
    transform: translateY(-50%) scale(1.5);
  }

  .avatar-container .avatar-image {
    max-width: 200px;
  }

  .plans-grid {
    max-width: 1000px;
    padding-right: 0;
  }

  /* Removido - estava causando problemas */
}

/* MOBILE - Layout em coluna */
@media screen and (max-width: 768px) {
  /* Reorganizar seção de planos para mobile */
  .plans-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
  }

  /* Container do título e botões */
  .plans-section .container {
    order: 1;
    width: 100%;
  }

  /* Ocultar os botões de categorias do container principal */
  .plans-section .container .plan-categories {
    display: none !important;
  }

  .plans-main-container {
    position: relative;
    width: 100vw;
    min-height: 100vh;
    padding: 20px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    order: 2;
  }

  /* Container para os avatares mobile */
  .avatar-container {
    position: static !important;
    display: block;
    width: 100%;
    margin: 0 auto;
    text-align: center;
    transform: none !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
  }

  /* Avatar Stefani no topo */
  .avatar-stefani {
    order: -2;
    margin-bottom: 10px;
    margin-top: 20px;
  }

  /* Container dos botões mobile (será criado dinamicamente) */
  .mobile-plan-categories {
    order: -1;
    width: 100%;
    margin-bottom: 30px;
    display: flex !important;
    flex-direction: column;
    gap: 12px;
    padding: 0 20px;
    max-width: 380px;
    margin-left: auto;
    margin-right: auto;
  }

  .mobile-plan-categories .category-btn,
  .category-btn {
    width: 100%;
    padding: 12px 20px;
    font-size: 14px;
    justify-content: center;
  }

  /* Avatar Robson no final após todos os planos */
  .avatar-robson {
    order: 3;
    margin-top: 40px;
    margin-bottom: 20px;
  }

  .avatar-container .avatar-image {
    max-width: 300px;
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
  }

  /* Tamanhos específicos para cada avatar */
  .avatar-stefani .avatar-image {
    max-width: 220px;
  }

  .avatar-robson .avatar-image {
    max-width: 300px;
  }

  /* Avatares estáticos sem animação */
  .avatar-stefani .avatar-image {
    /* Sem animação */
  }

  .avatar-robson .avatar-image {
    /* Sem animação */
  }

  /* Planos ficam entre os avatares */
  .plans-container {
    display: block;
    order: 0;
    width: 100%;
  }

  .plans-grid {
    grid-template-columns: 1fr !important;
    gap: 25px !important;
    padding: 0 10px;
    margin: 0 auto;
    max-width: 400px;
  }

  /* Padronização dos cards no mobile */
  .plan-card {
    width: 100% !important;
    min-height: 500px !important;
    max-width: 380px !important;
    margin: 0 auto !important;
    padding: 30px 25px !important;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  /* Padronizar elementos internos dos cards */
  .plan-card .plan-speed {
    font-size: 3.5rem !important;
    margin-bottom: 15px !important;
  }

  .plan-card .price-amount {
    font-size: 2.8rem !important;
  }

  .plan-card .plan-features {
    margin: 20px 0 !important;
    min-height: 150px;
  }

  .plan-card .plan-features li {
    padding: 10px 0 !important;
    font-size: 14px !important;
  }

  .plan-card .cta-button {
    padding: 15px 30px !important;
    font-size: 16px !important;
    width: 100% !important;
  }

  /* Respeitar o display do JavaScript para mostrar/esconder categorias */
  .plans-grid {
    display: none;
  }

  .plans-grid[style*="display: none"] {
    display: none !important;
  }

  .plans-grid[style*="display: grid"],
  .plans-grid.active-grid {
    display: grid !important;
  }
}

/* Removido - todas as categorias agora têm 3 planos */

/* ============================================ */
/* CARDS DOS PLANOS                            */
/* ============================================ */
.plan-card {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.9) 0%, rgba(10, 10, 10, 0.95) 100%);
  border: 2px solid rgba(59, 130, 246, 0.3);
  border-radius: 16px;
  padding: 32px 28px;
  position: relative;
  transition: all 0.4s ease;
  backdrop-filter: blur(10px);
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.8),
    0 0 60px rgba(59, 130, 246, 0.2),
    inset 0 0 80px rgba(59, 130, 246, 0.05);
  overflow: hidden;
  min-height: 500px;
  max-width: 380px;
  margin: 0 auto;
}

.plan-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    linear-gradient(45deg, transparent 30%, rgba(59, 130, 246, 0.1) 50%, transparent 70%),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 2px,
      rgba(59, 130, 246, 0.05) 2px,
      rgba(59, 130, 246, 0.05) 4px
    );
  pointer-events: none;
  z-index: 1;
}

.plan-card:hover {
  transform: translateY(-8px);
  border-color: rgba(59, 130, 246, 0.6);
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.9),
    0 0 80px rgba(59, 130, 246, 0.4),
    inset 0 0 120px rgba(59, 130, 246, 0.1);
}

/* ---------- Header do Plano ---------- */
.plan-header {
  text-align: center;
  margin-bottom: 24px;
  position: relative;
  z-index: 2;
}

.plan-label {
  background: linear-gradient(135deg, #3b82f6, #1e40af);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: inline-block;
  margin-bottom: 16px;
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.plan-speed {
  font-size: 4rem;
  font-weight: 800;
  background: linear-gradient(135deg, #fff 0%, #3b82f6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 8px;
  text-shadow: 0 0 30px rgba(59, 130, 246, 0.5);
}

.plan-speed-unit {
  font-size: 1.5rem;
  margin-left: 4px;
}

.plan-upload {
  color: #94a3b8;
  font-size: 0.9rem;
  font-weight: 500;
}

/* ---------- Divisor ---------- */
.divider {
  height: 2px;
  background: linear-gradient(90deg, transparent, #3b82f6, transparent);
  margin: 24px 0;
  position: relative;
  z-index: 2;
}

/* ---------- Serviços Inclusos ---------- */
.services-label {
  color: #e2e8f0;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-align: center;
}

.services-badges {
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
  flex-wrap: wrap;
  justify-content: center;
}

.badge {
  background: rgba(59, 130, 246, 0.2);
  border: 1px solid rgba(59, 130, 246, 0.4);
  color: #94a3b8;
  padding: 6px 12px;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: all 0.3s ease;
}

.badge:hover {
  background: rgba(59, 130, 246, 0.3);
  border-color: rgba(59, 130, 246, 0.6);
  color: #e2e8f0;
}

.badge i {
  font-size: 10px;
}

/* ---------- Preço ---------- */
.price-container {
  text-align: center;
  margin: 32px 0;
  position: relative;
  z-index: 2;
  padding: 20px 0;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 16px;
  border: 1px solid rgba(245, 158, 11, 0.2);
  box-shadow:
    0 4px 20px rgba(245, 158, 11, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.price-from {
  color: #94a3b8;
  font-size: 0.85rem;
  margin-bottom: 8px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.price-currency {
  font-size: 1.4rem;
  font-weight: 700;
  color: #f59e0b;
  text-shadow: 0 0 10px rgba(245, 158, 11, 0.5);
}

.price-value {
  font-size: 3.5rem;
  font-weight: 900;
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 50%, #d97706 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 0.9;
  text-shadow: 0 0 30px rgba(245, 158, 11, 0.6);
  filter: drop-shadow(0 2px 4px rgba(245, 158, 11, 0.3));
}

.price-decimal {
  font-size: 1.8rem;
  color: #fbbf24;
  font-weight: 700;
  text-shadow: 0 0 8px rgba(251, 191, 36, 0.4);
}

.price-period {
  font-size: 1rem;
  color: #f59e0b;
  font-weight: 600;
  text-shadow: 0 0 8px rgba(245, 158, 11, 0.4);
}

/* ---------- Elementos de Preço (Wrapper do HTML) ---------- */
.price-wrapper {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 6px;
  margin-bottom: 12px;
  position: relative;
}

.price-wrapper::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 120%;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  z-index: -1;
}

/* ---------- Footer do Plano ---------- */
.plan-price {
  text-align: center;
  margin: 28px 0 0;
  position: relative;
  z-index: 2;
  padding: 16px;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(26, 31, 58, 0.3) 100%);
  border-radius: 12px;
  border: 1px solid rgba(59, 130, 246, 0.2);
}

.plan-note {
  font-size: 0.8rem;
  color: #94a3b8;
  margin-bottom: 20px;
  font-style: italic;
  text-align: center;
  font-weight: 500;
  opacity: 0.9;
}

/* ---------- Botões CTA ---------- */
.cta-button {
  width: 100%;
  background: linear-gradient(135deg, #f59e0b, #d97706);
  border: none;
  color: white;
  padding: 16px 24px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  z-index: 2;
  box-shadow: 0 8px 25px rgba(245, 158, 11, 0.3);
}

.cta-button:hover {
  background: linear-gradient(135deg, #d97706, #b45309);
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(245, 158, 11, 0.4);
}

.cta-button i {
  font-size: 0.9rem;
}

/* ---------- Plano Featured ---------- */
.plan-card--featured {
  border-color: rgba(245, 158, 11, 0.6) !important;
  transform: scale(1.05);
  box-shadow:
    0 12px 40px rgba(0, 0, 0, 0.9),
    0 0 80px rgba(245, 158, 11, 0.4),
    inset 0 0 120px rgba(245, 158, 11, 0.1) !important;
}

.plan-card--featured::before {
  background:
    linear-gradient(45deg, transparent 30%, rgba(245, 158, 11, 0.1) 50%, transparent 70%),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 2px,
      rgba(245, 158, 11, 0.05) 2px,
      rgba(245, 158, 11, 0.05) 4px
    ) !important;
}

/* ---------- Product Badge (Equipamentos) ---------- */
.product-badge {
  background: linear-gradient(135deg, #3b82f6, #1e40af);
  color: white;
  padding: 6px 12px;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: inline-block;
  margin-bottom: 8px;
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

/* ---------- CTA Button Header ---------- */
header .header-actions .cta-button {
  background: linear-gradient(135deg, #f59e0b, #d97706) !important;
  color: white !important;
  padding: 12px 24px !important;
  border-radius: 8px !important;
  font-weight: 700 !important;
  font-size: 0.9rem !important;
  text-decoration: none !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3) !important;
  width: auto !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  border: none !important;
  cursor: pointer !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
  font-family: 'Segoe UI', system-ui, sans-serif !important;
  white-space: nowrap !important;
}

header .header-actions .cta-button:hover {
  background: linear-gradient(135deg, #d97706, #b45309) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(245, 158, 11, 0.4) !important;
  color: white !important;
}

/* ============================================ */
/* RESPONSIVIDADE GERAL                        */
/* ============================================ */

/* Mobile pequeno */
@media screen and (max-width: 480px) {
  .plans-section {
    padding: 60px 0;
  }

  .plans-section .section-title {
    font-size: 2.2rem;
    margin-bottom: 25px;
    max-width: 90%;
    letter-spacing: 0;
  }

  .plans-section .section-title::after {
    width: 50px;
    height: 2px;
    bottom: -10px;
  }

  /* Ajustar avatares para telas muito pequenas */
  .avatar-stefani .avatar-image {
    max-width: 180px;
  }

  .avatar-robson .avatar-image {
    max-width: 240px;
  }

  /* Header CTA Button Mobile */
  header .header-actions .cta-button {
    padding: 8px 16px !important;
    font-size: 0.8rem !important;
    border-radius: 6px !important;
  }

  .plan-categories {
    gap: 10px;
  }

  .category-btn {
    padding: 10px 20px;
    font-size: 12px;
  }

  /* Ajustar cards para telas muito pequenas */
  .plan-card {
    padding: 25px 20px !important;
    min-height: 480px !important;
    max-width: 340px !important;
  }

  .plan-card .plan-speed {
    font-size: 3rem !important;
  }

  .plan-card .price-amount {
    font-size: 2.5rem !important;
  }

  .plans-grid {
    gap: 20px !important;
    max-width: 360px;
  }
}