/* ============================================
   HostPro — Hospedagem de sites
   Tema dark editorial · profissional · sério
   ============================================ */

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* ── Surfaces ── */
    --bg-0: #0b0d10;
    --bg-1: #11141a;
    --bg-2: #161a22;
    --bg-3: #1c2230;
    --bg-4: #232a39;
    --line: #232a36;
    --line-strong: #2e3645;

    /* ── Texto ── */
    --text-1: #f3f5f8;
    --text-2: #b6bcc7;
    --text-3: #7d8493;
    --text-4: #545b69;

    /* ── Accents ── */
    --accent: #2d6cff;          /* azul tech principal */
    --accent-2: #4d85ff;
    --accent-soft: rgba(45, 108, 255, .14);
    --green: #19c37d;
    --green-soft: rgba(25, 195, 125, .14);
    --yellow: #ffd400;
    --yellow-soft: rgba(255, 212, 0, .14);
    --red: #ff4d4d;
    --gold: #ffb800;
    --silver: #c8cdd5;
    --bronze: #cd7f32;

    /* ── Tipografia ── */
    --font-display: 'Chakra Petch', 'Inter', system-ui, sans-serif;
    --font-body: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
    --font-mono: 'JetBrains Mono', ui-monospace, 'SF Mono', Menlo, monospace;

    --container: 1280px;
    --radius: 6px;
    --radius-lg: 10px;
    --ease: cubic-bezier(.2, .7, .2, 1);
}

/* ===== Base ===== */
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

main#main {
    flex: 1 0 auto;
    width: 100%;
}
body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    font-family: var(--font-body);
    background: var(--bg-0);
    color: var(--text-1);
    line-height: 1.6;
    font-size: 15px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    min-height: 100vh;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color .15s var(--ease); }
ul, ol { list-style: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
input, select, textarea { font: inherit; color: inherit; }

::selection { background: var(--accent); color: #fff; }

::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--bg-0); }
::-webkit-scrollbar-thumb { background: #2a313e; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: #3a4356; }

.visually-hidden {
    position: absolute !important;
    width: 1px; height: 1px;
    padding: 0; margin: -1px;
    overflow: hidden; clip: rect(0,0,0,0);
    white-space: nowrap; border: 0;
}

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== Topbar ===== */
.topbar {
    background: #07090c;
    border-bottom: 1px solid var(--line);
    font-size: 12px;
    color: var(--text-3);
}
.topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 32px;
}
.topbar-left {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-mono);
    letter-spacing: .02em;
}
.topbar-status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--green);
    font-weight: 500;
}
.topbar-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 0 0 rgba(25,195,125,.5);
    animation: pulse 1.6s ease-in-out infinite;
}
.topbar-sep { color: var(--text-4); }
.topbar-meta { color: var(--text-2); }
.topbar-right {
    display: flex;
    align-items: center;
    gap: 14px;
}
.topbar-right a {
    color: var(--text-3);
    font-weight: 500;
    letter-spacing: .02em;
}
.topbar-right a:hover { color: var(--text-1); }
.topbar-right .sep {
    width: 1px; height: 12px; background: var(--line);
}
.topbar-cta {
    color: var(--accent) !important;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .08em;
    font-size: 11px;
}
@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(25,195,125,.5); }
    50% { box-shadow: 0 0 0 6px rgba(25,195,125,0); }
}

/* ===== Header ===== */
.header {
    background: var(--bg-1);
    border-bottom: 1px solid var(--line);
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: saturate(140%) blur(8px);
}
.header-inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 32px;
    height: 64px;
}
.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--accent);
    font-family: var(--font-display);
}
.brand-mark {
    width: 28px; height: 28px;
}
.brand-name {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: .14em;
    color: var(--text-1);
}
.brand-name-bold { font-weight: 700; }
.brand-tag {
    margin-left: 8px;
    padding: 3px 8px;
    background: var(--bg-3);
    border: 1px solid var(--line-strong);
    color: var(--text-3);
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: .15em;
    border-radius: 3px;
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 4px;
    justify-self: center;
}
.header-nav a {
    padding: 8px 14px;
    color: var(--text-2);
    font-size: 13.5px;
    font-weight: 500;
    border-radius: var(--radius);
    transition: color .15s var(--ease), background .15s var(--ease);
}
.header-nav a:hover {
    color: var(--text-1);
    background: var(--bg-2);
}
.header-nav .has-dropdown {
    position: relative;
    list-style: none;
}
.header-nav .has-dropdown > .dropdown-toggle {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    cursor: pointer;
}
.header-nav .has-dropdown > .dropdown-toggle i {
    font-size: 14px;
    transition: transform .2s var(--ease);
}
.header-nav .has-dropdown:hover > .dropdown-toggle i,
.header-nav .has-dropdown:focus-within > .dropdown-toggle i {
    transform: rotate(180deg);
}
.header-nav .dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    min-width: 240px;
    margin: 0;
    padding: 6px;
    list-style: none;
    background: var(--bg-2);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: 0 10px 30px rgba(0, 0, 0, .35);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: opacity .15s var(--ease), transform .15s var(--ease), visibility .15s;
    z-index: 50;
}
.header-nav .has-dropdown:hover > .dropdown-menu,
.header-nav .has-dropdown:focus-within > .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.header-nav .dropdown-menu li {
    list-style: none;
}
.header-nav .dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 12px;
    color: var(--text-2);
    font-size: 13.5px;
    font-weight: 500;
    border-radius: var(--radius);
    white-space: nowrap;
}
.header-nav .dropdown-menu a i {
    font-size: 16px;
    color: var(--accent);
}
.header-nav .dropdown-menu a:hover {
    color: var(--text-1);
    background: var(--bg-3, var(--bg-1));
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 14px;
}
.header-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--text-2);
    font-size: 13.5px;
    font-weight: 500;
}
.header-link:hover { color: var(--text-1); }
.header-btn {
    padding: 8px 16px;
    background: var(--accent);
    color: #fff !important;
    border-radius: var(--radius);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .02em;
}
.header-btn:hover { background: var(--accent-2); }

