:root {
    /* Cores Principais */
    --primary: #52b34d;
    --primary-dark: #3d8a39;
    --primary-light: #7bc477;
    --secondary: #52b34d;
    --accent: #52b34d;
    
    /* Tons Neutros */
    --neutral-50: #FAFAFA;
    --neutral-100: #F5F5F5;
    --neutral-200: #E5E5E5;
    --neutral-300: #D4D4D4;
    --neutral-400: #A3A3A3;
    --neutral-500: #737373;
    --neutral-600: #525252;
    --neutral-700: #404040;
    --neutral-800: #262626;
    --neutral-900: #171717;
    
    /* Fontes */
    --font-heading: 'Atkinson Hyperlegible', Arial, sans-serif !important;
    --font-body: 'Raleway', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--neutral-800);
    background-color: var(--neutral-50);
    overflow-x: hidden;
    background: #FAFAFA url('../images/background-business.svg') no-repeat center top fixed !important;
    background-size: cover !important;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
    background: transparent;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header.test {
    background: #181818 !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.header.scrolled .logo-title-pro, .header.scrolled .logo-subtitle-pro, .header.scrolled .logo-corporativas {
    color: #ffffff !important;
}
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo img {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: filter 0.3s;
}

.logo-text-pro {
    display: flex;
    flex-direction: column;
}

.logo-title-pro {
    font-size: 1.3rem;
    font-weight: 700;
    color: #333333;
    transition: color 0.3s;
    font-family: 'Atkinson Hyperlegible', sans-serif;
}

.logo-subtitle-pro {
    font-size: 0.8rem;
    color: #52b34d;
    transition: color 0.3s;
    font-family: 'Atkinson Hyperlegible', sans-serif;
    font-weight: 500;
}

.logo-corporativas {
    display: block;
    width: 100%;
    text-align: center;
    color: #333333;
    font-size: 0.8rem;
    font-weight: 400;
    margin-top: 0.2rem;
    letter-spacing: 0.01em;
}

.header.scrolled .logo-title-pro {
    color: #333333;
}

.header.scrolled .logo-subtitle-pro {
    color: #333333;
}

.header.scrolled .logo-corporativas {
    color: #333333;
}

/* Nav Menu */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav-link {
    color: #ffffff !important;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.header.scrolled .nav-link {
    color: #ffffff !important;
    text-shadow: none;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #fff;
    transition: width 0.3s ease, background 0.3s ease;
}

.header.scrolled .nav-link::after {
    background: var(--primary-color);
}

.nav-link:hover {
    color: #ffffff !important;
}

.header.scrolled .nav-link:hover {
    color: #52b34d !important;
}

.nav-link:hover::after {
    width: 100%;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: color 0.3s ease;
}

.header.scrolled .mobile-menu-btn {
    color: var(--text-color);
    text-shadow: none;
}

.nav-menu-wrapper {
    display: flex;
    align-items: center;
}

.nav-cta {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(46, 88, 110, 0.2);
}

/* Mobile Menu Styles */
@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }

    .nav-menu-wrapper {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        padding: 6rem 2rem 2rem;
        transition: right 0.3s ease;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        z-index: 1000;
    }

    .nav-menu-wrapper.active {
        right: 0;
    }

    .nav-menu {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }

    .nav-link {
        font-size: 1.1rem;
    }

    .nav-cta {
        margin-top: 1rem;
    }

    .logo img {
        width: 45px;
        height: 45px;
    }

    .logo-title-pro {
        font-size: 1.2rem;
    }

    .logo-subtitle-pro {
        font-size: 0.8rem;
    }

    .logo-corporativas {
        font-size: 0.7rem;
    }
}

/* Hero Section */
.hero {
    min-height: 100vh;
    padding-top: 120px;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/hero.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="30" height="30" viewBox="0 0 30 30" xmlns="http://www.w3.org/2000/svg"><rect width="1" height="1" fill="rgba(255,255,255,0.05)"/></svg>');
    opacity: 0.5;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: 4.5rem;
    font-weight: 700;
    line-height: 1.1;
    color: white;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    text-align: center;
}

