html, body, .hero, .main-content, section {
    color: #333 !important;
    font-family: 'Atkinson Hyperlegible', Arial, sans-serif !important;
}

html, body {
    background: url('../images/background-business.svg') no-repeat center top fixed !important;
    background-size: cover !important;
    /* Se quiser usar uma imagem, substitua a linha acima por:
    background: url('URL_DA_IMAGEM') no-repeat center center fixed !important;
    background-size: cover !important;
    */
}

/* Loader */






@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    background: transparent !important;
}

.header.scrolled {
    background: #181818 !important;
    backdrop-filter: blur(10px) !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.header .nav-link {
    color: #ffffff !important;
    transition: color 0.3s;
}

.header .logo-title,
.header .logo-subtitle {
    color: #000000 !important;
    transition: color 0.3s;
}

.header .nav-link:hover,
.header .logo-title:hover,
.header .logo-subtitle:hover {
    color: #52b34d !important;
}

.header.scrolled .nav-link {
    color: #ffffff !important;
}

.header.scrolled .logo-title,
.header.scrolled .logo-subtitle {
    color: #ffffff !important;
}

.header.scrolled .nav-link:hover,
.header.scrolled .logo-title:hover,
.header.scrolled .logo-subtitle:hover {
    color: #52b34d !important;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
}

.logo img {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.logo-text-pro, .logo-title-pro, .logo-subtitle-pro, .logo-corporativas {
    color: ;
}

.header.scrolled .logo-text-pro,
.header.scrolled .logo-title-pro,
.header.scrolled .logo-subtitle-pro,
.header.scrolled .logo-corporativas {
    color: ;
}

.nav-menu-wrapper {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav-link {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #52b34d;
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: #52b34d;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #52b34d;
    color: #fff;
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.nav-cta:hover {
    background: #fff;
    color: #52b34d;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 5px;
}

@media (max-width: 1024px) {
    .mobile-menu-btn {
        display: block;
    }

    .nav-menu-wrapper {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: rgba(24, 24, 24, 0.95);
        backdrop-filter: blur(10px);
        padding: 80px 30px 30px;
        transition: right 0.3s ease;
    }

    .nav-menu-wrapper.active {
        right: 0;
    }

    .nav-menu {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .nav-link {
        font-size: 1.1rem;
    }

    .nav-cta {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .header {
        padding: 15px 0;
    }

    .logo img {
        width: 45px;
        height: 45px;
    }

    .logo-title-pro {
        font-size: 1.2rem;
    }

    .logo-subtitle-pro {
        font-size: 0.8rem;
    }
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(24, 24, 24, 0.85), rgba(24, 24, 24, 0.85)), url('https://previews.123rf.com/images/klss/klss1604/klss160400051/55745726-financial-graphs-and-charts-accounting-with-a-green-background.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: #fff;
    padding: 80px 0 40px 0;
    position: relative;
}

.hero::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 120px;
    background: linear-gradient(to bottom, rgba(24,24,24,0) 0%, #111 100%);
    z-index: 2;
    pointer-events: none;
}

.hero .container, .hero-content {
    position: relative;
    z-index: 3;
}

.hero h1 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #fff;
    text-align: center;
}

.hero h1 span {
    color: #52b34d;
}

.hero p, .hero .hero-subtitle {
    color: #ccc;
    font-size: 1.2rem;
    margin-bottom: 2rem;
    text-align: center;
}

/* Section Titles */
.section-title {
    color: #fff;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #52b34d;
    border-radius: 2px;
}

/* Services Section */
.services-section {
    padding: 100px 0;
    background: #fff !important;
}

.service-card {
    background: #fff !important;
    color: #333 !important;
    border-radius: 10px !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05) !important;
    text-align: center !important;
    border: 1px solid rgba(82,179,77,0.1) !important;
}

.service-card:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15) !important;
    border: 1px solid rgba(82,179,77,0.2) !important;
}

.service-icon {
    font-size: 2.5em !important;
    color: #fff !important;
    margin-bottom: 20px !important;
    display: flex !important;
    justify-content: center !important;
    text-shadow: 0 0 10px rgba(255,255,255,0.2) !important;
}

.service-icon i,
.service-icon svg {
    color: #fff !important;
    fill: #fff !important;
    filter: none !important;
    opacity: 1 !important;
    transition: color 0.3s, fill 0.3s !important;
}

.service-card h3 {
    color: #52b34d !important;
    margin-bottom: 15px !important;
    font-size: 1.4em !important;
    font-weight: 700 !important;
}

.service-card p {
    color: #ccc !important;
    line-height: 1.6 !important;
    text-align: center !important;
}

/* Benefits Section */
.benefits-section {
    padding: 100px 0;
    background: #fff !important;
}

.benefit-item {
    background: #fff !important;
    color: #333 !important;
    border-radius: 10px !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08) !important;
    border: 1px solid #e5e5e5 !important;
    text-align: center !important;
    padding: 30px 20px !important;
    margin-bottom: 24px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
}

.benefit-icon {
    border-radius: 50%;
    font-size: 2.5em !important;
    color: #fff !important;
    margin-bottom: 20px !important;
    display: flex !important;
    justify-content: center !important;
    text-shadow: 0 0 10px rgba(255,255,255,0.2) !important;
}

.benefit-icon i,
.benefit-icon svg {
    color: #fff !important;
    filter: none !important;
    opacity: 1 !important;
    transition: color 0.3s, fill 0.3s !important;
}

.benefit-item:hover .benefit-icon i,
.benefit-item:hover .benefit-icon svg {
    color: #52b34d !important;
    fill: #52b34d !important;
    text-shadow: 0 0 15px rgba(82,179,77,0.3) !important;
}

.benefit-content h3 {
    color: #52b34d !important;
    margin-bottom: 15px !important;
    font-size: 1.4em !important;
    font-weight: 700 !important;
    text-align: center !important;
}

.benefit-content p {
    color: #333 !important;
    line-height: 1.6 !important;
    text-align: center !important;
}

/* CTA Section */
.cta-section {
    padding: 40px 0 0 0;
    background: #2E586E;
    color: white;
    text-align: center;
    margin-bottom: 0;
}

.cta-section + .footer {
    margin-top: 0;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #52b34d !important;
    color: #fff !important;
    padding: 16px 32px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: 30px;
    border: none;
    box-shadow: 0 4px 15px rgba(82,179,77,0.2);
    justify-content: center;
}

.cta-button:hover {
    background: #181818 !important;
    color: #52b34d !important;
    border: 1px solid #52b34d !important;
}

/* Services Grid Layout */
.services-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 30px !important;
    margin: 40px auto !important;
    max-width: 1200px !important;
    padding: 0 20px !important;
}

