/* Hero Section - Majestic Toffee Style */
.hero {
    padding: 30px 0;
}

.hero-banner {
    width: 100%;
    border-radius: 20px;
    background: url("imagens/images/Logo-Nexus.png");
    background-size: cover;
    background-position: center;
    margin-bottom: 25px;
    position: relative;
    overflow: hidden;
}

/* Fallback se a imagem não carregar */
/* .hero-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.2) 100%);
    z-index: 1;
} */

.hero-content {
    position: relative;
    z-index: 2;
    padding: 60px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-bottom: 15px;
}

.hero-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 20px;
    border-radius: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.hero-card-info h3 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 2px;
}

.hero-card-info p {
    color: var(--text-gray);
    font-size: 13px;
    font-weight: 500;
}

.hero-card-icon {
    width: 45px;
    height: 45px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

/* Animação Pulsante nos Ícones */
@keyframes iconPulse {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 107, 0, 0.4); }
    70% { transform: scale(1.1); box-shadow: 0 0 0 10px rgba(255, 107, 0, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 107, 0, 0); }
}

.hero-card:hover .hero-card-icon {
    animation: iconPulse 1.5s infinite;
}

.icon-acessos { background: rgba(59, 130, 246, 0.1); color: #3b82f6; border: 1px solid rgba(59, 130, 246, 0.2); }
.icon-faqs { background: rgba(249, 115, 22, 0.1); color: #f97316; border: 1px solid rgba(249, 115, 22, 0.2); }
.icon-vendas { background: rgba(16, 185, 129, 0.1); color: #10b981; border: 1px solid rgba(16, 185, 129, 0.2); }
.icon-notas { background: rgba(234, 179, 8, 0.1); color: #eab308; border: 1px solid rgba(234, 179, 8, 0.2); }

.hero-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.btn-secondary {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    color: white;
    padding: 16px;
    border-radius: 10px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 15px;
    text-transform: uppercase;
    font-family: 'Barlow Condensed', sans-serif;
}

.btn-secondary i {
    font-size: 18px;
}

.btn-secondary:hover {
    background-color: #1a1a1a;
    border-color: var(--primary-color);
    transform: translateY(-3px);
}
