/* ===== GERAL ===== */
*,
*::before,
*::after {
    box-sizing: border-box;
}
:root {
    --darker-bg: #000000; /* Pure black or a very dark shade */
    --dark-bg: #0a0a0a;   /* Existing body background color */
    --gradient-text: linear-gradient(90deg, #84cc16, #a3e635); /* From .title-line-2 */
    --gradient-primary: linear-gradient(90deg, #84cc16, #a3e635); /* Assuming this is the primary gradient */
    --text-secondary: #a0a0a0; /* From .section-subtitle */
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--dark-bg); /* Use variable */
    color: #e0e0e0;
    margin: 0;
    overflow-x: hidden;
    min-height: 100vh; /* Ensure body takes full viewport height */
    display: flex;
    flex-direction: column; /* Arrange children in a column */
}

main {
    flex-grow: 1; /* Allow main content to grow and push footer down */
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.9);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    height: 40px;
    margin-right: 10px;
    transition: height 0.3s ease;
}

.tagline {
    font-family: 'Orbitron', sans-serif;
    font-size: 12px;
    color: #84cc16;
    letter-spacing: 2px;
    transition: font-size 0.3s ease;
}

.nav-collapse {
    display: flex;
    align-items: center;
}

.nav-phone {
    font-size: 16px;
    color: #e0e0e0;
    background: rgba(132, 204, 22, 0.1);
    padding: 8px 15px;
    border-radius: 50px;
    border: 1px solid #84cc16;
    margin-right: 20px;
    transition: all 0.3s ease;
}

.nav-phone i {
    margin-right: 8px;
    color: #84cc16;
}

.nav-menu {
    display: flex;
    align-items: center;
}

.nav-link {
    color: #e0e0e0;
    text-decoration: none;
    margin: 0 15px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #84cc16;
}

.btn-login {
    background: #84cc16;
    color: #0a0a0a;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.btn-login:hover {
    background: #a3e635;
    transform: scale(1.05);
}

/* Hamburger Toggle */
.nav-toggle {
    display: none;
    border: none;
    background: transparent;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.hamburger {
    display: block;
    position: relative;
    width: 25px;
    height: 3px;
    background: #e0e0e0;
    transition: all 0.2s ease-in-out;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 3px;
    background: #e0e0e0;
    transition: all 0.2s ease-in-out;
}

.hamburger::before { top: -8px; }
.hamburger::after { bottom: -8px; }

.nav-open .hamburger {
    background: transparent;
}

.nav-open .hamburger::before {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-open .hamburger::after {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== HERO SECTION ===== */
.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

/* Other sections */
.cta-section, .coverage-section, .plans-section, .contact-section {
    position: relative;
    z-index: 1;
    background-color: #0a0a0a;
}

/* ===== PARTICLES SYSTEM ===== */
#particles-js {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(10, 10, 10, 0.5) 0%, rgba(10, 10, 10, 1) 70%);
}

.hero-grid-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(rgba(132, 204, 22, 0.05) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(132, 204, 22, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-block;
    background: rgba(132, 204, 22, 0.1);
    border: 1px solid #84cc16;
    padding: 10px 20px;
    border-radius: 50px;
    margin-bottom: 20px;
}

.badge-text {
    color: #84cc16;
    font-weight: 700;
    letter-spacing: 1px;
}

.hero-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 4rem;
    font-weight: 900;
    margin: 0;
}

.title-line-1 {
    display: block;
}

.title-line-2 {
    display: block;
    background: linear-gradient(90deg, #84cc16, #a3e635);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin: 20px 0;
}

.offer-showcase {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.offer-card-main {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.advantages-panel {
    text-align: left;
}

.advantages-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.advantages-list {
    list-style: none;
    padding: 0;
}

.advantage-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.advantage-icon {
    color: #84cc16;
    margin-right: 10px;
}

.btn-hero-cta {
    background: #84cc16;
    color: #0a0a0a;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-hero-cta:hover {
    background: #a3e635;
    transform: scale(1.05);
}

/* ===== FLOATING ELEMENTS ===== */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none; /* Allow clicks to pass through */
    overflow: hidden;
    z-index: 0; /* Ensure it's behind content */
}

.floating-element {
    position: absolute;
    font-size: 3rem;
    color: rgba(132, 204, 22, 0.1); /* Light green, semi-transparent */
    animation: float linear infinite;
}

.floating-element:nth-child(1) { top: 10%; left: 20%; }
.floating-element:nth-child(2) { top: 30%; left: 80%; }
.floating-element:nth-child(3) { top: 60%; left: 40%; }

@keyframes float {
    0% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0); }
}

/* ===== CTA SECTION ===== */
.cta-section {
    background: #1a1a1a;
    padding: 80px 0;
    text-align: center;
}

.cta-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 20px;
}

.cta-subtitle {
    font-size: 1.2rem;
    color: #a0a0a0;
    margin-bottom: 40px;
}

.btn-acelerar {
    background: #84cc16;
    color: #0a0a0a;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-acelerar:hover {
    background: #a3e635;
    transform: scale(1.05);
}

.rocket-icon {
    width: 20px;
    height: 20px;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--!Font Awesome Free 6.5.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2024 Fonticons, Inc.--><path fill="%230a0a0a" d="M156.6 384.9L25.3 287.8C-3.4 260.4-3.4 214.6 25.3 187.2L156.6 90.1c12.5-11.6 28.8-18.1 45.9-18.1c35.1 0 63.6 28.5 63.6 63.6V224H320V128c0-17.7 14.3-32 32-32s32 14.3 32 32V224h64V128c0-17.7 14.3-32 32-32s32 14.3 32 32V224h32c17.7 0 32 14.3 32 32s-14.3 32-32 32H448v96h32c17.7 0 32 14.3 32 32s-14.3 32-32 32H448v96c0 17.7-14.3 32-32 32s-32-14.3-32-32V352H384v96c0 17.7-14.3 32-32 32s-32-14.3-32-32V352H266.4c-17.7 0-32-14.3-32-32s14.3-32 32-32H320V288H266.4c-17.7 0-32-14.3-32-32s14.3-32 32-32H320V192H266.4c-17.7 0-32-14.3-32-32s14.3-32 32-32H320V96H202.5c-17.1 0-33.4 6.5-45.9 18.1z"/></svg>');
    background-size: contain;
    background-repeat: no-repeat;
    margin-left: 10px;
}

/* ===== COVERAGE SECTION ===== */
.coverage-section {
    padding: 100px 0;
}

.coverage-form-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    max-width: 500px;
    margin: 0 auto;
}

