/* ==========================================================================
   DESIGN SYSTEM & VARIABLES
   ========================================================================== */
:root {
    --font-primary: 'Outfit', sans-serif;
    
    /* Cores Premium */
    --bg-dark: #090e1a;
    --card-bg: rgba(17, 25, 40, 0.6);
    --card-border: rgba(255, 255, 255, 0.08);
    
    --text-primary: #f8fafc;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;
    
    /* Cores de Ação */
    --brand-blue: #103DBD;
    --brand-blue-glow: rgba(16, 61, 189, 0.35);
    
    --whatsapp-green: #25D366;
    --whatsapp-glow: rgba(37, 211, 102, 0.25);
    --whatsapp-office: #38bdf8;
    --whatsapp-office-glow: rgba(56, 189, 248, 0.25);
    
    --accent-blue: #3b82f6;
    --accent-cyan: #06b6d4;
    
    /* Gradientes */
    --gradient-primary: linear-gradient(135deg, #3b82f6 0%, #06b6d4 100%);
    --gradient-wa: linear-gradient(135deg, #128c7e 0%, #25d366 100%);
    
    /* Transições */
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==========================================================================
   RESET & CONFIGURAÇÕES BÁSICAS
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

body {
    font-family: var(--font-primary);
    background-color: var(--bg-dark);
    color: var(--text-primary);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    overflow-x: hidden;
    line-height: 1.5;
}

/* ==========================================================================
   MESH GRADIENT ANIMADO (FUNDO AURORA) & PARTÍCULAS
   ========================================================================== */
.mesh-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    background: radial-gradient(circle at 50% 50%, #060913 0%, #020306 100%);
}

#particles-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    opacity: 0.25;
}

.mesh-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.12;
    animation: rotate 20s infinite alternate;
    z-index: 0;
}

.blob-1 {
    top: -10%;
    left: -10%;
    width: 50vw;
    height: 50vw;
    background: var(--brand-blue);
    animation-duration: 25s;
}

.blob-2 {
    bottom: -10%;
    right: -10%;
    width: 60vw;
    height: 60vw;
    background: #FBBE31; /* Anteriormente verde, agora dourado combinando com o tema */
    animation-duration: 30s;
}

.blob-3 {
    top: 40%;
    left: 30%;
    width: 40vw;
    height: 40vw;
    background: var(--accent-cyan);
    animation-duration: 20s;
}

@keyframes rotate {
    0% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(50px, 30px) scale(1.1); }
    100% { transform: translate(-20px, -50px) scale(0.9); }
}

/* ==========================================================================
   ESTRUTURA DA PÁGINA
   ========================================================================== */
.container {
    width: 100%;
    max-width: 480px; /* Perfeito para visualização Mobile */
    padding: 24px 16px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    animation: fadeIn 0.8s ease-out;
}

/* ==========================================================================
   GLASSMORPHISM - CARDS BASE
   ========================================================================== */
.card {
    background: var(--card-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--card-border);
    border-radius: 24px;
    padding: 20px;
    transition: var(--transition-smooth);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
}

.card:hover, .card:active {
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

/* ==========================================================================
   HEADER CARD (PERFIL)
   ========================================================================== */
.profile-card {
    align-items: center;
    text-align: center;
    padding: 36px 24px 28px;
    position: relative;
    overflow: hidden;
}

.profile-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--brand-blue) 0%, var(--accent-cyan) 100%);
    box-shadow: 0 1px 15px var(--brand-blue-glow);
}

.profile-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -50%;
    width: 50%;
    height: 3px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 255, 255, 0) 20%, 
        rgba(255, 255, 255, 0.6) 50%, 
        rgba(255, 255, 255, 0) 80%, 
        transparent 100%
    );
    filter: blur(1px);
    mix-blend-mode: overlay;
    animation: shimmer 6s ease-in-out infinite;
    pointer-events: none;
    z-index: 10;
}

@keyframes shimmer {
    0% {
        left: -50%;
    }
    45% {
        left: 100%;
    }
    50% {
        left: 100%;
    }
    95% {
        left: -50%;
    }
    100% {
        left: -50%;
    }
}

