/* ===================================== */
/* SPATTY - Publicidade Inteligente      */
/* CSS Principal do Projeto              */
/* ===================================== */

:root {
    --black: #0a0a0a;
    --off: #111111;
    --card: #161616;
    --border: #242424;
    --lime: #c8ff00;
    --white: #f5f5f0;
    --grey: #888888;
    --gl: #bbbbbb;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    background: var(--black);
    color: var(--white);
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
}

/* ───── NAV ───── */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    padding: 20px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(10,10,10,0.88);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
}

.logo {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 800;
    font-size: 22px;
    color: var(--white);
    text-decoration: none;
}
.logo span { color: var(--lime); }

nav ul { list-style: none; display: flex; gap: 36px; }
nav ul a {
    color: var(--grey);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color .2s;
}
nav ul a:hover { color: var(--white); }

.nav-cta {
    background: var(--lime) !important;
    color: var(--black) !important;
    padding: 10px 22px;
    border-radius: 6px;
    font-weight: 700 !important;
    font-size: 14px !important;
}

.nav-btn-login {
    color: var(--white) !important;
    border: 1px solid var(--grey) !important;
    padding: 8px 18px;
    border-radius: 6px;
    font-weight: 600 !important;
    font-size: 14px !important;
    transition: all 0.3s ease;
}

.nav-btn-login:hover {
    color: var(--lime) !important;
    border-color: var(--lime) !important;
    background: rgba(200, 255, 0, 0.05) !important;
}

/* ───── HERO ───── */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 140px 60px 100px;
    position: relative;
    overflow: hidden;
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

.hero-glow {
    position: absolute;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(200,255,0,0.08) 0%, transparent 70%);
    border-radius: 50%;
    right: -100px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}

.hero-content {
    max-width: 700px;
    position: relative;
    z-index: 2;
    animation: fadeUp .9s cubic-bezier(.16,1,.3,1) both;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(200,255,0,0.08);
    border: 1px solid rgba(200,255,0,0.25);
    color: var(--lime);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 7px 16px;
    border-radius: 100px;
    margin-bottom: 32px;
}
.badge::before {
    content: '';
    width: 7px;
    height: 7px;
    background: var(--lime);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

h1 {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 800;
    font-size: clamp(44px, 6vw, 76px);
    line-height: 1.0;
    letter-spacing: -2px;
    margin-bottom: 28px;
}
h1 em { font-style: normal; color: var(--lime); }

.hero-sub {
    font-size: 18px;
    color: var(--gl);
    line-height: 1.65;
    max-width: 520px;
    margin-bottom: 48px;
    font-weight: 300;
}

.hero-actions { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }

.btn-primary {
    background: var(--lime);
    color: var(--black);
    padding: 16px 34px;
    font-size: 15px;
    font-weight: 700;
    border-radius: 8px;
    text-decoration: none;
    font-family: 'Bricolage Grotesque', sans-serif;
    letter-spacing: -.3px;
    transition: transform .2s, opacity .2s;
    display: inline-block;
}
.btn-primary:hover { transform: translateY(-2px); opacity: .9; }

.btn-ghost {
    color: var(--gl);
    font-size: 14px;
    text-decoration: none;
    transition: color .2s;
}
.btn-ghost:hover { color: var(--white); }

.hero-login-hint {
    margin-top: 28px;
    font-size: 14px;
    color: var(--gl);
}

.hero-login-hint a {
    color: var(--lime);
    text-decoration: none;
    font-weight: 600;
    transition: color .2s;
}

.hero-login-hint a:hover {
    color: var(--white);
}

/* ───── STATS BAR ───── */
.stats-bar {
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 40px 60px;
    display: flex;
    background: var(--off);
}

.stat {
    flex: 1;
    padding: 0 40px;
    border-right: 1px solid var(--border);
}
.stat:first-child { padding-left: 0; }
.stat:last-child { border-right: none; }

.stat-num {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 42px;
    font-weight: 800;
    color: var(--lime);
    letter-spacing: -2px;
    line-height: 1;
    margin-bottom: 6px;
}
.stat-lbl { font-size: 13px; color: var(--grey); }

/* ───── SECTIONS ───── */
.section {
    padding: 120px 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.sec-tag {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--lime);
    margin-bottom: 16px;
}

h2 {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 800;
    letter-spacing: -1.5px;
    line-height: 1.1;
    margin-bottom: 20px;
}

.sec-sub {
    font-size: 17px;
    color: var(--grey);
    max-width: 480px;
    line-height: 1.7;
    margin-bottom: 72px;
    font-weight: 300;
}

/* ───── STEPS ───── */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }

.step {
    background: var(--card);
    padding: 44px 40px;
    position: relative;
    overflow: hidden;
    transition: background .25s;
}
.step:first-child { border-radius: 16px 0 0 16px; }
.step:last-child  { border-radius: 0 16px 16px 0; }
.step:hover { background: #1c1c1c; }

.step-num {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 72px;
    font-weight: 800;
    color: rgba(200,255,0,0.07);
    line-height: 1;
    position: absolute;
    top: 24px;
    right: 30px;
    letter-spacing: -3px;
}

.step-icon {
    width: 48px;
    height: 48px;
    background: rgba(200,255,0,0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    font-size: 22px;
}

.step h3 {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: -.5px;
}
.step p { font-size: 14px; color: var(--grey); line-height: 1.7; }

/* ───── FOR WHO ───── */
.for-section {
    background: var(--off);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 120px 60px;
}

.for-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.seg-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 36px; }
.seg-tag {
    background: var(--card);
    border: 1px solid var(--border);
    padding: 10px 18px;
    border-radius: 100px;
    font-size: 14px;
    color: var(--gl);
    transition: all .2s;
    cursor: default;
}
.seg-tag:hover { border-color: var(--lime); color: var(--lime); background: rgba(200,255,0,0.05); }

/* ───── CALCULATOR ───── */
.calc {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 40px;
}
.calc-title {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 28px;
    letter-spacing: -.5px;
}
.calc-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
    font-size: 14px;
}
.calc-row:last-child { border-bottom: none; }
.calc-row .lbl { color: var(--grey); }
.calc-row .val { font-weight: 600; }
.calc-row .val.hi {
    color: var(--lime);
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -.5px;
}
.slider-wrap { margin: 24px 0; }
.slider-wrap label {
    font-size: 13px;
    color: var(--grey);
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}
.slider-wrap label span { color: var(--white); font-weight: 600; }

input[type="range"] {
    -webkit-appearance: none;
    width: 100%;
    height: 4px;
    background: var(--border);
    border-radius: 2px;
    outline: none;
}
input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    background: var(--lime);
    border-radius: 50%;
    cursor: pointer;
}

/* ───── PRICING ───── */
.pricing-section {
    padding: 120px 60px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(2, 380px);
    gap: 20px;
    justify-content: center;
    margin-top: 60px;
}

.pricing-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 44px 40px;
    text-align: left;
    position: relative;
    overflow: hidden;
}
.pricing-card.featured {
    border-color: var(--lime);
    background: linear-gradient(145deg, rgba(200,255,0,0.05), var(--card));
}
.pricing-card.featured::before {
    content: 'MAIS POPULAR';
    position: absolute;
    top: 18px; right: 18px;
    background: var(--lime);
    color: var(--black);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    padding: 5px 10px;
    border-radius: 100px;
}
.pricing-card h3 {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--grey);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 8px;
}
.plan-price {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 14px;
    color: var(--grey);
    margin-top: 20px;
    margin-bottom: 6px;
}
.plan-price strong {
    font-size: 42px;
    color: var(--white);
    font-weight: 800;
    letter-spacing: -2px;
}
.plan-note { font-size: 13px; color: var(--grey); margin-bottom: 28px; }

.plan-features { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 36px; }
.plan-features li { font-size: 14px; color: var(--gl); display: flex; gap: 10px; }
.plan-features li::before { content: '✓'; color: var(--lime); font-weight: 700; flex-shrink: 0; }

.btn-outline {
    display: block;
    text-align: center;
    padding: 14px;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
    text-decoration: none;
    transition: all .2s;
}
.btn-outline:hover { border-color: var(--lime); color: var(--lime); }

.btn-solid {
    display: block;
    text-align: center;
    padding: 14px;
    background: var(--lime);
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    color: var(--black);
    text-decoration: none;
    font-family: 'Bricolage Grotesque', sans-serif;
    transition: opacity .2s;
}
.btn-solid:hover { opacity: .85; }

/* ───── FAQ ───── */
.faq-section {
    background: var(--off);
    border-top: 1px solid var(--border);
    padding: 120px 60px;
}
.faq-inner { max-width: 720px; margin: 0 auto; }

