html, body, .hero, .main-content, section {
    color: #333 !important;
    font-family: 'Atkinson Hyperlegible', Arial, sans-serif !important;
}

body {
    background: url('https://img.freepik.com/fotos-gratis/foto-aerea-das-luzes-dos-edificios-da-cidade-a-noite-perto-do-mar-e-das-montanhas_181624-12686.jpg?semt=ais_hybrid&w=740') 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;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.nav-menu-wrapper {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo img {
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    transition: filter 0.3s;
}

.logo-text-pro, .logo-subtitle-pro, .logo-corporativas {
    color: #000000 !important;
}

.header.scrolled .logo-text-pro,
.header.scrolled .logo-subtitle-pro,
.header.scrolled .logo-corporativas {
    color: #ffffff !important;
}

.nav-link {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-link:hover {
    color: #52b34d;
}

.nav-cta {
    background: #52b34d !important;
    color: #fff !important;
    padding: 0.8rem 1.5rem;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s;
}

.nav-cta:hover {
    background: #fff !important;
    color: #52b34d !important;
    border: 1px solid #52b34d !important;
}

/* 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: 120px 0 80px 0;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(82, 179, 77, 0.1), rgba(123, 196, 119, 0.1));
    pointer-events: none;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero h1 span {
    color: #52b34d;
}

.hero p {
    font-size: 1.3rem;
    line-height: 1.6;
    margin-bottom: 3rem;
    max-width: 800px;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #52b34d;
    display: block;
}

.stat-label {
    font-size: 1rem;
    color: #ccc;
    margin-top: 0.5rem;
}

/* Main Content */
.main-content {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
}

/* 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 .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;
    text-align: center;
}

.service-item .service-content p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #666;
    margin: 0;
}

.service-item:hover .service-icon i {
    color: #181818 !important;
    filter: none;
}

.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;
    text-align: center;
}

.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;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.service-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    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-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.service-icon {
    margin-bottom: 20px;
}

.service-icon i {
    font-size: 2.5rem;
    color: #52b34d;
    text-shadow: 0 0 15px rgba(82, 179, 77, 0.3);
    transition: all 0.3s ease;
}

.service-card:hover .service-icon i {
    transform: scale(1.1);
    color: #7bc477;
}

.service-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
    text-align: center;
}

.service-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
    margin: 0;
}

/* Benefits Section */
.benefits-section {
    padding: 40px 0;
}

.green-title {
    color: #52b34d !important;
}

.benefits-grid {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 30px;
}

.benefit-item {
    padding: 24px 10px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(82, 179, 77, 0.2);
    margin: 0;
}

.benefit-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.benefit-icon {
    margin-bottom: 20px;
}

.benefit-icon i {
    font-size: 2.5rem;
    text-shadow: 0 0 15px rgba(82, 179, 77, 0.3);
    transition: all 0.3s ease;
}

.benefit-item:hover .benefit-icon i {
    transform: scale(1.1);
    color: #7bc477;
}

.benefit-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    text-align: center;
}

.benefit-content h3 {
    width: 100%;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.3rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.benefit-content p {
    text-align: center;
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
    margin: 0;
}

/* Footer */
.footer {
    background: #181818;
    color: #fff;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.footer-section h4 {
    color: #52b34d;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: 10px;
    color: #ccc;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: #52b34d;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.newsletter-form input[type="email"] {
    flex: 1;
    padding: 10px 15px;
    border: 1px solid #333;
    border-radius: 5px;
    background: #222;
    color: #fff;
}

.newsletter-form button {
    padding: 10px 20px;
    background: #52b34d;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
}

.newsletter-form button:hover {
    background: #7bc477;
}

/* Floating Chat */
.floating-chat {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: #fff;
    border-radius: 50%;
    text-decoration: none;
    font-size: 1.5rem;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

/* Scroll to Top */
.scroll-top {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: #52b34d;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(82, 179, 77, 0.3);
    transition: all 0.3s ease;
    z-index: 999;
}

.scroll-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(82, 179, 77, 0.4);
    background: #7bc477;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .services-grid, .benefits-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 2rem;
    }
    
    .services-grid, .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .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) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .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;
    }
} 