/********** Template CSS **********/
:root {
    --primary: #EB1616;
    --primary-soft: #ff4040;
    --secondary: #191C24;
    --light: #b4bacd;
    --dark: #000000;
    --white: #ffffff;
    --bg-deep: #060606;
    --bg-soft: #101114;
    --border-soft: rgba(255, 255, 255, 0.08);
    --shadow-soft: 0 18px 45px rgba(0, 0, 0, 0.28);
    --shadow-strong: 0 24px 60px rgba(0, 0, 0, 0.38);
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    background: #080808;
    color: #e7e7e7;
    font-family: 'Roboto', sans-serif;
    padding-bottom: 56px;
}

a {
    text-decoration: none;
}

h1, h2, h3, h4, h5, h6,
.navbar .navbar-nav .nav-link,
.brand-title,
.hero-badge,
.section-badge,
.news-tv-label {
    font-family: 'Oswald', sans-serif;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 78px;
    z-index: 99;
}

/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

/*** Buttons ***/
.btn {
    font-weight: 700;
    transition: .35s ease;
    border-radius: 16px;
}

.btn-primary {
    background: linear-gradient(135deg, #ff1f1f, #c70000);
    border: 1px solid #ff2a2a;
    color: #fff;
    box-shadow: 0 10px 24px rgba(235, 22, 22, 0.20);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #ff3333, #b80000);
    border-color: #ff4747;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 16px 30px rgba(235, 22, 22, 0.28);
}

.btn-square {
    width: 42px;
    height: 42px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 50px;
    height: 50px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

/*** WhatsApp flutuante ***/
.whatsapp-float {
    position: fixed;
    bottom: 76px;
    left: 20px;
    z-index: 9999;
    animation: pulseWhatsapp 1.8s infinite;
}

.whatsapp-float img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    box-shadow: 0 0 18px rgba(0, 0, 0, 0.30);
}

@keyframes pulseWhatsapp {
    0% { transform: scale(1); }
    50% { transform: scale(1.08); }
    100% { transform: scale(1); }
}

/*** Navbar Premium ***/
.premium-navbar {
    background: linear-gradient(90deg, rgba(8, 8, 8, 0.98), rgba(18, 18, 18, 0.96));
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.24);
    min-height: 86px;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

.navbar.sticky-top {
    top: 0;
    transition: .5s;
}

.navbar-brand {
    min-height: 86px;
    display: flex;
    align-items: center;
    gap: 14px;
    margin-right: 0;
}

.navbar-brand img {
    height: 48px;
    width: auto;
    border-radius: 6px;
    object-fit: cover;
}

.brand-text-wrap {
    display: flex;
    flex-direction: column;
    line-height: 1.05;
}

.brand-title {
    color: #ffffff;
    font-size: 34px;
    font-weight: 700;
    letter-spacing: 0.6px;
    text-transform: uppercase;
}

.brand-subtitle {
    color: rgba(255, 255, 255, 0.60);
    font-size: 12px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-top: 4px;
}

.navbar .navbar-nav {
    gap: 6px;
}

.navbar .navbar-nav .nav-link {
    margin-right: 0;
    padding: 30px 16px;
    color: #8d97ba;
    font-size: 17px;
    font-weight: 600;
    text-transform: uppercase;
    outline: none;
    position: relative;
    transition: .3s ease;
}

.navbar .navbar-nav .nav-link::after {
    content: "";
    position: absolute;
    left: 16px;
    bottom: 22px;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: .3s ease;
    border-radius: 50px;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: #ffffff;
}

.navbar .navbar-nav .nav-link:hover::after,
.navbar .navbar-nav .nav-link.active::after {
    width: calc(100% - 32px);
}

.premium-login-btn,
.premium-login-btn-mobile {
    min-height: 52px;
    padding: 0 24px;
    border-radius: 16px;
    font-size: 15px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 24px rgba(235, 22, 22, 0.20);
}

.navbar-toggler {
    padding: 10px 12px;
    border-radius: 10px;
}

.navbar-toggler:focus {
    box-shadow: none;
}

@media (max-width: 991.98px) {
    .premium-navbar {
        min-height: 76px;
    }

    .navbar-brand {
        min-height: 76px;
    }

    .brand-title {
        font-size: 24px;
    }

    .brand-subtitle {
        display: none;
    }

    .navbar .navbar-nav {
        margin-top: 10px;
        padding: 15px 0;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
    }

    .navbar .navbar-nav .nav-link {
        padding: 12px 0;
    }

    .navbar .navbar-nav .nav-link::after {
        display: none;
    }
}

@media (max-width: 575.98px) {
    .navbar-brand img {
        height: 40px;
    }

    .brand-title {
        font-size: 19px;
    }
}

/*** Header / Hero ***/
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.46)),
        linear-gradient(180deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.38));
    z-index: 1;
}

