/* ═══════════════════════════════════════════════════════════════════
   INNOVA HOST — revenda-de-hospedagem.css
   Page-specific styles for /revenda-de-hospedagem
   Revenda de Hospedagem — for-whom cards, hero business card, comparison table

   Depends on: style.css (load FIRST)
   ═══════════════════════════════════════════════════════════════════ */

.hero-checklist { display: flex; flex-direction: column; gap: 10px; margin-bottom: 32px; }

.hero-check-item {
      display: flex; align-items: center; gap: 10px;
      color: rgba(255,255,255,.85); font-size: .9rem;
    }

.hero-check-icon {
      width: 22px; height: 22px;
      background: rgba(0,212,170,.2);
      border: 1px solid rgba(0,212,170,.4);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      color: var(--teal); font-size: .7rem; flex-shrink: 0;
    }

.hero-business-card {
      background: rgba(255,255,255,.07);
      border: 1px solid rgba(255,255,255,.13);
      border-radius: var(--radius-lg);
      padding: 28px;
      backdrop-filter: blur(12px);
    }

.hbc-header {
      display: flex; align-items: center; gap: 12px;
      padding-bottom: 18px;
      border-bottom: 1px solid rgba(255,255,255,.08);
      margin-bottom: 18px;
    }

.hbc-logo {
      width: 42px; height: 42px;
      background: linear-gradient(135deg, var(--blue), var(--teal));
      border-radius: 10px;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.2rem;
    }

.hbc-brand-name {
      color: #fff; font-family: var(--font-display); font-weight: 800; font-size: 1rem;
    }

.hbc-brand-sub { color: rgba(255,255,255,.45); font-size: .75rem; }

.hbc-tag {
      margin-left: auto;
      background: rgba(0,212,170,.15);
      border: 1px solid rgba(0,212,170,.3);
      color: var(--teal);
      font-size: .68rem; font-weight: 700;
      padding: 3px 10px; border-radius: 999px;
    }

.hbc-clients { display: flex; flex-direction: column; gap: 10px; margin-bottom: 18px; }

.hbc-client-row {
      display: flex; align-items: center; justify-content: space-between;
      background: rgba(255,255,255,.05);
      border-radius: 9px; padding: 10px 14px;
    }

.hbc-client-name { color: rgba(255,255,255,.75); font-size: .83rem; }

.hbc-client-status {
      font-size: .72rem; font-weight: 700; padding: 2px 9px;
      border-radius: 999px;
    }

.hbc-status-ok { background: rgba(0,212,170,.15); color: var(--teal); }