@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr !important;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }

    .service-card {
        padding: 30px;
    }
}

/* Main Content */
.main-content {
    margin-bottom: 10px;
}

section {
    margin-bottom: 16px !important;
}

/* Footer */
.footer {
    background: #181818;
    color: #fff;
    padding: 12px 0;
    margin-top: 0;
}

.footer-content {
    margin-top: 0;
}

.footer, .footer * {
    color: #fff !important;
    text-decoration: none !important;
}

.footer-section h4,
.footer-section ul li,
.footer-section ul li a,
.footer-section ul li a:hover,
.footer-section ul li i,
.footer-section ul li a i,
.social-links a,
.social-links a:hover {
    color: #fff !important;
    background: transparent !important;
    box-shadow: none !important;
    border: none !important;
}

.footer-section ul li i,
.footer-section ul li a i {
    color: #fff !important;
}

.newsletter-form button {
    background: #52b34d !important;
    color: #fff !important;
    border: none !important;
}

.newsletter-form button:hover {
    background: #fff !important;
    color: #52b34d !important;
    border: 1px solid #52b34d !important;
}

.newsletter-form input[type="email"] {
    border: 1px solid #444;
    color: #fff;
    background: #222;
}

/* Floating Elements */
.floating-chat .whatsapp-btn {
    background: #52b34d;
    color: #fff;
    transition: all 0.3s;
}

.floating-chat .whatsapp-btn:hover {
    background: #000;
    color: #fff;
}

.scroll-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    background: #52b34d !important;
    color: #fff !important;
    border-radius: 50%;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 18px rgba(82,179,77,0.18);
    z-index: 1001;
    font-size: 2.2rem;
    cursor: pointer;
    transition: background 0.3s, color 0.3s;
}

.scroll-top:hover {
    background: #fff !important;
    color: #52b34d !important;
}

.floating-chat {
    position: fixed;
    right: 30px;
    bottom: 100px;
    z-index: 1001;
}

.whatsapp-btn {
    background: #25d366;
    color: #fff !important;
    border-radius: 50%;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 18px rgba(37,211,102,0.18);
    font-size: 2.2rem;
    transition: background 0.3s, color 0.3s;
}

.whatsapp-btn:hover {
    background: #128c7e;
    color: #fff !important;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(82, 179, 77, .1);
    transition: all 0.3s ease;
    font-size: 1.5rem;
}

.social-links a:hover {
    background: #52b34d;
    transform: translateY(-3px);
}

.social-links a:hover i {
    color: #fff !important;
}

/* Footer Section */
.footer-section h4 {
    color: #fff !important;
    margin-bottom: 20px;
    font-size: 1.2rem;
    font-weight: 600;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

.footer-section ul li i {
    margin-right: 10px;
    width: 20px;
    text-align: center;
    font-size: 1.1em;
}

.footer-section ul li a {
    display: flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.8) !important;
    transition: all 0.3s ease;
}