.carousel-control-prev,
.carousel-control-next {
    width: 10%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
}

.carousel-item img {
    filter: brightness(1.05);
    height: 640px;
    object-fit: cover;
    width: 100%;
}

.hero-content {
    max-width: 920px;
    width: 100%;
    padding: 0 20px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    padding: 10px 18px;
    border-radius: 999px;
    background: rgba(255, 0, 0, 0.12);
    border: 1px solid rgba(255, 0, 0, 0.26);
    color: #ff6a6a;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.9px;
    margin-bottom: 18px;
}

.hero-content h1 {
    line-height: 1.02;
    text-shadow: 0 5px 26px rgba(0, 0, 0, 0.55);
    margin-bottom: 18px !important;
}

.hero-subtitle {
    max-width: 760px;
    color: #ececec;
    font-size: 19px;
    line-height: 1.75;
    margin-bottom: 26px;
}

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

.hero-btn-primary,
.hero-btn-outline {
    min-height: 52px;
    padding: 0 28px;
    font-size: 15px;
    font-weight: 700;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.hero-btn-primary {
    background: linear-gradient(135deg, #ff1f1f, #c70000);
    border: 1px solid #ff2a2a;
    color: #fff;
    box-shadow: 0 10px 24px rgba(235, 22, 22, 0.20);
}

.hero-btn-primary:hover {
    background: linear-gradient(135deg, #ff3333, #b80000);
    border-color: #ff4747;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 16px 30px rgba(235, 22, 22, 0.28);
}

.hero-btn-outline {
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(8px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
}

.hero-btn-outline:hover {
    color: #111;
    background: #fff;
    border-color: #fff;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    #header-carousel .carousel-item {
        position: relative;
        min-height: 520px;
    }

    #header-carousel .carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .carousel-item img {
        height: 520px;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-buttons {
        gap: 12px;
    }

    .hero-btn-primary,
    .hero-btn-outline,
    .premium-login-btn-mobile {
        width: 100%;
        min-height: 50px;
        border-radius: 14px;
    }
}

/*** Section badge ***/
.section-badge {
    display: inline-block;
    padding: 10px 18px;
    border-radius: 999px;
    border: 1px solid rgba(255, 0, 0, 0.20);
    background: rgba(255, 0, 0, 0.08);
    color: #ff4d4d;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .8px;
    margin-bottom: 18px;
}

/*** Stats ***/
.premium-stats {
    position: relative;
    z-index: 3;
    margin-top: -62px;
    padding-bottom: 20px;
}

.stat-card {
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.98), rgba(18, 18, 18, 0.95));
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-top: 3px solid rgba(235, 22, 22, 0.65);
    border-radius: 24px;
    padding: 28px 24px;
    text-align: center;
    box-shadow: var(--shadow-soft);
    transition: .35s ease;
}

.stat-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-strong);
}

.stat-icon {
    width: 66px;
    height: 66px;
    margin: 0 auto 18px;
    border-radius: 18px;
    background: rgba(235, 22, 22, 0.10);
    border: 1px solid rgba(235, 22, 22, 0.16);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 24px;
}