.menu-toggle {
    display: none;
    width: 40px; height: 40px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
}
.menu-toggle span {
    display: block;
    width: 22px; height: 2px;
    background: var(--text-1);
    transition: transform .2s var(--ease), opacity .2s var(--ease);
}

/* ===== Section base ===== */

.section-plans       { background: var(--bg-1); }
.section-compare     { background: var(--bg-0); }
.section-features    { background: var(--bg-1); }
.section-stack       { background: var(--bg-0); }
.section-cases       { background: var(--bg-1); }
.section-testimonials{ background: var(--bg-0); }

.section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 36px;
    flex-wrap: wrap;
}
.section-eyebrow {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 8px;
    display: inline-block;
}
.section-title {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 600;
    letter-spacing: .005em;
    color: var(--text-1);
    line-height: 1.15;
    max-width: 720px;
}
.section-sub {
    color: var(--text-2);
    font-size: 15px;
    margin-top: 10px;
    max-width: 620px;
    line-height: 1.6;
}
.section-link {
    color: var(--accent);
    font-size: 13px;
    font-weight: 500;
}
.section-link:hover { color: var(--accent-2); text-decoration: underline; }

/* ===== Hero ===== */
.hero {
    background: var(--bg-0);
    padding: 56px 0 80px;
    border-bottom: 1px solid var(--line);
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 80% 0%, rgba(45,108,255,.12), transparent 50%),
        radial-gradient(circle at 0% 100%, rgba(45,108,255,.06), transparent 40%);
    pointer-events: none;
}
.hero-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 48px;
    align-items: center;
    position: relative;
    z-index: 1;
}
.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    background: var(--accent-soft);
    border: 1px solid rgba(45,108,255,.25);
    color: var(--accent-2);
    font-family: var(--font-mono);
    font-size: 11.5px;
    font-weight: 600;
    letter-spacing: .04em;
    border-radius: 100px;
    margin-bottom: 20px;
}
.hero-eyebrow-dot {
    width: 6px; height: 6px;
    background: var(--accent);
    border-radius: 50%;
}
.hero-title {
    font-family: var(--font-display);
    font-size: 52px;
    font-weight: 600;
    line-height: 1.05;
    letter-spacing: -.005em;
    color: var(--text-1);
    margin-bottom: 20px;
}
.hero-title-accent {
    background: linear-gradient(90deg, var(--accent) 0%, var(--accent-2) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}
.hero-subtitle {
    font-size: 17px;
    line-height: 1.55;
    color: var(--text-2);
    margin-bottom: 28px;
    max-width: 540px;
}
.hero-subtitle b { color: var(--text-1); font-weight: 600; }

.hero-domain {
    display: flex;
    align-items: center;
    background: var(--bg-2);
    border: 1px solid var(--line-strong);
    border-radius: var(--radius-lg);
    padding: 6px 6px 6px 16px;
    max-width: 560px;
    transition: border-color .15s var(--ease);
}
.hero-domain:focus-within { border-color: var(--accent); }
.hero-domain-prefix {
    font-family: var(--font-mono);
    font-size: 13px;
    color: var(--text-4);
    margin-right: 4px;
    white-space: nowrap;
}
.hero-domain input {
    flex: 1;
    height: 42px;
    background: transparent;
    border: 0;
    color: var(--text-1);
    font-size: 14px;
    outline: none;
    min-width: 0;
}
.hero-domain input::placeholder { color: var(--text-4); }
.hero-domain-note {
    margin-top: 12px;
    color: var(--text-3);
    font-size: 12.5px;
    font-family: var(--font-mono);
}

.hero-trust {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin-top: 36px;
    max-width: 560px;
    border-top: 1px solid var(--line);
    padding-top: 20px;
}
.hero-trust-item {
    display: flex;
    flex-direction: column;
    gap: 2px;
    border-right: 1px solid var(--line);
    padding: 0 12px;
}
.hero-trust-item:first-child { padding-left: 0; }
.hero-trust-item:last-child { border-right: 0; padding-right: 0; }
.hero-trust-item b {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    color: var(--text-1);
    font-variant-numeric: tabular-nums;
    line-height: 1.1;
}
.hero-trust-item span {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--text-3);
    text-transform: uppercase;
    letter-spacing: .06em;
}

