:root {
    --bg-dark: #3a0a0a;
    --bg-darker: #240707;
    --brand: #ef4444;
    --brand-strong: #b91c1c;
    --brand-soft: #fee2e2;
    --accent: #dc2626;
    --accent-strong: #991b1b;
    --ink-900: #0c1f2b;
    --ink-700: #345061;
    --ink-500: #647e8f;
    --paper: #fff5f5;
    --panel: #ffffff;
    --radius: 18px;
    --radius-lg: 28px;
    --shadow: 0 14px 40px rgba(3, 28, 45, 0.12);
    --shadow-strong: 0 24px 64px rgba(3, 28, 45, 0.2);
    --topbar-mobile-height: 72px;
    --hero-height-desktop: 520px;
    --hero-height-tablet: 470px;
    --hero-height-mobile: 440px;
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
}

body {
    font-family: "Segoe UI", "Nunito Sans", Tahoma, sans-serif;
    color: var(--ink-900);
    background:
        radial-gradient(circle at 0% 0%, #ffe5e5 0, transparent 34%),
        radial-gradient(circle at 100% 18%, #ffd6d6 0, transparent 30%),
        var(--paper);
    min-height: 100vh;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

.site-wrap {
    width: min(1220px, 94vw);
    margin: 0 auto;
}

.topbar {
    position: sticky;
    top: 0;
    z-index: 60;
    border-bottom: 1px solid #e5eaf1;
    background: #fff;
    box-shadow: 0 4px 16px rgba(10, 30, 60, 0.08);
}

.topbar-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 10px 0;
    flex-wrap: nowrap;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #111827;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: -0.3px;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.brand:hover {
    transform: scale(1.04);
}

.brand-logo {
    width: auto;
    object-fit: contain;
    filter: none;
}

.topbar .brand-logo {
    height: 58px;
    max-width: min(27vw, 280px);
}

.footer-brand-top .brand-logo {
    height: 56px;
    max-width: min(24vw, 240px);
}

.brand-mark {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    color: #fff;
    font-size: 20px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--brand), #f87171);
    box-shadow: 0 6px 18px rgba(239, 68, 68, 0.42);
}

.topbar-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex: 1;
    min-width: 300px;
}

.topbar-menu-toggle {
    display: none;
    border: 1px solid #d7deea;
    background: #fff;
    color: #1e293b;
    font-size: 24px;
    line-height: 1;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.topbar-menu-toggle:hover {
    background: #f8fafc;
}

.topbar-menu a {
    text-decoration: none;
    color: #1f2937;
    font-size: 18px;
    font-weight: 600;
    padding: 8px 12px;
    border-radius: 10px;
    transition: background 0.2s ease, transform 0.2s ease;
    white-space: nowrap;
}

.topbar-menu a:hover {
    background: #f2f5f9;
    transform: translateY(-1px);
}

.topbar-menu a.menu-cta {
    color: #fff;
    font-weight: 700;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    border: 1px solid rgba(255, 255, 255, 0.42);
    box-shadow: 0 8px 22px rgba(29, 78, 216, 0.35);
}

.topbar-menu a.menu-cta:hover {
    background: linear-gradient(135deg, #60a5fa, #2563eb);
}

.actions {
    display: flex;
    gap: 8px;
    align-items: center;
}

.topbar-support {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-end;
    line-height: 1.2;
    gap: 2px;
    color: #475569;
    font-size: 12px;
    white-space: nowrap;
}

.topbar-support a {
    color: #0f172a;
    text-decoration: none;
    font-size: 22px;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.portal-assinante {
    text-decoration: none;
    color: #fff;
    font-weight: 800;
    font-size: 15px;
    letter-spacing: 0.2px;
    border-radius: 6px;
    padding: 11px 18px;
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    border: 1px solid #b91c1c;
    box-shadow: none;
    white-space: nowrap;
    transition: transform 0.2s ease, filter 0.2s ease;
}

.portal-assinante:hover {
    transform: translateY(-1px);
    filter: brightness(1.02);
}

.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 60;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #25d366, #128c7e);
    border: none;
    box-shadow: 0 8px 24px rgba(18, 140, 126, 0.42);
    display: grid;
    place-items: center;
    text-decoration: none;
    color: #fff;
    font-size: 28px;
    cursor: pointer;
    transition: all 0.3s ease;
    animation: floatIcon 3s ease-in-out infinite;
}

.whatsapp-float svg {
    width: 30px;
    height: 30px;
}

.whatsapp-float:hover {
    transform: scale(1.12) translateY(-4px);
    box-shadow: 0 12px 32px rgba(18, 140, 126, 0.52);
}

.actions button {
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.08);
    color: #f4fbff;
    padding: 8px 13px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
    transition: transform 0.22s ease, background 0.22s ease;
}

.actions button:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.18);
}