.faq-item { border-bottom: 1px solid var(--border); padding: 28px 0; }

.faq-q {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    letter-spacing: -.3px;
    transition: color .2s;
    user-select: none;
}
.faq-q:hover { color: var(--lime); }
.faq-q .ico {
    width: 28px;
    height: 28px;
    background: var(--card);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 18px;
    font-weight: 300;
    transition: transform .3s;
}
.faq-item.open .faq-q .ico { transform: rotate(45deg); }
.faq-a {
    font-size: 14px;
    color: var(--grey);
    line-height: 1.8;
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s ease, padding .3s;
}
.faq-item.open .faq-a { max-height: 200px; padding-top: 16px; }

/* ───── CTA FINAL ───── */
.cta-final {
    padding: 160px 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-final::before {
    content: '';
    position: absolute;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(200,255,0,0.07) 0%, transparent 65%);
    border-radius: 50%;
    top: 50%; left: 50%;
    transform: translate(-50%,-50%);
    pointer-events: none;
}
.cta-final h2 { font-size: clamp(36px, 5vw, 64px); max-width: 700px; margin: 0 auto 20px; }
.cta-final p  { color: var(--grey); font-size: 17px; max-width: 420px; margin: 0 auto 48px; font-weight: 300; }

/* ───── FOOTER ───── */
footer {
    border-top: 1px solid var(--border);
    padding: 40px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: var(--grey);
}
footer a { color: var(--grey); text-decoration: none; }
footer a:hover { color: var(--white); }
.footer-links { display: flex; gap: 28px; }

/* ───── REVEAL ───── */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .7s cubic-bezier(.16,1,.3,1), transform .7s cubic-bezier(.16,1,.3,1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ───── KEYFRAMES ───── */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50%       { opacity: .4; }
}

/* ───── RESPONSIVE ───── */
@media (max-width: 900px) {
    nav { padding: 16px 24px; }
    nav ul { display: none; }
    .hero { padding: 120px 24px 80px; }
    .hero-actions { flex-direction: column; width: 100%; }
    .btn-primary, .btn-ghost { width: 100%; text-align: center; }
    .hero-login-hint { text-align: center; }
    .stats-bar { padding: 32px 24px; flex-wrap: wrap; gap: 20px; }
    .stat { padding: 0; border-right: none; flex: 1 1 40%; }
    .section { padding: 80px 24px; }
    .steps { grid-template-columns: 1fr; gap: 2px; }
    .step:first-child { border-radius: 16px 16px 0 0; }
    .step:last-child  { border-radius: 0 0 16px 16px; }
    .for-section { padding: 80px 24px; }
    .for-inner { grid-template-columns: 1fr; gap: 48px; }
    .pricing-section { padding: 80px 24px; }
    .pricing-cards { grid-template-columns: 1fr; }
    .faq-section { padding: 80px 24px; }
    .cta-final { padding: 100px 24px; }
    footer { padding: 32px 24px; flex-direction: column; gap: 20px; text-align: center; }
}

/* ===== HERO SECTION ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: calc(80px + var(--spacing-xl)) var(--spacing-lg) var(--spacing-xl);
    background: linear-gradient(135deg, rgba(37, 150, 190, 0.05) 0%, rgba(37, 150, 190, 0.02) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(37, 150, 190, 0.08) 0%, transparent 70%);
    animation: float 8s ease-in-out infinite;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: var(--spacing-lg);
    color: var(--dark);
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-lg);
    color: var(--grey);
}

.hero .btn {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    margin-right: var(--spacing-sm);
    margin-bottom: var(--spacing-sm);
}

/* ===== CARDS ===== */
.card {
    border: 1px solid var(--grey-light);
    border-radius: 8px;
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.card-body {
    padding: var(--spacing-lg);
}

.card-title {
    color: var(--dark);
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
}

.card-text {
    color: var(--grey);
}

/* ===== SEÇÕES ===== */
section {
    padding: var(--spacing-xl) var(--spacing-lg);
}

.section-title {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-md);
}

.section-title p {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* ===== FEATURE BOXES ===== */
.feature-box {
    text-align: center;
    padding: var(--spacing-lg);
    border-radius: 8px;
    transition: all var(--transition-normal);
    background-color: var(--light);
}

.feature-box:hover {
    background-color: rgba(37, 150, 190, 0.1);
    transform: translateY(-5px);
}

.feature-box-icon {
    width: 60px;
    height: 60px;
    background-color: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto var(--spacing-md);
}

.feature-box h3 {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-sm);
}