/* ── Hero card (painel) ── */
.hero-card {
    background: var(--bg-2);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 24px 60px -20px rgba(0,0,0,.6);
}
.hero-card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 18px;
    background: var(--bg-3);
    border-bottom: 1px solid var(--line);
}
.hero-card-tabs {
    display: flex;
    gap: 4px;
}
.hero-card-tab {
    padding: 4px 10px;
    font-size: 12px;
    color: var(--text-3);
    border-radius: 3px;
    font-weight: 500;
    cursor: pointer;
    transition: all .15s var(--ease);
}
.hero-card-tab.active {
    color: var(--text-1);
    background: var(--bg-2);
}
.hero-card-live {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-family: var(--font-mono);
    font-size: 10.5px;
    font-weight: 700;
    color: var(--green);
    letter-spacing: .08em;
}
.hero-card-live .dot {
    width: 6px; height: 6px;
    background: var(--green);
    border-radius: 50%;
    animation: pulse 1.6s ease-in-out infinite;
}

.hero-card-body {
    padding: 20px 22px;
}
.hero-card-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border-bottom: 1px solid var(--line);
    padding-bottom: 16px;
    margin-bottom: 16px;
}
.hero-card-metric {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 0 12px;
    border-right: 1px solid var(--line);
}
.hero-card-metric:first-child { padding-left: 0; }
.hero-card-metric:last-child { border-right: 0; padding-right: 0; }
.metric-label {
    font-family: var(--font-mono);
    font-size: 10.5px;
    color: var(--text-3);
    text-transform: uppercase;
    letter-spacing: .1em;
}
.metric-value {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    color: var(--text-1);
    font-variant-numeric: tabular-nums;
    line-height: 1.1;
    margin-top: 2px;
}
.metric-delta {
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 600;
    font-variant-numeric: tabular-nums;
}
.metric-delta.up   { color: var(--green); }
.metric-delta.down { color: var(--red); }
.metric-delta.flat { color: var(--text-3); }

.hero-card-chart {
    margin: 0 -22px 16px;
    padding: 0 22px;
    border-bottom: 1px solid var(--line);
    padding-bottom: 8px;
}
.hero-card-chart svg {
    width: 100%;
    height: 90px;
    display: block;
}
.hero-card-chart-axis {
    display: flex;
    justify-content: space-between;
    font-family: var(--font-mono);
    font-size: 10px;
    color: var(--text-4);
    margin-top: 4px;
    padding: 0 2px;
}

.hero-card-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.hero-card-list-item {
    display: grid;
    grid-template-columns: 12px 1fr auto auto;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    background: var(--bg-3);
    border-radius: var(--radius);
    font-family: var(--font-mono);
    font-size: 12px;
}
.dot-green { background: var(--green); }
.dot-yellow{ background: var(--yellow); }
.dot-red   { background: var(--red); }
.item-name { color: var(--text-1); font-weight: 500; }
.item-tag {
    padding: 2px 6px;
    font-size: 9.5px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    border-radius: 2px;
}
.tag-ok   { background: var(--green-soft); color: var(--green); }
.tag-warn { background: var(--yellow-soft); color: var(--yellow); }
.item-ms { color: var(--text-2); font-variant-numeric: tabular-nums; }

/* ── Logo strip ── */
.logos-eyebrow {
    text-align: center;
    margin-top: 64px;
    margin-bottom: 18px;
    color: var(--text-3);
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: .15em;
    text-transform: uppercase;
}
.logos-strip {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 24px;
    padding: 24px 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    opacity: .7;
}
.logo-mark {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    color: var(--text-3);
    letter-spacing: .12em;
    transition: color .15s var(--ease);
}
.logo-mark:hover { color: var(--text-1); }

/* ===== Botões ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 20px;
    font-size: 13.5px;
    font-weight: 600;
    border-radius: var(--radius);
    transition: background .15s var(--ease), transform .15s var(--ease);
    white-space: nowrap;
    cursor: pointer;
}
.btn-primary {
    background: var(--accent);
    color: #fff;
}
.btn-primary:hover { background: var(--accent-2); }
.btn-ghost {
    background: transparent;
    color: var(--text-1);
    border: 1px solid var(--line-strong);
}
.btn-ghost:hover {
    border-color: var(--text-3);
    background: var(--bg-2);
}
.btn-lg { padding: 14px 28px; font-size: 15px; }

/* ===== Billing toggle ===== */
.billing-toggle {
    display: inline-flex;
    background: var(--bg-2);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 3px;
}
.bt-opt {
    padding: 7px 16px;
    font-size: 12.5px;
    color: var(--text-3);
    border-radius: 4px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.bt-opt:hover { color: var(--text-1); }
.bt-opt.active {
    background: var(--bg-3);
    color: var(--text-1);
}
.bt-save {
    padding: 2px 6px;
    background: var(--green-soft);
    color: var(--green);
    font-family: var(--font-mono);
    font-size: 9.5px;
    font-weight: 700;
    letter-spacing: .05em;
    border-radius: 2px;
}

/* ===== Plans grid ===== */
.plans-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 18px;
    align-items: stretch;
}
.plans-grid .plan-card { grid-column: span 2; }
.plans-grid .plan-card.plan-wide { grid-column: span 3; }

