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

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #0D0D0D 0%, #1E6B4B 50%, #0D0D0D 100%);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(13, 13, 13, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-brand h2 {
    color: #6AC34A;
    font-size: 1.5rem;
}

.logo {
    height: 40px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: #BFC4C9;
    text-decoration: none;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-weight: 500;
}

.nav-menu a:hover {
    color: #6AC34A;
    background: rgba(106, 195, 74, 0.1);
    transform: translateY(-2px);
}

.nav-menu a i {
    font-size: 0.9rem;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #6AC34A;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 100px 20px 50px;
    background: linear-gradient(135deg, rgba(13, 13, 13, 0.8) 0%, rgba(30, 107, 75, 0.8) 50%, rgba(13, 13, 13, 0.8) 100%), url('./imagem/Automation02.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center right;
    background-attachment: fixed;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero h1 {
    font-size: 3rem;
    color: #BFC4C9;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.highlight {
    color: #6AC34A;
}

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

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
    padding: 12px 30px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-primary {
    background: linear-gradient(45deg, #6AC34A, #1E6B4B);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(106, 195, 74, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #6AC34A;
    border: 2px solid #6AC34A;
}

.btn-secondary:hover {
    background: #6AC34A;
    color: white;
}

.hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.ai-icon {
    font-size: 8rem;
    color: #6AC34A;
    animation: float 3s ease-in-out infinite;
}

.hero-image {
    max-width: 400px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(106, 195, 74, 0.3));
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* About Section */
.about {
    padding: 80px 20px;
    background: rgba(13, 13, 13, 0.95);
}

.about h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #6AC34A;
    margin-bottom: 3rem;
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.about-text {
    color: #FFFFFF;
    font-size: 1.1rem;
    line-height: 1.8;
}

.about-text p {
    margin-bottom: 1.5rem;
}

.about-text strong {
    color: #6AC34A;
}

.about-visual {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding-left: 2rem;
}

.about-icon {
    font-size: 6rem;
    color: #6AC34A;
    animation: float 3s ease-in-out infinite;
}

.about-logo {
    max-width: 650px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(106, 195, 74, 0.3));
}

@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .about-icon {
        font-size: 4rem;
        margin-top: 2rem;
    }
}

/* Services Section */
.services {
    padding: 80px 20px;
    background: rgba(191, 196, 201, 0.05);
}

.services h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #6AC34A;
    margin-bottom: 3rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: rgba(30, 107, 75, 0.1);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(106, 195, 74, 0.2);
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(106, 195, 74, 0.2);
}

.service-icon {
    font-size: 3rem;
    color: #6AC34A;
    margin-bottom: 1rem;
}

.service-card h3 {
    color: #BFC4C9;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.service-card p {
    color: #BFC4C9;
    opacity: 0.8;
}

