/* ==========================================================================
   TVANET TELECOM - Modern & Professional Responsive Theme
   ========================================================================== */

:root {
    --tva-primary: #025286;
    --tva-primary-hover: #013d64;
    --tva-primary-light: #e6f0f7;
    --tva-secondary: #f09000;
    --tva-secondary-hover: #d47e00;
    --tva-secondary-light: #fff5e6;
    --tva-dark: #1e293b;
    --tva-gray: #64748b;
    --tva-light-gray: #f8fafc;
    --tva-border: #e2e8f0;
    --tva-card-shadow: 0 4px 15px rgba(2, 82, 134, 0.08);
    --tva-hover-shadow: 0 10px 25px rgba(2, 82, 134, 0.14);
    --tva-radius: 12px;
    --tva-radius-lg: 16px;
    --tva-transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: 'Nunito', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif !important;
    background-color: #f4f7fb !important;
    color: #334155 !important;
}

/* Auth Pages Styling (Login, Cadastro, Recuperar Senha) */
.auth-bg {
    background: linear-gradient(135deg, #02385b 0%, #025286 50%, #0d47a1 100%) !important;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 15px;
}

/* Background com Imagem e Efeito Blur Suave */
.bg-auth-blur {
    position: relative;
    min-height: 100vh;
    background-color: #02385b;
    overflow-x: hidden;
}

.bg-auth-blur::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: url('../imagens/tec.png') no-repeat center center;
    background-size: cover;
    filter: blur(8px) brightness(0.85);
    -webkit-filter: blur(8px) brightness(0.85);
    transform: scale(1.08); /* Evita bordas brancas do blur */
    z-index: -2;
}

.bg-auth-blur::after {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(2, 82, 134, 0.45) 0%, rgba(1, 42, 69, 0.65) 100%);
    z-index: -1;
}

.auth-card {
    border-radius: var(--tva-radius-lg) !important;
    border: none !important;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.35) !important;
    background: #ffffff !important;
    overflow: hidden;
}

.auth-header {
    text-align: center;
    padding: 2.5rem 2rem 1.5rem 2rem;
}

.auth-logo {
    max-width: 180px;
    height: auto;
    margin-bottom: 1.25rem;
    transition: var(--tva-transition);
}

.auth-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--tva-primary);
    margin-bottom: 0.5rem;
}

.auth-subtitle {
    font-size: 0.9rem;
    color: var(--tva-gray);
    font-weight: 600;
}

/* Inputs & Form Controls */
.tva-input-group {
    position: relative;
    margin-bottom: 1.25rem;
}

.tva-input-group .input-group-text {
    background-color: var(--tva-primary-light) !important;
    color: var(--tva-primary) !important;
    border: 1px solid var(--tva-border) !important;
    border-right: none !important;
    border-radius: var(--tva-radius) 0 0 var(--tva-radius) !important;
    padding: 0.65rem 1rem !important;
}

.tva-form-control {
    border: 1px solid var(--tva-border) !important;
    border-left: none !important;
    border-radius: 0 var(--tva-radius) var(--tva-radius) 0 !important;
    padding: 0.65rem 1rem !important;
    height: 48px !important;
    font-size: 0.95rem !important;
    color: #1e293b !important;
    transition: var(--tva-transition) !important;
}

.tva-form-control:focus {
    border-color: var(--tva-primary) !important;
    box-shadow: 0 0 0 3px rgba(2, 82, 134, 0.15) !important;
}

.tva-input-group .btn-toggle-password {
    background-color: #ffffff;
    border: 1px solid var(--tva-border);
    border-left: none;
    border-radius: 0 var(--tva-radius) var(--tva-radius) 0;
    color: var(--tva-gray);
    cursor: pointer;
    transition: var(--tva-transition);
    padding: 0 1rem;
    display: flex;
    align-items: center;
}

.tva-input-group .btn-toggle-password:hover {
    color: var(--tva-primary);
    background-color: var(--tva-primary-light);
}

