:root {
    --primary: #f97316;
    --primary-dark: #ea580c;
    --amber: #f59e0b;
    --terra: #b45309;
    --terra-dark: #78350f;
    --ink: #f1f5f9;
    --text: #cbd5e1;
    --text-muted: #94a3b8;
    --bg: #0d1220;
    --bg-soft: #141a26;
    --card: #171e2e;
    --card-2: #1b2333;
    --dark: #0d1220;
    --dark-2: #101624;
    --dark-3: #171f30;
    --border: #263047;
    --border-soft: #263242;
    --radius: 14px;
    --radius-sm: 9px;
    --shadow: 0 6px 24px rgba(0, 0, 0, .35);
    --shadow-lg: 0 18px 50px rgba(0, 0, 0, .5);
    --texas: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='96' height='48' viewBox='0 0 96 48'%3E%3Cg fill='none' stroke='%2394a3b8' stroke-opacity='0.07' stroke-width='2' stroke-linecap='round'%3E%3Cpath d='M8 0L4 12L8 24L12 12Z'/%3E%3Cpath d='M32 0L28 12L32 24L36 12Z'/%3E%3Cpath d='M56 0L52 12L56 24L60 12Z'/%3E%3Cpath d='M80 0L76 12L80 24L84 12Z'/%3E%3Cpath d='M20 24L16 36L20 48L24 36Z'/%3E%3Cpath d='M44 24L40 36L44 48L48 36Z'/%3E%3Cpath d='M68 24L64 36L68 48L72 36Z'/%3E%3Cpath d='M92 24L88 36L92 48L96 36Z'/%3E%3C/g%3E%3C/svg%3E");
}

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

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    color: var(--text);
    background-color: var(--bg);
    background-image: var(--texas);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

::selection { background: rgba(249, 115, 22, .35); color: #fff; }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container { width: min(1180px, 92%); margin: 0 auto; }

.accent { color: var(--amber); }

/* ============ Header ============ */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(13, 18, 32, .88);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
}
.site-header.scrolled { background: rgba(10, 14, 24, .96); }
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 14px 0;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand-icon {
    width: 46px; height: 46px;
    display: grid; place-items: center;
    background: linear-gradient(135deg, var(--primary), var(--amber));
    color: #fff;
    border-radius: 13px;
    box-shadow: 0 6px 16px rgba(249, 115, 22, .35);
    flex-shrink: 0;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.2; }
