/* Estilos Gerais */
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;
}



@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;
}

.header.scrolled {
    background: rgba(24, 24, 24, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.navbar {
    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: transform 0.3s ease;
}

.logo:hover img {
    transform: scale(1.05);
}

.logo-text-pro, .logo-title-pro, .logo-subtitle-pro, .logo-corporativas {
    color: #000000 !important;
}

.header.scrolled .logo-text-pro,
.header.scrolled .logo-title-pro,
.header.scrolled .logo-subtitle-pro,
.header.scrolled .logo-corporativas {
    color: #ffffff !important;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-link {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-link:hover {
    color: #52b34d;
}

.nav-cta {
    background: #52b34d;
    color: #fff;
    padding: 0.8rem 1.5rem;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s;
}

.nav-cta:hover {
    background: #fff;
    color: #52b34d;
}

/* 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;
    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: #000000;
}

.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, border 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-icon {
    font-size: 2.5em;
    color: #fff;
    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;
    fill: #fff;
    transition: color 0.3s, fill 0.3s;
}

.service-card:hover .service-icon i,
.service-card:hover .service-icon svg {
    color: #52b34d;
    fill: #52b34d;
}

.service-card h3 {
    color: #52b34d;
    margin-bottom: 15px;
    font-size: 1.4em;
    font-weight: 700;
}

.service-card p {
    color: #ccc;
    line-height: 1.6;
    text-align: center;
}


/* CTA Section */
.cta-section {
    padding: 40px 0 0 0;
    background: #fff !important;
    color: #333 !important;
    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;
    color: #fff;
    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;
    color: #52b34d;
    border: 1px solid #52b34d;
}

/* Footer */
.footer {
    padding-top: 12px;
    padding-bottom: 12px;
    margin-top: 0;
    background: #181818;
}

.footer-content {
    margin-top: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.footer-section {
    margin-bottom: 40px;
}

.footer-section h4 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-section ul li a:hover {
    color: #52b34d;
}

.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;
}

/* Floating Chat */
.floating-chat {
    position: fixed;
    right: 30px;
    bottom: 100px;
    z-index: 1001;
}

.whatsapp-btn {
    background: #25d366;
    color: #fff;
    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;
}

/* Scroll to Top */
.scroll-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    background: #52b34d;
    color: #fff;
    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;
    color: #52b34d;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }

    .service-card {
        padding: 30px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .nav-menu {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
}

/* Mobile Menu */
@media (max-width: 768px) {
    .nav-menu-wrapper {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: rgba(24, 24, 24, 0.95);
        backdrop-filter: blur(10px);
        padding: 2rem;
        transition: right 0.3s ease;
    }

    .nav-menu-wrapper.active {
        right: 0;
    }

    .nav-menu {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-link {
        font-size: 1.2rem;
    }
}

.main-content {
    margin-bottom: 10px;
}

section {
    margin-bottom: 16px !important;
}

.services-grid {
    display: flex !important;
    justify-content: center !important;
    align-items: stretch;
    gap: 2rem;
    margin: 0 auto !important;
    text-align: center !important;
    width: fit-content;
}

@media (max-width: 900px) {
    .services-grid {
        flex-direction: column !important;
        align-items: center !important;
        width: 100% !important;
    }
}

/* About Content */
.about-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    padding: 40px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(82, 179, 77, 0.2);
}

.about-description {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 30px;
    color: #333;
}

.about-tagline {
    font-size: 1.4rem;
    font-weight: 700;
    color: #52b34d;
    font-style: italic;
    margin: 0;
}

/* Mission Content */
.mission-content {
    display: flex;
    justify-content: center;
    margin-bottom: 60px;
}

.mission-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    max-width: 600px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(82, 179, 77, 0.2);
    position: relative;
}

.mission-icon {
    margin-bottom: 20px;
}

.mission-icon i {
    font-size: 3rem;
    color: #52b34d;
    text-shadow: 0 0 20px rgba(82, 179, 77, 0.3);
}

.mission-card p {
    font-size: 1.3rem;
    line-height: 1.6;
    color: #333;
    margin: 0;
    font-weight: 500;
}

/* Diferenciais Grid */
.diferenciais-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.diferencial-item {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 30px;
    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);
    transition: all 0.3s ease;
}

.diferencial-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.diferencial-icon {
    margin-bottom: 20px;
}

.diferencial-icon i {
    font-size: 2.5rem;
    color: #52b34d;
    text-shadow: 0 0 15px rgba(82, 179, 77, 0.3);
    transition: all 0.3s ease;
}

.diferencial-item:hover .diferencial-icon i {
    transform: scale(1.1);
    color: #7bc477;
}

.diferencial-item h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.diferencial-item p {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
    margin: 0;
}

/* Areas Grid */
.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-bottom: 60px;
}

.area-item {
    background: rgba(255, 255, 255, 0.95);
    padding: 30px 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.area-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.area-icon {
    margin-bottom: 20px;
}

.area-icon i {
    font-size: 3rem;
    color: #52b34d;
    transition: all 0.3s ease;
}

.area-item:hover .area-icon i {
    transform: scale(1.1);
}

.area-item h3 {
    color: #333;
    margin: 0 0 15px 0;
    font-size: 1.3rem;
    font-weight: 700;
}

.area-item p {
    color: #666;
    margin: 0;
    line-height: 1.6;
    font-size: 0.95rem;
    flex-grow: 1;
    margin-bottom: 20px;
}

/* Botões das Áreas de Atuação */
.area-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #52b34d, #7bc477);
    color: #ffffff;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-top: auto;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(82, 179, 77, 0.3);
    position: relative;
    overflow: hidden;
    width: fit-content;
    align-self: center;
}

.area-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.area-btn:hover::before {
    left: 100%;
}

.area-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    background: linear-gradient(135deg, #333333, #000000);
    color: #ffffff;
}

.area-btn i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.area-btn:hover i {
    transform: translateX(3px);
}

.area-btn span {
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Responsive Styles for New Sections */
@media (max-width: 768px) {
    .about-content {
        padding: 0 20px;
    }

    .about-description {
        font-size: 1rem;
    }

    .about-tagline {
        font-size: 1.2rem;
    }

    .mission-card {
        padding: 30px 25px;
    }

    .mission-card p {
        font-size: 0.95rem;
    }

    .mission-icon i {
        font-size: 2.5rem;
    }

    .diferenciais-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .diferencial-item {
        padding: 25px 20px;
    }

    .diferencial-item h3 {
        font-size: 1.1rem;
    }

    .areas-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .area-item {
        padding: 25px 20px;
    }

    .area-item h3 {
        font-size: 1.1rem;
    }

    .area-btn {
        padding: 10px 20px;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .about-content {
        padding: 0 15px;
    }

    .about-description {
        font-size: 0.95rem;
    }

    .about-tagline {
        font-size: 1.1rem;
    }

    .mission-card {
        padding: 25px 20px;
    }

    .mission-card p {
        font-size: 0.9rem;
    }

    .diferencial-item {
        padding: 20px 15px;
    }

    .area-item {
        padding: 20px 15px;
    }

    .area-btn {
        padding: 8px 16px;
        font-size: 0.8rem;
    }
} 