.hero {
    margin-top: 0;
    border-radius: 0;
    overflow: hidden;
    background: linear-gradient(105deg, #173b9d 0%, #2155c8 58%, #d7283a 100%);
    box-shadow: none;
    min-height: var(--hero-height-desktop);
    height: var(--hero-height-desktop);
}

.hero-carousel {
    position: relative;
    min-height: var(--hero-height-desktop);
    height: var(--hero-height-desktop);
    isolation: isolate;
}

.hero-carousel::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 18% 16%, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0) 36%),
        radial-gradient(circle at 72% 42%, rgba(239, 68, 68, 0.32), rgba(239, 68, 68, 0) 40%),
        repeating-radial-gradient(circle at 64% 42%, rgba(255, 255, 255, 0.14) 0 2px, rgba(255, 255, 255, 0) 2px 16px);
    z-index: 0;
}

.hslide {
    position: absolute;
    inset: 0;
    padding: clamp(30px, 5vw, 62px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 100%;
    opacity: 0;
    transform: translateX(32px);
    transition: opacity 0.52s ease, transform 0.52s ease;
    pointer-events: none;
    z-index: 3;
}

.hslide::before {
    content: "";
    display: none;
}

.hslide > * {
    position: relative;
    z-index: 1;
}

.hslide.has-left-image > .kicker,
.hslide.has-left-image > h1,
.hslide.has-left-image > p,
.hslide.has-left-image > .hero-cta {
    margin-left: clamp(220px, 36vw, 520px);
    margin-right: 0;
}

.slide-left-image {
    position: absolute;
    left: 0;
    right: auto;
    top: 50%;
    width: clamp(240px, 36vw, 540px);
    height: 78%;
    object-fit: contain;
    object-position: left center;
    transform: translateY(-50%);
    opacity: 0.88;
    filter: drop-shadow(0 16px 24px rgba(11, 20, 45, 0.22));
    border-radius: 0 20px 20px 0;
    z-index: 2;
    pointer-events: none;
}

.left-img-none {
    animation: none;
}

.left-img-float {
    animation: leftImgFloat 3s ease-in-out infinite;
}

.left-img-pulse {
    animation: leftImgPulse 2.2s ease-in-out infinite;
}

.left-img-zoom {
    animation: leftImgZoom 3.4s ease-in-out infinite;
}

.hslide.active {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
}

.hslide.exit {
    opacity: 0;
    transform: translateX(-32px);
}

.hslide .kicker {
    width: fit-content;
    margin-bottom: 16px;
    border-radius: 999px;
    padding: 8px 14px;
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.36);
    color: #f8fcff;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.2px;
}

.hslide h1 {
    margin: 0 0 14px;
    color: #fff;
    font-size: clamp(38px, 5.2vw, 68px);
    line-height: 1.02;
    font-weight: 800;
    letter-spacing: -1.4px;
    max-width: 760px;
}

.hslide p {
    margin: 0 0 16px;
    color: rgba(255, 245, 245, 0.94);
    font-size: clamp(19px, 2.2vw, 26px);
    line-height: 1.25;
    max-width: 620px;
}