.footer-section ul li a:hover {
    color: #52b34d !important;
    transform: translateX(5px);
}

.footer-section ul li a i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.footer-section ul li a:hover i {
    transform: translateX(3px);
}

.footer-section ul,
.footer-section ul li,
.footer-section ul li a {
    list-style: none !important;
}

/* Apply font to all text elements */
h1, h2, h3, h4, h5, h6, p, span, a, li, button, input, textarea, label, .nav-link, .logo-title, .logo-subtitle, .service-card h3, .service-card p, .benefit-content h3, .benefit-content p, .cta-button, .hero-subtitle, .section-title, .footer, .footer * {
    font-family: 'Atkinson Hyperlegible', Arial, sans-serif !important;
}

/* Footer, scroll e zap ícones visíveis e corretos */
.footer, .footer-section ul li i, .footer-section ul li a i, .footer-section ul li a, .social-links a, .service-icon i, .service-icon svg, .scroll-top i, .floating-chat i {
    color: #fff !important;
    transition: color 0.3s;
}

.footer-section ul li a:hover, .footer-section ul li a i:hover, .social-links a:hover, .service-icon:hover i, .service-icon:hover svg, .scroll-top:hover i, .floating-chat:hover i {
    color: #52b34d !important;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 40px auto;
    max-width: 1200px;
    padding: 0 20px;
}

@media (max-width: 1024px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }
}

.green-title {
    color: #52b34d !important;
}

/* Services Overview */
.services-overview {
    margin-bottom: 80px;
}

.services-intro {
    text-align: center;
    margin-bottom: 40px;
}

.services-intro p {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #333;
    max-width: 800px;
    margin: 0 auto;
    font-weight: 500;
}

.services-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.service-item {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    padding: 25px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(82, 179, 77, 0.2);
    transition: all 0.3s ease;
}

.service-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.service-item:hover .service-icon i {
    color: #181818 !important;
    filter: none;
}

.service-item .service-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #52b34d, #7bc477);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(82, 179, 77, 0.3);
}

.service-item .service-icon i {
    font-size: 1.5rem;
    color: #ffffff;
}

.service-item .service-content {
    flex: 1;
}

.service-item .service-content h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 8px;
}

.service-item .service-content p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #666;
    margin: 0;
}

.services-differential {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(82, 179, 77, 0.2);
    max-width: 800px;
    margin: 0 auto;
}

.services-differential h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

.services-differential p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 25px;
}

.differential-tagline {
    font-size: 1.3rem;
    font-weight: 700;
    color: #52b34d;
    margin-bottom: 30px;
    font-style: italic;
}

.services-differential .cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #52b34d, #7bc477);
    color: #ffffff;
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(82, 179, 77, 0.3);
}

.services-differential .cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(82, 179, 77, 0.4);
    background: linear-gradient(135deg, #7bc477, #52b34d);
}

.services-differential .cta-button i {
    font-size: 1.1rem;
}

/* Responsive Styles for New Sections */
@media (max-width: 768px) {
    .services-overview {
        margin-bottom: 60px;
    }
    
    .services-intro p {
        font-size: 1rem;
        line-height: 1.5;
    }
    
    .services-list {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 40px;
    }
    
    .service-item {
        padding: 20px;
        gap: 15px;
    }
    
    .service-item .service-icon {
        width: 45px;
        height: 45px;
    }
    
    .service-item .service-icon i {
        font-size: 1.3rem;
    }
    
    .service-item .service-content h3 {
        font-size: 1rem;
    }
    
    .service-item .service-content p {
        font-size: 0.9rem;
    }
    
    .services-differential {
        padding: 30px 20px;
        margin: 0 15px;
    }
    
    .services-differential h3 {
        font-size: 1.3rem;
    }
    
    .services-differential p {
        font-size: 1rem;
    }
    
    .differential-tagline {
        font-size: 1.1rem;
    }
    
    .services-differential .cta-button {
        padding: 12px 25px;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .services-intro p {
        font-size: 0.95rem;
    }
    
    .service-item {
        padding: 15px;
        gap: 12px;
    }
    
    .service-item .service-icon {
        width: 40px;
        height: 40px;
    }
    
    .service-item .service-icon i {
        font-size: 1.2rem;
    }
    
    .service-item .service-content h3 {
        font-size: 0.95rem;
    }
    
    .service-item .service-content p {
        font-size: 0.85rem;
    }
    
    .services-differential {
        padding: 25px 15px;
    }
    
    .services-differential h3 {
        font-size: 1.2rem;
    }
    
    .services-differential p {
        font-size: 0.95rem;
    }
    
    .differential-tagline {
        font-size: 1rem;
    }
    
    .services-differential .cta-button {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
} 