.tva-input-group .form-control-password {
    border-right: none !important;
    border-radius: 0 !important;
}

/* Medidor de Força de Senha */
.password-strength-container {
    margin-top: 6px;
    margin-bottom: 12px;
}

.password-strength-bar {
    height: 6px;
    border-radius: 4px;
    background-color: #e2e8f0;
    overflow: hidden;
    margin-bottom: 6px;
}

.password-strength-progress {
    height: 100%;
    width: 0%;
    transition: width 0.3s ease, background-color 0.3s ease;
}

.password-requirements {
    font-size: 0.78rem;
    color: var(--tva-gray);
    line-height: 1.4;
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.password-requirements li {
    display: flex;
    align-items: center;
    margin-bottom: 3px;
}

.password-requirements li i {
    font-size: 0.75rem;
    margin-right: 6px;
    color: #94a3b8;
}

.password-requirements li.valid {
    color: #10b981;
    font-weight: 600;
}

.password-requirements li.valid i {
    color: #10b981;
}

.password-requirements li.invalid {
    color: #64748b;
}

.match-feedback {
    font-size: 0.8rem;
    font-weight: 600;
    margin-top: 4px;
}


/* Botões Modernos */
.btn-tva-primary {
    background-color: var(--tva-primary) !important;
    border-color: var(--tva-primary) !important;
    color: #ffffff !important;
    font-weight: 700 !important;
    border-radius: var(--tva-radius) !important;
    padding: 0.75rem 1.5rem !important;
    transition: var(--tva-transition) !important;
    box-shadow: 0 4px 10px rgba(2, 82, 134, 0.25) !important;
}

.btn-tva-primary:hover {
    background-color: var(--tva-primary-hover) !important;
    border-color: var(--tva-primary-hover) !important;
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(2, 82, 134, 0.35) !important;
}

.btn-tva-secondary {
    background-color: var(--tva-secondary) !important;
    border-color: var(--tva-secondary) !important;
    color: #ffffff !important;
    font-weight: 700 !important;
    border-radius: var(--tva-radius) !important;
    padding: 0.75rem 1.5rem !important;
    transition: var(--tva-transition) !important;
    box-shadow: 0 4px 10px rgba(240, 144, 0, 0.25) !important;
}

.btn-tva-secondary:hover {
    background-color: var(--tva-secondary-hover) !important;
    border-color: var(--tva-secondary-hover) !important;
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(240, 144, 0, 0.35) !important;
}

/* Botões Modernos de Modal e Ações */
.btn-modal-cancel, .btn-modal-close {
    background-color: #f1f5f9 !important;
    border: 1px solid #cbd5e1 !important;
    color: #475569 !important;
    font-weight: 700 !important;
    border-radius: var(--tva-radius) !important;
    padding: 0.65rem 1.4rem !important;
    font-size: 0.9rem !important;
    transition: var(--tva-transition) !important;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05) !important;
}

.btn-modal-cancel:hover, .btn-modal-close:hover {
    background-color: #e2e8f0 !important;
    border-color: #94a3b8 !important;
    color: #1e293b !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08) !important;
    text-decoration: none;
}

.modal-footer {
    border-top: 1px solid #e2e8f0 !important;
    background-color: #f8fafc !important;
    padding: 1rem 1.5rem !important;
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
}

.modal-footer .btn {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Navbar Moderna */
.navbar-tva {
    background: #ffffff !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05) !important;
    padding: 0.75rem 1.5rem !important;
    border-bottom: 1px solid var(--tva-border);
}

.user-badge {
    background: var(--tva-primary-light);
    color: var(--tva-primary);
    padding: 0.4rem 0.9rem;
    border-radius: 50px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(2, 82, 134, 0.15);
}

/* Cards do Painel */
.tva-card {
    background: #ffffff;
    border-radius: var(--tva-radius-lg);
    border: 1px solid var(--tva-border);
    box-shadow: var(--tva-card-shadow);
    transition: var(--tva-transition);
    overflow: hidden;
    height: auto !important;
}

.tva-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--tva-hover-shadow);
    border-color: rgba(240, 144, 0, 0.4);
}