.hero h1 span {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.25rem;
    color: var(--neutral-400);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 4rem;
    justify-content: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    padding: 1rem 1rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(46, 88, 110, 0.2);
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(46, 88, 110, 0.3);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    backdrop-filter: blur(10px);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: white;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--neutral-400);
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Services Section */
.services {
    padding: 80px 0;
    background: #fff !important;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: #2E586E !important;
    margin-bottom: 40px;
    font-weight: 600;
}

/* Grid layout for index page */
.index-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.index-blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    max-width: 1400px;
    margin: 4rem auto 0;
    padding: 0 2rem;
}

/* Vertical stack layout for other pages */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 2rem;
    background: #fff !important;
}

.service-card {
    background: #fff !important;
    color: #333 !important;
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(82, 179, 77, 0.1) !important;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.service-card:hover .service-icon {
    background: #333;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: #52b34d;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.service-icon i {
    font-size: 2rem;
    color: #fff;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon i {
    color: #fff;
}

.service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--neutral-800);
}

.service-card p {
    color: var(--neutral-600);
    font-size: 0.95rem;
    line-height: 1.6;
}

.service-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 24px;
    background: #2E586E;
    color: white;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid #2E586E;
    margin-top: auto;
    width: 100%;
    text-align: center;
}

.service-btn:hover {
    background: transparent;
    color: #2E586E;
}

.service-btn i {
    transition: transform 0.3s ease;
}

.service-btn:hover i {
    transform: translateX(5px);
}

/* Center single items */
.services-grid:only-child {
    margin-left: auto;
    margin-right: auto;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 700px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

/* Blog Section */
.blog {
    padding: 8rem 0;
    background: var(--neutral-50);
    margin-bottom: 6rem;
}

.blog-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    max-width: 800px;
    margin: 4rem auto 0;
    padding: 0 2rem;
}

.blog-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    width: 100%;
}

.blog-image {
    height: 200px;
    position: relative;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-10px);
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-category {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--primary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 500;
}

.blog-content {
    padding: 2rem;
}

.blog-content h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--neutral-800);
    margin-bottom: 1rem;
    line-height: 1.4;
}

.blog-meta {
    display: flex;
    gap: 2rem;
    color: var(--neutral-500);
    font-size: 0.875rem;
    margin: 1rem 0;
}

.blog-meta i {
    color: var(--primary);
}

/* Center single items */
.blog-grid:only-child {
    margin-left: auto;
    margin-right: auto;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .blog-grid {
        gap: 2rem;
        padding: 0 1rem;
    }
}

/* Footer */
.footer {
    padding: 6rem 0 2rem !important;
    background: var(--neutral-900);
    color: white;
    position: relative;
    overflow: hidden;
    margin-top: 6rem !important;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto !important;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 4rem;
}

.footer-section {
    margin-bottom: 0 !important;
}

.footer-section h4 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: white;
    position: relative;
    padding-bottom: 1rem;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 1.2rem;
}

.footer-section ul li a {
    color: var(--neutral-400);
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
}

.footer-section ul li a:hover {
    color: var(--primary);
    transform: translateX(5px);
}

.footer-section ul li i {
    display: none !important;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;
}

.newsletter-form input {
    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;
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.1);
}

.newsletter-form button {
    padding: 1rem;
    border-radius: 8px;
    border: none;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(46, 88, 110, 0.3);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.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: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

/* Floating Chat */
.floating-chat {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
}

.whatsapp-btn {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(46, 88, 110, 0.3);
}

.whatsapp-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(46, 88, 110, 0.4);
}

.whatsapp-icon-white {
    font-size: 32px;
    color: white;
    position: absolute;
    z-index: 2;
    transition: all 0.3s ease;
}

.whatsapp-icon-orange {
    font-size: 32px;
    color: var(--primary);
    position: absolute;
    z-index: 1;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.3s ease;
}

.whatsapp-btn:hover .whatsapp-icon-white {
    transform: scale(0.8);
    opacity: 0;
}