.stat-card h3 {
    color: #fff;
    margin-bottom: 8px;
    text-transform: uppercase;
    font-size: 28px;
}

.stat-card p {
    color: #cfcfcf;
    margin: 0;
}

@media (max-width: 991.98px) {
    .premium-stats {
        margin-top: 0;
        padding: 60px 0 10px;
    }
}

/*** Sobre ***/
.about-visual-wrap {
    position: relative;
}

.about-main-img {
    border-radius: 24px;
    box-shadow: var(--shadow-strong);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.about-floating-box {
    width: 52%;
    margin-top: -24%;
    background: linear-gradient(135deg, #171717, #111111);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-left: 5px solid var(--primary);
    border-radius: 22px;
    padding: 28px;
    box-shadow: var(--shadow-soft);
}

.about-floating-box h2 {
    font-size: 34px;
}

.about-floating-box p {
    color: #d0d0d0;
}

.about-mini-card {
    height: 100%;
    background: linear-gradient(135deg, rgba(16, 16, 16, 0.96), rgba(24, 24, 24, 0.96));
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 18px;
    padding: 22px;
    box-shadow: var(--shadow-soft);
    transition: .35s ease;
}

.about-mini-card:hover {
    transform: translateY(-4px);
}

.about-mini-card h3 {
    color: #ffffff;
    font-size: 22px;
    margin-bottom: 10px;
}

.about-mini-card p {
    color: #d0d0d0;
    line-height: 1.7;
}

@media (max-width: 991.98px) {
    .about-floating-box {
        width: 70%;
    }
}

@media (max-width: 767.98px) {
    .about-floating-box {
        width: 82%;
        padding: 20px;
    }

    .about-floating-box h2 {
        font-size: 26px;
    }
}

/*** Service ***/
.services-premium-section {
    position: relative;
}

.services-section-text {
    color: #d2d2d2;
    line-height: 1.8;
    margin-top: 14px;
}

.service-item {
    background: linear-gradient(135deg, rgba(12, 12, 12, 0.98), rgba(22, 22, 22, 0.96));
    border: 1px solid rgba(255, 0, 0, 0.10);
    border-radius: 24px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.28);
    transition: .35s ease;
}

.service-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.34);
    border-color: rgba(255, 0, 0, 0.18);
}

.service-icon-box {
    width: 72px;
    height: 72px;
    border-radius: 18px;
    background: linear-gradient(135deg, #0e0e0e, #191919);
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    margin-left: 32px;
}

.service-item h3 {
    color: #ffffff;
    font-size: 24px;
}

.service-item p {
    color: #d6d6d6;
    line-height: 1.8;
    margin-bottom: 0;
}

.service-item .btn {
    position: absolute;
    right: -50px;
    bottom: -50px;
    width: 50px;
    height: 50px;
    color: var(--primary);
    background: var(--dark);
    opacity: 0;
    border-radius: 14px 0 22px 0;
}

.service-item:hover .btn {
    right: 0;
    bottom: 0;
    opacity: 1;
}

/*** Diferenciais ***/
.diferencial-card {
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.98), rgba(20, 20, 20, 0.96));
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 30px 26px;
    box-shadow: var(--shadow-soft);
    transition: .35s ease;
    text-align: center;
}

.diferencial-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-strong);
}

.diferencial-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 18px;
    border-radius: 18px;
    background: rgba(235, 22, 22, 0.10);
    border: 1px solid rgba(235, 22, 22, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 28px;
}

.diferencial-card h3 {
    color: #fff;
    font-size: 24px;
    margin-bottom: 12px;
}

.diferencial-card p {
    color: #d0d0d0;
    line-height: 1.8;
    margin-bottom: 0;
}

/*** CTA ***/
.premium-cta-section {
    padding: 20px 0 40px;
}

.premium-cta-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 38px;
    border-radius: 28px;
    background:
        radial-gradient(circle at top right, rgba(235, 22, 22, 0.16), transparent 30%),
        linear-gradient(135deg, rgba(10, 10, 10, 0.98), rgba(18, 18, 18, 0.96));
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: var(--shadow-soft);
}