.hero-cta {
    display: inline-block;
    text-decoration: none;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    border-radius: 10px;
    padding: 11px 20px;
    background: linear-gradient(135deg, #e23245, #b71b33);
    box-shadow: 0 8px 20px rgba(121, 24, 37, 0.3);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hero-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 26px rgba(121, 24, 37, 0.4);
}

.hero-visual {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.hero-art {
    position: absolute;
    right: clamp(22px, 3vw, 54px);
    top: 50%;
    width: clamp(380px, 50vw, 760px);
    max-width: 58%;
    height: auto;
    transform: translateY(-50%);
    filter: drop-shadow(0 28px 54px rgba(9, 14, 36, 0.34));
}

.hslide-prev,
.hslide-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    display: grid;
    place-items: center;
    z-index: 5;
    transition: transform 0.2s ease, background 0.2s ease;
}

.hslide-prev {
    left: 12px;
}

.hslide-next {
    right: 12px;
}

.hslide-prev:hover,
.hslide-next:hover {
    background: rgba(255, 255, 255, 0.22);
    transform: translateY(-50%) scale(1.08);
}

.hslide-dots {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 14px;
    display: flex;
    gap: 10px;
    z-index: 5;
}

.dot {
    width: 10px;
    height: 10px;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.35);
    transition: all 0.28s ease;
}

.dot.active {
    width: 28px;
    border-radius: 8px;
    background: #fff;
}