/* Benefits Section */
.benefits {
    padding: 80px 20px;
    background: linear-gradient(135deg, #1E6B4B 0%, #0D0D0D 100%);
}

.benefits h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #6AC34A;
    margin-bottom: 3rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.benefit-item {
    text-align: center;
    padding: 1.5rem;
}

.benefit-icon {
    font-size: 2.5rem;
    color: #6AC34A;
    margin-bottom: 1rem;
}

.benefit-item h3 {
    color: #BFC4C9;
    margin-bottom: 1rem;
}

.benefit-item p {
    color: #BFC4C9;
    opacity: 0.8;
}

/* Projects Section */
.projects {
    padding: 80px 20px;
    background: rgba(191, 196, 201, 0.05);
}

.projects h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #6AC34A;
    margin-bottom: 3rem;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.project-card {
    background: rgba(30, 107, 75, 0.1);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(106, 195, 74, 0.2);
    transition: transform 0.3s;
}

.project-card:hover {
    transform: translateY(-5px);
}

.project-image {
    font-size: 4rem;
    color: #FF8C42;
    margin-bottom: 1rem;
}

.project-photo {
    width: 100%;
    max-width: 200px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.project-card h3 {
    color: #BFC4C9;
    margin-bottom: 1rem;
}

.project-card p {
    color: #BFC4C9;
    opacity: 0.8;
}

/* Process Section */
.process {
    padding: 80px 20px;
    background: linear-gradient(135deg, #1E6B4B 0%, #0D0D0D 100%);
}

.process h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #6AC34A;
    margin-bottom: 4rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.process-step {
    background: rgba(13, 13, 13, 0.8);
    padding: 2rem 1.5rem;
    border-radius: 20px;
    text-align: center;
    border: 2px solid rgba(106, 195, 74, 0.3);
    position: relative;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.process-step:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: #6AC34A;
    box-shadow: 0 15px 40px rgba(106, 195, 74, 0.2);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(45deg, #6AC34A, #1E6B4B);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(106, 195, 74, 0.4);
    border: 3px solid #0D0D0D;
}

.step-icon {
    font-size: 3rem;
    color: #6AC34A;
    margin: 1.5rem 0;
    filter: drop-shadow(0 4px 8px rgba(106, 195, 74, 0.3));
}

.process-step h3 {
    color: #FFFFFF;
    margin-bottom: 1.2rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.process-step p {
    color: #BFC4C9;
    line-height: 1.7;
    font-size: 1rem;
}

@media (max-width: 1024px) {
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .process-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .step-icon {
        font-size: 2.5rem;
    }
}

/* Contact Section */
.contact {
    padding: 80px 20px;
    background: linear-gradient(135deg, #0D0D0D 0%, #1E6B4B 100%);
}

/* Blog Section */
.blog {
    padding: 80px 20px;
    background: rgba(13, 13, 13, 0.95);
}

.blog h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #6AC34A;
    margin-bottom: 2rem;
}

.blog-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.blog-intro p {
    font-size: 1.2rem;
    color: #BFC4C9;
    line-height: 1.6;
}

.blog-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.blog-post {
    background: rgba(30, 107, 75, 0.1);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid rgba(106, 195, 74, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.blog-post:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(106, 195, 74, 0.2);
    border-color: #6AC34A;
}

.blog-post.featured {
    grid-row: span 2;
}

.post-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.post-icon {
    background: linear-gradient(45deg, #6AC34A, #1E6B4B);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.post-meta {
    text-align: right;
    font-size: 0.9rem;
}

.post-date {
    display: block;
    color: #6AC34A;
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.post-category {
    display: inline-block;
    background: rgba(106, 195, 74, 0.2);
    color: #6AC34A;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.blog-post h3 {
    color: #FFFFFF;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.blog-post.featured h3 {
    font-size: 1.6rem;
}

.post-excerpt {
    color: #BFC4C9;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.post-content {
    display: none;
    color: #FFFFFF;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.post-content.expanded {
    display: block;
}

.post-content h4 {
    color: #6AC34A;
    font-size: 1.2rem;
    margin: 2rem 0 1rem;
    font-weight: 600;
}

.post-content ul, .post-content ol {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.post-content li {
    margin-bottom: 0.5rem;
}

.post-content strong {
    color: #6AC34A;
}

.cta-box {
    background: linear-gradient(45deg, rgba(106, 195, 74, 0.1), rgba(30, 107, 75, 0.1));
    border: 2px solid rgba(106, 195, 74, 0.3);
    border-radius: 15px;
    padding: 2rem;
    margin: 2rem 0;
    text-align: center;
}

.cta-box h4 {
    color: #6AC34A;
    margin-bottom: 1rem;
}

.cta-box p {
    margin-bottom: 1.5rem;
}

.cta-btn {
    padding: 12px 30px;
    border: none;
    border-radius: 50px;
    background: linear-gradient(45deg, #6AC34A, #1E6B4B);
    color: white;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(106, 195, 74, 0.3);
}

.read-more-btn {
    background: transparent;
    border: 2px solid #6AC34A;
    color: #6AC34A;
    padding: 10px 25px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s;
    margin-top: 1rem;
}

.read-more-btn:hover {
    background: #6AC34A;
    color: white;
    transform: translateY(-2px);
}

@media (max-width: 1024px) {
    .blog-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }
    
    .blog-post.featured {
        grid-column: span 2;
        grid-row: span 1;
    }
}

@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .blog-post.featured {
        grid-column: span 1;
        grid-row: span 1;
    }
    
    .post-header {
        flex-direction: column;
        gap: 1rem;
    }
    
    .post-meta {
        text-align: left;
    }
}

.contact h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #6AC34A;
    margin-bottom: 3rem;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #BFC4C9;
}

.contact-item i {
    font-size: 2rem;
    color: #6AC34A;
    width: 50px;
}

.contact-item h3 {
    color: #6AC34A;
    margin-bottom: 0.5rem;
}

.contact-form {
    background: rgba(30, 107, 75, 0.1);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(106, 195, 74, 0.2);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    margin-bottom: 1rem;
    border: 1px solid rgba(106, 195, 74, 0.3);
    border-radius: 8px;
    background: rgba(13, 13, 13, 0.5);
    color: #BFC4C9;
    font-size: 1rem;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #6AC34A;
    box-shadow: 0 0 10px rgba(106, 195, 74, 0.2);
}

/* Footer */
.footer {
    background: #0D0D0D;
    padding: 2rem 0;
    text-align: center;
    color: #BFC4C9;
    border-top: 1px solid rgba(106, 195, 74, 0.2);
}

/* WhatsApp Button */
.whatsapp-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.whatsapp-btn a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    color: white;
    font-size: 1.5rem;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    transition: all 0.3s;
}

.whatsapp-btn a:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

/* Mobile Styles */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(13, 13, 13, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        backdrop-filter: blur(10px);
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 1rem 0;
    }
    
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 120px 20px 50px;
        background-position: center;
        background-size: cover;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .process-grid {
        grid-template-columns: 1fr;
    }
}