
/* Reset e Estilos Gerais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #000;
    color: #fff;
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

/* Header e Navegação */
header {
    background: linear-gradient(to right, #0a1929, #000);
    border-bottom: 1px solid rgba(0, 191, 255, 0.1);
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

header.scrolled {
    background: linear-gradient(to right, #000, #0a1929);
    box-shadow: 0 6px 20px rgba(0, 191, 255, 0.4);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative; /* Adicionado para posicionamento de elementos internos */
}

.logo {
    position: relative;
    z-index: 1002; /* Garante que o logo esteja acima do menu */
}

.logo img {
    height: 50px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    font-size: 1em;
    transition: color 0.3s ease;
    position: relative;
}

nav ul li a:hover {
    color: #00bfff;
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #00bfff;
    transition: width 0.3s ease;
}

nav ul li a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #000 0%, #0a1929 50%, #000 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 120px 40px 60px;
    position: relative;
    overflow: hidden;
    max-width: 100%;
}

.hero::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(0, 191, 255, 0.1) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 0.8;
    }
}

.hero-content {
    max-width: 650px;
    z-index: 1;
    width: 100%;
}

.hero h1 {
    font-size: 3.5em;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #fff;
}

.hero-subtitle {
    font-size: 1.3em;
    margin-bottom: 15px;
    color: #00bfff;
    font-weight: 600;
}

.hero-description {
    font-size: 1.1em;
    margin-bottom: 30px;
    color: #ccc;
    line-height: 1.8;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin: 30px 0;
    flex-wrap: wrap;
}

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

.stat-number {
    font-size: 2.5em;
    font-weight: 700;
    color: #00bfff;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9em;
    color: #ccc;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-image {
    max-width: 500px;
    z-index: 1;
    width: 100%;
}

.hero-image img {
    width: 100%;
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 0 30px rgba(0, 191, 255, 0.5));
    animation: float 6s ease-in-out infinite;
}

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