/* Card do Cliente / Sidebar Responsiva */
.client-profile-card {
    background: #ffffff;
    border-radius: var(--tva-radius-lg);
    border: 1px solid var(--tva-border);
    box-shadow: var(--tva-card-shadow);
    height: auto !important;
    padding: 1.5rem !important;
    margin-bottom: 1.5rem;
}

.client-profile-card .form-control {
    background-color: #f8fafc !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 8px !important;
    color: #1e293b !important;
    font-weight: 600 !important;
}

/* Badges de Status */
.status-badge {
    display: inline-block;
    padding: 0.35rem 0.85rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-ativo {
    background-color: #ecfdf5;
    color: #059669;
    border: 1px solid #a7f3d0;
}

.status-inativo, .status-suspenso {
    background-color: #fef2f2;
    color: #dc2626;
    border: 1px solid #fecaca;
}

.status-instalacao {
    background-color: #eff6ff;
    color: #2563eb;
    border: 1px solid #bfdbfe;
}

/* Estilização de Tabelas e Classe .formsize */
.formsize {
    font-size: 0.88rem !important;
    letter-spacing: 0.2px;
}

table.formsize, .table.formsize {
    font-size: 0.88rem !important;
}

table.formsize thead th, .table.formsize thead th {
    font-size: 0.85rem !important;
    font-weight: 700 !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    vertical-align: middle !important;
    padding: 0.75rem 0.65rem !important;
}

table.formsize tbody td, table.formsize tbody th, .table.formsize tbody td, .table.formsize tbody th {
    font-size: 0.88rem !important;
    vertical-align: middle !important;
    padding: 0.75rem 0.65rem !important;
}

/* Navbar e Topbar Customizada */
.navbar-tva {
    background: #ffffff !important;
    border-bottom: 1px solid #e2e8f0 !important;
    box-shadow: 0 4px 20px rgba(2, 82, 134, 0.06) !important;
    min-height: 88px;
    padding: 1rem 2.5rem !important;
    margin-bottom: 2.5rem !important;
}

.navbar-tva .user-profile-badge {
    background: #ffffff;
    border: 1.5px solid #e2e8f0;
    border-radius: 50px;
    padding: 0.55rem 1.45rem 0.55rem 0.65rem;
    box-shadow: 0 2px 10px rgba(2, 82, 134, 0.06);
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    margin-left: 1.25rem;
}

.navbar-tva .user-profile-badge:hover,
.navbar-tva .show > .user-profile-badge {
    background: #f8fafc;
    border-color: #025286;
    box-shadow: 0 6px 18px rgba(2, 82, 134, 0.14);
    text-decoration: none;
    transform: translateY(-2px);
}

.navbar-tva .user-avatar-circle {
    background: linear-gradient(135deg, #025286 0%, #0369a1 100%);
    color: #ffffff;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 8px rgba(2, 82, 134, 0.25);
    font-size: 1.1rem;
    position: relative;
    margin-right: 0.85rem !important;
}

.navbar-tva .user-online-dot {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 11px;
    height: 11px;
    background-color: #10b981;
    border: 2px solid #ffffff;
    border-radius: 50%;
}

.navbar-tva .user-profile-badge .user-id-text {
    font-size: 0.95rem;
    font-weight: 700;
    color: #025286;
    letter-spacing: 0.3px;
}

.navbar-tva .user-profile-badge .user-chevron {
    font-size: 0.8rem;
    color: #94a3b8;
    margin-left: 0.65rem !important;
    transition: transform 0.25s ease;
}

.navbar-tva .show > .user-profile-badge .user-chevron {
    transform: rotate(180deg);
    color: #025286;
}

.navbar-tva .dropdown-menu {
    border: 1px solid #e2e8f0 !important;
    border-radius: 16px !important;
    box-shadow: 0 14px 40px rgba(2, 82, 134, 0.14) !important;
    padding: 0.75rem !important;
    min-width: 245px;
    margin-top: 0.85rem !important;
}

.navbar-tva .dropdown-item {
    border-radius: 10px;
    padding: 0.75rem 1.15rem;
    font-size: 0.9rem;
    font-weight: 600;
    transition: var(--tva-transition);
}

.navbar-tva .dropdown-item:hover {
    background-color: #f1f5f9;
    color: #025286 !important;
    transform: translateX(5px);
}

.navbar-tva .dropdown-item.item-sair:hover {
    background-color: #fef2f2;
    color: #ef4444 !important;
}

/* Footer Moderno TVANET */
.footer-tva {
    background-color: #ffffff !important;
    border-top: 1px solid #e2e8f0;
    padding: 1.5rem 0 !important;
    margin-top: auto;
    box-shadow: 0 -4px 16px rgba(2, 82, 134, 0.03);
}

.footer-tva .footer-brand {
    font-size: 0.9rem;
    font-weight: 700;
    color: #025286;
}

.footer-tva .footer-info {
    font-size: 0.8rem;
    color: #64748b;
}

.footer-tva .footer-status-pill {
    display: inline-flex;
    align-items: center;
    background-color: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 50px;
    padding: 0.25rem 0.75rem;
    font-size: 0.78rem;
    font-weight: 600;
    color: #334155;
}

.footer-tva .footer-status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #10b981;
    margin-right: 6px;
    box-shadow: 0 0 0 2px rgba(16, 185, 129, 0.2);
}

/* Modal de Pagamento & Abas PIX / Boleto */
.payment-nav-pills {
    background-color: #f1f5f9;
    border-radius: 12px;
    padding: 0.35rem;
    border: 1px solid #e2e8f0;
}

.payment-nav-pills .nav-link {
    border-radius: 9px !important;
    padding: 0.7rem 1.25rem;
    font-size: 0.95rem;
    font-weight: 700;
    color: #64748b;
    transition: var(--tva-transition);
    border: none !important;
}

.payment-nav-pills .nav-link.active {
    background-color: #ffffff !important;
    color: #025286 !important;
    box-shadow: 0 4px 12px rgba(2, 82, 134, 0.12) !important;
}

.barcode-box-premium {
    background: linear-gradient(145deg, #f8fafc 0%, #f1f5f9 100%);
    border: 1.5px dashed #cbd5e1;
    border-radius: 14px;
    padding: 1.25rem;
    text-align: center;
}

.barcode-text-display {
    font-family: 'Courier New', Courier, monospace;
    font-size: 1.15rem;
    font-weight: 700;
    color: #025286;
    letter-spacing: 1px;
    word-break: break-all;
    background: #ffffff;
    padding: 0.85rem 1rem;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

.pix-qr-container {
    background: #ffffff;
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    padding: 1.25rem;
    display: inline-block;
    box-shadow: 0 8px 25px rgba(2, 82, 134, 0.08);
}

.pix-qr-container img, .pix-qr-container svg {
    max-width: 220px;
    height: auto;
    display: block;
    margin: 0 auto;
}

.pix-code-textarea {
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.85rem;
    font-weight: 600;
    background-color: #f8fafc !important;
    border: 1.5px solid #e2e8f0 !important;
    border-radius: 10px !important;
    resize: none;
}

/* Scroll to Top Moderno */
.scroll-to-top {
    position: fixed !important;
    bottom: 98px !important;
    right: 28px !important;
    background: #025286 !important;
    border-radius: 50% !important;
    width: 44px !important;
    height: 44px !important;
    line-height: 44px !important;
    text-align: center;
    box-shadow: 0 6px 16px rgba(2, 82, 134, 0.3) !important;
    transition: all 0.25s ease !important;
    border: 2px solid #ffffff;
    z-index: 1040 !important;
}

.scroll-to-top:hover {
    background: #F09000 !important;
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 8px 20px rgba(240, 144, 0, 0.4) !important;
}

/* Responsividade Aprimorada */
@media (max-width: 991.98px) {
    .client-profile-card {
        margin-bottom: 2rem;
    }
    .auth-card {
        margin: 1.5rem 0;
    }
}

@media (max-width: 575.98px) {
    .navbar-tva {
        padding: 0.5rem 1rem !important;
        min-height: 60px;
    }
    .auth-header {
        padding: 1.5rem 1rem 1rem 1rem;
    }
    .formsize {
        font-size: 0.82rem !important;
    }
    table.formsize thead th, .table.formsize thead th {
        font-size: 0.78rem !important;
        padding: 0.5rem 0.4rem !important;
    }
    table.formsize tbody td, .table.formsize tbody td {
        font-size: 0.82rem !important;
        padding: 0.5rem 0.4rem !important;
    }
    .scroll-to-top {
        bottom: 84px !important;
        right: 22px !important;
        width: 40px !important;
        height: 40px !important;
        line-height: 40px !important;
    }
}

/* ==========================================================================
   Botão Flutuante do WhatsApp Profissional (Área Logada)
   ========================================================================== */
.whatsapp-float-wrapper {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 1045;
}

.btn-whatsapp-float {
    position: relative;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: #ffffff !important;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45), 0 2px 8px rgba(0, 0, 0, 0.12);
    text-decoration: none !important;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 2.5px solid #ffffff;
    cursor: pointer;
    animation: zap-float-pulse 3.5s infinite ease-in-out;
}

.btn-whatsapp-float i {
    z-index: 2;
    display: inline-block;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.18));
    animation: zap-icon-attention 4.5s infinite ease-in-out;
}

.btn-whatsapp-float:hover {
    color: #ffffff !important;
    transform: translateY(-5px) scale(1.08);
    box-shadow: 0 14px 32px rgba(37, 211, 102, 0.65), 0 4px 12px rgba(0, 0, 0, 0.18);
}

.btn-whatsapp-float:active {
    transform: translateY(-2px) scale(1.02);
}

/* Anéis de Onda Pulsante (Radar Effect) */
.zap-pulse-ring {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 50%;
    border: 2.5px solid #25D366;
    pointer-events: none;
    opacity: 0;
    animation: zap-radar-pulse 2.6s infinite cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.zap-pulse-ring.ring-2 {
    animation-delay: 1.3s;
}

/* Badge / Indicador de Status Online (Piscando) */
.zap-badge-online {
    position: absolute;
    top: 2px;
    right: 2px;
    width: 15px;
    height: 15px;
    background-color: #10B981;
    border: 2.5px solid #ffffff;
    border-radius: 50%;
    z-index: 3;
    animation: zap-badge-blink 1.4s infinite alternate ease-in-out;
}

/* Card Tooltip Interativo */
.whatsapp-tooltip-card {
    position: absolute;
    right: calc(100% + 14px);
    top: 50%;
    transform: translateY(-50%) translateX(10px);
    background: #ffffff;
    color: #1e293b;
    padding: 8px 14px;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(2, 82, 134, 0.15), 0 2px 8px rgba(0, 0, 0, 0.06);
    border: 1px solid #e2e8f0;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.28s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    z-index: 10;
}

.whatsapp-tooltip-card::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -6px;
    transform: translateY(-50%);
    border-width: 6px 0 6px 6px;
    border-style: solid;
    border-color: transparent transparent transparent #ffffff;
}

.btn-whatsapp-float:hover .whatsapp-tooltip-card {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) translateX(0);
}