.premium-cta-box h2 {
    color: #fff;
    font-size: 40px;
    margin-bottom: 14px;
    text-transform: uppercase;
}

.premium-cta-box p {
    color: #d4d4d4;
    max-width: 720px;
    line-height: 1.8;
    margin: 0;
}

.premium-cta-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.premium-cta-btn,
.premium-cta-outline {
    min-height: 54px;
    padding: 0 24px;
    font-weight: 700;
}

.premium-cta-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.16);
    color: #fff;
    background: transparent;
}

.premium-cta-outline:hover {
    background: #fff;
    color: #111;
}

/*** Footer ***/
.footer {
    background:
        linear-gradient(180deg, rgba(10, 10, 10, 0.98), rgba(18, 18, 18, 0.98));
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(255,255,255,0.04);
}

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

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

.bg-secondary {
    background-color: #161616 !important;
}

textarea::placeholder,
input::placeholder {
    color: #ccc;
}

/* ========================================
   DESTAQUE - IMPOSTO DE RENDA 2026
======================================== */
.ir2026-destaque {
    background:
        radial-gradient(circle at top right, rgba(235, 22, 22, 0.10), transparent 28%),
        radial-gradient(circle at left center, rgba(255, 255, 255, 0.02), transparent 20%),
        linear-gradient(180deg, #050505 0%, #080808 100%);
    padding: 85px 0 75px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.ir2026-destaque::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 0, 0, 0.03), transparent);
    pointer-events: none;
}

.ir2026-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.98), rgba(20, 20, 20, 0.96));
    border: 1px solid rgba(255, 0, 0, 0.16);
    border-left: 6px solid #ff1a1a;
    border-radius: 28px;
    padding: 42px;
    box-shadow:
        0 25px 60px rgba(0, 0, 0, 0.52),
        0 0 0 1px rgba(255, 255, 255, 0.02) inset;
    overflow: hidden;
    position: relative;
}

.ir2026-box::after {
    content: "";
    position: absolute;
    top: -120px;
    right: -120px;
    width: 260px;
    height: 260px;
    background: radial-gradient(circle, rgba(255, 26, 26, 0.12), transparent 70%);
    pointer-events: none;
}

.ir2026-img {
    flex: 1;
    min-width: 320px;
    position: relative;
    z-index: 2;
}

.ir2026-img img {
    width: 100%;
    max-width: 440px;
    display: block;
    margin: 0 auto;
    border-radius: 24px;
    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.45),
        0 0 0 1px rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.05);
    transition: transform .35s ease, box-shadow .35s ease;
}

.ir2026-box:hover .ir2026-img img {
    transform: translateY(-4px) scale(1.01);
}

.ir2026-conteudo {
    flex: 1.1;
    position: relative;
    z-index: 2;
}