.whatsapp-btn:hover .whatsapp-icon-orange {
    transform: scale(1);
    opacity: 1;
}

/* Scroll to Top */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 100px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    box-shadow: 0 5px 20px rgba(46, 88, 110, 0.3);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    z-index: 999;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(46, 88, 110, 0.4);
}

.scroll-top i {
    font-size: 20px;
    transition: transform 0.3s ease;
}

.scroll-top:hover i {
    transform: translateY(-2px);
}

/* Loader */
.loader-wrapper {
    position: fixed;
    inset: 0;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.loader {
    width: 200px;
    height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(82, 179, 77, 0.2);
}

.loader-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 20px;
    position: relative;
    animation: pulse 2s ease-in-out infinite;
}

.loader-icon::after {
    content: '';
    position: absolute;
    inset: 3px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent);
    border-radius: 17px;
}

.loader-icon i {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 32px;
    z-index: 1;
}

.loader-progress {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.progress-bar {
    width: 150px;
    height: 4px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 100px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    transition: width 0.3s ease;
}

/* Animations */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(0.95);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Utility Classes */
.hidden {
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease;
}

.animate-init {
    opacity: 0;
}

.animate-init.fade-in {
    animation: fadeIn 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.animate-init.fade-in-up {
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.animate-init.scale-in {
    animation: scaleIn 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.animate-init.slide-in-left {
    animation: slideInLeft 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.animate-init.slide-in-right {
    animation: slideInRight 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }
.delay-4 { animation-delay: 0.8s; }
.delay-5 { animation-delay: 1s; }

/* Responsive Design */
@media (max-width: 1200px) {
    .container {
        padding: 0 2rem;
    }
    
    .hero h1 {
        font-size: 3.5rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
        width: 100%;
    }

    /* Header & Navigation */
    .nav {
        padding: 0.75rem 0;
    }

    .nav-menu {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
        font-size: 1.5rem;
        padding: 0.5rem;
    }

    .nav-menu-wrapper {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        max-width: 100%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        padding: 5rem 1.5rem 2rem;
        transition: right 0.3s ease;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        z-index: 1000;
    }

    .nav-menu-wrapper.active {
        right: 0;
    }

    .nav-menu {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
        width: 100%;
    }

    .nav-link {
        font-size: 1.2rem;
        width: 100%;
        padding: 0.75rem 0;
    }

    .nav-cta {
        width: 100%;
        text-align: center;
        justify-content: center;
        padding: 1rem;
        margin-top: 1rem;
    }

    /* Hero Section */
    .hero {
        padding: 5rem 0 3rem;
        min-height: auto;
    }

    .hero-content {
        padding: 0;
        text-align: center;
    }

    .hero h1 {
        font-size: 2.5rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }

    .hero p {
        font-size: 1.1rem;
        line-height: 1.6;
        margin-bottom: 2rem;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }

    .hero-buttons .btn {
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    /* Services Section */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0;
        margin: 2rem 0;
    }

    .service-card {
        padding: 1.5rem;
        margin: 0;
    }

    .service-icon {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .service-card h3 {
        font-size: 1.3rem;
        margin-bottom: 0.75rem;
    }

    .service-card p {
        font-size: 1rem;
        line-height: 1.5;
    }

    /* Section Spacing */
    .section {
        padding: 3rem 0;
    }

    .section-title {
        font-size: 1.75rem;
        margin-bottom: 2rem;
    }

    /* Footer */
    .footer {
        padding: 3rem 0 1.5rem !important;
        margin-top: 3rem !important;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1.5rem;
    }

    .footer-section {
        margin-bottom: 2rem !important;
    }

    .footer-section h4 {
        font-size: 1.3rem;
        margin-bottom: 1.5rem;
    }

    .footer-section ul li {
        margin-bottom: 0.75rem;
    }

    .footer-section ul li a {
        font-size: 1rem;
    }

    .newsletter-form input {
        padding: 0.75rem;
        font-size: 1rem;
    }

    .newsletter-form button {
        padding: 0.75rem;
        font-size: 1rem;
    }

    /* Contact & Social */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .social-links {
        justify-content: center;
        margin-top: 1.5rem;
    }

    /* Floating Elements */
    .floating-chat {
        bottom: 1rem;
        right: 1rem;
        transform: scale(0.9);
    }

    .scroll-top {
        bottom: 1rem;
        right: 4rem;
        transform: scale(0.9);
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    /* Header */
    .logo img {
        height: 30px;
    }

    .logo-title-pro {
        font-size: 1.3rem;
    }

    .logo-subtitle-pro {
        font-size: 1rem;
    }

    .logo-corporativas {
        font-size: 0.7rem;
    }

    /* Hero */
    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    /* Services */
    .service-card {
        padding: 1.25rem;
    }

    .service-icon {
        font-size: 1.75rem;
    }

    .service-card h3 {
        font-size: 1.2rem;
    }

    /* Footer */
    .footer {
        padding: 2.5rem 0 1rem !important;
    }

    .footer-content {
        gap: 1.5rem;
    }

    .footer-section h4 {
        font-size: 1.2rem;
    }

    .footer-section ul li a {
        font-size: 0.95rem;
    }

    /* Buttons */
    .btn {
        padding: 0.75rem 1.25rem;
        font-size: 0.95rem;
    }

    .nav-cta {
        padding: 0.75rem;
        font-size: 0.95rem;
    }
}

.primary-gradient {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
}

.gradient-hover {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gradient-hover:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    color: white;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.cta-button i {
    font-size: 1.2rem;
}

.custom-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.service-item {
    background: #fff !important;
    color: #333 !important;
    border-radius: 15px;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.service-item h3, .service-item .service-icon {
    color: #52b34d !important;
}

.service-icon {
    width: 60px;
    height: 60px;
    background: #52b34d;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.service-icon i {
    font-size: 1.5rem;
    color: #fff;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    background: #333;
}

.result-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: white;
    border-radius: 10px;
    margin-bottom: 1rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.result-item i {
    font-size: 1.2rem;
    background: var(--primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.result-item span {
    font-size: 1.1rem;
    color: var(--neutral-800);
}

/* Service Buttons in Navigation */
.service-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 6px;
    transition: all 0.3s ease;
    background: rgba(46, 88, 110, 0.1);
    color: #2E586E;
    font-weight: 500;
}

.service-btn:hover {
    background: #2E586E;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(46, 88, 110, 0.2);
}

.service-btn i {
    font-size: 1.1em;
    transition: transform 0.3s ease;
}

.service-btn:hover i {
    transform: scale(1.1);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .service-btn {
        padding: 8px 16px;
        font-size: 0.9em;
    }
    
    .nav-menu {
        gap: 8px;
    }
}

.main-content {
    padding: 5rem 0;
    background-color: #fff !important;
    position: relative;
}

.services-section {
    padding: 6rem 0;
    margin-bottom: 6rem;
}

.cta-section {
    padding: 6rem 0;
    margin-bottom: 6rem;
}

/* Adjust spacing for contabilidade page */
.contabilidade-page .main-content {
    padding: 4rem 0;
    margin-bottom: 4rem;
}

.contabilidade-page .services-section {
    padding: 4rem 0;
    margin-bottom: 4rem;
}

.contabilidade-page .cta-section {
    padding: 4rem 0;
    margin-bottom: 0;
}

.contabilidade-page .footer {
    padding: 4rem 0 2rem;
    margin-top: 0;
}

/* Keep original spacing for other pages */
.main-content {
    padding: 6rem 0;
    background: white;
    margin-bottom: 6rem;
}

.services-section {
    padding: 6rem 0;
    margin-bottom: 6rem;
}

.cta-section {
    padding: 6rem 0;
    margin-bottom: 6rem;
}

.footer {
    padding: 6rem 0 2rem !important;
    background: var(--neutral-900);
    color: white;
    position: relative;
    overflow: hidden;
    margin-top: 6rem !important;
}

@media (max-width: 600px) {
    .hero-stats {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
        padding: 1.5rem 0.5rem !important;
    }
    .stat-item {
        min-width: 0 !important;
        padding: 1rem 0.5rem !important;
    }
    .stat-label {
        white-space: normal !important;
        word-break: break-word !important;
        font-size: 1rem !important;
        line-height: 1.3 !important;
        display: block !important;
    }
}

html, body {
    font-family: 'Atkinson Hyperlegible', Arial, sans-serif !important;
    background: #fff !important;
    color: #333 !important;
}

/* Loader */
.loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #181818;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loader {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(24, 24, 24, 0.95);
    padding: 50px;
    border-radius: 30px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(82, 179, 77, 0.2);
    min-width: 300px;
}

.loader-icon {
    position: relative;
    z-index: 2;
    margin-bottom: 30px;
}

.loader-icon i {
    font-size: 70px;
    color: #52b34d !important;
    text-shadow: 0 0 20px rgba(82, 179, 77, 0.3);
    display: block;
    margin: 0 auto;
}

.loader-progress {
    color: #fff;
    font-size: 1.1rem;
    margin-top: 20px;
    text-align: center;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.progress-bar {
    width: 250px;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    margin-top: 15px;
    overflow: hidden;
    position: relative;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #52b34d, #7bc477);
    width: 0%;
    transition: width 0.3s ease;
    border-radius: 3px;
    position: relative;
}

.progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.2) 50%, rgba(255,255,255,0) 100%);
    animation: shimmer 1.5s infinite;
}

@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-pro,
.header .logo-subtitle-pro,
.header .logo-corporativas {
    color: #000000 !important;
    transition: color 0.3s;
}

.header .nav-link:hover,
.header .logo-title-pro:hover,
.header .logo-subtitle-pro:hover,
.header .logo-corporativas:hover {
    color: #52b34d !important;
}

.header.scrolled .nav-link {
    color: #ffffff !important;
}

.header.scrolled .logo-title-pro,
.header.scrolled .logo-subtitle-pro,
.header.scrolled .logo-corporativas {
    color: #ffffff !important;
}

.header.scrolled .nav-link:hover,
.header.scrolled .logo-title-pro:hover,
.header.scrolled .logo-subtitle-pro:hover,
.header.scrolled .logo-corporativas:hover {
    color: #52b34d !important;
}

.nav-cta {
    background: #52b34d !important;
    color: #fff !important;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s;
}

.nav-cta:hover {
    background: #fff !important;
    color: #52b34d !important;
    border: 1px solid #52b34d !important;
}

.logo img {
    transition: filter 0.3s;
}

/* 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::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(82, 179, 77, 0.1), rgba(24, 24, 24, 0.9));
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #fff;
}

.hero h1 span {
    color: #52b34d;
}

.hero p {
    color: #ccc;
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-top: 2rem;
}

.stat-item {
    background: #222;
    border-radius: 12px;
    padding: 1.2rem 2rem;
    text-align: center;
    min-width: 120px;
}

.stat-number {
    color: #52b34d;
    font-size: 2rem;
    font-weight: 700;
}

.stat-label {
    color: #fff;
    font-size: 1rem;
}

/* Main Content */
.main-content {
    background: #fff !important;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
}

.section-title h2 {
    color: #52b34d;
    font-size: 2rem;
    font-weight: 700;
}

/* Services Section */
.services {
    background: #181818;
    padding: 60px 0;
}

.services h2.section-title {
    color: #52b34d;
}

.index-services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin: 40px auto;
    max-width: 1200px;
    padding: 0 20px;
}

@media (max-width: 1024px) {
    .index-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .index-services-grid {
        grid-template-columns: 1fr;
    }
}

.service-card {
    background: #222;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: center;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(82, 179, 77, 0.2);
}

.service-card:hover .service-icon i,
.service-card:hover .service-icon svg {
    color: #52b34d !important;
    fill: #52b34d !important;
    text-shadow: 0 0 15px rgba(82, 179, 77, 0.3);
}

.service-icon {
    font-size: 2.5em;
    color: #fff !important;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}

.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;
}

.service-card h3 {
    color: #52b34d;
    margin-bottom: 15px;
    font-size: 1.4em;
    font-weight: 700;
    text-align: center;
}

.service-card p {
    color: #ccc;
    line-height: 1.6;
    text-align: center;
    margin-bottom: 20px;
}

/* Modern Button Styles */
.modern-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    background: #52b34d;
    color: #fff;
    border: none;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(82, 179, 77, 0.2);
    width: 100%;
    text-align: center;
}

.modern-button:hover {
    background: #181818;
    color: #52b34d;
    border: 1px solid #52b34d;
}

/* Footer */
.footer {
    background: #181818;
    color: #fff;
    padding: 40px 0 20px 0;
}

.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 {
    display: none !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-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;
}

/* 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, .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;
}

.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, 0.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 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);
}

.logo-text-pro {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    margin-top: -2px;
}

.logo-title-pro {
    color: #fff;
    font-size: 1.7rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.logo-subtitle-pro {
    color: #2ecc40;
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.logo-corporativas {
    font-family: 'Atkinson Hyperlegible', Arial, sans-serif !important;
    font-size: 0.75rem !important;
    font-weight: 400 !important;
    color: #333333 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.05em !important;
    margin-top: 2px !important;
}

/* Blog Section */
.blog {
    background: #181818;
    padding: 60px 0;
}

.blog h2.section-title {
    color: #52b34d;
}

.index-blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 40px auto;
    max-width: 1200px;
    padding: 0 20px;
}

@media (max-width: 1024px) {
    .index-blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .index-blog-grid {
        grid-template-columns: 1fr;
    }
}

.blog-card {
    background: #222;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(82, 179, 77, 0.2);
}

.blog-image {
    position: relative;
    overflow: hidden;
    height: 200px;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #52b34d;
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.blog-content {
    padding: 20px;
}

.blog-content h3 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 15px;
    line-height: 1.4;
}

.blog-meta {
    display: flex;
    gap: 20px;
    color: #ccc;
    font-size: 0.9rem;
}

.blog-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.blog-meta i {
    color: #52b34d;
}

.footer-section ul,
.footer-section ul li,
.footer-section ul li a {
    list-style: none !important;
}

/* Benefits Section Melhorada */
.benefits-section {
    padding: 5rem 0;
    background-color: var(--neutral-50);
    position: relative;
}

.benefits-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2.5rem 2rem;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
    transition: box-shadow 0.3s, transform 0.3s;
    position: relative;
    z-index: 1;
}

.benefit-item:hover {
    box-shadow: 0 8px 32px rgba(0,0,0,0.15);
    transform: translateY(-6px) scale(1.02);
}

.benefit-icon {
    width: 64px;
    height: 64px;
    background: #52b34d;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(82,179,77,0.10);
    transition: box-shadow 0.3s, background 0.3s;
}

.benefit-item:hover .benefit-icon {
    background: #333;
    box-shadow: 0 4px 16px rgba(51,51,51,0.10);
}

.benefit-icon i {
    font-size: 2rem;
    color: #fff;
    transition: color 0.3s;
}

.benefit-content h3 {
    color: #52b34d;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.benefit-content p {
    color: #333;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 900px) {
    .benefit-item {
        flex-direction: column;
        align-items: flex-start;
        padding: 2rem 1rem;
    }
    .benefit-icon {
        margin-bottom: 1rem;
    }
}

@media (max-width: 600px) {
    .benefits-grid {
        gap: 1.2rem;
    }
    .benefit-item {
        padding: 1.2rem 0.5rem;
    }
    .benefit-icon {
        width: 48px;
        height: 48px;
        font-size: 1.2rem;
    }
    .benefit-content h3 {
        font-size: 1.05rem;
    }
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #52b34d;
    color: #fff;
    font-weight: 600;
    border: none;
    border-radius: 32px;
    padding: 0.75rem 1.5rem;
    margin-top: 1.2rem;
    font-size: 1rem;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(82,179,77,0.10);
    transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
    cursor: pointer;
}
.service-link i {
    font-size: 1.1em;
    transition: transform 0.2s;
}
.service-link:hover, .service-link:focus {
    background: #333;
    color: #fff;
    transform: translateY(-2px) scale(1.04);
    box-shadow: 0 4px 16px rgba(51,51,51,0.10);
    text-decoration: none;
}
.service-link:hover i, .service-link:focus i {
    transform: translateX(4px);
}

/* === Blog Styles === */
.blog-list-container {
    padding: 120px 0 40px 0;
    background: var(--neutral-50);
    min-height: 80vh;
}
.blog-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--primary-dark);
    margin-bottom: 2rem;
    text-align: center;
}
.blog-posts {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    max-width: 800px;
    margin: 0 auto;
}
.blog-post {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    padding: 2rem;
    transition: box-shadow 0.2s;
}
.blog-post:hover {
    box-shadow: 0 4px 24px rgba(82,179,77,0.10);
}
.post-title {
    font-size: 1.7rem;
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
    font-family: var(--font-heading);
}
.post-title a {
    color: var(--primary-dark);
    text-decoration: none;
    transition: color 0.2s;
}
.post-title a:hover {
    color: var(--primary);
}
.post-meta {
    font-size: 0.95rem;
    color: var(--neutral-500);
    margin-bottom: 1rem;
}
.post-excerpt {
    color: var(--neutral-700);
    margin-bottom: 1.2rem;
}
.read-more {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s;
}
.read-more:hover {
    color: var(--primary-dark);
}
.blog-pagination {
    margin-top: 2.5rem;
    text-align: center;
}
.blog-pagination .page-numbers {
    display: inline-block;
    margin: 0 6px;
    padding: 8px 14px;
    background: #f5f5f5;
    color: var(--primary-dark);
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    transition: background 0.2s, color 0.2s;
}
.blog-pagination .page-numbers.current,
.blog-pagination .page-numbers:hover {
    background: var(--primary);
    color: #fff;
}

.single-post-container {
    padding: 120px 0 40px 0;
    background: var(--neutral-50);
    min-height: 80vh;
}
.single-post {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    padding: 2.5rem 2rem;
    max-width: 800px;
    margin: 0 auto;
}
.single-post .post-title {
    font-size: 2.2rem;
    color: var(--primary-dark);
    margin-bottom: 0.7rem;
    font-family: var(--font-heading);
}
.single-post .post-meta {
    font-size: 1rem;
    color: var(--neutral-500);
    margin-bottom: 1.5rem;
}
.single-post .post-content {
    color: var(--neutral-800);
    line-height: 1.8;
    font-size: 1.1rem;
}
.back-to-blog {
    margin: 2.5rem auto 0 auto;
    max-width: 800px;
    text-align: left;
}
.back-to-blog a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s;
}
.back-to-blog a:hover {
    color: var(--primary-dark);
}
@media (max-width: 900px) {
    .blog-post, .single-post {
        padding: 1.2rem;
    }
    .single-post .post-title, .post-title {
        font-size: 1.3rem;
    }
}
@media (max-width: 600px) {
    .blog-list-container, .single-post-container {
        padding: 90px 0 20px 0;
    }
    .blog-post, .single-post {
        padding: 0.7rem;
    }
    .blog-title {
        font-size: 1.5rem;
    }
}

/* === Blog Header Background === */
.page-template-blog .header,
.single-post .header {
    background: #111 !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

/* Garante contraste dos links do menu no header preto */
.page-template-blog .header .nav-link,
.single-post .header .nav-link,
.page-template-blog .header .nav-cta,
.single-post .header .nav-cta {
    color: #fff !important;
}

.page-template-blog .header .logo-title-pro,
.single-post .header .logo-title-pro,
.page-template-blog .header .logo-subtitle-pro,
.single-post .header .logo-subtitle-pro,
.page-template-blog .header .logo-corporativas,
.single-post .header .logo-corporativas {
    color: #fff !important;
} 