.hbc-status-new { background: rgba(26,107,245,.2); color: #7EB8FF; }

.hbc-footer {
      display: flex; justify-content: space-between; align-items: center;
    }

.hbc-revenue { color: rgba(255,255,255,.45); font-size: .75rem; }

.hbc-revenue strong { color: var(--teal); font-size: 1.15rem; font-family: var(--font-display); display: block; }

.trust-bar { background: var(--off); border-bottom: 1px solid var(--border); padding: 20px 0; }

.trust-bar-inner {
      display: flex; align-items: center; justify-content: center;
      gap: 40px; flex-wrap: wrap;
    }

.trust-item {
      display: flex; align-items: center; gap: 8px;
      font-size: .85rem; color: var(--gray); font-weight: 500;
    }

.trust-item-icon {
      width: 30px; height: 30px;
      background: linear-gradient(135deg, var(--blue), var(--blue-lt));
      border-radius: 8px;
      display: flex; align-items: center; justify-content: center;
      font-size: .9rem; flex-shrink: 0;
    }

.plans-billing {
      display: flex; align-items: center; justify-content: center;
      gap: 0; margin-bottom: 48px;
      background: var(--off); border: 1.5px solid var(--border);
      border-radius: var(--radius); padding: 5px;
      width: fit-content; margin-left: auto; margin-right: auto;
    }

.billing-option {
      position: relative; padding: 9px 20px; border-radius: 10px;
      font-size: .85rem; font-weight: 600; color: var(--gray);
      cursor: pointer; border: none; background: transparent;
      font-family: var(--font-body); transition: color .2s;
      display: flex; align-items: center; gap: 7px; white-space: nowrap;
    }

.billing-option.active {
      background: var(--white); color: var(--text);
      box-shadow: 0 2px 8px rgba(11,23,48,.1);
    }

.billing-option .billing-badge {
      background: var(--teal); color: var(--navy);
      font-size: .65rem; font-weight: 800;
      padding: 2px 7px; border-radius: 999px; letter-spacing: .04em;
    }

.billing-option:not(.active) .billing-badge {
      background: rgba(0,212,170,.15); color: var(--teal);
    }

.plan-card.popular .plan-curr, .plan-card.popular .plan-val { color: #fff; }

.plan-period-note { font-size: .72rem; color: var(--teal); margin-top: 4px; font-weight: 600; }

.plan-card:not(.popular) .plan-period-note { color: var(--blue); }

.plan-divider { height: 1px; background: var(--border); margin-bottom: 18px; }

.plan-card.popular .plan-divider { background: rgba(255,255,255,.1); }

.plan-section-label {
      font-size: .7rem; font-weight: 700; text-transform: uppercase;
      letter-spacing: .08em; color: var(--gray); margin-bottom: 10px;
    }

.plan-card.popular .plan-section-label { color: rgba(255,255,255,.35); }

.plan-feat strong { color: var(--text); font-weight: 600; }

.plan-card.popular .plan-feat strong { color: #fff; }

.plans-note { text-align: center; margin-top: 36px; color: var(--gray); font-size: .88rem; }

.plans-note a { color: var(--blue); font-weight: 600; }

.forwhom-grid {
      display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
    }

.forwhom-card {
      background: var(--white); border: 1.5px solid var(--border);
      border-radius: var(--radius-lg); padding: 32px 28px; transition: .22s;
    }

.forwhom-card:hover { border-color: var(--blue); box-shadow: 0 6px 24px rgba(26,107,245,.1); transform: translateY(-3px); }

.forwhom-icon {
      width: 54px; height: 54px;
      background: linear-gradient(135deg, var(--blue), var(--blue-lt));
      border-radius: 14px; display: flex; align-items: center; justify-content: center;
      font-size: 1.4rem; margin-bottom: 18px;
    }

.forwhom-card h3 {
      font-family: var(--font-display); font-size: 1rem; font-weight: 700;
      color: var(--text); margin-bottom: 8px;
    }

.forwhom-card p { font-size: .87rem; color: var(--gray); line-height: 1.65; }

.steps-grid {
      display: grid; grid-template-columns: repeat(4, 1fr);
      gap: 28px; position: relative;
    }

.steps-grid::before {
      content: ''; position: absolute;
      top: 28px; left: calc(12.5% + 20px); right: calc(12.5% + 20px);
      height: 2px;
      background: linear-gradient(90deg, var(--blue), var(--teal)); opacity: .25;
    }

.step-card { text-align: center; position: relative; }

.step-num {
      width: 56px; height: 56px;
      background: linear-gradient(135deg, var(--blue), var(--blue-lt));
      border-radius: 50%; display: flex; align-items: center; justify-content: center;
      font-family: var(--font-display); font-weight: 800; font-size: 1.2rem;
      color: #fff; margin: 0 auto 18px; position: relative; z-index: 1;
    }

.step-card h3 { font-family: var(--font-display); font-size: .95rem; font-weight: 700; color: var(--text); margin-bottom: 8px; }

.step-card p { font-size: .84rem; color: var(--gray); line-height: 1.6; }

.features-grid-2 {
      display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
    }

.feat-card {
      background: var(--white); border: 1.5px solid var(--border);
      border-radius: var(--radius-lg); padding: 26px 24px;
      display: flex; gap: 18px; transition: .22s;
    }

.feat-card:hover { border-color: var(--blue); box-shadow: 0 4px 20px rgba(26,107,245,.08); }

.feat-icon {
      width: 48px; height: 48px; background: linear-gradient(135deg, var(--blue), var(--blue-lt));
      border-radius: 13px; display: flex; align-items: center; justify-content: center;
      font-size: 1.25rem; flex-shrink: 0;
    }

.feat-body { min-width: 0; }

.feat-body h3 { font-family: var(--font-display); font-size: .97rem; font-weight: 700; color: var(--text); margin-bottom: 6px; }

.feat-body p { font-size: .85rem; color: var(--gray); line-height: 1.65; overflow-wrap: break-word; }

.compare-wrap { overflow-x: auto; }

.compare-table {
      width: 100%; border-collapse: collapse; font-size: .88rem;
    }

.compare-table th {
      background: var(--navy); color: #fff;
      padding: 14px 18px; text-align: left;
      font-family: var(--font-display); font-weight: 700; font-size: .85rem;
    }

.compare-table th:first-child { border-radius: var(--radius-sm) 0 0 0; }

.compare-table th:last-child { border-radius: 0 var(--radius-sm) 0 0; }

.compare-table th.highlight { background: var(--blue); }

.compare-table td {
      padding: 13px 18px; border-bottom: 1px solid var(--border);
      color: var(--text); vertical-align: middle;
    }

.compare-table td.highlight { background: rgba(26,107,245,.04); font-weight: 600; }

.compare-table tr:last-child td { border-bottom: none; }

.compare-table tr:hover td { background: var(--off); }

.compare-table tr:hover td.highlight { background: rgba(26,107,245,.07); }

.chk-yes { color: var(--teal); font-weight: 700; }

.chk-no  { color: #CCD3E0; }

    /* ── Plans renewal alert ── */
    .plans-renewal-alert {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      margin-top: 28px;
      padding: 12px 20px;
      background: rgba(0,212,170,.07);
      border: 1px solid rgba(0,212,170,.22);
      border-radius: var(--radius);
      font-size: .84rem;
      color: var(--text);
      font-weight: 500;
      text-align: center;
    }
    .plans-renewal-alert svg {
      color: var(--teal);
      flex-shrink: 0;
    }


/* ── RESPONSIVE (mobile) ── */
@media (max-width: 900px) {
  .page-hero-inner { grid-template-columns: 1fr; gap: 36px; }
  .hero-business-card { display: none; }
  .features-grid-2 { grid-template-columns: 1fr; }
  .forwhom-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .steps-grid::before { display: none; }
}
@media (max-width: 640px) {
  .page-hero { padding: 48px 0 40px; }
  .page-hero h1 { font-size: clamp(1.7rem, 6vw, 2.1rem); line-height: 1.2; }
  .page-hero-sub { font-size: .95rem; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn-hero-primary, .hero-ctas .btn-hero-secondary { width: 100%; justify-content: center; }
  .trust-bar-inner { gap: 14px 18px; justify-content: flex-start; }
  .trust-item { font-size: .82rem; }
  .plans-billing { flex-wrap: wrap; gap: 6px; }
  .billing-option { font-size: .8rem; padding: 8px 12px; flex: 1 1 auto; text-align: center; }
  .plans-grid { grid-template-columns: 1fr; }
  .features-grid-2 { grid-template-columns: 1fr; }
  .feat-card { padding: 20px 18px; gap: 14px; }
  .forwhom-grid { grid-template-columns: 1fr; }
  .compare-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .compare-table { min-width: 520px; font-size: .8rem; }
  .plans-renewal-alert { font-size: .8rem; padding: 12px 16px; }
}
@media (max-width: 400px) {
  .page-hero h1 { font-size: 1.6rem; }
  .billing-option { font-size: .74rem; padding: 7px 8px; }
  .feat-card { flex-direction: column; }
}