.ir2026-tag {
    display: inline-flex;
    align-items: center;
    padding: 10px 18px;
    border-radius: 999px;
    background: rgba(255, 26, 26, 0.10);
    border: 1px solid rgba(255, 26, 26, 0.22);
    color: #ff6d6d;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .8px;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.ir2026-conteudo h2 {
    color: #fff;
    font-size: 56px;
    line-height: 1.02;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.ir2026-prazo {
    font-size: 22px;
    color: #fff;
    margin-bottom: 18px;
}

.ir2026-prazo strong {
    color: #ff6767;
}

.ir2026-conteudo p {
    color: #d5d5d5;
    line-height: 1.85;
    font-size: 17px;
    margin-bottom: 16px;
}

.ir2026-botoes {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 26px;
}

.ir2026-btn {
    min-height: 54px;
    padding: 0 24px;
    border-radius: 16px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: .35s ease;
}

.ir2026-btn-primary {
    background: linear-gradient(135deg, #ff1f1f, #c70000);
    border: 1px solid #ff2a2a;
    color: #fff;
    box-shadow: 0 10px 24px rgba(235, 22, 22, 0.20);
}

.ir2026-btn-primary:hover {
    background: linear-gradient(135deg, #ff3333, #b80000);
    border-color: #ff4747;
    color: #fff;
    transform: translateY(-2px);
}

.ir2026-btn-outline {
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.03);
}

.ir2026-btn-outline:hover {
    background: #fff;
    color: #111;
}

@media (max-width: 991.98px) {
    .ir2026-box {
        flex-direction: column;
        padding: 32px;
    }

    .ir2026-conteudo h2 {
        font-size: 42px;
    }

    .ir2026-img {
        min-width: 100%;
    }
}

@media (max-width: 767.98px) {
    .ir2026-destaque {
        padding: 65px 0 55px;
    }

    .ir2026-box {
        padding: 24px 18px;
        border-radius: 22px;
        gap: 20px;
    }

    .ir2026-conteudo h2 {
        font-size: 30px;
    }

    .ir2026-prazo {
        font-size: 18px;
    }

    .ir2026-conteudo p {
        font-size: 15px;
        line-height: 1.75;
    }

    .ir2026-botoes {
        flex-direction: column;
    }

    .ir2026-btn {
        width: 100%;
    }
}

/* ========================================
   BARRA DE NOTÍCIAS
======================================== */
.news-tv-bar {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    min-height: 48px;
    background: #0d0d0d;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    z-index: 9998;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.news-tv-label {
    min-width: 120px;
    height: 100%;
    background: linear-gradient(135deg, #ff1f1f, #c70000);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .8px;
    padding: 10px 16px;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    z-index: 2;
}

.news-tv-track {
    width: 100%;
    height: 48px;
    overflow: hidden;
    position: relative;
    margin-left: 120px;
    display: flex;
    align-items: center;
}

.news-tv-move {
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    gap: 40px;
    padding-left: 100%;
    animation: newsTickerMove 28s linear infinite;
}

.news-tv-move span {
    color: #fff;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
}

.news-tv-move span::after {
    content: "•";
    color: #ff4c4c;
    margin-left: 40px;
}

.news-tv-move span:last-child::after {
    display: none;
}

@keyframes newsTickerMove {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

@media (max-width: 991.98px) {
    body {
        padding-bottom: 52px;
    }

    .back-to-top {
        right: 20px;
        bottom: 72px;
    }

    .whatsapp-float {
        bottom: 72px;
    }
}

@media (max-width: 767.98px) {
    .news-tv-label {
        font-size: 13px;
        padding: 10px 12px;
    }

    .news-tv-move {
        font-size: 13px;
        gap: 28px;
        padding: 0 15px;
    }

    .news-tv-move span::after {
        margin-left: 28px;
    }

    body {
        padding-bottom: 48px;
    }

    .whatsapp-float img {
        width: 54px;
        height: 54px;
    }
}

/* ========================================
   SERVIÇOS INTERATIVOS - PAINEL LATERAL PREMIUM
======================================== */
.service-clickable {
    cursor: pointer;
}

.service-clickable::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 24px;
    pointer-events: none;
    border: 1px solid rgba(255, 0, 0, 0.04);
    transition: .35s ease;
}

.service-clickable:hover::after {
    border-color: rgba(255, 0, 0, 0.16);
}

.service-open-hint {
    position: absolute;
    right: 22px;
    bottom: 18px;
    font-size: 13px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.68);
    text-transform: uppercase;
    letter-spacing: .5px;
    transition: .3s ease;
}

.service-clickable:hover .service-open-hint {
    color: #ff5a5a;
}

.painel-servico-aberto {
    overflow: hidden;
}

.painel-servico-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.72);
    backdrop-filter: blur(8px);
    z-index: 99999;
    opacity: 0;
    visibility: hidden;
    transition: opacity .35s ease, visibility .35s ease;
}

.painel-servico-overlay.ativo {
    opacity: 1;
    visibility: visible;
}