.hslide-progress {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 4px;
    background: linear-gradient(90deg, #facc15, #fff);
}

.trust-strip {
    margin-top: 22px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.trust-item {
    background: linear-gradient(160deg, #fff, #fff1f2);
    border: 1px solid rgba(185, 28, 28, 0.14);
    border-radius: 16px;
    padding: 16px;
    box-shadow: var(--shadow);
    animation: reveal 0.6s ease both;
}

.trust-item strong {
    display: block;
    color: var(--brand-strong);
    font-size: clamp(24px, 3vw, 30px);
    line-height: 1;
    margin-bottom: 6px;
}

.trust-item span {
    color: var(--ink-700);
    font-size: 14px;
}

.planos-section {
    margin-top: 54px;
}

.section-head {
    margin-bottom: 22px;
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 14px;
}

.section-head-compact {
    margin-bottom: 18px;
}

.section-kicker {
    margin: 0 0 8px;
    color: var(--brand-strong);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.3px;
}

.section-head h2 {
    margin: 0;
    font-size: clamp(28px, 4.2vw, 42px);
    letter-spacing: -0.8px;
    line-height: 1.12;
}

.section-head p {
    margin: 8px 0 0;
    color: var(--ink-700);
}

.planos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 18px;
}

.planos-carousel {
    position: relative;
    background: transparent;
}

.planos-track-wrap {
    overflow: hidden;
    background: transparent;
}

.planos-nav {
    display: none;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border: 1px solid rgba(185, 28, 28, 0.28);
    border-radius: 50%;
    background: #fff;
    color: #7f1d1d;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    z-index: 4;
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.14);
    transition: transform 0.2s ease, background 0.2s ease;
}

.planos-nav:hover {
    transform: translateY(-50%) scale(1.05);
    background: #fff1f2;
}

.planos-nav:disabled {
    opacity: 0.45;
    cursor: not-allowed;
    transform: translateY(-50%);
}

.planos-prev {
    left: -18px;
}

.planos-next {
    right: -18px;
}

.planos-carousel.is-carousel {
    padding: 0 20px;
}

.planos-carousel.is-carousel .planos-nav {
    display: grid;
    place-items: center;
}

.planos-carousel.is-carousel .planos-grid {
    display: flex;
    flex-wrap: nowrap;
    gap: 0;
    background: transparent;
    transition: transform 0.35s ease;
    will-change: transform;
}

.planos-carousel.is-carousel .card {
    flex: 0 0 33.3333%;
    min-width: 0;
}

.card {
    position: relative;
    background: var(--panel);
    border-radius: var(--radius);
    border: 1px solid rgba(185, 28, 28, 0.16);
    box-shadow: var(--shadow);
    padding: 22px;
    animation: reveal 0.55s ease both;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 52px rgba(3, 28, 45, 0.18);
}

.card h3 {
    margin: 0 0 4px;
    font-size: 24px;
}

.plan-badge {
    display: inline-block;
    margin-bottom: 10px;
    padding: 6px 10px;
    font-size: 11px;
    font-weight: 700;
    border-radius: 999px;
    color: #fff;
    background: linear-gradient(135deg, #ef4444, #b91c1c);
}

.speed {
    margin: 0;
    color: var(--ink-700);
    font-weight: 600;
}

.price {
    margin: 10px 0 14px;
    color: #7f1d1d;
    font-size: 42px;
    font-weight: 800;
    line-height: 1;
}

.addons {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 12px;
}

.addons span {
    padding: 6px 9px;
    font-size: 12px;
    font-weight: 700;
    border-radius: 999px;
    color: #7f1d1d;
    background: var(--brand-soft);
}

.plan-benefits {
    margin: 0 0 16px;
    padding-left: 18px;
    color: var(--ink-700);
    font-size: 14px;
}

.plan-benefits li {
    margin-bottom: 6px;
}

.btn-whatsapp {
    display: inline-block;
    text-decoration: none;
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    border-radius: 10px;
    padding: 11px 16px;
    background: linear-gradient(135deg, #ef4444, #b91c1c);
    box-shadow: 0 10px 24px rgba(185, 28, 28, 0.33);
    transition: transform 0.2s ease;
}

.btn-whatsapp:hover {
    transform: translateY(-2px);
}

.planos-nota {
    margin: 14px 0 0;
    color: var(--ink-500);
    font-size: 13px;
}

.planos-grid .card {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-height: 100%;
    padding: 24px 22px 22px;
    border: 1px solid rgba(30, 64, 175, 0.14);
    background:
        linear-gradient(165deg, rgba(255, 255, 255, 0.98) 0%, rgba(241, 245, 255, 0.96) 100%);
    box-shadow: 0 16px 36px rgba(15, 23, 42, 0.1);
    overflow: hidden;
}

.planos-grid .card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #1d4ed8, #2563eb, #ef4444);
}

.planos-grid .card:hover {
    transform: translateY(-8px);
    box-shadow: 0 22px 44px rgba(15, 23, 42, 0.16);
}

.planos-grid .card h3 {
    margin: 2px 0 0;
    font-size: clamp(22px, 2.2vw, 28px);
    letter-spacing: -0.5px;
    color: #0f172a;
}

.planos-grid .speed {
    margin: 0;
    color: #1d4ed8;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.4px;
    text-transform: uppercase;
}

.planos-grid .price {
    margin: 2px 0 8px;
    color: #0b2a6d;
    font-size: clamp(34px, 4vw, 44px);
    font-weight: 800;
    line-height: 1;
}

.planos-grid .addons {
    margin: 0 0 4px;
    gap: 6px;
}

.planos-grid .addons span {
    padding: 7px 10px;
    border-radius: 999px;
    border: 1px solid rgba(37, 99, 235, 0.2);
    color: #1e3a8a;
    font-size: 11px;
    font-weight: 700;
    background: rgba(255, 255, 255, 0.85);
}

.planos-grid .plan-benefits {
    margin: 2px 0 14px;
    padding-left: 16px;
    color: #334155;
    font-size: 14px;
}

.planos-grid .plan-benefits li {
    margin-bottom: 5px;
}

.planos-grid .btn-whatsapp {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 12px 16px;
    border-radius: 12px;
    font-size: 14px;
    letter-spacing: 0.2px;
    background: linear-gradient(135deg, #dc2626, #b91c1c 56%, #1d4ed8);
    box-shadow: 0 10px 20px rgba(30, 64, 175, 0.25);
}

.planos-grid .btn-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 24px rgba(30, 64, 175, 0.3);
}

.features {
    margin: 70px auto 0;
}

.features > .section-head {
    grid-column: 1 / -1;
    margin-bottom: 4px;
}

.features .feature {
    background: linear-gradient(160deg, #fff, #fff1f2);
    border: 1px solid rgba(185, 28, 28, 0.14);
    border-radius: var(--radius);
    padding: 22px;
    box-shadow: var(--shadow);
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 16px;
}

.feature-icon {
    font-size: 34px;
    display: inline-block;
    margin-bottom: 8px;
    animation: floatIcon 2.8s ease-in-out infinite;
}

.feature h4 {
    margin: 0 0 6px;
    font-size: 18px;
}

.feature p {
    margin: 0;
    color: var(--ink-700);
    font-size: 14px;
}

.enterprise {
    margin: 70px auto 0;
    padding: 26px;
    border-radius: var(--radius-lg);
    background: linear-gradient(120deg, #14297f, #1d3fa8);
    color: #e6eeff;
    box-shadow: var(--shadow-strong);
}

.enterprise-head h2 {
    margin: 6px 0 10px;
    font-size: clamp(28px, 4vw, 40px);
    color: #fff;
}

.enterprise-head p {
    margin: 0;
    max-width: 760px;
    color: rgba(230, 238, 255, 0.92);
}

.enterprise-grid {
    margin-top: 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 14px;
}

.enterprise-card {
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 14px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.08);
}

.enterprise-card h3 {
    margin: 0 0 6px;
    color: #fff;
}

.enterprise-card p {
    margin: 0;
    color: rgba(230, 238, 255, 0.95);
    font-size: 14px;
}

.testimonials {
    margin: 70px auto 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 16px;
}

.testimonial-card {
    background: #fff;
    border: 1px solid rgba(185, 28, 28, 0.13);
    border-radius: 16px;
    box-shadow: var(--shadow);
    padding: 20px;
}

.testimonial-card p {
    margin: 0 0 12px;
    color: var(--ink-700);
}

.testimonial-card strong {
    display: block;
    color: var(--ink-900);
}

.testimonial-card span {
    color: var(--ink-500);
    font-size: 13px;
}

.footer {
    margin-top: 72px;
    color: #e6eeff;
    background: linear-gradient(135deg, #112565, #1d3fa8 58%, #2563eb);
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    padding: 42px 0 24px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.footer-brand {
    max-width: 340px;
}

.footer-brand-top {
    margin-bottom: 14px;
}

.footer-brand p {
    margin: 0 0 14px;
    color: rgba(230, 238, 255, 0.9);
    font-size: 14px;
}

.footer-whatsapp {
    display: inline-block;
    text-decoration: none;
    color: #fff;
    font-weight: 700;
    border-radius: 10px;
    padding: 10px 14px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    box-shadow: 0 10px 24px rgba(37, 99, 235, 0.32);
}

.footer-col h4 {
    margin: 0 0 12px;
    color: #fff;
    font-size: 16px;
}

.footer-col a,
.footer-col p {
    display: block;
    margin: 0 0 8px;
    color: rgba(230, 238, 255, 0.9);
    font-size: 14px;
    text-decoration: none;
}

.footer-col a:hover {
    color: #fff;
    text-decoration: underline;
}

.footer-contact p {
    color: rgba(191, 219, 254, 0.95);
}

.footer-bottom {
    margin-top: 26px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.footer-social {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.footer-social a {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: inline-grid;
    place-items: center;
    color: #e6eeff;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.28);
    transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.footer-social a:hover {
    transform: translateY(-2px);
    background: #fff;
    color: #1d4ed8;
}

.footer-social svg {
    width: 18px;
    height: 18px;
}

.footer-bottom small {
    color: rgba(191, 219, 254, 0.95);
    font-size: 13px;
}

.cookie-banner {
    position: fixed;
    left: 16px;
    right: 16px;
    bottom: 16px;
    z-index: 70;
    max-width: 760px;
    margin: 0 auto;
    padding: 14px;
    border-radius: 14px;
    border: 1px solid rgba(254, 202, 202, 0.35);
    background: rgba(69, 10, 10, 0.94);
    color: #ffe4e6;
    display: none;
    box-shadow: var(--shadow-strong);
}

.cookie-banner button {
    margin-left: 10px;
    border: none;
    border-radius: 8px;
    padding: 8px 12px;
    cursor: pointer;
    color: #fff;
    background: linear-gradient(135deg, #ef4444, #b91c1c);
}

.high-contrast {
    background: #000 !important;
    color: #ff0 !important;
}

.high-contrast .hero,
.high-contrast .card,
.high-contrast .feature,
.high-contrast .enterprise,
.high-contrast .topbar,
.high-contrast .trust-item,
.high-contrast .testimonial-card,
.high-contrast .footer {
    background: #000 !important;
    color: #ff0 !important;
    border-color: #ff0 !important;
    box-shadow: 0 0 0 2px #ff0 !important;
}

@keyframes reveal {
    from {
        opacity: 0;
        transform: translateY(18px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes floatIcon {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-6px);
    }
}

@keyframes leftImgFloat {
    0%,
    100% {
        transform: translateY(-50%);
    }
    50% {
        transform: translateY(calc(-50% - 8px));
    }
}

@keyframes leftImgPulse {
    0%,
    100% {
        transform: translateY(-50%) scale(1);
    }
    50% {
        transform: translateY(-50%) scale(1.04);
    }
}

@keyframes leftImgZoom {
    0%,
    100% {
        transform: translateY(-50%) scale(1);
        opacity: 0.95;
    }
    50% {
        transform: translateY(-50%) scale(1.08);
        opacity: 1;
    }
}

@keyframes floatIcon {
    0%,
    100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-8px);
    }
}

/* Página de Privacidade */
.privacy-page {
    padding: 60px 0;
}

.privacy-header {
    text-align: center;
    margin-bottom: 60px;
}

.privacy-header h1 {
    font-size: clamp(32px, 6vw, 56px);
    color: var(--brand-strong);
    margin: 0 0 12px 0;
    font-weight: 800;
}

.privacy-header .last-update {
    color: var(--ink-500);
    font-size: 14px;
    margin: 0;
}

.privacy-content {
    max-width: 800px;
    margin: 0 auto;
}

.privacy-content section {
    margin-bottom: 48px;
}

.privacy-content h2 {
    font-size: clamp(24px, 4vw, 32px);
    color: var(--brand-strong);
    margin: 0 0 16px 0;
    font-weight: 700;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--brand);
}

.privacy-content h3 {
    font-size: 18px;
    color: var(--ink-900);
    margin: 24px 0 12px 0;
    font-weight: 700;
}

.privacy-content p {
    color: var(--ink-700);
    margin: 12px 0;
    line-height: 1.7;
}

.privacy-content ul {
    list-style: none;
    padding-left: 20px;
}

.privacy-content li {
    color: var(--ink-700);
    margin: 8px 0;
    padding-left: 20px;
    position: relative;
    line-height: 1.7;
}

.privacy-content li:before {
    content: "▸";
    position: absolute;
    left: 0;
    color: var(--brand);
    font-weight: bold;
}

.privacy-content a {
    color: var(--brand-strong);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

.privacy-content a:hover {
    color: var(--brand);
    text-decoration: underline;
}

@media (max-width: 960px) {
    .trust-strip {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hero,
    .hero-carousel {
        min-height: var(--hero-height-tablet);
        height: var(--hero-height-tablet);
    }

    .hslide {
        max-width: 100%;
    }

    .hslide.has-left-image > .kicker,
    .hslide.has-left-image > h1,
    .hslide.has-left-image > p,
    .hslide.has-left-image > .hero-cta {
        margin-left: clamp(190px, 36vw, 440px);
        margin-right: 0;
    }

    .slide-left-image {
        width: clamp(200px, 36vw, 440px);
        height: 74%;
        left: 0;
        right: auto;
        top: 50%;
    }

    .hero-art {
        width: clamp(320px, 46vw, 580px);
        max-width: 50%;
        right: 14px;
    }

    .section-head {
        align-items: flex-start;
        flex-direction: column;
    }

    .topbar-menu {
        order: 3;
        width: 100%;
        justify-content: flex-start;
        flex-wrap: wrap;
        gap: 8px;
        min-width: 0;
    }

    .topbar-support {
        order: 4;
        align-items: flex-start;
    }

    .portal-assinante {
        order: 5;
    }

    .actions {
        order: 6;
        width: 100%;
        justify-content: flex-start;
    }

    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .footer-brand {
        max-width: 100%;
        grid-column: 1 / -1;
    }

    .planos-carousel.is-carousel .card {
        flex-basis: 50%;
    }

    .planos-grid .card {
        padding: 22px 18px 18px;
    }

    .planos-grid .price {
        font-size: clamp(30px, 5.2vw, 38px);
    }

    .planos-prev {
        left: -10px;
    }

    .planos-next {
        right: -10px;
    }
}

@media (max-width: 700px) {
    .topbar {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 80;
    }

    main {
        padding-top: var(--topbar-mobile-height);
    }

    .topbar-content {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 8px;
        min-height: var(--topbar-mobile-height);
        padding: 6px 0;
        position: relative;
    }

    .actions {
        display: none;
    }

    .topbar-menu {
        display: none;
        position: absolute;
        top: calc(100% + 6px);
        right: 0;
        left: auto;
        width: min(260px, 88vw);
        min-width: 0;
        flex-direction: column;
        align-items: stretch;
        gap: 4px;
        padding: 10px;
        border-radius: 14px;
        border: 1px solid #d9e2ef;
        background: #fff;
        box-shadow: 0 18px 42px rgba(15, 23, 42, 0.2);
        z-index: 90;
    }

    .topbar-menu.is-open {
        display: flex;
    }

    .topbar-menu a {
        width: 100%;
        font-size: 14px;
        padding: 10px 12px;
        border-radius: 10px;
    }

    .topbar-menu-toggle {
        display: inline-flex;
        order: 3;
    }

    .topbar-support {
        display: none;
    }

    .topbar-support a {
        font-size: 20px;
    }

    .portal-assinante {
        order: 2;
        width: auto;
        text-align: center;
        padding: 6px 10px;
        font-size: 10px;
        border-radius: 8px;
        box-shadow: none;
    }

    .topbar-menu a {
        font-size: 12px;
        padding: 6px 9px;
    }

    .topbar .brand-logo {
        height: 42px;
        max-width: 170px;
    }

    .footer-brand-top .brand-logo {
        height: 46px;
        max-width: 180px;
    }

    .whatsapp-highlight {
        margin-right: auto;
    }

    .trust-strip {
        grid-template-columns: 1fr;
    }

    .planos-carousel.is-carousel {
        padding: 0 8px;
    }

    .planos-carousel.is-carousel .card {
        flex-basis: 100%;
    }

    .planos-grid .card {
        padding: 20px 16px 16px;
        gap: 8px;
    }

    .planos-grid .speed {
        font-size: 12px;
    }

    .planos-grid .price {
        font-size: clamp(28px, 9vw, 34px);
    }

    .planos-grid .addons span {
        font-size: 10px;
        padding: 6px 8px;
    }

    .planos-nav {
        width: 34px;
        height: 34px;
        font-size: 16px;
    }

    .planos-prev {
        left: 0;
    }

    .planos-next {
        right: 0;
    }

    .hslide {
        max-width: 100%;
        justify-content: flex-end;
        padding: 16px;
        padding-bottom: 62px;
    }

    .hslide.has-left-image > .kicker,
    .hslide.has-left-image > h1,
    .hslide.has-left-image > p,
    .hslide.has-left-image > .hero-cta {
        margin-left: 0;
        margin-right: 0;
    }

    .slide-left-image {
        width: 72vw;
        height: 100%;
        left: 0;
        right: auto;
        top: 50%;
        transform: translateY(-50%);
        opacity: 0.33;
        border-radius: 0;
    }

    .left-img-float,
    .left-img-pulse,
    .left-img-zoom {
        animation: none;
    }

    .hslide::before {
        display: block;
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg, rgba(7, 14, 38, 0.1) 0%, rgba(7, 14, 38, 0.66) 62%, rgba(7, 14, 38, 0.8) 100%);
        z-index: 0;
    }

    .hslide > * {
        position: relative;
        z-index: 1;
    }

    .hslide h1 {
        font-size: clamp(24px, 7.2vw, 31px);
        line-height: 1.06;
        margin-bottom: 10px;
    }

    .hslide p {
        font-size: 15px;
        max-width: 100%;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .hero-art {
        top: 50%;
        right: -34px;
        width: 58vw;
        max-width: none;
        transform: translateY(-50%);
        opacity: 0.28;
    }

    .hslide-prev,
    .hslide-next {
        width: 34px;
        height: 34px;
    }

    .hero,
    .hero-carousel {
        min-height: var(--hero-height-mobile);
        height: var(--hero-height-mobile);
    }

    .hslide-dots {
        left: 50%;
        transform: translateX(-50%);
        bottom: 16px;
    }

    .enterprise {
        padding: 20px;
    }

    .card,
    .feature,
    .testimonial-card {
        padding: 18px;
    }

    .footer {
        padding-top: 34px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .footer-bottom {
        margin-top: 14px;
    }

    .footer-bottom-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .privacy-page {
        padding: 30px 0;
    }

    .privacy-header {
        margin-bottom: 40px;
    }

    .privacy-header h1 {
        font-size: 28px;
    }

    .privacy-content section {
        margin-bottom: 32px;
    }

    .privacy-content h2 {
        font-size: 20px;
    }

    .privacy-content h3 {
        font-size: 16px;
    }
}
