  /* ??? TOKENS ??????????????????????????????? */
  :root {
      --blue: #3000CD;
      --blue-dk: #1e008a;
      --blue-lt: #4a1fff;
      --blue-glow: rgba(48, 0, 205, .45);
      --orange: #FF6206;
      --orange-dk: #cc4d00;
      --orange-glow: rgba(255, 98, 6, .45);
      --white: #ffffff;
      --off-white: #f4f6ff;
      --dark: #0a0a1a;
      --dark-card: #0f0f28;
      --gray: rgba(255, 255, 255, .5);
  }

  *,
  *::before,
  *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0
  }

  html {
      font-size: 16px;
      scroll-behavior: smooth
  }

  body {
      font-family: 'Poppins', sans-serif;
      background: var(--dark);
      color: var(--white);
      overflow-x: hidden
  }

  /* ??? SECTION ?????????????????????????????? */
  #planos {
      position: relative;
      padding: 100px 0 120px;
      background:
          radial-gradient(ellipse at 20% 50%, rgba(48, 0, 205, .18) 0%, transparent 55%),
          radial-gradient(ellipse at 80% 30%, rgba(255, 98, 6, .1) 0%, transparent 50%),
          var(--dark);
      overflow: hidden;
  }

  /* subtle grid bg */
  #planos::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image:
          linear-gradient(rgba(48, 0, 205, .06) 1px, transparent 1px),
          linear-gradient(90deg, rgba(48, 0, 205, .06) 1px, transparent 1px);
      background-size: 48px 48px;
      pointer-events: none;
  }

  /* ??? HEADER ??????????????????????????????? */
  .plans-header {
      text-align: center;
      margin-bottom: 56px;
      padding: 0 24px;
      position: relative;
      z-index: 2;
  }

  .plans-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(48, 0, 205, .15);
      border: 1px solid rgba(48, 0, 205, .4);
      border-radius: 100px;
      padding: 5px 16px;
      font-size: .72rem;
      font-weight: 700;
      color: rgba(255, 255, 255, .75);
      letter-spacing: .8px;
      text-transform: uppercase;
      margin-bottom: 20px;
  }

  .plans-eyebrow .dot {
      width: 6px;
      height: 6px;
      background: var(--orange);
      border-radius: 50%;
      animation: pulse 1.5s infinite;
  }

  @keyframes pulse {

      0%,
      100% {
          opacity: 1;
          transform: scale(1)
      }

      50% {
          opacity: .5;
          transform: scale(1.6)
      }
  }

  .plans-title {
      font-size: clamp(2.1rem, 4.6vw, 3.4rem);
      font-weight: 700;
      line-height: 1.08;
      letter-spacing: -1px;
      color: var(--white);
  }

  .plans-title span {
      position: relative;
      background: linear-gradient(100deg, var(--orange) 0%, #ffb066 100%);
      -webkit-background-clip: text;
      background-clip: text;
      -webkit-text-fill-color: transparent;
      filter: drop-shadow(0 4px 18px rgba(255, 98, 6, .35));
  }

  .plans-sub {
      margin-top: 12px;
      font-size: .9rem;
      font-weight: 400;
      color: var(--gray);
      max-width: 440px;
      margin-left: auto;
      margin-right: auto;
      line-height: 1.65;
  }

  /* ??? PLANS GRID ????????????????????????????? */
  .plans-grid {
      position: relative;
      z-index: 2;
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      align-items: stretch;
      gap: 22px;
      max-width: 1240px;
      margin: 0 auto;
      padding: 28px 24px 8px;
  }

  /* ??? CARD ????????????????????????????????? */
  .plan-card {
      flex: 0 1 340px;
      min-width: 300px;
      max-width: 380px;
      display: flex;
      flex-direction: column;
      border-radius: 22px;
      padding: 32px 28px;
      position: relative;
      overflow: hidden;
      cursor: pointer;
      transition: transform .35s cubic-bezier(.25, .46, .45, .94), box-shadow .35s, border-color .35s;
      background: linear-gradient(160deg, rgba(48, 0, 205, .5) 0%, rgba(10, 10, 26, .92) 100%);
      border: 1px solid rgba(48, 0, 205, .35);
  }

  .plan-card::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(160deg, rgba(255, 255, 255, .05) 0%, transparent 60%);
      border-radius: inherit;
      pointer-events: none;
  }

  /* barra de destaque no topo (aparece no hover) */
  .plan-card:not(.featured)::after {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: linear-gradient(90deg, transparent, var(--blue-lt), transparent);
      opacity: 0;
      transition: opacity .35s;
      border-radius: 22px 22px 0 0;
  }

  .plan-card:not(.featured):hover::after {
      opacity: 1;
  }

  /* empurra o preço/CTA para a base — cards alinhados */
  .plan-card .plan-price-wrap {
      margin-top: auto;
  }

  /* featured card */
  .plan-card.featured {
      background: linear-gradient(160deg, #3000CD 0%, #1a006e 60%, #0f0026 100%);
      border-color: var(--orange);
      box-shadow:
          0 0 0 1px rgba(255, 98, 6, .3),
          0 20px 60px rgba(48, 0, 205, .5),
          0 0 80px rgba(255, 98, 6, .12);
      transform: scale(1.04);
      z-index: 3;
  }

  .plan-card:not(.featured):hover {
      transform: translateY(-6px) scale(1.01);
      box-shadow: 0 16px 48px rgba(48, 0, 205, .35);
  }

  .plan-card.featured:hover {
      transform: scale(1.06) translateY(-4px);
  }

  /* featured badge */
  .featured-badge {
      position: absolute;
      top: 16px;
      right: 16px;
      background: linear-gradient(135deg, var(--orange), var(--orange-dk));
      color: #fff;
      font-size: .62rem;
      font-weight: 700;
      letter-spacing: .8px;
      text-transform: uppercase;
      padding: 4px 10px;
      border-radius: 100px;
      box-shadow: 0 4px 14px rgba(255, 98, 6, .4);
  }

  /* card content */
  .plan-tag {
      font-size: .7rem;
      font-weight: 700;
      letter-spacing: 1.2px;
      text-transform: uppercase;
      color: rgba(255, 255, 255, .55);
      margin-bottom: 10px;
  }

  .plan-card.featured .plan-tag {
      color: rgba(255, 255, 255, .8);
  }

  .plan-speed {
      display: flex;
      align-items: baseline;
      gap: 4px;
      margin-bottom: 4px;
  }

  .plan-speed-num {
      font-size: 3.5rem;
      font-weight: 700;
      line-height: 1;
      letter-spacing: -2px;
      color: var(--white);
  }

  .plan-speed-unit {
      font-size: 1.2rem;
      font-weight: 700;
      color: rgba(255, 255, 255, .7);
      align-self: flex-end;
      padding-bottom: 6px;
  }

  .plan-name {
      font-size: .78rem;
      font-weight: 700;
      color: rgba(255, 255, 255, .55);
      text-transform: uppercase;
      letter-spacing: .8px;
      margin-bottom: 20px;
  }

  .plan-card.featured .plan-name {
      color: var(--orange);
  }

  /* divider */
  .plan-divider {
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .12), transparent);
      margin-bottom: 20px;
  }

  .plan-card.featured .plan-divider {
      background: linear-gradient(90deg, transparent, rgba(255, 98, 6, .3), transparent);
  }

  /* features */
  .plan-features {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 10px;
      margin-bottom: 24px;
  }

  .plan-features li {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: .8rem;
      font-weight: 400;
      color: rgba(255, 255, 255, .75);
  }

  .feat-icon {
      width: 20px;
      height: 20px;
      flex-shrink: 0;
      background: rgba(48, 0, 205, .35);
      border-radius: 6px;
      display: flex;
      align-items: center;
      justify-content: center;
  }

  .plan-card.featured .feat-icon {
      background: rgba(255, 98, 6, .2);
  }

  .feat-icon svg {
      width: 11px;
      height: 11px;
      color: var(--blue-lt);
  }

  .plan-card.featured .feat-icon svg {
      color: var(--orange);
  }

  /* price */
  .plan-price-wrap {
      display: flex;
      align-items: baseline;
      gap: 3px;
      margin-bottom: 20px;
  }

  .price-currency {
      font-size: .85rem;
      font-weight: 700;
      color: rgba(255, 255, 255, .6);
      align-self: flex-start;
      padding-top: 6px;
  }

  .price-value {
      font-size: 2.4rem;
      font-weight: 700;
      color: var(--white);
      letter-spacing: -1px;
      line-height: 1;
  }

  .price-cents {
      font-size: 1.1rem;
      font-weight: 700;
      color: rgba(255, 255, 255, .7);
      align-self: flex-end;
      padding-bottom: 3px;
  }

  .price-period {
      font-size: .72rem;
      color: var(--gray);
      font-weight: 400;
      align-self: flex-end;
      padding-bottom: 4px;
  }

  /* CTA button */
  .plan-cta {
      display: block;
      width: 100%;
      padding: 13px;
      border-radius: 12px;
      font-family: 'Poppins', sans-serif;
      font-size: .88rem;
      font-weight: 700;
      text-align: center;
      cursor: pointer;
      border: none;
      transition: transform .15s, box-shadow .15s, background .2s;
      letter-spacing: .3px;
  }

  .plan-card:not(.featured) .plan-cta {
      background: rgba(48, 0, 205, .3);
      border: 1.5px solid rgba(48, 0, 205, .5);
      color: var(--white);
  }

  .plan-card:not(.featured) .plan-cta:hover {
      background: var(--blue);
      border-color: var(--blue-lt);
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(48, 0, 205, .45);
  }

  .plan-card.featured .plan-cta {
      background: linear-gradient(135deg, var(--orange), var(--orange-dk));
      color: var(--white);
      box-shadow: 0 8px 28px rgba(255, 98, 6, .4);
  }

  .plan-card.featured .plan-cta:hover {
      transform: translateY(-2px);
      box-shadow: 0 14px 36px rgba(255, 98, 6, .55);
  }

  /* glow top bar on featured */
  .plan-card.featured::after {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: linear-gradient(90deg, transparent, var(--orange), transparent);
      border-radius: 20px 20px 0 0;
  }

  /* ??? BOTTOM NOTE ?????????????????????????? */
  .plans-note {
      text-align: center;
      margin-top: 40px;
      font-size: .78rem;
      color: rgba(255, 255, 255, .3);
      position: relative;
      z-index: 2;
      padding: 0 24px;
  }

  .plans-note a {
      color: var(--orange);
      text-decoration: none;
  }

  /* ??? LOCALIDADES ??????????????????????????? */
  #localidades {
      position: relative;
      padding: 40px 0 120px;
      background:
          radial-gradient(ellipse at 80% 50%, rgba(48, 0, 205, .18) 0%, transparent 55%),
          radial-gradient(ellipse at 20% 30%, rgba(255, 98, 6, .1) 0%, transparent 50%),
          var(--dark);
      overflow: hidden;
  }

  #localidades::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image:
          linear-gradient(rgba(48, 0, 205, .06) 1px, transparent 1px),
          linear-gradient(90deg, rgba(48, 0, 205, .06) 1px, transparent 1px);
      background-size: 48px 48px;
      pointer-events: none;
  }

  .loc-table-wrap {
      position: relative;
      z-index: 2;
      max-width: 880px;
      margin: 0 auto;
      padding: 0 24px;
  }

  .loc-table {
      width: 100%;
      border-collapse: separate;
      border-spacing: 0;
      border-radius: 20px;
      overflow: hidden;
      background: linear-gradient(160deg, rgba(48, 0, 205, .35) 0%, rgba(10, 10, 26, .9) 100%);
      border: 1px solid rgba(48, 0, 205, .35);
      box-shadow: 0 20px 60px rgba(48, 0, 205, .25);
  }

  .loc-table thead th {
      background: rgba(48, 0, 205, .45);
      color: var(--white);
      font-size: .78rem;
      font-weight: 700;
      letter-spacing: .8px;
      text-transform: uppercase;
      padding: 18px 20px;
      text-align: center;
      border-bottom: 1px solid rgba(255, 255, 255, .12);
  }

  .loc-table thead th:first-child {
      text-align: left;
  }

  .loc-table tbody th {
      text-align: left;
      font-size: .9rem;
      font-weight: 700;
      color: var(--white);
      padding: 16px 20px;
  }

  .loc-table tbody td {
      text-align: center;
      padding: 16px 20px;
      font-size: .9rem;
      color: rgba(255, 255, 255, .8);
  }

  .loc-table tbody tr {
      transition: background .2s;
  }

  .loc-table tbody tr:not(:last-child) th,
  .loc-table tbody tr:not(:last-child) td {
      border-bottom: 1px solid rgba(255, 255, 255, .08);
  }

  .loc-table tbody tr:hover {
      background: rgba(48, 0, 205, .25);
  }

  .loc-price {
      font-weight: 700;
      color: var(--orange);
      white-space: nowrap;
  }

  /* ??? RESPONSIVE ??????????????????????????? */
  @media (max-width:600px) {
      .loc-table,
      .loc-table thead,
      .loc-table tbody,
      .loc-table tr,
      .loc-table th,
      .loc-table td {
          display: block;
      }

      .loc-table thead {
          display: none;
      }

      .loc-table {
          background: transparent;
          border: none;
          box-shadow: none;
      }

      .loc-table tbody tr {
          margin-bottom: 16px;
          border-radius: 16px;
          background: linear-gradient(160deg, rgba(48, 0, 205, .45) 0%, rgba(10, 10, 26, .9) 100%);
          border: 1px solid rgba(48, 0, 205, .35);
          overflow: hidden;
      }

      .loc-table tbody th {
          background: rgba(48, 0, 205, .35);
          font-size: 1rem;
          padding: 14px 18px;
      }

      .loc-table tbody td {
          display: flex;
          justify-content: space-between;
          align-items: center;
          text-align: right;
          padding: 12px 18px;
      }

      .loc-table tbody td::before {
          content: attr(data-label);
          font-size: .72rem;
          font-weight: 700;
          letter-spacing: .8px;
          text-transform: uppercase;
          color: rgba(255, 255, 255, .55);
      }

      .loc-table tbody tr:not(:last-child) th,
      .loc-table tbody tr:not(:last-child) td {
          border-bottom: none;
      }

      .loc-table tbody td:not(:last-child) {
          border-bottom: 1px solid rgba(255, 255, 255, .08);
      }
  }

  /* ── Tablet (601–920px) ── */
  @media (max-width: 920px) {
      .plan-card.featured { transform: scale(1.02); }
      .plans-grid { gap: 18px; }
  }

  /* ── Mobile ── */
  @media (max-width: 600px) {
      #planos { padding: 72px 0 80px; }
      #localidades { padding: 32px 0 80px; }

      .plans-grid {
          gap: 16px;
          padding: 20px 16px 8px;
      }

      .plan-card {
          flex: 1 1 100%;
          min-width: 0;
          max-width: 400px;
          padding: 26px 22px;
      }

      .plan-card.featured { transform: none; }

      .plan-speed-num { font-size: 3rem; }
  }

  @media (max-width: 400px) {
      .plan-card { max-width: 100%; }
  }