.painel-servico {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 620px;
    height: 100%;
    background:
        radial-gradient(circle at top right, rgba(235, 22, 22, 0.12), transparent 26%),
        linear-gradient(180deg, #090909 0%, #111111 100%);
    border-left: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: -20px 0 50px rgba(0, 0, 0, 0.42);
    transform: translateX(100%);
    transition: transform .40s ease;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.painel-servico-overlay.ativo .painel-servico {
    transform: translateX(0);
}

.painel-servico-topo {
    padding: 28px 28px 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.painel-servico-topo h2 {
    color: #fff;
    margin: 0;
    font-size: 30px;
    text-transform: uppercase;
}

.painel-servico-fechar {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.10);
    background: rgba(255, 255, 255, 0.04);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: .3s ease;
}

.painel-servico-fechar:hover {
    background: rgba(255, 255, 255, 0.10);
}

.painel-servico-corpo {
    padding: 28px;
}

.painel-servico-tag {
    display: inline-flex;
    align-items: center;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255, 0, 0, 0.10);
    border: 1px solid rgba(255, 0, 0, 0.18);
    color: #ff5a5a;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .8px;
    margin-bottom: 16px;
}

.painel-servico-bloco {
    margin-bottom: 22px;
}

.painel-servico-bloco h3 {
    color: #fff;
    font-size: 22px;
    margin-bottom: 10px;
}

.painel-servico-bloco p,
.painel-servico-bloco li {
    color: #d6d6d6;
    line-height: 1.8;
}

.painel-servico-bloco ul {
    padding-left: 20px;
    margin: 0;
}

.painel-servico-rodape {
    padding: 0 28px 28px;
}

.painel-servico-rodape .btn {
    width: 100%;
    min-height: 52px;
}

@media (max-width: 767.98px) {
    .painel-servico {
        max-width: 100%;
    }

    .painel-servico-topo,
    .painel-servico-corpo,
    .painel-servico-rodape {
        padding-left: 18px;
        padding-right: 18px;
    }

    .painel-servico-topo h2 {
        font-size: 24px;
    }
}
/* ========================================
   AJUSTES FINAIS DE RESPONSIVIDADE
   Corrigido para manter desktop estável
======================================== */

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

img,
iframe,
video {
    max-width: 100%;
    height: auto;
}

html,
body {
    overflow-x: hidden;
}

@media (max-width: 1399.98px) {
    .brand-title {
        font-size: 30px;
    }

    .hero-content {
        max-width: 860px;
    }
}

@media (max-width: 1199.98px) {
    .brand-title {
        font-size: 26px;
    }

    .hero-content h1.display-2 {
        font-size: clamp(2.8rem, 4.2vw, 4.3rem);
    }

    .ir2026-conteudo h2 {
        font-size: 46px;
    }

    .premium-cta-box,
    .ir2026-box {
        gap: 28px;
    }
}

@media (max-width: 991.98px) {
    body {
        padding-bottom: 52px;
    }

    .premium-navbar {
        min-height: 76px;
    }

    .premium-navbar .container-fluid {
        padding-left: 14px !important;
        padding-right: 14px !important;
    }

    .navbar-brand {
        min-height: 76px;
        gap: 10px;
        max-width: calc(100% - 70px);
        margin-left: 0 !important;
    }

    .navbar-brand img {
        height: 42px;
        width: auto;
        max-width: none;
        object-fit: contain;
        display: block;
        flex-shrink: 0;
    }

    .brand-text-wrap {
        min-width: 0;
    }

    .brand-title {
        font-size: 22px;
        line-height: 1.05;
        white-space: normal;
    }

    .brand-subtitle {
        display: none;
    }

    .navbar-toggler {
        margin-right: 0 !important;
    }

    .navbar-collapse {
        background: rgba(10, 10, 10, 0.98);
        margin-top: 0;
        padding: 0 8px 18px;
        border-top: 1px solid rgba(255, 255, 255, 0.06);
        border-bottom-left-radius: 18px;
        border-bottom-right-radius: 18px;
    }

    .navbar .navbar-nav {
        margin-top: 10px;
        padding: 15px 0;
        gap: 0;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
    }

    .navbar .navbar-nav .nav-link {
        display: block;
        width: 100%;
        padding: 12px 0;
    }

    .navbar .navbar-nav .nav-link::after {
        display: none;
    }

    .premium-login-btn-mobile {
        width: 100%;
        min-height: 50px;
        border-radius: 14px;
    }

    .carousel-control-prev,
    .carousel-control-next {
        width: 14%;
    }

    .premium-stats {
        margin-top: 0;
        padding-top: 50px;
    }

    .about-main-img {
        width: 100% !important;
        align-self: center !important;
    }

    .about-floating-box {
        position: static;
        margin-top: 18px;
        width: 100%;
        max-width: 100%;
    }

    .ir2026-box {
        flex-direction: column;
        align-items: stretch;
        padding: 32px;
    }

    .ir2026-img,
    .ir2026-conteudo {
        width: 100%;
        min-width: 0;
    }

    .ir2026-img img {
        max-width: 100%;
    }

    .premium-cta-box {
        flex-direction: column;
        align-items: flex-start;
        padding: 28px 24px;
    }

    .footer .copyright {
        text-align: center;
    }
}

@media (max-width: 767.98px) {
    body {
        padding-bottom: 50px;
    }

    .premium-navbar {
        min-height: 72px;
    }

    .premium-navbar .container-fluid {
        padding-left: 12px !important;
        padding-right: 12px !important;
    }

    .navbar-brand {
        min-height: 72px;
        gap: 10px;
        max-width: calc(100% - 60px);
        margin-left: 0 !important;
    }

    .navbar-brand img {
        height: 38px;
    }

    .brand-title {
        font-size: 17px;
    }

    .whatsapp-float {
        left: 14px;
        bottom: 68px;
    }

    .whatsapp-float img {
        width: 52px;
        height: 52px;
    }

    #header-carousel .carousel-item {
        position: relative;
        min-height: 460px;
    }

    #header-carousel .carousel-item img,
    .carousel-item img {
        width: 100%;
        height: 460px;
        object-fit: cover;
    }

    .carousel-caption {
        padding: 90px 0 35px;
    }

    .hero-content {
        max-width: 100%;
        padding: 0 16px;
        text-align: left;
    }

    .hero-badge {
        font-size: 11px;
        padding: 8px 14px;
        margin-bottom: 14px;
    }

    .hero-content h1,
    .hero-content h1.display-2 {
        font-size: clamp(1.9rem, 8vw, 2.7rem);
        line-height: 1.08;
        margin-bottom: 14px !important;
    }

    .hero-subtitle {
        max-width: 100%;
        font-size: 15px;
        line-height: 1.65;
        margin-bottom: 20px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }

    .hero-btn-primary,
    .hero-btn-outline {
        width: 100%;
        min-height: 50px;
        padding: 14px 18px;
        border-radius: 14px;
    }

    .premium-stats {
        padding: 42px 0 8px;
    }

    .stat-card,
    .service-item,
    .diferencial-card,
    .about-mini-card {
        border-radius: 20px;
    }

    .stat-card {
        padding: 22px 18px;
    }

    .stat-card h3 {
        font-size: 24px;
    }

    .section-badge {
        font-size: 12px;
        padding: 8px 14px;
    }

    .about-floating-box,
    .premium-cta-box,
    .ir2026-box {
        border-radius: 20px;
    }

    .ir2026-destaque {
        padding: 60px 0;
    }

    .ir2026-box {
        padding: 22px 18px;
        gap: 20px;
    }

    .ir2026-conteudo h2 {
        font-size: 30px;
        line-height: 1.08;
    }

    .ir2026-prazo {
        font-size: 18px;
        line-height: 1.5;
    }

    .ir2026-conteudo p {
        font-size: 15px;
        line-height: 1.75;
    }

    .ir2026-botoes {
        flex-direction: column;
        align-items: stretch;
    }

    .ir2026-btn {
        width: 100%;
        min-height: 50px;
        padding: 12px 18px;
    }

    .service-item,
    .diferencial-card {
        padding: 24px 18px;
    }

    .service-item {
        flex-direction: column;
        align-items: flex-start !important;
        gap: 14px;
        padding-left: 18px !important;
    }

    .service-icon-box {
        margin-left: 0;
    }

    .service-item h3,
    .diferencial-card h3 {
        font-size: 22px;
    }

    .service-item p,
    .diferencial-card p,
    .about-mini-card p {
        font-size: 15px;
        line-height: 1.75;
    }

    .premium-cta-box {
        padding: 24px 18px;
        gap: 18px;
    }

    .premium-cta-box h2 {
        font-size: 24px;
        line-height: 1.15;
    }

    .premium-cta-buttons {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
    }

    .premium-cta-btn,
    .premium-cta-outline {
        width: 100%;
        min-height: 50px;
    }

    .footer {
        text-align: center;
    }

    .footer .btn.btn-link {
        text-align: center;
    }

    .footer .copyright {
        padding: 1.2rem 1rem;
        font-size: 14px;
    }

    .news-tv-bar {
        min-height: 46px;
    }

    .news-tv-label {
        width: 102px;
        min-width: 102px;
        font-size: 11px;
        padding: 0 10px;
    }

    .news-tv-track {
        margin-left: 102px;
        height: 46px;
    }

    .news-tv-move span {
        font-size: 13px;
        white-space: nowrap;
    }

    .painel-servico {
        max-width: 100%;
    }

    .painel-servico-topo {
        padding: 34px 20px 20px;
        gap: 16px;
    }

    .painel-servico-icone {
        width: 66px;
        height: 66px;
        font-size: 26px;
        border-radius: 18px;
    }

    .painel-servico-topo h2 {
        font-size: 28px;
    }

    .painel-servico-corpo {
        padding: 24px 20px 30px;
    }

    .painel-servico-corpo > p {
        font-size: 15px;
        line-height: 1.8;
    }

    .painel-servico-bloco {
        padding: 18px;
        border-radius: 16px;
    }

    .painel-servico-acoes {
        flex-direction: column;
    }

    .painel-btn-principal,
    .painel-btn-secundario {
        width: 100%;
    }

    .service-open-hint {
        position: static;
        display: block;
        margin-top: 18px;
        padding-left: 32px;
        color: #ff5a5a;
    }

    .diferencial-open-hint {
        position: static;
        display: inline-flex;
        margin-top: 18px;
    }
}