/* Page hosting — tabs de categoria, breadcrumb, empty state */
.page-hosting .breadcrumbs {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12.5px;
    color: var(--text-3);
    margin-bottom: 16px;
    font-family: var(--font-mono);
}
.page-hosting .breadcrumbs a {
    color: var(--text-3);
    text-decoration: none;
    transition: color .15s var(--ease);
}
.page-hosting .breadcrumbs a:hover { color: var(--text-1); }
.page-hosting .breadcrumbs .bc-sep { color: var(--text-4); }
.page-hosting .breadcrumbs .bc-current { color: var(--text-1); }

.page-hosting .cat-tabs {
    display: flex;
    gap: 6px;
    padding: 6px;
    background: var(--bg-2);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    margin: 24px 0 32px;
    width: max-content;
    max-width: 100%;
    flex-wrap: wrap;
}
.page-hosting .cat-tab {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 14px;
    color: var(--text-3);
    text-decoration: none;
    font-size: 13.5px;
    font-weight: 500;
    border-radius: var(--radius);
    transition: color .15s var(--ease), background .15s var(--ease);
}
.page-hosting .cat-tab i { font-size: 16px; }
.page-hosting .cat-tab:hover { color: var(--text-1); background: var(--bg-3, var(--bg-1)); }
.page-hosting .cat-tab-active,
.page-hosting .cat-tab[aria-current="page"] {
    color: var(--text-1);
    background: var(--bg-1);
    box-shadow: 0 1px 0 rgba(45, 108, 255, .25), inset 0 0 0 1px rgba(45, 108, 255, .4);
}

.page-hosting .empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 56px 24px;
    text-align: center;
    color: var(--text-3);
    border: 1px dashed var(--line);
    border-radius: var(--radius-lg);
    background: var(--bg-2);
}
.page-hosting .empty-state i { font-size: 36px; color: var(--text-4); }

.page-hosting .hosting-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-top: 40px;
    padding: 20px 24px;
    background: linear-gradient(135deg, rgba(45, 108, 255, .08) 0%, rgba(45, 108, 255, .02) 100%);
    border: 1px solid rgba(45, 108, 255, .25);
    border-radius: var(--radius-lg);
    flex-wrap: wrap;
}
.page-hosting .hosting-foot-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    background: var(--accent);
    color: #fff;
    border-radius: 50%;
    font-size: 22px;
    box-shadow: 0 4px 14px rgba(45, 108, 255, .35);
}
.page-hosting .hosting-foot-text {
    flex: 1;
    min-width: 200px;
    color: var(--text-2);
    font-size: 14.5px;
    line-height: 1.5;
}
.page-hosting .hosting-foot-text strong {
    display: block;
    color: var(--text-1);
    font-size: 15.5px;
    font-weight: 700;
    margin-bottom: 2px;
}
.page-hosting .hosting-foot-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 18px;
    background: var(--accent);
    color: #fff !important;
    text-decoration: none;
    font-size: 13.5px;
    font-weight: 600;
    border-radius: var(--radius);
    white-space: nowrap;
    transition: background .15s var(--ease), transform .15s var(--ease);
}
.page-hosting .hosting-foot-cta i { font-size: 16px; transition: transform .15s var(--ease); }
.page-hosting .hosting-foot-cta:hover {
    background: #1a5cff;
    transform: translateY(-1px);
}
.page-hosting .hosting-foot-cta:hover i { transform: translateX(2px); }
@media (max-width: 640px) {
    .page-hosting .hosting-foot { padding: 16px; gap: 12px; }
    .page-hosting .hosting-foot-text { flex-basis: 100%; order: 2; }
    .page-hosting .hosting-foot-icon { order: 1; }
    .page-hosting .hosting-foot-cta { order: 3; width: 100%; justify-content: center; }
}

/* Plan card extras: target audience, meta, tech stack */
.plan-audience {
    margin: 6px 0 12px;
    padding: 8px 10px;
    background: var(--bg-1);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    color: var(--text-2);
    font-size: 12.5px;
    line-height: 1.5;
    display: flex;
    align-items: flex-start;
    gap: 6px;
}
.plan-audience i { color: var(--accent); font-size: 14px; margin-top: 1px; flex-shrink: 0; }

.plan-meta {
    list-style: none;
    margin: 12px 0 14px;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 4px;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding-top: 10px;
    padding-bottom: 10px;
}
.plan-meta li {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12.5px;
    color: var(--text-2);
}
.plan-meta li i { color: var(--accent); font-size: 14px; flex-shrink: 0; }
.plan-meta li b { color: var(--text-1); font-weight: 600; }

.plan-tech {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px dashed var(--line);
}
.plan-tech-label {
    display: block;
    font-size: 10.5px;
    color: var(--text-4);
    text-transform: uppercase;
    letter-spacing: .08em;
    font-family: var(--font-mono);
    margin-bottom: 8px;
}
.plan-tech-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
}
.plan-tech-list li {
    list-style: none;
    font-size: 11.5px;
    padding: 3px 7px;
    background: var(--bg-1);
    border: 1px solid var(--line);
    border-radius: 4px;
    color: var(--text-2);
    font-family: var(--font-mono);
}
.plan-tech-list .plan-tech-more {
    color: var(--text-3);
    background: transparent;
    border-color: transparent;
    padding: 3px 4px;
}