.avatar-container {
    position: relative;
    width: 160px;
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.avatar-ring-outer {
    position: absolute;
    width: 138px;
    height: 138px;
    border-radius: 50%;
    border: 2px solid transparent;
    background: conic-gradient(from 0deg, 
        var(--brand-blue) 0%, 
        var(--accent-cyan) 35%, 
        #ffffff 50%, 
        var(--accent-cyan) 65%, 
        var(--brand-blue) 100%
    ) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask-composite: exclude;
    box-shadow: 0 0 15px var(--brand-blue-glow);
    animation: rotate-ring 6s linear infinite;
}

@keyframes rotate-ring {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.avatar-ring-inner {
    position: absolute;
    width: 122px;
    height: 122px;
    border-radius: 50%;
    border: 1.5px solid rgba(6, 182, 212, 0.5);
    box-shadow: 0 0 8px rgba(6, 182, 212, 0.2);
}

.profile-avatar {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    object-fit: cover;
    z-index: 2;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.verified-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: #38bdf8;
    color: white;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2.5px solid var(--bg-dark);
    z-index: 3;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.verified-badge svg {
    width: 10px;
    height: 10px;
}

.profile-name {
    font-family: 'Michroma', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -0.02em;
    margin-bottom: 8px;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
}

.profile-segment {
    font-size: 0.72rem;
    color: #FBBE31;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 16px;
    text-shadow: 0 0 8px rgba(251, 190, 49, 0.2);
}

.badge {
    background: rgba(56, 189, 248, 0.05);
    color: #38bdf8;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 8px 18px;
    border-radius: 20px;
    border: 1px solid rgba(56, 189, 248, 0.3);
    margin-bottom: 20px;
    letter-spacing: 0.03em;
    box-shadow: 0 0 12px rgba(56, 189, 248, 0.1);
    display: inline-block;
}

.profile-bio {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.6;
    max-width: 90%;
    margin: 0 auto;
}

/* ==========================================================================
   BENTO GRID LAYOUT
   ========================================================================== */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.full-width {
    grid-column: span 2;
}

/* ==========================================================================
   CONTACT CARDS (WHATSAPP)
   ========================================================================== */
.contact-card {
    justify-content: space-between;
    height: 100%;
    min-height: 160px;
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.05) 0%, transparent 60%);
    pointer-events: none;
}

.contact-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-bottom: 16px;
}

/* Indicador Online */
.status-indicator {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(37, 211, 102, 0.1);
    padding: 4px 10px;
    border-radius: 12px;
    border: 1px solid rgba(37, 211, 102, 0.2);
}

.status-indicator:has(.status-dot.office) {
    background: rgba(56, 189, 248, 0.1);
    border-color: rgba(56, 189, 248, 0.2);
}

.status-dot {
    width: 6px;
    height: 6px;
    background-color: var(--whatsapp-green);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--whatsapp-green);
    animation: pulse-green 2s infinite;
}

.status-dot.office {
    background-color: var(--whatsapp-office);
    box-shadow: 0 0 8px var(--whatsapp-office);
    animation: pulse-blue 2s infinite;
}

.status-text {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--whatsapp-green);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.status-indicator:has(.status-dot.office) .status-text {
    color: var(--whatsapp-office);
}

/* Ícones de Contato */
.wa-icon {
    width: 32px;
    height: 32px;
    color: var(--whatsapp-green);
    filter: drop-shadow(0 0 6px var(--whatsapp-glow));
}

.wa-icon.office {
    color: var(--whatsapp-office);
    filter: drop-shadow(0 0 6px var(--whatsapp-office-glow));
}

.contact-body h3 {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.contact-body p {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-bottom: 8px;
    line-height: 1.3;
}

/* Tag Informativa Especial */
.callout-tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    color: #a7f3d0;
    background: rgba(16, 185, 129, 0.15);
    padding: 3px 8px;
    border-radius: 6px;
    border: 1px solid rgba(16, 185, 129, 0.3);
    margin-top: 4px;
    letter-spacing: 0.01em;
}

/* Botão de Ação do WhatsApp (Glow e Affordance de clique) */
.chat-now-btn {
    margin-top: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(37, 211, 102, 0.12);
    border: 1px solid rgba(37, 211, 102, 0.3);
    border-radius: 12px;
    padding: 8px 14px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--whatsapp-green);
    transition: var(--transition-smooth);
    width: 100%;
}

.chat-now-btn .arrow-icon {
    width: 12px;
    height: 12px;
    transition: var(--transition-smooth);
}