@media (max-width: 575.98px) {
    .navbar-brand img {
        height: 36px;
    }

    .brand-title {
        font-size: 16px;
    }

    #header-carousel .carousel-item,
    .carousel-item img {
        min-height: 420px;
        height: 420px;
    }

    .carousel-control-prev,
    .carousel-control-next {
        display: none;
    }

    .carousel-caption {
        padding: 84px 0 28px;
    }

    .hero-content {
        padding: 0 14px;
    }

    .hero-content h1.display-2 {
        font-size: clamp(1.7rem, 8.5vw, 2.2rem);
    }

    .hero-subtitle {
        font-size: 14px;
    }

    .about-floating-box {
        padding: 20px 16px;
    }

    .about-floating-box h2 {
        font-size: 28px;
    }

    .ir2026-conteudo h2 {
        font-size: 26px;
    }

    .premium-cta-box h2 {
        font-size: 22px;
    }

    .news-tv-bar {
        min-height: 42px;
    }

    .news-tv-label {
        width: 90px;
        min-width: 90px;
        font-size: 10px;
        letter-spacing: .4px;
    }

    .news-tv-track {
        margin-left: 90px;
        height: 42px;
    }

    .news-tv-move span {
        font-size: 12px;
    }

    .painel-servico-topo h2 {
        font-size: 24px;
    }
}