/* ===== HERO ANIMATIONS ===== */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: none; }
}
@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(40px); }
    to { opacity: 1; transform: none; }
}
@keyframes bounceIn {
    0% { transform: scale(0.7); opacity: 0; }
    60% { transform: scale(1.1); opacity: 1; }
    100% { transform: scale(1); }
}
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(16,185,129,0.3); }
    70% { box-shadow: 0 0 0 12px rgba(16,185,129,0); }
    100% { box-shadow: 0 0 0 0 rgba(16,185,129,0); }
}
@keyframes float {
    0% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0); }
}

/* ========================================
   HOME PAGE - TEMA ESCURO
   ======================================== */
.text-gradient {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.text-accent { color: var(--accent-color) !important; }
.text-success { color: var(--success-color) !important; }
.text-danger { color: var(--error-color) !important; }
.hero-cards-container {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: 1.5rem;
    backdrop-filter: blur(10px);
}
.section-badge {
    display: inline-block;
    background: var(--gradient-primary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
}
.section-badge-warning {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}
.saas-benefits-section {
    background: var(--bg-secondary) !important;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}
.saas-benefit-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: 2rem;
    height: 100%;
    transition: all 0.3s ease;
}
.saas-benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}
.benefit-icon {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}
.benefit-icon i { font-size: 1.75rem; color: white; }
.benefit-icon-green { background: linear-gradient(135deg, #10b981 0%, #059669 100%); }
.benefit-icon-purple { background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%); }
.benefit-icon-amber { background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%); }
.benefit-icon-red { background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%); }
.benefit-icon-cyan { background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%); }
.benefit-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}
.benefit-description {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}
.benefit-description strong { color: var(--text-primary); }
.comparison-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: 2rem;
    box-shadow: var(--shadow-lg);
}
.comparison-title {
    text-align: center;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}
.comparison-title i { color: var(--warning-color); }
.comparison-table {
    margin-bottom: 0;
    color: var(--text-primary);
}
.comparison-table th {
    background: var(--bg-tertiary);
    border-color: var(--border-color);
    color: var(--text-primary);
    font-weight: 600;
    padding: 1rem;
}
.comparison-table td {
    padding: 1rem;
    vertical-align: middle;
    border-color: var(--border-color);
    color: var(--text-secondary);
    background: var(--bg-card);
}
.comparison-table tbody tr:hover td { background: var(--bg-hover); }
.badge-primary {
    background: var(--gradient-primary);
    color: white;
    padding: 0.35rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}
.badge-secondary {
    background: var(--bg-tertiary);
    color: var(--text-muted);
    padding: 0.35rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}