/* Hover nos WhatsApps faz o botão brilhar */
.whatsapp-card:hover .chat-now-btn {
    background: var(--whatsapp-green);
    color: var(--bg-dark);
    border-color: transparent;
    box-shadow: 0 0 15px rgba(37, 211, 102, 0.4);
}

.whatsapp-card:hover .chat-now-btn .arrow-icon {
    transform: translateX(4px);
}

/* Botão do Escritório */
.chat-now-btn.office-btn {
    width: auto;
    margin-top: 0;
    white-space: nowrap;
    background: rgba(56, 189, 248, 0.12);
    border: 1px solid rgba(56, 189, 248, 0.3);
    color: var(--whatsapp-office);
}

.office-whatsapp:hover .chat-now-btn.office-btn {
    background: var(--whatsapp-office);
    color: var(--bg-dark);
    border-color: transparent;
    box-shadow: 0 0 15px rgba(56, 189, 248, 0.4);
}

.office-whatsapp:hover .chat-now-btn.office-btn .arrow-icon {
    transform: translateX(4px);
}

/* Layout horizontal para card largo */
.flex-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    gap: 12px;
}

/* Efeito Glow nos WhatsApps no Hover */
.primary-whatsapp:hover {
    border-color: rgba(37, 211, 102, 0.4);
    box-shadow: 0 0 25px rgba(37, 211, 102, 0.15);
}

.secondary-whatsapp:hover {
    border-color: rgba(37, 211, 102, 0.4);
    box-shadow: 0 0 25px rgba(37, 211, 102, 0.15);
}

.office-whatsapp:hover {
    border-color: rgba(56, 189, 248, 0.4);
    box-shadow: 0 0 25px rgba(56, 189, 248, 0.15);
}

/* ==========================================================================
   CARD DE CÓPIA CNPJ / PIX
   ========================================================================== */
.copy-card {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 18px 20px;
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.5) 0%, rgba(15, 23, 42, 0.6) 100%);
}

.copy-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.card-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    font-weight: 600;
}

.copy-value {
    display: none; /* Mantido oculto para cópia crua */
}

.copy-display {
    font-family: monospace;
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: 0.02em;
}

.copy-btn {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    padding: 8px 16px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-smooth);
}

.copy-btn svg {
    width: 14px;
    height: 14px;
}

.copy-btn:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.2);
}

/* Estado Ativado de Cópia */
.copy-btn.copied {
    background: rgba(37, 211, 102, 0.15);
    border-color: rgba(37, 211, 102, 0.4);
    color: var(--whatsapp-green);
}

.hidden {
    display: none !important;
}

/* ==========================================================================
   BOTÕES DE AÇÃO ADICIONAIS (CONTATOS E SHARE)
   ========================================================================== */
.action-button-card {
    grid-column: span 2;
    flex-direction: row;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    text-align: left;
    cursor: pointer;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.action-button-card:hover {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.08) 0%, rgba(6, 182, 212, 0.08) 100%);
    border-color: rgba(59, 130, 246, 0.25);
}

.btn-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-cyan);
    transition: var(--transition-smooth);
}

.action-button-card:hover .btn-icon {
    background: var(--gradient-primary);
    color: var(--bg-dark);
    border-color: transparent;
    box-shadow: 0 0 15px rgba(6, 182, 212, 0.3);
}

.btn-label h3 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-primary);
}

.btn-label p {
    font-size: 0.75rem;
    color: var(--text-secondary);
}

/* ==========================================================================
   RODAPÉ
   ========================================================================== */