.coverage-input-group {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #1a1a1a;
    padding: 20px;
    border-radius: 50px;
    width: 100%;
}

.coverage-input-group input {
    flex-grow: 1;
    background: transparent;
    border: none;
    color: #e0e0e0;
    font-size: 1.2rem;
    padding: 10px;
}

.coverage-input-group input:focus {
    outline: none;
}

#cep-input {
    flex-grow: 1;
    background: transparent;
    border: none;
    color: #e0e0e0;
    font-size: 1.2rem;
    padding: 10px;
}

#cep-input:focus {
    outline: none;
}

.btn-check-coverage {
    background: #84cc16;
    color: #0a0a0a;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-check-coverage:hover {
    background: #a3e635;
}

/* ===== PLANS SECTION ===== */
.plans-section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 3rem;
    font-weight: 900;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #a0a0a0;
}

.plans-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}

.tab-btn {
    background: transparent;
    border: 1px solid #84cc16;
    color: #84cc16;
    padding: 10px 20px;
    margin: 0 10px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-btn.active {
    background: #84cc16;
    color: #0a0a0a;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.plans-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.plan-card-modern {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.plan-card-modern:hover {
    transform: translateY(-10px);
    border-color: #84cc16;
}

.plan-card-modern.featured {
    border-color: #84cc16;
    position: relative;
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #84cc16;
    color: #0a0a0a;
    padding: 5px 15px;
    border-radius: 50px;
    font-weight: 700;
}

.plan-header-modern {
    text-align: center;
    margin-bottom: 20px;
}

.plan-name-modern {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    margin: 0;
}

.plan-type-modern {
    color: #a0a0a0;
}

.plan-price-modern {
    text-align: center;
    margin-bottom: 30px;
}

.price-currency-modern {
    font-size: 1.5rem;
}

.price-value-modern {
    font-size: 4rem;
    font-weight: 900;
}

.price-cents-modern {
    font-size: 1.5rem;
}

.price-period-modern {
    color: #a0a0a0;
}

.plan-features-modern {
    margin-bottom: 30px;
}

.feature-modern {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.feature-modern i {
    color: #84cc16;
    margin-right: 10px;
}

.plan-description-modern {
    color: #a0a0a0;
    margin-bottom: 30px;
}

.btn-plan-modern {
    width: 100%;
    background: #84cc16;
    color: #0a0a0a;
    padding: 15px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-plan-modern:hover {
    background: #a3e635;
    transform: scale(1.05);
}

/* ===== FOOTER ===== */
.contact-section {
    background: #1a1a1a;
    padding: 80px 0;
    color: #e0e0e0;
}

.contact-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
}

.company-info {
    flex: 1;
    min-width: 300px;
}

.company-logo {
    margin-bottom: 20px;
}

.footer-logo {
    height: 60px;
}

.company-description {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #a0a0a0;
    overflow-wrap: break-word; /* Fix overflow issue */
}

.contact-details {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    flex: 2;
    min-width: 400px;
}

.contact-section-group {
    flex: 1;
    min-width: 180px;
}

.contact-section-group h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #84cc16;
}

.contact-section-group ul {
    list-style: none;
    padding: 0;
}

.contact-section-group ul li {
    margin-bottom: 10px;
    font-size: 0.9rem;
    color: #a0a0a0;
}

.contact-section-group ul li i {
    margin-right: 10px;
    color: #84cc16;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.contact-item i {
    font-size: 1.5rem;
    color: #84cc16;
    margin-right: 15px;
}

.contact-item strong {
    display: block;
    font-size: 1rem;
    margin-bottom: 5px;
}

.contact-item p {
    margin: 0;
    font-size: 0.9rem;
    color: #a0a0a0;
}

.certifications {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-bottom: 40px;
}

.cert-item {
    display: flex;
    align-items: center;
    background: rgba(132, 204, 22, 0.1);
    border: 1px solid #84cc16;
    padding: 15px 20px;
    border-radius: 10px;
}

.cert-img-icon {
    height: 40px;
    width: auto;
    margin-right: 15px;
}

.cert-item strong {
    display: block;
    font-size: 1rem;
    margin-bottom: 5px;
}

.cert-item p {
    margin: 0;
    font-size: 0.8rem;
    color: #a0a0a0;
}

.footer-bottom {
    padding: 20px 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-links {
    margin-bottom: 10px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.footer-link {
    color: #a0a0a0;
    text-decoration: none;
    margin: 0;
    font-size: 0.9rem;
}

.footer-link:hover {
    color: #84cc16;
}

.copyright {
    font-size: 0.8rem;
    color: #a0a0a0;
    overflow-wrap: break-word;
}

/* ===== COOKIE BANNER ===== */
.cookie-banner {
    position: fixed;
    bottom: -100%;
    left: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(10px);
    padding: 20px;
    transition: bottom 0.5s ease;
    z-index: 1001;
}

.cookie-banner.show {
    bottom: 0;
}

.cookie-content {
    display: flex;
    align-items: center;
    justify-content: center;
}

.cookie-icon {
    font-size: 2rem;
    margin-right: 20px;
}

.btn-cookies {
    background: #84cc16;
    color: #0a0a0a;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    margin-left: 20px;
}

/* ===== WHATSAPP BUTTON ===== */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #000000;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 1000;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
    }
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

/* ===== RESPONSIVE STYLES ===== */

/* Medium devices (tablets, less than 992px) */
@media (max-width: 992px) {
    .nav-toggle {
        display: block; /* Mostra o botão hamburguer */
        position: absolute;
        top: 20px;
        right: 20px;
    }

    .navbar .container {
        /* Mantém o alinhamento lado a lado da logo e do hamburguer */
        justify-content: space-between;
    }

    .nav-collapse {
        /* O menu vira um bloco que sobrepõe a tela */
        position: fixed;
        top: 0;
        left: -100%; /* Começa escondido fora da tela */
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: var(--darker-bg);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: left 0.4s ease;
        padding-top: 60px; /* Espaço para o botão de fechar */
    }

    .nav-open .nav-collapse {
        left: 0; /* Mostra o menu */
    }

    .nav-menu {
        flex-direction: column;
        width: 100%;
    }

    .nav-link {
        padding: 15px 0;
        width: 100%;
        text-align: center;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-phone {
        margin: 20px 0; /* Espaçamento entre telefone e login */
    }

    /* Ajustes para o Hero Section não ficar embaixo da navbar */
    .hero-section {
        padding-top: 100px;
    }

    /* Ajustes de fonte para tablets */
    .hero-title {
        font-size: 3rem;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .cta-section, .plans-section, .coverage-section {
        padding: 60px 0;
    }
}

/* Small devices (landscape phones, less than 768px) */
@media (max-width: 768px) {
    body {
        font-size: 14px;
    }

    .hero-section {
        /* Usa min-height para garantir que ocupe a tela, mas pode crescer se precisar */
        min-height: 100vh;
        height: auto;
        padding: 120px 20px 60px 20px; /* Mais espaço no topo e menos embaixo */
        text-align: center;
    }

    .hero-title {
        font-size: 2.5rem; /* Ajuste gradual da fonte */
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 1rem;
        padding: 0 10px; /* Evita que o texto toque as bordas */
    }

    .offer-showcase {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .section-title {
        font-size: 2rem;
        line-height: 1.2;
    }

    .section-subtitle {
        font-size: 0.9rem;
    }

    .cta-section, .plans-section, .coverage-section, .contact-section {
        padding: 40px 15px;
    }

    .cta-title {
        font-size: 1.8rem;
        line-height: 1.3;
    }

    .plans-grid-modern {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .contact-content, .contact-details {
        flex-direction: column;
        gap: 30px;
        align-items: center;
        text-align: center; /* Centraliza o texto no mobile */
    }

    .company-info {
        min-width: 0;
        text-align: center;
    }

    .contact-section-group {
        text-align: center;
    }

    .contact-item {
        justify-content: center;
    }

    .whatsapp-float {
        width: 55px;
        height: 55px;
        bottom: 20px;
        right: 20px;
        font-size: 24px;
    }

    /* Correção para o menu hamburguer não herdar estilos errados */
    .nav-toggle {
        display: block;
    }
    .nav-menu {
        display: none; /* Garante que o menu original esteja escondido */
    }
    .nav-open .nav-menu {
        display: flex; /* Mostra o menu quando a classe .nav-open é aplicada */
    }
}

/* Extra small devices (portrait phones, less than 480px) */
@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .coverage-checker {
        flex-direction: column;
        gap: 15px;
        border-radius: 15px;
        padding: 20px;
    }

    .btn-check-coverage {
        width: 100%;
        justify-content: center;
    }

    .nav-brand {
        align-items: center; /* Keep items aligned */
        flex-direction: row; /* Explicitly set to row */
    }

    .logo-img {
        height: 28px; /* Further reduce size */
        margin-right: 8px;
    }

    .tagline {
        font-size: 8px;
    }

    .nav-phone {
        font-size: 11px;
    }
}

/* ===== LOADING SCREEN ===== */
#loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--darker-bg) 0%, var(--dark-bg) 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loading-content {
    text-align: center;
}

.loading-logo {
    font-family: 'Orbitron', monospace;
    font-size: 4rem;
    font-weight: 900;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 2rem;
    animation: pulse-glow 2s ease-in-out infinite;
}

.loading-bar {
    width: 300px;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
    margin: 0 auto 1rem;
}

.loading-progress {
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 2px;
    animation: loading-fill 3s ease-out forwards;
}

.loading-text {
    color: var(--text-secondary);
    font-size: 1.1rem;
    animation: fade-pulse 1.5s ease-in-out infinite;
}

#loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

/* Styles for option cards in segunda_via_boleto.html */
.option-card {
    background: #1a1a1a;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.option-card:hover {
    transform: translateY(-5px);
    border-color: #84cc16;
}

.option-card h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #84cc16;
}

.option-card h3 i {
    margin-right: 10px;
    color: #84cc16;
}

.option-card p {
    color: #a0a0a0;
    margin-bottom: 20px;
}

.simple-form .form-group {
    margin-bottom: 15px;
}

.simple-form label {
    display: block;
    color: #e0e0e0;
    margin-bottom: 5px;
    font-weight: 500;
}

.simple-form input[type="text"] {
    width: 100%;
    padding: 10px 15px;
    background: #0a0a0a;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    color: #e0e0e0;
    font-size: 1rem;
    box-sizing: border-box; /* Ensure padding is included in width */
}

.simple-form input[type="text"]:focus {
    outline: none;
    border-color: #84cc16;
    box-shadow: 0 0 10px rgba(132, 204, 22, 0.3);
}

.simple-form .btn-cta-small {
    margin-top: 15px;
    width: auto; /* Override default 100% if it's applied globally */
    display: inline-block; /* Ensure it respects width */
}

/* Styles for FAQ items in central_de_ajuda.html */
.faq-item {
    background: #1a1a1a;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    text-align: left;
}

.faq-item:hover {
    border-color: #84cc16;
    transform: translateY(-3px);
}

.faq-item h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.2rem;
    color: #e0e0e0;
    margin-top: 0;
    margin-bottom: 10px;
}

.faq-item p {
    color: #a0a0a0;
    line-height: 1.6;
}

.faq-item a {
    color: #84cc16;
    text-decoration: none;
}

.faq-item a:hover {
    text-decoration: underline;
}

/* Styles for coverage messages */
.loading-message {
    color: #007bff; /* Blue for loading */
    font-weight: bold;
    margin-top: 15px;
}

.error-message {
    color: #dc3545; /* Red for errors */
    font-weight: bold;
    margin-top: 15px;
}

.success-message {
    color: #28a745; /* Green for success */
    font-weight: bold;
    margin-top: 15px;
}

.warning-message {
    color: #ffc107; /* Yellow/Orange for warning */
    font-weight: bold;
    margin-top: 15px;
}

.coverage-checker .number-input {
    flex-grow: 0.5; /* Adjust as needed */
    background: transparent;
    border: none;
    color: #e0e0e0;
    font-size: 1.2rem;
    padding: 10px;
    margin-left: 10px; /* Space between CEP and number input */
    max-width: 100px; /* Limit width */
}

.coverage-checker .number-input:focus {
    outline: none;
}

/* Adjust media queries for the new input */
@media (max-width: 480px) {
    .coverage-checker .number-input {
        width: 100%;
        margin-left: 0;
        margin-top: 10px; /* Space between CEP and number input on small screens */
    }
}

/* Keyframes for animations */
@keyframes pulse-glow {
    0%, 100% {
        text-shadow: 0 0 10px rgba(132, 204, 22, 0.5), 0 0 20px rgba(132, 204, 22, 0.3);
    }
    50% {
        text-shadow: 0 0 20px rgba(163, 230, 53, 0.7), 0 0 40px rgba(163, 230, 53, 0.5);
    }
}

@keyframes loading-fill {
    from { width: 0%; }
    to { width: 100%; }
}

@keyframes fade-pulse {
    0%, 100% {
        opacity: 0.7;
    }
    50% {
        opacity: 1;
    }
}

/* ===== FONT AWESOME ===== */
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css');

/* ===== CENTRAL DO ASSINANTE ===== */
.sidebar {
    background: #1a1a1a;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 15px;
}

.sidebar .user-info {
    display: flex;
    align-items: center;
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.sidebar .user-avatar img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 15px;
}

.sidebar .user-name {
    font-weight: 700;
    color: #fff;
    display: block;
}

.sidebar .user-plan {
    font-size: 0.8rem;
    color: #a0a0a0;
}

.sidebar .list-group-item {
    background: transparent;
    border: none;
    color: #a0a0a0;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
    border-radius: 10px;
    margin-bottom: 5px;
}

.sidebar .list-group-item i {
    margin-right: 15px;
    color: #84cc16;
}

.sidebar .list-group-item.active,
.sidebar .list-group-item:hover {
    background: rgba(132, 204, 22, 0.1);
    color: #fff;
    box-shadow: -3px 0 0 0 #84cc16 inset;
}

.main-content .card {
    background: #1a1a1a;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    margin-bottom: 30px;
}

.main-content .card-header {
    background: transparent;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px;
}

.main-content .card-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    color: #e0e0e0;
    margin: 0;
}

.main-content .card-body {
    padding: 20px;
}

.main-content .btn-primary {
    background: #84cc16;
    border-color: #84cc16;
    color: #0a0a0a;
    font-weight: 700;
    border-radius: 50px;
}

.main-content .btn-primary:hover {
    background: #a3e635;
    border-color: #a3e635;
}

.main-content .btn-secondary {
    background: transparent;
    border-color: #84cc16;
    color: #84cc16;
    font-weight: 700;
    border-radius: 50px;
}

.main-content .btn-secondary:hover {
    background: rgba(132, 204, 22, 0.1);
    color: #fff;
}

/* Make sure the layout is responsive */
@media (max-width: 768px) {
    .sidebar {
        margin-bottom: 30px;
    }
}