.zap-dot-mini {
    width: 8px;
    height: 8px;
    background-color: #10B981;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 6px rgba(16, 185, 129, 0.8);
    animation: zap-badge-blink 1.4s infinite alternate ease-in-out;
}

.zap-support-status {
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    color: #10B981;
    letter-spacing: 0.5px;
}

.zap-support-text {
    font-size: 0.82rem;
    color: #334155;
}

.zap-support-text strong {
    color: #025286;
}

/* Animações Keyframes */
@keyframes zap-float-pulse {
    0%, 100% {
        transform: translateY(0);
        box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45), 0 2px 8px rgba(0, 0, 0, 0.12);
    }
    50% {
        transform: translateY(-4px);
        box-shadow: 0 14px 30px rgba(37, 211, 102, 0.6), 0 4px 12px rgba(0, 0, 0, 0.15);
    }
}

@keyframes zap-radar-pulse {
    0% {
        transform: scale(0.95);
        opacity: 0.85;
    }
    60% {
        opacity: 0.4;
    }
    100% {
        transform: scale(1.65);
        opacity: 0;
    }
}

@keyframes zap-badge-blink {
    0% {
        background-color: #10B981;
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
        transform: scale(0.95);
    }
    50% {
        background-color: #34D399;
        box-shadow: 0 0 10px 4px rgba(16, 185, 129, 0.85);
        transform: scale(1.15);
    }
    100% {
        background-color: #10B981;
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
        transform: scale(0.95);
    }
}

