/* Reset e configurações básicas */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #FFFFFF;
    background-color: #1a1a1a;
}

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

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 15px 0;
    transition: all 0.3s ease;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.nav {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-link {
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 400;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #c7f022;
}

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

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

.cta-nav {
    background: #c7f022;
    color: #1a1a1a !important;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-nav:hover {
    background: #a8d01e;
    transform: translateY(-2px);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #FFFFFF;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;    background: url(\'hero_background.png\') center/cover no-repeat;
    background-attachment: fixed;
    opacity: 0.3;
    z-index: -1;}

.hero-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.8) 0%, rgba(45, 45, 45, 0.6) 50%, rgba(26, 26, 26, 0.8) 100%);
}

.hero-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
    padding-top: 80px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 30px;
    background: linear-gradient(135deg, #FFFFFF 0%, #c7f022 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #cccccc;
    margin-bottom: 40px;
    line-height: 1.8;
}

.hero-cta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-primary {
    background: #c7f022;
    color: #1a1a1a;
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    border: 2px solid #c7f022;
}

.btn-primary:hover {
    background: transparent;
    color: #c7f022;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(199, 240, 34, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #FFFFFF;
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 2px solid #545454;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    border-color: #c7f022;
    color: #c7f022;
    transform: translateY(-3px);
}

.hero-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: rgba(84, 84, 84, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(199, 240, 34, 0.2);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    border-color: #c7f022;
    box-shadow: 0 10px 30px rgba(199, 240, 34, 0.1);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #c7f022;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 0.9rem;
    color: #cccccc;
    font-weight: 400;
}

/* Sections */
section {
    padding: 100px 0;
    background-color: rgba(26, 26, 26, 0.85); /* Cor de fundo com transparência */
    position: relative; /* Garante que o conteúdo da seção fique acima do fundo */
    z-index: 1; /* Garante que o conteúdo da seção fique acima do fundo */
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: #FFFFFF;
}

/* Diferenciais */
.diferenciais {
    background: rgba(84, 84, 84, 0.85);
}

.diferenciais-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.diferencial-card {
    background: #1a1a1a;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.diferencial-card:hover {
    transform: translateY(-10px);
    border-color: #c7f022;
    box-shadow: 0 20px 40px rgba(199, 240, 34, 0.1);
}

.diferencial-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #c7f022, #a8d01e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 2rem;
    color: #1a1a1a;
}

.diferencial-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #FFFFFF;
}

.diferencial-card p {
    color: #cccccc;
    line-height: 1.6;
}

/* Serviços */
.servicos {
    background: rgba(26, 26, 26, 0.85);
}

.servicos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.servico-card {
    background: #545454;
    padding: 40px 30px;
    border-radius: 20px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.servico-card:hover {
    transform: translateY(-10px);
    border-color: #c7f022;
    box-shadow: 0 20px 40px rgba(199, 240, 34, 0.1);
}

.servico-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #c7f022, #a8d01e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    font-size: 2rem;
    color: #1a1a1a;
}

.servico-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #FFFFFF;
}

.servico-card ul {
    list-style: none;
    margin-bottom: 30px;
}

.servico-card li {
    color: #cccccc;
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.servico-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #c7f022;
    font-weight: bold;
}

.btn-servico {
    background: #c7f022;
    color: #1a1a1a;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-servico:hover {
    background: #a8d01e;
    transform: translateY(-2px);
}

/* Público-Alvo */
.publico-alvo {
    background: #545454;
}

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

.publico-card {
    background: #1a1a1a;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.publico-card:hover {
    transform: translateY(-10px);
    border-color: #c7f022;
    box-shadow: 0 20px 40px rgba(199, 240, 34, 0.1);
}

.publico-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #c7f022, #a8d01e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 2rem;
    color: #1a1a1a;
}

.publico-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #FFFFFF;
}

.publico-card p {
    color: #cccccc;
    line-height: 1.6;
}

/* Cases */
.cases {
    background: #1a1a1a;
}

.cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
}

.case-card {
    background: #545454;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.case-card:hover {
    transform: translateY(-10px);
    border-color: #c7f022;
    box-shadow: 0 20px 40px rgba(199, 240, 34, 0.1);
}

.case-image {
    background: linear-gradient(135deg, #c7f022, #a8d01e);
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: #1a1a1a;
}

.case-content {
    padding: 30px;
}

.case-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #FFFFFF;
}

.case-content p {
    color: #cccccc;
    margin-bottom: 25px;
    line-height: 1.6;
}

.case-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.metric {
    text-align: center;
}

.metric-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #c7f022;
    margin-bottom: 5px;
}

.metric-label {
    font-size: 0.8rem;
    color: #cccccc;
}

/* Projeto Social */
.projeto-social {
    background: #545454;
}

.projeto-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
}

.projeto-text h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #c7f022;
}

.projeto-text p {
    color: #cccccc;
    margin-bottom: 20px;
    line-height: 1.6;
}

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

.projeto-icon {
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, #c7f022, #a8d01e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: #1a1a1a;
}

/* Blog */
.blog {
    background: #1a1a1a;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.blog-card {
    background: #545454;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.blog-card:hover {
    transform: translateY(-10px);
    border-color: #c7f022;
    box-shadow: 0 20px 40px rgba(199, 240, 34, 0.1);
}

.blog-image {
    background: linear-gradient(135deg, #c7f022, #a8d01e);
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: #1a1a1a;
}

.blog-content {
    padding: 30px;
}

.blog-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #FFFFFF;
    line-height: 1.4;
}

.blog-content p {
    color: #cccccc;
    margin-bottom: 20px;
    line-height: 1.6;
}

.blog-link {
    color: #c7f022;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.blog-link:hover {
    color: #a8d01e;
}

/* Contact */
.contact {
    background: #545454;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 30px;
    color: #FFFFFF;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    color: #cccccc;
}

.contact-item i {
    color: #c7f022;
    font-size: 1.2rem;
    width: 20px;
}

.contact-item a {
    color: #c7f022;
    text-decoration: none;
}

.contact-item a:hover {
    color: #a8d01e;
}

.contact-benefits {
    margin-top: 40px;
}

.contact-benefits h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #FFFFFF;
}

.contact-benefit {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    color: #cccccc;
}

.contact-benefit i {
    color: #c7f022;
    font-size: 1rem;
}

.contact-form {
    background: #1a1a1a;
    padding: 40px;
    border-radius: 20px;
    border: 2px solid rgba(199, 240, 34, 0.2);
}

.form-group {
    margin-bottom: 25px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #545454;
    border-radius: 10px;
    background: #2d2d2d;
    color: #FFFFFF;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #c7f022;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #999999;
}

/* Footer */
.footer {
    background: #1a1a1a;
    padding: 60px 0 20px;
    border-top: 1px solid #545454;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo-img {
    height: 40px;
    width: auto;
    margin-bottom: 20px;
}

.footer-logo p {
    color: #cccccc;
    line-height: 1.6;
}

.footer-links h4,
.footer-contact h4,
.footer-social h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #FFFFFF;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #c7f022;
}

.footer-contact p {
    color: #cccccc;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact i {
    color: #c7f022;
    width: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: #545454;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #c7f022;
    color: #1a1a1a;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #545454;
    color: #cccccc;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .diferenciais-grid,
    .servicos-grid,
    .publico-grid,
    .cases-grid,
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-content,
    .projeto-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .case-metrics {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .btn-primary,
    .btn-secondary {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    
    .diferencial-card,
    .servico-card,
    .publico-card {
        padding: 30px 20px;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
}

