/* ==========================================================================
   SCROLLBAR E CORES - NICHO ENERGIA (CIANO / AZUL ELÉTRICO)
   ========================================================================== */
.nicho-energia::-webkit-scrollbar {
    width: 6px;
}

.nicho-energia::-webkit-scrollbar-track {
    background: var(--cor-fundo);
}

.nicho-energia::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #005c99 0%, #00e5ff 50%, #005c99 100%);
    border-radius: 10px;
}

/* ==========================================================================
   ESFERAS DE BRILHO (GLOWS AMBIENTES)
   ========================================================================== */
.bg-glow-energia-1, .bg-glow-energia-2 {
    position: fixed;
    border-radius: 50%;
    filter: blur(140px);
    z-index: 0;
    opacity: 0.20;
    pointer-events: none;
    animation: pulsarEnergia 6s infinite alternate;
}

.bg-glow-energia-1 { width: 450px; height: 450px; background: #00a8ff; top: -150px; left: -100px; }
.bg-glow-energia-2 { width: 350px; height: 350px; background: #00e5ff; bottom: -50px; right: -50px; }

@keyframes pulsarEnergia {
    0% { opacity: 0.15; transform: scale(0.95); }
    100% { opacity: 0.30; transform: scale(1.05); }
}

/* ==========================================================================
   HERO URGÊNCIA (TOPO DA PÁGINA PADRÃO ALTA PERFORMANCE)
   ========================================================================== */
.hero-urgencia {
    min-height: 90vh;
    display: flex;
    align-items: center;
    padding: clamp(6rem, 10vw, 8rem) 5% 4rem 5%;
    position: relative;
    z-index: 2;
}

.hero-urgencia-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    max-width: 1300px;
    margin: 0 auto;
    align-items: center;
}

.badge-energia {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(0, 168, 255, 0.1);
    border: 1px solid rgba(0, 168, 255, 0.3);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    color: #00e5ff;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.ponto-pulsante-ciano {
    width: 8px;
    height: 8px;
    background: #00e5ff;
    border-radius: 50%;
    box-shadow: 0 0 10px #00e5ff;
    animation: pulsarPonto 1.5s infinite alternate;
}

@keyframes pulsarPonto {
    0% { transform: scale(1); opacity: 0.7; }
    100% { transform: scale(1.5); opacity: 1; }
}

.titulo-display-urgencia {
    font-size: clamp(3rem, 6vw, 4.5rem);
    font-family: var(--fonte-principal);
    font-weight: 900;
    line-height: 1.05;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    color: #fff;
}

.texto-ouro-ciano-fluido {
    background: linear-gradient(to right, #00a8ff, #00e5ff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.subtitulo-urgencia {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--cor-prata);
    margin-bottom: 2.5rem;
    line-height: 1.6;
    max-width: 600px;
}

.subtitulo-urgencia strong {
    color: #fff;
}

/* BOTOES HERO */
.btn-alerta-energia {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: linear-gradient(135deg, #005c99 0%, #00a8ff 100%);
    border: 1px solid rgba(0, 229, 255, 0.4);
    padding: 18px 36px;
    border-radius: 8px;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 168, 255, 0.3);
}

.btn-alerta-energia:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 229, 255, 0.5);
}

.trust-indicators {
    display: flex;
    gap: 20px;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #a0a0a0;
    font-size: 0.9rem;
    font-weight: 500;
}

.trust-item svg {
    color: #00e5ff;
}

/* IMAGEM E MOLDURA HERO */
.moldura-glass-energia {
    position: relative;
    padding: 15px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 168, 255, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
}

.foto-perfil-vanguarda {
    width: 100%;
    height: auto;
    border-radius: 12px;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 0 20px rgba(0, 168, 255, 0.2));
}

