html, body, .hero, .main-content, section {
    color: #333 !important;
    font-family: 'Atkinson Hyperlegible', Arial, sans-serif !important;
}

html, body {
    background-size: cover !important;
    position: relative;
}

/* 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);
}

.header .nav-link {
    color: #ffffff !important;
    transition: color 0.3s;
}

.header .logo-title,
.header .logo-subtitle {
    color: #000000 !important;
    transition: color 0.3s;
}

.header.scrolled .nav-link:hover,
.header.scrolled .logo-title:hover,
.header.scrolled .logo-subtitle:hover {
    color: #52b34d !important;
}

.header.scrolled .nav-link {
    color: #ffffff !important;
}

.header.scrolled .logo-title,
.header.scrolled .logo-subtitle {
    color: #ffffff !important;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.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: ;
}

.logo-title-pro {
    font-family: 'Atkinson Hyperlegible', Arial, sans-serif !important;
    font-size: 1.7rem !important;
    font-weight: 700 !important;
    color: #fff !important;
    letter-spacing: 0 !important;
    line-height: 1.1 !important;
    margin-bottom: 0 !important;
    margin-top: 0 !important;
}

.logo-subtitle-pro {
    font-family: 'Atkinson Hyperlegible', Arial, sans-serif !important;
    font-size: 1rem !important;
    font-weight: 500 !important;
    color: #52b34d !important;
    letter-spacing: 0.02em !important;
    margin-top: -0.2rem !important;
    margin-bottom: 0 !important;
}

.nav-menu-wrapper {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
    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;
}

/* 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 p, .hero .hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
    margin-bottom: 2rem;
}




/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(45deg, rgba(82,179,77,0.1) 0%, rgba(24,24,24,0.3) 100%);
    position: relative;
    overflow: hidden;
}

.cta-section + .footer {
    margin-top: 0;
}

.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #52b34d;
    color: #fff;
    padding: 15px 30px;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: 2rem;
}

.cta-button:hover {
    background: #fff;
    color: #52b34d;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(82, 179, 77, 0.2);
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 3rem;
}

/* Main Content */
.main-content {
    padding: 80px 0;
}

section {
    padding: 80px 0;
    position: relative;
}

/* Footer */
.footer {
    background: #181818;
    padding: 80px 0 40px;
    margin-top: 80px;
    position: relative;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.footer, .footer * {
    color: rgba(255, 255, 255, 0.8);
}

.footer-section h4,
.footer-section .footer-title {
    color: #fff;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 10px;
}

.footer-section h4::after,
.footer-section .footer-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background: #52b34d;
}

.footer-section ul li i,
.footer-section ul li a i {
    color: #52b34d;
    margin-right: 10px;
}

.newsletter-form button {
    background: #52b34d;
    color: #fff;
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background: #fff;
    color: #52b34d;
}

.newsletter-form input[type="email"] {
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
    width: 100%;
    margin-bottom: 10px;
}

/* Floating Chat */
.floating-chat .whatsapp-btn {
    background: #52b34d;
    color: #fff;
    padding: 15px;
    border-radius: 50%;
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    box-shadow: 0 5px 15px rgba(82, 179, 77, 0.3);
    transition: all 0.3s ease;
}

.floating-chat .whatsapp-btn:hover {
    transform: scale(1.1);
    background: #fff;
    color: #52b34d;
}

/* Scroll Top Button */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: #52b34d;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 5px 15px rgba(82, 179, 77, 0.3);
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background: #fff;
    color: #52b34d;
    transform: translateY(-5px);
}

/* Floating Chat */
.floating-chat {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.whatsapp-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #52b34d;
    color: #fff;
    padding: 15px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(82, 179, 77, 0.3);
    transition: all 0.3s ease;
}

.whatsapp-btn:hover {
    background: #fff;
    color: #52b34d;
    transform: translateY(-3px);
}

/* Social Links */
.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #52b34d;
    transform: translateY(-3px);
}

.social-links a:hover i {
    color: #fff;
}

/* Footer Section */
.footer-section h4 {
    color: #fff;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 10px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
}

.footer-section ul li i {
    color: #52b34d;
    margin-right: 10px;
    font-size: 1.1rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.footer-section ul li a:hover {
    color: #52b34d;
    transform: translateX(5px);
}

.footer-section ul li a i {
    margin-right: 10px;
    transition: all 0.3s ease;
}

.footer-section ul li a:hover i {
    transform: translateX(3px);
}

/* Responsive Styles */
@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;
    }

    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@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 h1 {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .service-card {
        padding: 20px;
    }

    .section-title h2 {
        font-size: 1.8rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
}

/* Typography */
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;
}

/* Icons */
.footer-section ul li a i, .social-links a, .service-icon i, .service-icon svg, .scroll-top i, .floating-chat i {
    transition: all 0.3s ease;
}

.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;
}

/* 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;
}

.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;
    }
} 