/* Carousel Section */
.carousel-section {
    padding: 60px 40px;
    background: #000;
    text-align: center;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.carousel-container h2 {
    font-size: 2.5em;
    margin-bottom: 10px;
    color: #fff;
}

.carousel-subtitle {
    font-size: 1.1em;
    color: #ccc;
    margin-bottom: 40px;
}

.carousel {
    overflow: hidden;
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.carousel-track {
    display: flex;
    animation: scroll 20s linear infinite;
}

.carousel-item {
    flex: 0 0 auto;
    padding: 0 40px;
}

.carousel-item img {
    height: 80px;
    width: auto;
    object-fit: contain;
    transition: all 0.3s ease;
}

.carousel-item img:hover {
    transform: scale(1.1);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Diferenciais Section */
.diferenciais-section {
    padding: 80px 40px;
    background: linear-gradient(135deg, #0a1929 0%, #000 100%);
    text-align: center;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.diferenciais-section h2 {
    font-size: 3em;
    margin-bottom: 20px;
    color: #fff;
}

.section-intro {
    font-size: 1.2em;
    max-width: 900px;
    margin: 0 auto 60px;
    color: #ccc;
    line-height: 1.8;
}

.diferenciais-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.diferencial-card {
    background: rgba(0, 191, 255, 0.05);
    padding: 40px 30px;
    border-radius: 10px;
    border: 1px solid rgba(0, 191, 255, 0.2);
    transition: all 0.3s ease;
    text-align: left;
}

.diferencial-card:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 191, 255, 0.5);
    box-shadow: 0 10px 30px rgba(0, 191, 255, 0.2);
}

.diferencial-icon {
    font-size: 3em;
    color: #00bfff;
    margin-bottom: 20px;
}

.diferencial-card h3 {
    font-size: 1.5em;
    margin-bottom: 15px;
    color: #fff;
}

.diferencial-card p {
    font-size: 1em;
    color: #ccc;
    line-height: 1.7;
}

/* Metodologia Section */
.metodologia-section {
    padding: 80px 40px;
    background: #000;
    text-align: center;
}

.metodologia-section h2 {
    font-size: 3em;
    margin-bottom: 20px;
    color: #fff;
}

.metodologia-timeline {
    max-width: 1000px;
    margin: 60px auto;
    position: relative;
}

.metodologia-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, #00bfff, rgba(0, 191, 255, 0.2));
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 60px;
    position: relative;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-number {
    flex: 0 0 80px;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #00bfff, #0099cc);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8em;
    font-weight: 700;
    color: #fff;
    position: relative;
    z-index: 2;
    box-shadow: 0 5px 20px rgba(0, 191, 255, 0.4);
}

.timeline-content {
    flex: 1;
    background: rgba(0, 191, 255, 0.05);
    padding: 30px;
    border-radius: 10px;
    border: 1px solid rgba(0, 191, 255, 0.2);
    margin: 0 40px;
    text-align: left;
}

.timeline-content h3 {
    font-size: 1.5em;
    margin-bottom: 10px;
    color: #00bfff;
}

.timeline-content p {
    font-size: 1em;
    color: #ccc;
    line-height: 1.7;
}

/* Services Section */
.services-section {
    padding: 80px 40px;
    background: linear-gradient(135deg, #000 0%, #0a1929 50%, #000 100%);
}

.services-section h2 {
    font-size: 3em;
    text-align: center;
    margin-bottom: 20px;
    color: #fff;
}

.service-list {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.service-item-detailed {
    background: rgba(0, 191, 255, 0.05);
    padding: 40px;
    border-radius: 10px;
    border: 1px solid rgba(0, 191, 255, 0.2);
    display: flex;
    gap: 30px;
    align-items: flex-start;
    transition: all 0.3s ease;
}

.service-item-detailed:hover {
    border-color: rgba(0, 191, 255, 0.5);
    box-shadow: 0 10px 30px rgba(0, 191, 255, 0.2);
}

.service-icon {
    font-size: 3em;
    color: #00bfff;
    min-width: 80px;
    text-align: center;
}

.service-content h3 {
    font-size: 1.8em;
    margin-bottom: 15px;
    color: #fff;
}

.service-content p {
    font-size: 1.1em;
    margin-bottom: 15px;
    color: #ccc;
    line-height: 1.7;
}

.service-benefits {
    list-style: none;
    margin: 20px 0;
    padding: 0;
}

.service-benefits li {
    font-size: 1em;
    color: #ccc;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-benefits li i {
    color: #00bfff;
}

/* Resultados Section */
.resultados-section {
    padding: 80px 40px;
    background: #000;
    text-align: center;
}

.resultados-section h2 {
    font-size: 3em;
    margin-bottom: 20px;
    color: #fff;
}

.resultados-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.resultado-card {
    background: rgba(0, 191, 255, 0.05);
    padding: 30px;
    border-radius: 10px;
    border: 1px solid rgba(0, 191, 255, 0.2);
    transition: all 0.3s ease;
    text-align: left;
}

.resultado-card:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 191, 255, 0.5);
    box-shadow: 0 10px 30px rgba(0, 191, 255, 0.2);
}

.resultado-card h3 {
    font-size: 1.5em;
    margin-bottom: 15px;
    color: #00bfff;
}

.resultado-card p {
    font-size: 1em;
    color: #ccc;
    line-height: 1.7;
}

.resultado-card .stat {
    font-size: 2em;
    font-weight: 700;
    color: #fff;
    margin-top: 20px;
}

/* Benefits Section */
.benefits-section {
    padding: 80px 40px;
    background: #000;
    text-align: center;
    max-width: 1400px;
    margin: 0 auto;
}

.benefits-section h2 {
    font-size: 3em;
    margin-bottom: 20px;
    color: #fff;
}

.benefits-section > p {
    font-size: 1.2em;
    max-width: 900px;
    margin: 0 auto 40px;
    color: #ccc;
    line-height: 1.8;
}

.benefits-two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 40px auto;
    text-align: left;
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.benefits-list li {
    font-size: 1.1em;
    color: #ccc;
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    line-height: 1.7;
}

.benefits-list li i {
    color: #00bfff;
    font-size: 1.3em;
    margin-top: 3px;
    flex-shrink: 0;
}

.highlight-text {
    font-size: 1.2em;
    max-width: 900px;
    margin: 40px auto 30px;
    color: #ccc;
    line-height: 1.8;
}

.cta-center {
    margin-top: 40px;
    text-align: center;
}

.cta-center p {
    margin-top: 20px;
    font-size: 1.1em;
    color: #ccc;
}

/* Contact Section */
.contact-section {
    padding: 100px 40px;
    background: #000;
    text-align: center;
    border-top: 1px solid rgba(0, 191, 255, 0.1);
}

.contact-section h2 {
    font-size: 2.8em;
    margin-bottom: 20px;
    color: #fff;
}

.contact-section p {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto 40px;
    color: #ccc;
    line-height: 1.8;
}

.contact-info {
    margin-top: 20px;
    font-size: 1em;
    color: #888;
}

/* FAQ Section */
.faq-section {
    padding: 80px 40px;
    background: linear-gradient(135deg, #0a1929 0%, #000 100%);
    text-align: center;
}

.faq-section h2 {
    font-size: 3em;
    margin-bottom: 60px;
    color: #fff;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(0, 191, 255, 0.05);
    margin-bottom: 15px;
    border-radius: 10px;
    border: 1px solid rgba(0, 191, 255, 0.2);
    overflow: hidden;
}

.faq-question {
    padding: 20px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question h3 {
    font-size: 1.3em;
    font-weight: 600;
    color: #fff;
}

.faq-question i {
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
}

.faq-answer p {
    padding: 0 30px 20px;
    font-size: 1.1em;
    color: #ccc;
    text-align: left;
    line-height: 1.8;
}

.faq-item.active .faq-answer {
    max-height: 300px; /* Ajuste conforme necessário */
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
}

/* CTA Section */
.cta-section {
    padding: 100px 40px;
    background: linear-gradient(135deg, #00bfff, #0099cc);
    text-align: center;
    color: #fff;
}

.cta-section h2 {
    font-size: 2.8em;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

/* Footer */
footer {
    background: #000;
    padding: 60px 40px;
    border-top: 1px solid rgba(0, 191, 255, 0.1);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-logo img {
    height: 50px;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    display: flex;
    gap: 30px;
}

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

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

.footer-socials {
    display: flex;
    gap: 20px;
}

.footer-socials a {
    color: #ccc;
    font-size: 1.5em;
    transition: color 0.3s ease;
}

.footer-socials a:hover {
    color: #00bfff;
}

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #888;
}

/* Botões */
.btn {
    display: inline-block;
    padding: 15px 35px;
    background: linear-gradient(135deg, #00bfff, #0099cc);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1em;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 191, 255, 0.3);
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 191, 255, 0.5);
}

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

.btn-secondary:hover {
    background: #00bfff;
    color: #fff;
}

/* Menu Hambúrguer */
.menu-toggle {
    display: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 25px;
    background: transparent;
    border: none;
    padding: 0;
    z-index: 1003; /* Garante que o toggle esteja acima de tudo */
}

.menu-toggle .bar {
    width: 100%;
    height: 3px;
    background-color: #00bfff;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.menu-toggle.active .bar:nth-child(1) {
    transform: translateY(11px) rotate(45deg);
}

.menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active .bar:nth-child(3) {
    transform: translateY(-11px) rotate(-45deg);
}

/* Responsividade */
@media (max-width: 1024px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 120px 20px 60px;
    }

    .hero-content {
        max-width: 100%;
        margin-bottom: 40px;
    }

    .hero-stats {
        justify-content: center;
    }

    .timeline-item:nth-child(odd),
    .timeline-item:nth-child(even) {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .metodologia-timeline::before {
        left: 50%;
        transform: translateX(-50%);
    }

    .timeline-content {
        margin: 20px 0;
        text-align: center;
    }

    .service-item-detailed {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

@media (max-width: 768px) {
    nav {
        padding: 0 20px;
    }

    .logo {
        z-index: 1002; /* Garante que o logo esteja acima do menu */
    }

    .logo img {
        height: 40px;
    }

    .menu-toggle {
        display: flex;
    }

    nav ul {
        display: none;
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 60px; /* Ajusta a posição do menu dropdown */
        left: 0;
        background-color: #0d1117;
        padding: 20px 0;
        border-top: 1px solid #222;
        z-index: 1001; /* Garante que o menu esteja abaixo do logo e toggle */
    }

    nav ul.active {
        display: flex;
    }

    nav ul li {
        margin: 10px 0;
        text-align: center;
    }

    nav ul li a {
        font-size: 1.2em;
    }

    .hero h1 {
        font-size: 2.8em;
    }

    .hero-subtitle {
        font-size: 1.2em;
    }

    .diferenciais-section, 
    .metodologia-section, 
    .services-section, 
    .resultados-section, 
    .benefits-section,
    .contact-section,
    .faq-section, 
    .cta-section, 
    footer {
        padding: 60px 20px;
    }

    .benefits-two-column {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .diferenciais-grid, 
    .resultados-grid {
        grid-template-columns: 1fr;
    }

    .footer-container {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        flex-direction: column;
        gap: 15px;
        margin: 20px 0;
    }
}