/* FAQ section per hosting category */
.plan-faqs {
    margin-top: 56px;
    padding-top: 40px;
    border-top: 1px solid var(--line);
}
.plan-faqs-head {
    margin-bottom: 24px;
    text-align: left;
}
.plan-faqs-head .section-eyebrow { margin-bottom: 6px; }
.plan-faqs-title {
    font-size: 26px;
    line-height: 1.2;
    margin: 4px 0 8px;
    color: var(--text-1);
    font-weight: 700;
}
.plan-faqs-sub {
    color: var(--text-3);
    font-size: 14px;
    margin: 0;
}
.plan-faqs-sub a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
}
.plan-faqs-sub a:hover { text-decoration: underline; }

.plan-faqs-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    align-items: start;
}
.plan-faq-item {
    list-style: none;
    background: var(--bg-2);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    transition: border-color .15s var(--ease);
}
.plan-faq-item:hover { border-color: var(--accent); }
.plan-faq-item[open] { border-color: var(--accent); }
.plan-faq-item details { margin: 0; }
.plan-faq-item details summary::-webkit-details-marker { display: none; }
.plan-faq-q {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 16px 18px;
    cursor: pointer;
    color: var(--text-1);
    font-size: 15px;
    font-weight: 600;
    user-select: none;
    transition: color .15s var(--ease);
}
.plan-faq-q:hover { color: var(--accent); }
.plan-faq-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 18px;
    transition: transform .2s var(--ease);
}
.plan-faq-item details[open] .plan-faq-icon { transform: rotate(45deg); }
.plan-faq-a {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows .25s var(--ease);
    color: var(--text-2);
    font-size: 14px;
    line-height: 1.6;
}
.plan-faq-item details[open] .plan-faq-a {
    grid-template-rows: 1fr;
}
.plan-faq-a-inner {
    overflow: hidden;
    padding: 0 18px;
    min-height: 0;
}
.plan-faq-item details[open] .plan-faq-a-inner {
    padding: 0 18px 16px;
}
.plan-faq-a p { margin: 0; }
@media (min-width: 960px) {
    .plan-faqs-list { grid-template-columns: 1fr 1fr; }
}
.plan-card {
    position: relative;
    background: var(--bg-2);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 28px 24px 26px;
    display: flex;
    flex-direction: column;
    transition: border-color .15s var(--ease), transform .15s var(--ease);
}
.plan-card:hover {
    border-color: var(--line-strong);
    transform: translateY(-2px);
}
.plan-featured {
    border-color: var(--accent);
    background:
        linear-gradient(180deg, rgba(45,108,255,.08) 0%, transparent 30%),
        var(--bg-2);
    box-shadow: 0 20px 50px -20px rgba(45,108,255,.4);
}
.plan-dark {
    background: linear-gradient(180deg, #07090c 0%, var(--bg-2) 100%);
}
.plan-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    padding: 4px 12px;
    background: var(--accent);
    color: #fff;
    font-family: var(--font-mono);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .12em;
    border-radius: 3px;
}
.plan-head { margin-bottom: 18px; }
.plan-name {
    display: block;
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 700;
    color: var(--text-1);
    letter-spacing: .05em;
    text-transform: uppercase;
    margin-bottom: 6px;
}
.plan-desc {
    color: var(--text-3);
    font-size: 12.5px;
    line-height: 1.5;
    display: block;
}
.plan-price {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin: 18px 0 4px;
}
.plan-currency {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 600;
    color: var(--text-2);
}
.plan-amount {
    font-family: var(--font-display);
    font-size: 38px;
    font-weight: 700;
    color: var(--text-1);
    line-height: 1;
    font-variant-numeric: tabular-nums;
    letter-spacing: -.01em;
}
.plan-amount-text {
    font-size: 24px;
    font-weight: 600;
}
.plan-period {
    font-family: var(--font-mono);
    font-size: 13px;
    color: var(--text-3);
}
.plan-billed {
    font-family: var(--font-mono);
    font-size: 11.5px;
    color: var(--text-3);
    margin-bottom: 18px;
    min-height: 1.4em;
}
.plan-cta {
    width: 100%;
    margin-bottom: 22px;
}
.plan-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
    border-top: 1px solid var(--line);
    padding-top: 18px;
}
.plan-features li {
    display: flex;
    gap: 10px;
    color: var(--text-2);
    font-size: 13px;
    line-height: 1.5;
}
.plan-features li b { color: var(--text-1); font-weight: 600; }
.check {
    flex-shrink: 0;
    color: var(--accent);
    font-weight: 700;
    width: 16px;
    height: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    background: var(--accent-soft);
    border-radius: 50%;
    margin-top: 1px;
}

/* ===== Compare table ===== */
.compare-table {
    background: var(--bg-2);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    overflow: hidden;
}
.compare-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    align-items: center;
    padding: 16px 24px;
    border-bottom: 1px solid var(--line);
    font-size: 14px;
}
.compare-row:last-child { border-bottom: 0; }
.compare-head {
    background: var(--bg-3);
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--text-3);
    letter-spacing: .12em;
    text-transform: uppercase;
    padding: 12px 24px;
    font-weight: 600;
}
.compare-featured {
    color: var(--accent-2);
    font-weight: 600;
    position: relative;
}
.compare-featured::before {
    content: "";
    position: absolute;
    inset: -16px -24px;
    background: var(--accent-soft);
    border-left: 2px solid var(--accent);
    border-right: 2px solid var(--accent);
    z-index: -1;
    pointer-events: none;
}
.compare-row:not(.compare-head):hover { background: var(--bg-3); }
.compare-yes {
    display: inline-block;
    padding: 2px 8px;
    background: var(--green-soft);
    color: var(--green);
    border-radius: 3px;
    font-size: 12px;
    font-weight: 600;
    font-family: var(--font-mono);
}
.compare-no { color: var(--text-4); font-size: 16px; }