.brand-text strong { font-size: 1.06rem; font-weight: 800; color: var(--ink); }
.brand-text small { font-size: .72rem; color: var(--text-muted); }
.brand-light .brand-text strong { color: #fff; }
.brand-light .brand-text small { color: rgba(255, 255, 255, .55); }
.brand-light .brand-icon { background: rgba(255, 255, 255, .1); box-shadow: none; }

.main-nav { display: flex; gap: 6px; }
.main-nav a {
    padding: 9px 15px;
    border-radius: 999px;
    font-size: .92rem;
    font-weight: 600;
    color: #b8c4d4;
    transition: all .2s;
}
.main-nav a:hover { color: var(--amber); background: rgba(249, 115, 22, .12); }
.main-nav a.active { color: #fff; background: linear-gradient(135deg, var(--primary), var(--amber)); box-shadow: 0 6px 16px rgba(249, 115, 22, .3); }

.header-actions { display: flex; align-items: center; gap: 10px; }

.nav-toggle {
    display: none;
    background: none;
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 8px;
    cursor: pointer;
    color: #e2e8f0;
}

/* ============ Buttons ============ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 11px 22px;
    border-radius: 999px;
    font-weight: 700;
    font-size: .92rem;
    font-family: inherit;
    border: none;
    cursor: pointer;
    transition: all .2s;
}
.btn-primary {
    color: #fff;
    background: linear-gradient(135deg, var(--primary), var(--amber));
    box-shadow: 0 8px 20px rgba(249, 115, 22, .35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 26px rgba(249, 115, 22, .45); }
.btn-ghost { color: #cbd5e1; background: var(--card-2); border: 1px solid var(--border); }
.btn-ghost:hover { border-color: var(--amber); color: var(--amber); background: rgba(249, 115, 22, .1); }
.btn-light { color: #7c2d12; background: linear-gradient(135deg, #fcd34d, #fbbf24); }
.btn-light:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(251, 191, 36, .4); }
.btn-lg { padding: 14px 28px; font-size: 1rem; }
.btn-sm { padding: 8px 16px; font-size: .85rem; }
.btn-block { width: 100%; }

.link-more {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: var(--amber);
    font-weight: 700;
    font-size: .88rem;
}
.link-more svg { transition: transform .2s; }
.link-more:hover svg { transform: translateX(3px); }

/* ============ Hero ============ */
.hero {
    background:
        radial-gradient(900px 420px at 85% -10%, rgba(249, 115, 22, .14), transparent 60%),
        radial-gradient(700px 380px at -10% 110%, rgba(180, 83, 9, .12), transparent 60%),
        linear-gradient(180deg, #0e1422, #0c111d);
    border-bottom: 1px solid var(--border);
    overflow: hidden;
    position: relative;
}
.hero-inner {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 48px;
    align-items: center;
    padding: 80px 0 60px;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(249, 115, 22, .14);
    border: 1px solid rgba(249, 115, 22, .3);
    color: #fdba74;
    font-size: .8rem;
    font-weight: 700;
    padding: 8px 15px;
    border-radius: 999px;
    margin-bottom: 20px;
}
.hero-content h1 {
    font-size: clamp(2.2rem, 4.4vw, 3.4rem);
    line-height: 1.12;
    font-weight: 900;
    color: var(--ink);
    letter-spacing: -1px;
    margin-bottom: 18px;
}
.hero-highlight {
    background: linear-gradient(120deg, var(--primary), var(--amber));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.hero-sub { color: var(--text-muted); font-size: 1.08rem; max-width: 520px; margin-bottom: 30px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-stats { display: flex; gap: 40px; }
.stat { display: flex; flex-direction: column; }
.stat strong { font-size: 1.5rem; font-weight: 900; color: var(--ink); }
.stat span { font-size: .82rem; color: var(--text-muted); }

.hero-visual { position: relative; }
.hero-card-main {
    position: relative;
    background: transparent;
    border: none;
    border-radius: 24px;
    padding: 28px;
    overflow: visible;
}
.hero-car svg { width: 100%; height: auto; }
.hero-img {
    width: 100%;
    height: 340px;
    object-fit: cover;
    border-radius: 20px;
    -webkit-mask-image: radial-gradient(ellipse 100% 100% at 50% 50%, #000 40%, transparent 97%);
    mask-image: radial-gradient(ellipse 100% 100% at 50% 50%, #000 40%, transparent 97%);
}
.hero-fade {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(ellipse 120% 130% at 50% 50%, transparent 42%, rgba(12, 17, 29, .55) 72%, rgba(12, 17, 29, .95) 92%, rgba(12, 17, 29, 1) 100%);
}
.hero-float {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 10px;
    background: #1c2537;
    border: 1px solid #2c3850;
    border-radius: 14px;
    padding: 12px 16px;
    box-shadow: 0 14px 34px rgba(0, 0, 0, .5);
    font-size: .82rem;
    line-height: 1.25;
}
.hero-float strong { display: block; color: var(--ink); }
.hero-float small { color: var(--text-muted); }
.float-icon {
    width: 34px; height: 34px;
    border-radius: 10px;
    display: grid; place-items: center;
    color: #fff;
}
.float-check { top: 22px; right: -18px; }
.float-check .float-icon { background: #059669; }
.float-shield { bottom: 26px; left: -22px; }
.float-shield .float-icon { background: linear-gradient(135deg, var(--primary), var(--amber)); }

.hero-road {
    height: 14px;
    background-color: #070a12;
    background-image: repeating-linear-gradient(90deg, rgba(251, 191, 36, .55) 0 12px, transparent 12px 96px);
    background-size: 100% 2px;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    border-top: 3px solid #1c263a;
    border-bottom: 3px solid #1c263a;
    opacity: .9;
}

/* ============ Sections ============ */
.section { padding: 80px 0; }
.section-dark {
    background:
        radial-gradient(700px 320px at 10% 0%, rgba(180, 83, 9, .1), transparent 60%),
        var(--dark-2);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.section-dark .section-sub { color: #8ea0b8; }
.section-top { padding-top: 56px; }
.section-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 20px;
    margin-bottom: 40px;
}
.section-tag {
    display: inline-block;
    color: var(--amber);
    font-weight: 800;
    font-size: .78rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}
.section-title { font-size: clamp(1.7rem, 3vw, 2.4rem); font-weight: 900; color: var(--ink); letter-spacing: -.5px; }
.section-dark .section-title { color: #fff; }
.section-sub { color: var(--text-muted); margin-top: 8px; max-width: 560px; }

/* ============ Grid / Cards ============ */
.grid { display: grid; gap: 24px; }
.cards-services { grid-template-columns: repeat(3, 1fr); }
.cards-promo { grid-template-columns: repeat(3, 1fr); }
.cards-dicas { grid-template-columns: repeat(3, 1fr); }

.card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: all .25s;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: rgba(245, 158, 11, .45); }

.service-card { padding: 30px 26px; display: flex; flex-direction: column; gap: 14px; }
.service-icon {
    width: 58px; height: 58px;
    border-radius: 15px;
    display: grid; place-items: center;
    background: rgba(249, 115, 22, .14);
    border: 1px solid rgba(249, 115, 22, .25);
    color: #fb923c;
}
.service-card h3 { font-size: 1.12rem; font-weight: 800; color: var(--ink); }
.service-card p { color: var(--text-muted); font-size: .92rem; flex-grow: 1; }
.service-foot { display: flex; justify-content: space-between; align-items: center; padding-top: 4px; }
.price { color: var(--ink); font-size: 1.12rem; font-weight: 900; }
.price-muted { color: var(--text-muted); font-size: .9rem; font-weight: 600; }

.promo-card { position: relative; overflow: hidden; display: flex; flex-direction: column; }
.promo-card img, .promo-thumb { height: 170px; width: 100%; object-fit: cover; }
.promo-thumb {
    display: grid; place-items: center;
    background: linear-gradient(135deg, #141b2b, #1f2a40);
    color: rgba(245, 158, 11, .4);
    border-bottom: 1px solid var(--border);
}
.promo-badge {
    position: absolute;
    top: 14px; left: 14px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: linear-gradient(135deg, var(--primary), var(--amber));
    color: #fff;
    font-size: .72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .5px;
    padding: 6px 12px;
    border-radius: 999px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, .35);
}
.promo-body { padding: 20px 22px 22px; display: flex; flex-direction: column; gap: 8px; flex-grow: 1; }
.promo-body h3 { font-size: 1.05rem; font-weight: 800; color: var(--ink); }
.promo-body p { color: var(--text-muted); font-size: .9rem; flex-grow: 1; }
.promo-prices { display: flex; align-items: baseline; gap: 10px; }
.price-de { color: #64748b; text-decoration: line-through; font-size: .95rem; }
.price-por { color: var(--amber); font-size: 1.35rem; font-weight: 900; }
.promo-valid { display: inline-flex; align-items: center; gap: 5px; color: var(--text-muted); font-size: .78rem; }
.promo-cta { margin: 0 22px 22px; }

.dica-card { overflow: hidden; display: flex; flex-direction: column; }
.dica-card img, .dica-thumb { height: 185px; width: 100%; object-fit: cover; }
.dica-thumb {
    display: grid; place-items: center;
    background: linear-gradient(135deg, #2a2013, #3a2b16);
    border-bottom: 1px solid var(--border);
    color: #d97706;
}
.dica-body { padding: 20px 22px 22px; display: flex; flex-direction: column; gap: 9px; flex-grow: 1; }
.badge-cat {
    align-self: flex-start;
    background: rgba(245, 158, 11, .14);
    border: 1px solid rgba(245, 158, 11, .25);
    color: #fcd34d;
    font-size: .72rem;
    font-weight: 800;
    padding: 4px 11px;
    border-radius: 999px;
    text-transform: uppercase;
    letter-spacing: .5px;
}
.dica-body h3 { font-size: 1.05rem; font-weight: 800; color: var(--ink); line-height: 1.35; }
.dica-body h3:hover { color: var(--amber); }
.dica-body p { color: var(--text-muted); font-size: .9rem; flex-grow: 1; }

/* ============ CTA (terra/barro) ============ */
.cta {
    background:
        radial-gradient(700px 300px at 90% 50%, rgba(251, 191, 36, .22), transparent 60%),
        linear-gradient(135deg, var(--terra), var(--terra-dark));
    padding: 62px 0;
}
.cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    color: #fff;
}
.cta h2 { font-size: clamp(1.5rem, 2.6vw, 2.1rem); font-weight: 900; margin-bottom: 8px; text-shadow: 0 2px 10px rgba(0, 0, 0, .3); }
.cta p { opacity: .92; }

/* ============ Page hero (internas, compacto) ============ */
.page-hero {
    background:
        radial-gradient(700px 250px at 85% -20%, rgba(249, 115, 22, .1), transparent 60%),
        linear-gradient(180deg, #0e1422, #0b101b);
    border-bottom: 1px solid var(--border);
    padding: 38px 0 30px;
    text-align: center;
}
.page-hero h1 { font-size: clamp(1.5rem, 2.6vw, 2.05rem); font-weight: 900; color: var(--ink); letter-spacing: -.4px; }
.page-hero p { color: var(--text-muted); font-size: .95rem; margin-top: 6px; max-width: 560px; margin-inline: auto; }

/* ============ Filtros ============ */
.filters { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 34px; }
.chip {
    padding: 8px 18px;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: var(--card-2);
    font-size: .85rem;
    font-weight: 600;
    color: #b8c4d4;
    transition: all .2s;
}
.chip:hover { border-color: var(--amber); color: var(--amber); }
.chip-active { background: linear-gradient(135deg, var(--primary), var(--amber)); color: #fff; border-color: transparent; box-shadow: 0 6px 16px rgba(249, 115, 22, .3); }
.chip-active:hover { color: #fff; }

/* ============ Artigo ============ */
.article-page { background: var(--bg); }
.article-cover img { width: 100%; max-height: 420px; object-fit: cover; }
.article-container { max-width: 780px; padding: 44px 0 52px; }
.breadcrumb { display: flex; gap: 8px; align-items: center; font-size: .85rem; color: var(--text-muted); margin-bottom: 20px; flex-wrap: wrap; }
.breadcrumb a:hover { color: var(--amber); }
.article-head h1 { font-size: clamp(1.7rem, 3.2vw, 2.4rem); font-weight: 900; color: var(--ink); letter-spacing: -.5px; margin: 14px 0 10px; line-height: 1.2; }
.article-date { display: inline-flex; align-items: center; gap: 6px; color: var(--text-muted); font-size: .85rem; }
.article-content { margin-top: 28px; font-size: 1.04rem; color: #c2cddd; }
.article-content p { margin-bottom: 18px; }
.article-tags { margin-top: 32px; padding-top: 22px; border-top: 1px solid var(--border); display: flex; align-items: center; gap: 10px; }
.article-tags span { color: var(--text-muted); font-size: .85rem; }

/* ============ Contato ============ */
.contact-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 32px; align-items: start; }
.contact-form { background: var(--card-2); border: 1px solid var(--border); border-radius: var(--radius); padding: 32px; box-shadow: var(--shadow); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field-full { grid-column: 1 / -1; }
.field label { font-size: .85rem; font-weight: 700; color: var(--ink); }
.field input, .field select, .field textarea {
    font-family: inherit;
    font-size: .95rem;
    padding: 12px 14px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    background: var(--card);
    color: #e2e8f0;
    transition: all .2s;
    width: 100%;
}
.field input:focus, .field select:focus, .field textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: #1a2234;
    box-shadow: 0 0 0 4px rgba(249, 115, 22, .15);
}
.field textarea { resize: vertical; }
.field select option { background: var(--card); }
.contact-form > .btn { margin-top: 22px; }

.contact-card { padding: 28px; position: sticky; top: 90px; }
.contact-card h3 { font-size: 1.15rem; font-weight: 800; color: var(--ink); margin-bottom: 22px; }
.contact-card ul { display: flex; flex-direction: column; gap: 18px; }
.contact-card li { display: flex; gap: 13px; align-items: flex-start; }
.ci-icon {
    width: 40px; height: 40px;
    flex-shrink: 0;
    border-radius: 12px;
    display: grid; place-items: center;
    background: rgba(249, 115, 22, .14);
    border: 1px solid rgba(249, 115, 22, .25);
    color: #fb923c;
}
.ci-icon.whats { background: rgba(5, 150, 105, .15); border-color: rgba(5, 150, 105, .3); color: #34d399; }
.contact-card li strong { display: block; font-size: .8rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: .5px; }
.contact-card li a, .contact-card li span { font-weight: 600; color: var(--ink); }
.contact-card li a:hover { color: var(--amber); }

/* ============ Empty / Error ============ */
.empty-state {
    text-align: center;
    color: var(--text-muted);
    background: var(--card-2);
    border: 1.5px dashed var(--border);
    border-radius: var(--radius);
    padding: 60px 24px;
}
.error-page { text-align: center; padding: 110px 0; }
.error-code {
    display: block;
    font-size: 6rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary), var(--amber));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1;
    filter: drop-shadow(0 8px 30px rgba(249, 115, 22, .25));
}
.error-page h1 { font-size: 1.8rem; font-weight: 900; color: var(--ink); margin: 14px 0 8px; }
.error-page p { color: var(--text-muted); margin-bottom: 26px; }

/* ============ Flash ============ */
.flash-stack {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 500;
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 360px;
}
.flash {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 18px;
    border-radius: 12px;
    font-size: .9rem;
    font-weight: 600;
    color: #fff;
    box-shadow: var(--shadow-lg);
    animation: slideIn .3s ease;
}
.flash-success { background: #059669; }
.flash-error { background: #dc2626; }
.flash-info { background: #0ea5e9; }
.flash-close { background: none; border: none; color: #fff; font-size: 1.2rem; cursor: pointer; line-height: 1; }
@keyframes slideIn { from { opacity: 0; transform: translateX(30px); } to { opacity: 1; transform: none; } }

/* ============ Footer ============ */
.site-footer { background: #0a0e17; color: #b8c4d4; padding-top: 56px; border-top: 1px solid #1c263a; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 44px; padding-bottom: 44px; }
.footer-col h4 { color: #fff; font-size: .95rem; font-weight: 800; margin-bottom: 18px; }
.footer-about { font-size: .9rem; color: #8ea0b8; margin: 16px 0 18px; max-width: 360px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
    width: 38px; height: 38px;
    display: grid; place-items: center;
    border-radius: 10px;
    background: rgba(255, 255, 255, .06);
    border: 1px solid #263047;
    color: #b8c4d4;
    transition: all .2s;
}
.footer-social a:hover { background: linear-gradient(135deg, var(--primary), var(--amber)); color: #fff; transform: translateY(-2px); }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { color: #8ea0b8; font-size: .92rem; transition: color .2s; }
.footer-links a:hover { color: var(--amber); }
.footer-contact { display: flex; flex-direction: column; gap: 14px; }
.footer-contact li { display: flex; gap: 10px; align-items: flex-start; font-size: .9rem; color: #8ea0b8; }
.footer-contact svg { flex-shrink: 0; margin-top: 3px; color: var(--amber); }
.footer-contact a:hover { color: var(--amber); }
.footer-bottom { border-top: 1px solid rgba(255, 255, 255, .07); padding: 20px 0; }
.footer-bottom p { text-align: center; font-size: .82rem; color: #5c6b82; }

/* ============ Responsivo ============ */
@media (max-width: 1000px) {
    .cards-services, .cards-promo, .cards-dicas { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
    .main-nav {
        position: fixed;
        inset: 70px 0 auto 0;
        flex-direction: column;
        background: #0f1524;
        border-bottom: 1px solid var(--border);
        padding: 16px;
        gap: 4px;
        transform: translateY(-130%);
        transition: transform .3s;
        box-shadow: var(--shadow-lg);
    }
    .main-nav.open { transform: none; }
    .nav-toggle { display: block; }
    .hero-inner { grid-template-columns: 1fr; padding: 52px 0 56px; }
    .hero-visual { max-width: 480px; margin: 0 auto; width: 100%; }
    .hero-img { height: 260px; }
    .hero-stats { gap: 28px; }
    .contact-grid { grid-template-columns: 1fr; }
    .contact-card { position: static; }
    .cta-inner { flex-direction: column; text-align: center; }
}

@media (max-width: 620px) {
    .cards-services, .cards-promo, .cards-dicas { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .form-grid { grid-template-columns: 1fr; }
    .section { padding: 56px 0; }
    .section-head { flex-direction: column; align-items: flex-start; }
    .brand-text small { display: none; }
    .hero-float { display: none; }
}
/* ============ Anti-spam ============ */
.hp-field {
    position: absolute !important;
    left: -9999px !important;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