.feature-box p {
    font-size: 0.95rem;
}

/* ===== CTA SECTIONS ===== */
.cta-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: var(--spacing-xl) var(--spacing-lg);
    border-radius: 8px;
    text-align: center;
}

.cta-section h2 {
    color: var(--white);
    margin-bottom: var(--spacing-md);
}

.cta-section p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: var(--spacing-lg);
}

.cta-section .btn {
    background-color: var(--white);
    color: var(--primary);
    border-color: var(--white);
}

.cta-section .btn:hover {
    background-color: var(--light);
}

/* ===== FOOTER ===== */
footer {
    background-color: var(--dark);
    color: var(--light);
    padding: var(--spacing-xl) var(--spacing-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

footer h5 {
    color: var(--white);
    margin-bottom: var(--spacing-md);
}

footer a {
    color: var(--grey-light);
}

footer a:hover {
    color: var(--primary);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: var(--spacing-sm);
}

/* ===== FORMS ===== */
.form-control {
    border: 1px solid var(--grey-light);
    border-radius: 4px;
    padding: 0.75rem;
    font-family: var(--font-primary);
    transition: all var(--transition-fast);
}

.form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.2rem rgba(37, 150, 190, 0.25);
}

.form-label {
    color: var(--dark);
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
}

/* ===== UTILIDADES ===== */
.mt-sm { margin-top: var(--spacing-sm); }
.mt-md { margin-top: var(--spacing-md); }
.mt-lg { margin-top: var(--spacing-lg); }
.mt-xl { margin-top: var(--spacing-xl); }

.mb-sm { margin-bottom: var(--spacing-sm); }
.mb-md { margin-bottom: var(--spacing-md); }
.mb-lg { margin-bottom: var(--spacing-lg); }
.mb-xl { margin-bottom: var(--spacing-xl); }

.text-primary { color: var(--primary); }
.text-dark { color: var(--dark); }
.text-grey { color: var(--grey); }
.text-white { color: var(--white); }

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.bg-primary { background-color: var(--primary); }
.bg-light { background-color: var(--light); }
.bg-dark { background-color: var(--dark); }

.container-fluid { padding-left: 1rem; padding-right: 1rem; }

/* ===== ANIMAÇÕES ===== */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(20px); }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fadeInUp {
    animation: fadeInUp var(--transition-normal) ease-out;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.5rem; }
    
    section { padding: var(--spacing-lg) var(--spacing-md); }
}

@media (max-width: 768px) {
    nav.navbar { padding: var(--spacing-md) 0; }
    
    h1 { font-size: 2rem; }
    h2 { font-size: 1.5rem; }
    h3 { font-size: 1.25rem; }
    
    .hero {
        padding: calc(80px + var(--spacing-lg)) var(--spacing-md) var(--spacing-lg);
        min-height: auto;
    }
    
    .hero h1 { font-size: 2rem; }
    .hero p { font-size: 1rem; }
    
    section { padding: var(--spacing-lg) var(--spacing-md); }
    
    .cta-section { padding: var(--spacing-lg) var(--spacing-md); }
}

@media (max-width: 576px) {
    html { font-size: 14px; }
    
    h1 { font-size: 1.75rem; }
    h2 { font-size: 1.25rem; }
    h3 { font-size: 1rem; }
    
    .navbar-brand { font-size: 1.25rem !important; }
    
    .hero { padding: calc(80px + var(--spacing-md)) var(--spacing-sm) var(--spacing-md); }
    .hero h1 { font-size: 1.5rem; }
    .hero p { font-size: 0.95rem; }
    
    section { padding: var(--spacing-md) var(--spacing-sm); }
    
    .card-body { padding: var(--spacing-md); }
    
    .btn { padding: 0.5rem 1rem; font-size: 0.95rem; }
}
.form-check-input {
    appearance: auto !important;
    -webkit-appearance: checkbox !important;
    border: 2px solid #0004ff !important;
}

.form-check-input:checked {
    background-color: #0004ff;
    border-color: #0004ff;
}
#termos {
    appearance: auto !important;
    -webkit-appearance: checkbox !important;
    width: 18px !important;
    height: 18px !important;
    border: 2px solid #0004ff !important;
    background-color: white !important;
    display: inline-block !important;
}

#termos:checked {
    accent-color: #0004ff;
}