@keyframes zap-icon-attention {
    0%, 82%, 100% {
        transform: scale(1) rotate(0deg);
    }
    86% {
        transform: scale(1.18) rotate(-10deg);
    }
    90% {
        transform: scale(1.18) rotate(10deg);
    }
    94% {
        transform: scale(1.14) rotate(-5deg);
    }
    98% {
        transform: scale(1.08) rotate(0deg);
    }
}

/* Responsividade Mobile */
@media (max-width: 575.98px) {
    .whatsapp-float-wrapper {
        bottom: 18px;
        right: 18px;
    }
    .btn-whatsapp-float {
        width: 54px;
        height: 54px;
        font-size: 28px;
    }
    .zap-badge-online {
        width: 13px;
        height: 13px;
    }
    .whatsapp-tooltip-card {
        display: none !important;
    }
}

/* ==========================================================================
   Redes Sociais - Central do Assinante (Login / Auth)
   ========================================================================== */
.social-login-section {
    margin-top: 1.5rem;
}

.social-divider {
    display: flex;
    align-items: center;
    text-align: center;
    margin-bottom: 1.15rem;
}

.social-divider::before,
.social-divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid #e2e8f0;
}

.social-divider-text {
    padding: 0 0.85rem;
    font-size: 0.8rem;
    font-weight: 700;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

.social-icons-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
}

.social-btn {
    position: relative;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none !important;
    color: #ffffff !important;
    font-size: 1.3rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 2px solid #ffffff;
    cursor: pointer;
}

.social-btn i {
    display: inline-block;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2));
}

.social-btn:hover {
    transform: translateY(-4px) scale(1.1);
    color: #ffffff !important;
}

.social-btn:hover i {
    transform: scale(1.12);
}

.social-btn:active {
    transform: translateY(-1px) scale(1.02);
}

/* Facebook */
.social-btn.facebook {
    background: linear-gradient(135deg, #1877f2 0%, #0d65d9 100%);
    box-shadow: 0 4px 14px rgba(24, 119, 242, 0.38);
}

.social-btn.facebook:hover {
    box-shadow: 0 8px 22px rgba(24, 119, 242, 0.55);
}

/* WhatsApp */
.social-btn.whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.38);
}

.social-btn.whatsapp:hover {
    box-shadow: 0 8px 22px rgba(37, 211, 102, 0.55);
}

/* Instagram */
.social-btn.instagram {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    box-shadow: 0 4px 14px rgba(214, 36, 159, 0.38);
}

.social-btn.instagram:hover {
    box-shadow: 0 8px 22px rgba(214, 36, 159, 0.55);
}