/* ===== Features grid ===== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.feature-card {
    background: var(--bg-2);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    transition: border-color .15s var(--ease), transform .15s var(--ease);
}
.feature-card:hover {
    border-color: var(--line-strong);
    transform: translateY(-2px);
}

.feature-icon svg { width: 22px; height: 22px; }
.feature-card h3 {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 600;
    color: var(--text-1);
    margin-bottom: 8px;
    line-height: 1.25;
}
.feature-card p {
    color: var(--text-2);
    font-size: 13.5px;
    line-height: 1.6;
}

/* ===== Stack section ===== */
.stack-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 48px;
    align-items: start;
}
.stack-list {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-top: 28px;
}
.stack-list li {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid var(--line);
}
.stack-list li:first-child { border-top: 1px solid var(--line); }
.stack-tag {
    font-family: var(--font-mono);
    font-size: 10.5px;
    color: var(--accent);
    font-weight: 700;
    letter-spacing: .15em;
    text-transform: uppercase;
    padding-top: 2px;
}
.stack-list b {
    display: block;
    color: var(--text-1);
    font-size: 14.5px;
    font-weight: 600;
    margin-bottom: 2px;
}
.stack-list span {
    color: var(--text-3);
    font-size: 13px;
    line-height: 1.5;
}
.stack-card {
    background: var(--bg-2);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 24px;
}
.stack-card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--line);
}
.stack-card-head h3 {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 600;
    color: var(--text-1);
}
.stack-regions {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.region {
    display: grid;
    grid-template-columns: 50px 1fr auto auto;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    background: var(--bg-3);
    border-radius: var(--radius);
    font-family: var(--font-mono);
    font-size: 12px;
}
.region-code {
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--text-1);
    font-size: 13px;
    letter-spacing: .05em;
}
.region-name { color: var(--text-2); }
.region-status {
    padding: 2px 8px;
    border-radius: 2px;
    font-size: 10.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
}
.region-status.ok   { background: var(--green-soft); color: var(--green); }
.region-status.warn { background: var(--yellow-soft); color: var(--yellow); }
.region-ms { color: var(--text-1); font-weight: 600; font-variant-numeric: tabular-nums; }
.stack-card-foot { margin-top: 16px; padding-top: 14px; border-top: 1px solid var(--line); }

/* ===== Cases grid ===== */
.cases-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.case-card {
    background: var(--bg-2);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 28px 26px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: border-color .15s var(--ease);
}
.case-card:hover { border-color: var(--line-strong); }
.case-tag {
    display: inline-block;
    padding: 4px 10px;
    background: var(--accent-soft);
    color: var(--accent-2);
    font-family: var(--font-mono);
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: .1em;
    border-radius: 3px;
    align-self: flex-start;
}
.case-card h3 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 600;
    color: var(--text-1);
    line-height: 1.2;
}
.case-card p {
    color: var(--text-2);
    font-size: 14px;
    line-height: 1.6;
    flex: 1;
}
.case-stat {
    display: flex;
    align-items: baseline;
    gap: 8px;
    padding-top: 16px;
    border-top: 1px solid var(--line);
    margin-top: 4px;
}
.case-stat b {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
    font-variant-numeric: tabular-nums;
}
.case-stat span {
    color: var(--text-3);
    font-size: 13px;
}