.footer {
    margin-top: 16px;
    margin-bottom: 24px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.footer p {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.apvs-seal {
    font-weight: 600;
    color: var(--text-secondary) !important;
    font-size: 0.8rem !important;
    letter-spacing: 0.02em;
    margin-top: 4px;
}

/* ==========================================================================
   ANIMAÇÕES & EFEITOS
   ========================================================================== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse-green {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 8px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

@keyframes pulse-blue {
    0% {
        box-shadow: 0 0 0 0 rgba(56, 189, 248, 0.7);
    }
    70% {
        box-shadow: 0 0 0 8px rgba(56, 189, 248, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(56, 189, 248, 0);
    }
}

/* Efeito de carregamento sequencial dos cards */
.container > *:nth-child(1) { animation-delay: 0.1s; }
.bento-grid > *:nth-child(1) { animation-delay: 0.2s; }
.bento-grid > *:nth-child(2) { animation-delay: 0.3s; }
.bento-grid > *:nth-child(3) { animation-delay: 0.4s; }
.bento-grid > *:nth-child(4) { animation-delay: 0.5s; }
.bento-grid > *:nth-child(5) { animation-delay: 0.6s; }
.bento-grid > *:nth-child(6) { animation-delay: 0.7s; }

/* ==========================================================================
   ESTILOS DO CARD DE EMERGÊNCIA 24H
   ========================================================================== */
.status-indicator:has(.emergency-dot) {
    background: rgba(239, 68, 68, 0.1);
    border-color: rgba(239, 68, 68, 0.25);
}

.status-indicator:has(.emergency-dot) .status-text {
    color: #ef4444;
}

.status-dot.emergency-dot {
    background-color: #ef4444;
    box-shadow: 0 0 8px #ef4444;
    animation: pulse-red 1.5s infinite;
}

.wa-icon.emergency {
    color: #ef4444;
    filter: drop-shadow(0 0 6px rgba(239, 68, 68, 0.2));
}

.chat-now-btn.emergency-btn {
    width: auto;
    margin-top: 0;
    white-space: nowrap;
    background: rgba(239, 68, 68, 0.12);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #ef4444;
}

.emergency-card:hover {
    border-color: rgba(239, 68, 68, 0.4) !important;
    box-shadow: 0 0 25px rgba(239, 68, 68, 0.15) !important;
}

.emergency-card:hover .chat-now-btn.emergency-btn {
    background: #ef4444;
    color: var(--bg-dark);
    border-color: transparent;
    box-shadow: 0 0 15px rgba(239, 68, 68, 0.4);
}

.emergency-card:hover .chat-now-btn.emergency-btn .arrow-icon {
    transform: translateX(4px);
}

@keyframes pulse-red {
    0% {
        box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7);
    }
    70% {
        box-shadow: 0 0 0 8px rgba(239, 68, 68, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(239, 68, 68, 0);
    }
}

/* ==========================================================================
   ESTILOS DO VISUALIZADOR DE ASSISTÊNCIA E EMERGÊNCIA 24H
   ========================================================================== */

#emergency-view {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
}

/* Card de Instrução (Aviso de Fila) - Novo Layout Centralizado e Maior */
.instruction-card {
    border-color: rgba(251, 190, 49, 0.3) !important;
    background: linear-gradient(135deg, rgba(251, 190, 49, 0.05) 0%, rgba(17, 25, 40, 0.6) 100%) !important;
    box-shadow: 0 10px 30px rgba(251, 190, 49, 0.05) !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 28px 24px !important;
    gap: 16px;
}

.instruction-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #FBBE31;
}

.warning-lottie-large {
    display: block;
    width: 100px;
    height: 100px;
    flex-shrink: 0;
}

.instruction-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.instruction-card p strong {
    color: #FBBE31;
    font-weight: 700;
}

.instruction-text-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
}

.sub-warning {
    font-size: 0.8rem !important;
    color: #fcd34d !important;
    border-top: 1px solid rgba(251, 190, 49, 0.15);
    padding-top: 12px;
    line-height: 1.5;
}

/* Grid de Emergência */
.emergency-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
}

/* Cards Individuais de Assistência */
.assistance-card {
    background: linear-gradient(135deg, rgba(17, 25, 40, 0.7) 0%, rgba(9, 14, 26, 0.8) 100%) !important;
    border: 1px solid rgba(255, 255, 255, 0.06) !important;
    min-height: auto !important;
    padding: 18px 20px !important;
}

.assistance-card:hover {
    border-color: rgba(239, 68, 68, 0.35) !important;
    box-shadow: 0 12px 30px rgba(239, 68, 68, 0.12) !important;
}

.assistance-badge {
    background: rgba(16, 61, 189, 0.12) !important;
    border: 1px solid rgba(16, 61, 189, 0.35) !important;
    color: #60a5fa !important;
    margin-bottom: 0 !important;
    padding: 4px 12px !important;
    font-size: 0.7rem !important;
}