.borda-animada-energia {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    border-radius: 20px;
    border: 2px solid transparent;
    background: linear-gradient(135deg, #00a8ff, transparent, #00e5ff) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask-composite: exclude;
    animation: rodarBorda 4s linear infinite;
    opacity: 0.7;
    z-index: 1;
}

@keyframes rodarBorda {
    100% { filter: hue-rotate(360deg); }
}

/* ==========================================================================
   TEXTO DE AUTORIDADE
   ========================================================================== */
.secao-texto-informativo {
    padding: 2rem 5% 4rem 5%;
    max-width: 900px;
    margin: 0 auto;
    color: var(--cor-prata-claro);
    line-height: 1.8;
    position: relative;
    z-index: 2;
}

.secao-texto-informativo h2 {
    color: #00e5ff;
    margin-bottom: 1.5rem;
    font-size: clamp(1.8rem, 4vw, 2.2rem);
    font-weight: 900;
    font-family: var(--fonte-principal);
}

.secao-texto-informativo p {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    text-align: justify;
}

.secao-texto-informativo strong {
    color: #ffffff;
    font-weight: 700;
}

/* ==========================================================================
   SIMULADOR (GLASSMORPHISM)
   ========================================================================== */
.container-simulador {
    padding: 2rem 5% 6rem 5%;
    position: relative;
    z-index: 5;
}

.card-simulador {
    max-width: 1000px;
    margin: 0 auto;
    background: rgba(10, 10, 15, 0.7);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(0, 168, 255, 0.15);
    border-radius: 16px;
    padding: clamp(2rem, 5vw, 4rem);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.card-simulador h3 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    color: #ffffff;
    text-align: center;
    margin-bottom: 0.5rem;
    font-family: var(--fonte-principal);
    font-weight: 900;
}

.instrucao {
    text-align: center;
    color: #00a8ff;
    margin-bottom: 3.5rem;
    font-weight: 500;
    font-size: 1.1rem;
}

/* Campos de Formulário */
.grid-inputs-dados {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin-bottom: 3.5rem;
}

.campo label {
    display: block;
    color: var(--cor-prata);
    margin-bottom: 10px;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.campo input[type="month"],
.campo input[type="number"] {
    width: 100%;
    padding: 14px;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    color: #ffffff;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.campo input:focus {
    outline: none;
    background: rgba(0, 168, 255, 0.05);
    border-color: #00a8ff;
    box-shadow: 0 0 15px rgba(0, 168, 255, 0.2);
}

.check-group {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 32px;
}

.check-group input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: #00a8ff;
    cursor: pointer;
}

/* ==========================================================================
   GRID DE ELETRODOMÉSTICOS
   ========================================================================== */
.card-simulador h4 {
    color: #ffffff;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid rgba(0, 168, 255, 0.2);
    padding-bottom: 10px;
    font-family: var(--fonte-principal);
}

.grid-eletrodomesticos {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 1.2rem;
    margin-bottom: 4rem;
}

.item-calc {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 20px 15px;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    text-align: center;
}

.item-calc:hover {
    background: rgba(0, 168, 255, 0.05);
    border-color: rgba(0, 168, 255, 0.4);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.item-calc label {
    font-size: 0.85rem;
    color: var(--cor-prata);
    margin-bottom: 15px;
    font-weight: 500;
    line-height: 1.4;
}

.item-calc input {
    width: 60px;
    text-align: center;
    font-weight: 900;
    font-size: 1.2rem;
    padding: 8px;
    border-radius: 6px;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #00e5ff;
    transition: border-color 0.3s;
}

.item-calc input:focus {
    outline: none;
    border-color: #00a8ff;
}

/* ==========================================================================
   BOTÕES E ESTADOS DO RESULTADO
   ========================================================================== */
.btn-container { text-align: center; margin-bottom: 2rem; }

.btn-nicho-principal {
    background: linear-gradient(135deg, #005c99 0%, #00a8ff 100%);
    color: #ffffff;
    border: 1px solid rgba(0, 229, 255, 0.3);
    padding: 20px 50px;
    border-radius: 12px;
    font-weight: 800;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(0, 168, 255, 0.2);
}

.btn-nicho-principal:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 168, 255, 0.4);
    border-color: rgba(0, 229, 255, 0.8);
}

/* Loading */
#loading-simulador { text-align: center; padding: 2rem; }
.spinner {
    width: 50px; height: 50px;
    border: 4px solid rgba(0, 168, 255, 0.1);
    border-left-color: #00e5ff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 15px auto;
}
@keyframes spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }

/* Box de Resultado */
.box-resultado {
    margin-top: 2rem;
    padding: 3rem 2rem;
    background: linear-gradient(180deg, rgba(0, 168, 255, 0.08) 0%, rgba(0, 0, 0, 0.4) 100%);
    border: 1px solid rgba(0, 168, 255, 0.3);
    border-radius: 20px;
    text-align: center;
}

#valor-estimado-devolucao {
    display: block;
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 900;
    color: #00e5ff;
    margin-top: 15px;
    text-shadow: 0 0 30px rgba(0, 229, 255, 0.4);
    font-family: var(--fonte-principal);
}

.disclaimer {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
    margin: 25px 0 40px 0;
    text-align: justify;
    line-height: 1.6;
}

/* Botão WhatsApp */
.whatsapp-btn-container { text-align: center; margin-top: 2rem; }

.btn-whatsapp-nicho {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: #25D366;
    color: #ffffff !important;
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.1rem;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    animation: pulseWhatsapp 2s infinite;
}

.btn-whatsapp-nicho:hover {
    background: #20b858;
    transform: scale(1.05);
}

@keyframes pulseWhatsapp {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ==========================================================================
   RESPONSIVIDADE (MOBILE)
   ========================================================================== */
@media (max-width: 992px) {
    .hero-urgencia-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }
    
    .badge-energia {
        margin: 0 auto 1.5rem auto;
    }
    
    .trust-indicators {
        justify-content: center;
    }
    
    .moldura-glass-energia {
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .grid-inputs-dados {
        grid-template-columns: 1fr;
    }
    .btn-alerta-energia {
        width: 100%;
        justify-content: center;
    }
}