/* ===== Testimonials ===== */
.test-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.test-card {
    background: var(--bg-2);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 26px 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: border-color .15s var(--ease);
}
.test-card:hover { border-color: var(--line-strong); }
.test-rating {
    color: var(--gold);
    font-size: 16px;
    letter-spacing: 2px;
}
.test-card blockquote {
    color: var(--text-1);
    font-size: 15px;
    line-height: 1.6;
    flex: 1;
    font-style: normal;
    position: relative;
}
.test-card blockquote::before {
    content: """;
    position: absolute;
    top: -16px; left: -4px;
    font-family: var(--font-display);
    font-size: 48px;
    color: var(--accent);
    opacity: .3;
    line-height: 1;
}
.test-author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid var(--line);
}
.test-avatar {
    width: 40px; height: 40px;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .05em;
}
.test-author b {
    display: block;
    color: var(--text-1);
    font-size: 14px;
    font-weight: 600;
}
.test-author span {
    color: var(--text-3);
    font-size: 12px;
}

/* ===== FAQ ===== */
.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 48px;
    align-items: start;
}
.faq-intro .section-title { font-size: 32px; }
.faq-intro .btn { margin-top: 20px; }
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.faq-item {
    background: var(--bg-2);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    transition: border-color .15s var(--ease);
}
.faq-item.open { border-color: var(--accent); }
.faq-q {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 22px;
    text-align: left;
    color: var(--text-1);
    font-size: 15px;
    font-weight: 600;
    font-family: var(--font-body);
    transition: color .15s var(--ease);
}
.faq-q:hover { color: var(--accent); }
.faq-icon {
    flex-shrink: 0;
    width: 24px; height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--text-3);
    background: var(--bg-3);
    border-radius: 50%;
    transition: transform .2s var(--ease), background .15s var(--ease), color .15s var(--ease);
}
.faq-item.open .faq-icon {
    transform: rotate(45deg);
    background: var(--accent-soft);
    color: var(--accent);
}

.faq-a p {
    padding: 0 22px 20px;
    color: var(--text-2);
    font-size: 14px;
    line-height: 1.65;
}
.faq-item.open .faq-a { max-height: 320px; }

/* ===== CTA final ===== */
}

/* ===== Announce bar (mensagem acima do header) ===== */

.announce-bar__link:hover {
    color: var(--accent-2);
}
@media (max-width: 640px) {
    .announce-bar {
        flex-direction: column;
        gap: 4px;
        padding: 8px 16px;
    }
}

/* ===== BoxIcons (substituindo emojis/checkmarks) ===== */
.feature-icon {
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-soft);
    color: var(--accent);
    border-radius: 10px;
    font-size: 24px;
    margin-bottom: 16px;
    border: 1px solid var(--line-strong);
}
.feature-icon i { line-height: 1; }

.plan-features li i.check,
.plan-features li .check {
    color: var(--green);
    margin-right: 8px;
    font-size: 18px;
    line-height: 1;
    vertical-align: -2px;
    display: inline-block;
}

.hero-domain-note i.bx {
    color: var(--green);
    vertical-align: -2px;
    margin-right: 4px;
    font-size: 14px;
}

/* ===== Cases icon (BoxIcons) ===== */
.case-icon {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-soft);
    color: var(--accent);
    border: 1px solid var(--line-strong);
    border-radius: 10px;
    font-size: 22px;
    margin-bottom: 4px;
}
.case-icon i { line-height: 1; }

/* ===== FAQ — transição mais suave + altura real via JS ===== */
.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s cubic-bezier(.4, 0, .2, 1),
                opacity .3s ease;
    opacity: 0;
}
.faq-a-inner {
    padding: 0 22px 22px;
    color: var(--text-2);
    font-size: 14px;
    line-height: 1.7;
    border-top: 1px solid var(--line);
    padding-top: 16px;
    margin-top: 0;
}
.faq-a-inner p { padding: 0; }
.faq-item.open .faq-a { opacity: 1; }
.faq-q-text { flex: 1; }
.faq-item.open .faq-icon {
    transform: rotate(45deg);
    background: var(--accent);
    color: #fff;
}

.cta-actions .btn-primary { box-shadow: none; }

.cta-badge i { font-size: 13px; }

.cta-perks li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-2);
    font-size: 14px;
}
.cta-perks li i {
    color: var(--green);
    font-size: 18px;
    background: var(--green-soft);
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cta-actions .btn {
    flex: 1;
    min-width: 140px;
    justify-content: center;
}
.cta-actions .btn-primary { box-shadow: none; }
.cta-actions .btn-primary i { margin-left: 6px; transition: transform .2s var(--ease); }
.cta-actions .btn-primary:hover i { transform: translateX(4px); }

.cta-trust-item > i {
    font-size: 22px;
    color: var(--accent);
    flex-shrink: 0;
}
.cta-trust-item b {
    display: block;
    color: var(--text-1);
    font-size: 13px;
    font-weight: 600;
    line-height: 1.2;
}
.cta-trust-item span {
    display: block;
    color: var(--text-3);
    font-size: 11px;
    line-height: 1.2;
}
@media (max-width: 768px) {
    .cta-card { grid-template-columns: 1fr; }
    .cta-side { border-right: 0; }
    .cta-amount { font-size: 44px; }
}

/* ===== CTA — versão limpa (sem bg, sem shadow) ===== */

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    align-self: flex-start;
    padding: 5px 12px;
    background: var(--accent);
    color: #fff;
    font-family: var(--font-mono);
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    border-radius: 100px;
}
.cta-badge i { font-size: 13px; }
.cta-title {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 600;
    color: var(--text-1);
    line-height: 1.18;
    letter-spacing: -.01em;
    margin: 0;
}
.cta-sub {
    color: var(--text-2);
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}
.cta-perks {
    list-style: none;
    padding: 0;
    margin: 6px 0 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.cta-perks li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-2);
    font-size: 14px;
}
.cta-perks li i {
    color: var(--green);
    font-size: 18px;
    background: var(--green-soft);
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cta-price {
    display: flex;
    align-items: baseline;
    gap: 6px;
    color: var(--text-1);
    font-family: var(--font-display);
    line-height: 1;
}
.cta-currency { font-size: 20px; color: var(--text-3); font-weight: 500; }
.cta-amount { font-size: 56px; font-weight: 700; letter-spacing: -.02em; color: var(--accent-2); }
.cta-period { font-size: 16px; color: var(--text-3); }
.cta-price-note {
    color: var(--text-3);
    font-size: 12px;
    margin: 0;
    font-family: var(--font-mono);
    letter-spacing: .02em;
}
.cta-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 4px;
}
.cta-actions .btn {
    flex: 1;
    min-width: 140px;
    justify-content: center;
}
.cta-actions .btn-primary { box-shadow: none; }
.cta-actions .btn-primary i { margin-left: 6px; transition: transform .2s var(--ease); }
.cta-actions .btn-primary:hover i { transform: translateX(4px); }
.cta-trust {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 12px;
    padding-top: 18px;
    border-top: 1px solid var(--line);
}
.cta-trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
}
.cta-trust-item > i {
    font-size: 22px;
    color: var(--accent);
    flex-shrink: 0;
}
.cta-trust-item b {
    display: block;
    color: var(--text-1);
    font-size: 13px;
    font-weight: 600;
    line-height: 1.2;
}
.cta-trust-item span {
    display: block;
    color: var(--text-3);
    font-size: 11px;
    line-height: 1.2;
}
@media (max-width: 768px) {
    .cta-card { grid-template-columns: 1fr; }
    .cta-side { border-right: 0; }
    .cta-amount { font-size: 44px; }
}

/* ===== CTA — sem bordas externas, só interna entre grids ===== */
.cta-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    position: relative;
}
.cta-side {
    border-right: 1px solid var(--line);
    border-bottom: 0;
    border-top: 0;
    border-left: 0;
    background: transparent;
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.cta-main {
    background: transparent;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

/* ===== Section — borda inferior global (separador entre seções) ===== */
.section {
    padding: 72px 0;
    position: relative;
    border-bottom: 1px solid var(--line);
}
.section:last-of-type,
.section.cta-section,
.section.section-cta {
    border-bottom: 0;
}

.footer-bottom 

/* ===== Section — borda inferior (override final, sem dependência de :last-of-type) ===== */
.section.section-bordered,
.section-plans,
.section-compare,
.section-features,
.section-stack,
.section-cases,
.section-testimonials,
.section-faq {
    border-bottom: 1px solid var(--line);
}
.section-cta {
    border-bottom: 0;
}

/* ===== Section CTA — borda inferior (separador do footer) ===== */

/* ===== Footer (refatorado — limpo, sem duplicações) ===== */
.footer {
    background: #07090c;
    border-top: 1px solid var(--line);
    padding: 40px 0 17px;
    margin-top: 0;
}
.footer-top {
    display: grid;
    grid-template-columns: 1.2fr 2fr;
    gap: 48px;
    padding-bottom: 36px;
    border-bottom: 1px solid var(--line);
}
.footer-brand .brand {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--accent);
    margin-bottom: 14px;
}
.footer-brand .brand-mark { width: 24px; height: 24px; }
.footer-brand .brand-name { color: var(--text-1); font-size: 16px; font-weight: 700; letter-spacing: .12em; }
.footer-tag {
    color: var(--text-3);
    font-size: 13.5px;
    line-height: 1.6;
    margin: 0 0 18px;
    max-width: 380px;
}
.footer-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 18px;
}
.footer-badge {
    padding: 4px 10px;
    background: var(--bg-2);
    border: 1px solid var(--line);
    color: var(--text-3);
    font-family: var(--font-mono);
    font-size: 10.5px;
    font-weight: 600;
    letter-spacing: .1em;
    border-radius: 3px;
}
.footer-social {
    display: flex;
    gap: 10px;
}
.footer-social a {
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-2);
    border: 1px solid var(--line);
    color: var(--text-3);
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
    transition: color .15s var(--ease), border-color .15s var(--ease);
}
.footer-social a:hover {
    color: var(--accent);
    border-color: var(--accent);
}
.footer-cols {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}
.footer-cols h5 {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--text-1);
    letter-spacing: .15em;
    text-transform: uppercase;
    margin: 0 0 14px;
    font-weight: 700;
}
.footer-cols ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-cols a {
    color: var(--text-3);
    font-size: 13px;
    text-decoration: none;
    transition: color .12s var(--ease);
}
.footer-cols a:hover { color: var(--accent); }

@media (max-width: 768px) {
    .footer-top { grid-template-columns: 1fr; gap: 32px; }
    .footer-cols { grid-template-columns: 1fr 1fr; gap: 24px; }
}
@media (max-width: 480px) {
    .footer-cols { grid-template-columns: 1fr; }
    
}

/* ===== Footer bottom — corrigir padding desproporcional ===== */

/* ===== Announce bar — garantir background e visibilidade (override final) ===== */
.announce-bar {
    background: var(--accent-soft);
    border-bottom: 1px solid vary: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 10px 24px;
    text-align: center;
}
.announce-bar__text {
    font-family: var(--font-mono);
    letter-spacing: .04em;
    color: var(--text-2);
}
.announce-bar__link {
    color: var(--accent);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .08em;
    font-size: 11px;
    text-decoration: none;
}
.announce-bar__link:hover {
    color: var(--accent-2);
}
@media (max-width: 640px) {
    .announce-bar { flex-direction: column; gap: 4px; padding: 8px 16px; }
}

/* ===== Footer bottom — padding inferior ajustado ===== */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 48px;
    padding-top: 16px;
    padding-bottom: 0;
    margin-top: 0;
    color: var(--text-4);
    font-size: 12px;
    font-family: var(--font-mono);
    flex-wrap: wrap;
    gap: 8px;
}
.footer-bottom p { margin: 0; line-height: 1.4; }
.footer-locale { color: var(--text-4); }