.assistance-badge.truck {
    background: rgba(6, 182, 212, 0.12) !important;
    border-color: rgba(6, 182, 212, 0.35) !important;
    color: #22d3ee !important;
}

.assistance-badge.suhai {
    background: rgba(251, 190, 49, 0.12) !important;
    border-color: rgba(251, 190, 49, 0.35) !important;
    color: #fcd34d !important;
}

.assistance-desc {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-top: 4px;
}

.assistance-card .emergency-btn {
    margin-top: 16px;
    justify-content: center;
    background: rgba(239, 68, 68, 0.08);
    border: 1px solid rgba(239, 68, 68, 0.2);
    color: #ef4444;
}

.assistance-card:hover .emergency-btn {
    background: #ef4444 !important;
    color: var(--bg-dark) !important;
    border-color: transparent !important;
    box-shadow: 0 0 15px rgba(239, 68, 68, 0.4) !important;
}

/* Botão de Voltar */
.back-btn {
    border: 1px solid rgba(255, 255, 255, 0.06) !important;
}

.back-btn:hover {
    background: rgba(255, 255, 255, 0.04) !important;
    border-color: rgba(255, 255, 255, 0.15) !important;
    transform: translateY(-2px);
}

.back-icon svg {
    transition: var(--transition-smooth);
}

.back-btn:hover .back-icon {
    background: rgba(255, 255, 255, 0.08) !important;
    color: var(--text-primary) !important;
    box-shadow: none !important;
    border-color: rgba(255, 255, 255, 0.12) !important;
}

.back-btn:hover .back-icon svg {
    transform: translateX(-4px);
}

/* Acordeão da Suhai Seguros */
.suhai-accordion-card {
    transition: var(--transition-smooth);
}

.suhai-accordion-card:hover {
    border-color: rgba(251, 190, 49, 0.25) !important;
    box-shadow: 0 12px 30px rgba(251, 190, 49, 0.08) !important;
}

.chevron-icon-container {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fcd34d;
    transition: var(--transition-smooth);
}

.suhai-accordion-card:hover .chevron-icon-container {
    background: rgba(251, 190, 49, 0.15);
    border-color: rgba(251, 190, 49, 0.3);
    box-shadow: 0 0 10px rgba(251, 190, 49, 0.2);
}

.chevron-icon {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.suhai-accordion-card.active .chevron-icon {
    transform: rotate(180deg);
}

/* Painel Expansível */
.suhai-panel {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    margin-top: 0;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease, margin-top 0.3s ease;
}

.suhai-accordion-card.active .suhai-panel {
    margin-top: 18px;
    max-height: 500px;
    opacity: 1;
}

/* Sub-Cards da Suhai */
.suhai-sub-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 14px 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sub-card-title {
    font-size: 0.85rem;
    color: var(--text-primary);
    text-align: left;
}

.sub-card-title strong {
    color: #fcd34d;
    font-weight: 600;
}

.sub-card-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
}

/* Botões de Ligação do Sub-Card */
.sub-call-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 10px 14px;
    text-decoration: none;
    color: var(--text-primary);
    transition: var(--transition-smooth);
    width: 100%;
}

.sub-call-btn span:first-child {
    font-size: 0.85rem;
    font-weight: 700;
}

.sub-call-desc {
    font-size: 0.7rem;
    color: var(--text-muted);
    margin-top: 2px;
}

.sub-call-btn:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-1px);
}

/* Destaque para assistência geral */
.sub-call-btn.suhai-primary-btn {
    background: rgba(251, 190, 49, 0.08);
    border-color: rgba(251, 190, 49, 0.25);
    color: #fcd34d;
}

.sub-call-btn.suhai-primary-btn:hover {
    background: #fcd34d;
    color: var(--bg-dark);
    border-color: transparent;
    box-shadow: 0 0 12px rgba(251, 190, 49, 0.3);
}

.sub-call-btn.suhai-primary-btn:hover .sub-call-desc {
    color: rgba(9, 14, 26, 0.7);
}

/* Suporte para Dispositivos Retina / Alto Contraste */
@media (prefers-reduced-motion: reduce) {
    .mesh-blob {
        animation: none;
    }
    .container, .bento-grid > * {
        animation: none;
    }
    ::view-transition-group(*),
    ::view-transition-old(*),
    ::view-transition-new(*) {
        animation: none !important;
    }
}