.special-offers-section { background: var(--bg-primary) !important; }
.offer-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: 2rem;
    height: 100%;
    position: relative;
    transition: all 0.3s ease;
}
.offer-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}
.offer-icon {
    width: 70px;
    height: 70px;
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}
.offer-icon i { font-size: 2rem; color: white; }
.offer-icon-green { background: linear-gradient(135deg, #10b981 0%, #059669 100%); }
.offer-icon-purple { background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%); }
.offer-icon-cyan { background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%); }
.offer-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}
.offer-badge-green { background: linear-gradient(135deg, #10b981, #059669); }
.offer-badge-purple { background: linear-gradient(135deg, #8b5cf6, #7c3aed); }
.offer-badge-cyan { background: linear-gradient(135deg, #06b6d4, #0891b2); }
.offer-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}
.offer-description {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}
.offer-description strong { color: var(--text-primary); }
.offer-features {
    list-style: none;
    padding: 0;
    margin: 0;
}
.offer-features li {
    color: var(--text-secondary);
    padding: 0.4rem 0;
    font-size: 0.9rem;
}
.offer-features i { color: var(--accent-color); margin-right: 0.5rem; }
.segments-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: 2rem;
}
.segments-title {
    text-align: center;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}
.segments-title i { color: var(--primary-color); }
.segments-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
}
.segment-tag {
    background: var(--bg-tertiary);
    color: var(--text-secondary);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}
.segment-tag:hover {
    background: var(--bg-hover);
    color: var(--text-primary);
    border-color: var(--primary-color);
}
.segment-tag i { font-size: 1rem; color: var(--primary-color); }
.segment-tag-highlight {
    background: var(--gradient-primary);
    color: white;
    border-color: transparent;
}
.segment-tag-highlight i { color: white; }
.segments-footer {
    text-align: center;
    margin-top: 1.5rem;
    margin-bottom: 0;
    color: var(--text-muted);
}
.segments-footer a {
    color: var(--warning-color);
    text-decoration: none;
    font-weight: 600;
}
.segments-footer a:hover { text-decoration: underline; }
.pricing-description {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}
.pricing-yearly {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}
.check-icon { color: var(--accent-color); }
.check-icon-highlight { color: var(--accent-color); }
.check-icon-phone { color: var(--primary-color); }
.highlight-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
}
.highlight-badge-success {
    background: rgba(16, 185, 129, 0.15);
    color: var(--accent-color);
    border: 1px solid rgba(16, 185, 129, 0.3);
}
.highlight-badge-primary {
    background: rgba(99, 102, 241, 0.15);
    color: var(--primary-light);
    border: 1px solid rgba(99, 102, 241, 0.3);
}
.cta-footer {
    margin-top: 2rem;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}
.mobile-menu {
    background: var(--bg-secondary);
    padding: 1rem;
    margin-top: 1rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    display: none;
}
.mobile-menu.active { display: block; }
.mobile-nav-link {
    display: block;
    padding: 0.75rem 1rem;
    color: var(--text-secondary);
    text-decoration: none;
    border-radius: var(--radius-md);
    transition: all 0.2s ease;
}
.mobile-nav-link:hover {
    background: var(--bg-hover);
    color: var(--text-primary);
}
.mobile-menu-btn {
    background: transparent;
    border: none;
    padding: 0.5rem;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.hamburger-line {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: all 0.3s ease;
}
.mobile-menu-btn.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(4px, 4px);
}
.mobile-menu-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
}
.mobile-menu-btn.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -4px);
}
@@media (max-width: 768px) {
    .section-title { font-size: 1.75rem; }
    .section-subtitle { font-size: 1rem; }
    .benefit-icon, .offer-icon { width: 50px; height: 50px; }
    .benefit-icon i, .offer-icon i { font-size: 1.5rem; }
    .comparison-table { font-size: 0.85rem; }
    .segment-tag { font-size: 0.75rem; padding: 0.4rem 0.75rem; }
}
.hero-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(145deg, #161622 0%, #1e1e2e 100%);
}
.hero-content { position: relative; z-index: 2; }
.hero-title {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1rem;
}
.hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: rgba(255,255,255,0.8);
}
.hero-benefits {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 0 0;
    font-size: 1.05rem;
}
.hero-benefits li {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.hero-guarantee {
    color: var(--success-color);
    font-weight: 600;
    font-size: 1rem;
}
.hero-badge {
    position: absolute;
    bottom: -1.5rem;
    left: 1rem;
    background: var(--bg-secondary);
    color: var(--primary-color);
    padding: 0.5rem 1.25rem;
    border-radius: 2rem;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    font-size: 1rem;
}
.animate-fadeInUp { opacity: 0; animation: fadeInUp 1s forwards; }
.animate-fadeInRight { opacity: 0; animation: fadeInRight 1s forwards; }
.animate-bounceIn { animation: bounceIn 1s; }
.animate-pulse { animation: pulse 2s infinite; }
.animate-float { animation: float 3s ease-in-out infinite; }
.delay-1 { animation-delay: 0.2s !important; }
.delay-2 { animation-delay: 0.4s !important; }
.delay-3 { animation-delay: 0.6s !important; }
.delay-4 { animation-delay: 0.8s !important; }
.delay-5 { animation-delay: 1s !important; }
.hero-bg-shape-1 {
    position: absolute;
    top: -120px; left: -120px;
    width: 320px; height: 320px;
    background: radial-gradient(circle at 30% 30%, #6366f1 0%, transparent 70%);
    z-index: 0;
    filter: blur(20px);
    opacity: 0.5;
}
.hero-bg-shape-2 {
    position: absolute;
    bottom: -100px; right: -100px;
    width: 260px; height: 260px;
    background: radial-gradient(circle at 70% 70%, #10b981 0%, transparent 70%);
    z-index: 0;
    filter: blur(20px);
    opacity: 0.4;
}
