/* Reset básico e configurações globais (já existente) */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Poppins', sans-serif; background-color: #f0f2f5; color: #333; }
.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }

html {
    scroll-behavior: smooth;
}

/* Estilo do Cabeçalho (já existente) */
.main-header { background-color: #121212; padding: 15px 0; border-bottom: 1px solid #e0e0e0; position: fixed; width: 100%; top: 0; z-index: 1000; }
.main-header .container { display: flex; justify-content: space-between; align-items: center; }
.logo { font-size: 10px; font-weight: 500; color: #6a11cb; text-decoration: none; }
.main-nav ul { list-style: none; display: flex; gap: 10px; }
.main-nav a { text-decoration: none; color: #fff; font-weight: 500; transition: color 0.3s ease; font-size: 14px; }
.main-nav a:hover { color: #6a11cb; }
.logo img { height: 40px; margin-right: 0.5rem;}

/* Estilo da Seção Principal (Hero) - VERSÃO FINAL CONFORME IMAGEM */
.hero-section {
    background-color: #121212;
    color: #fff;
    padding: 100px 0;
    margin-top: 70px;
    display: flex;
    align-items: center;
    min-height: 80vh; /* Garante uma altura mínima para a seção */
}

.hero-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
}

.hero-text {
    flex: 1;
    max-width: 500px;
}

.intro-text {
    font-size: 16px;
    color: #a0a0a0; /* Cinza claro para o texto de introdução */
    margin-bottom: 25px;
    font-family: 'Courier New', Courier, monospace; /* Fonte monoespaçada para o estilo "//" */
}

.hero-text h1 {
    font-size: 56px; /* Tamanho da fonte maior */
    font-weight: 700;
    line-height: 1.15; /* Espaçamento entre linhas mais justo */
    margin-bottom: 25px;
    text-transform: none; /* Garante que não haja transformação de texto */
}

.highlight-text {
    color: #6a11cb; /* Cor de destaque verde-azulada */
}

.subtitle {
    font-size: 16px;
    color: #ccc;
    line-height: 1.7;
    margin-bottom: 35px;
    max-width: 450px; /* Limita a largura do parágrafo */
}

.cta-button {
    background-color: #02ee45;
    color: #121212;
    padding: 15px 30px;
    border-radius: 8px; /* Bordas menos arredondadas */
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    display: inline-block;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: #fff;
    transform: translateY(-3px); /* Efeito de levantar sutil */
}

.hero-image {
    flex: 1;
    text-align: center;;
}

.hero-image img {
    max-width: 100%;
    height: auto;
}

/* --- AJUSTES DE RESPONSIVIDADE PARA A HERO SECTION --- */
@media (max-width: 992px) {
    .hero-text h1 {
        font-size: 48px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 60px 0;
        min-height: auto;
    }
    .hero-container {
        flex-direction: column;
        text-align: center;
    }
    .hero-text {
        max-width: 100%;
    }
    .hero-text h1 {
        font-size: 40px;
    }
    .subtitle {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
    .hero-image {
        margin-top: 40px;
    }
}


/* --- NOVOS ESTILOS --- */

/* Seção de Vantagens */
.advantages-section {
    padding: 80px 0;
    background-color: #121212;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 colunas */
    gap: 30px;
    text-align: center;
}

.advantage-card {
    padding: 25px;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.advantage-card:hover {
    transform: translateY(-10px); /* Efeito de levantar o card */
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.advantage-card i {
    font-size: 40px;
    color: #6a11cb; /* Cor roxa principal */
    margin-bottom: 15px;
}

.advantage-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #fff;
}

.advantage-card p {
    font-size: 14px;
    color: #c6c5c5;
    line-height: 1.6;
}

/* Seção da Plataforma */
.platform-section {
    padding: 80px 0;
    background-color: #121212; /* Fundo levemente diferente */
}

.platform-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.platform-text {
    flex: 1; /* Ocupa metade do espaço */
    color: #ccc;
}

.platform-text h2 {
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.3;
}

.platform-text p {
    font-size: 16px;
    color: #ccc;
    margin-bottom: 30px;
    line-height: 1.7;
}

.platform-text p.subtitle {
    font-size: 17px;
    color: #ccc;
    margin-bottom: 5px;
    line-height: 1.7;
}

.platform-text ul {
    list-style: none;
    padding: 0;
}

.platform-text ul li {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    font-size: 18px;
}

.platform-text ul i {
    color: #25d366; /* Verde para o ícone de check */
    font-size: 18px;
    gap: 8px;
    display: flex;
    align-items: flex-start;
    margin-bottom: 0,5rem;
    font-size: 1.0rem;
}

.platform-image {
    flex: 1; /* Ocupa a outra metade */
    text-align: center;
}

.platform-image img, .platform-image video {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.solutions-list {
    margin-bottom: 2rem;
}
        
.solutions-list-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0,8rem;
    font-size: 1.0rem;
}
        
.solutions-list-icon {
    color: #6a11cb;
    margin-right: 1rem;
    font-size: 1.0rem;
    flex-shrink: 0;
}

/* Cabeçalho de Seção Genérico */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #fff;
}

.section-header p {
    font-size: 18px;
    color: #ccc;
    max-width: 600px;
    margin: 0 auto;
}

/* Seção de Recursos Detalhados */
.features-section {
    padding: 80px 0;
    background-color: #121212;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 colunas */
    gap: 30px;
}

.feature-card {
    background-color: #121212;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid #e0e0e0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.feature-card i {
    font-size: 36px;
    color: #2575fc; /* Tom de azul do gradiente */
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #fff;
}

.feature-card p {
    font-size: 14px;
    color: #ccc;
    line-height: 1.6;
}


/* Seção de Planos e Preços (VERSÃO DARK MODE - Conforme Imagem) */
.pricing-section-dark {
    background-color: #121212; /* Fundo preto/cinza escuro */
    padding: 80px 0;
    color: #fff;
    font-family: 'Poppins', sans-serif;
}

.pricing-section-dark .container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.pricing-card-dark {
    background-color: #1e1e1e;
    border: 1px solid #333;
    border-radius: 15px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, border-color 0.3s ease;
    position: relative;

}

.pricing-card-dark:hover {
    transform: translateY(-10px);
    border-color: #6a11cb; /* Cor de destaque no hover */
}

/* Card Popular */
.pricing-card-dark.popular-dark {
    border-color: #6a11cb;
    border-width: 2px;
}

.popular-badge-dark {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #6a11cb;
    color: #fff;
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    
}

/* Cabeçalho do Card */
.pricing-header-dark p {
    font-size: 16px;
    color: #ccc;
    margin: 0;
}

.pricing-header-dark h2 {
    font-size: 36px;
    font-weight: 700;
    margin: 0;
}

.pricing-header-dark span {
    display: block;
    font-size: 14px;
    color: #aaa;
    padding-bottom: 15px;
    border-bottom: 1px solid #444;
    margin-bottom: 15px;
}

.channel-icons {
    display: flex;
    gap: 15px;
    font-size: 18px;
    color: #ccc;
}

/* Corpo do Card */
.pricing-body-dark {
    flex-grow: 1; /* Empurra o footer para baixo */
    padding: 20px 0;
}

.attendant-limit {
    font-size: 16px;
    color: #ccc;
    margin-bottom: 25px;
}

.features-list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 15px;
}

.features-list .fa-check-circle {
    color: #ccc; /* Cor dos checks */
    font-size: 18px;;
}

.pricing-price {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  margin-top: 15px;
  color: var(--dark-color);
  text-align: center;
}

.pricing-description {
  color: #fff;
  margin-bottom: 10px;
  font-size: 0.9rem;
}

.pricing-amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pricing-amount .currency {
    font-size: 1.5rem;
    margin-right: 0.3rem;
    align-self: flex-start;
    margin-top: 0.5rem;
}

/* Caixa de Detalhes Interna */
.details-box {
    background-color: #2a2a2a;
    border-radius: 10px;
    padding: 20px;
}

.details-box ul {
    list-style: none;
    padding: 0;
}

.details-box li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: #ccc;
    margin-bottom: 10px;
}

.details-box li i {
    font-size: 16px;
    width: 20px; /* Alinha os ícones */
    text-align: center;
}

/* Rodapé e Botão */
.pricing-footer-dark {
    margin-top: auto; /* Garante que o botão fique no final */
}

.cta-button-dark {
    display: block;
    width: 100%;
    background-color: #02ee45;
    color: #121212;
    text-align: center;
    padding: 15px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.cta-button-dark:hover {
    background-color: #fff;
}

/* Ajustes de Responsividade para os novos cards */
@media (max-width: 992px) {
    .pricing-section-dark .container {
        grid-template-columns: 1fr; /* Empilha os cards */
        gap: 40px;
    }
}

/* Para Tablets e Dispositivos Menores (até 768px) */
@media (max-width: 768px) {

    /* Ajusta a seção Hero */
    .hero-content h1 {
        font-size: 36px; /* Diminui o tamanho do título principal */
    }

    .hero-content p {
        font-size: 16px;
    }

    /* Ajusta a grade de vantagens para 2 colunas */
    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Ajusta a seção da plataforma para empilhar verticalmente */
    .platform-content {
        flex-direction: column; /* Coloca o texto sobre a imagem */
        text-align: center;
    }

    .platform-text {
        margin-bottom: 40px;
    }

    /* Ajusta a grade de recursos para 2 colunas */
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Ajusta a grade de preços para uma única coluna */
    .pricing-grid {
        grid-template-columns: 1fr; /* Uma coluna */
        gap: 40px; /* Aumenta o espaçamento vertical */
    }

    .pricing-card.popular {
        transform: scale(1); /* Remove o zoom do card popular para não ocupar muito espaço */
    }
}


/* Para Celulares (até 480px) */
@media (max-width: 480px) {
    /* Ajusta o cabeçalho */
    .logo {
        font-size: 20px; /* Diminui o logo */
    }

    /* Ajusta a seção Hero */
    .hero-section {
        padding: 150px 0 100px; /* Diminui o espaçamento */
    }

    .hero-content h1 {
        font-size: 28px; /* Título ainda menor */
    }

    .cta-button {
        padding: 12px 25px;
        font-size: 14px;
    }

    /* Ajusta as seções com cabeçalho */
    .section-header h2 {
        font-size: 28px;
    }

    .section-header p {
        font-size: 16px;
    }

    /* Ajusta a grade de vantagens para 1 coluna */
    .advantages-grid {
        grid-template-columns: 1fr;
    }

    /* Ajusta a grade de recursos para 1 coluna */
    .features-grid {
        grid-template-columns: 1fr;
    }
}
/* Seção de Dúvidas Frequentes (FAQ) */
.faq-section {
    padding: 80px 0;
    background-color: #121212;
}

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

.faq-item {
    border-bottom: 1px solid #e0e0e0;
    padding: 15px 0;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    list-style: none; /* Remove o marcador padrão do <summary> */
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
}

.faq-question::-webkit-details-marker {
    display: none; /* Remove o marcador no Chrome/Safari */
}

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

.faq-answer {
    padding: 15px 0 0;
    font-size: 16px;
    color: #ccc;
    line-height: 1.7;
}

/* Animação do ícone da seta no FAQ */
details[open] > summary i {
    transform: rotate(180deg);
}

/* Estilos para seção de parceria Meta */
        .meta-partnership {
            padding: 4rem 0;
            background: #121212;
            color: white;
            position: relative;
            overflow: hidden;
        }
        
        .meta-partnership::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
            opacity: 0.3;
        }
        
        .meta-partnership-content {
            position: relative;
            z-index: 1;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center;
            max-width: 800px;
            margin: 0 auto;
        }
        
        .meta-partnership-text {
            animation: fadeInLeft 0.8s ease;
        }
        
        .meta-partnership-title {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }
        
        .meta-partnership-description {
            font-size: 1.1rem;
            line-height: 1.7;
            opacity: 0.95;
        }
        
        .meta-partnership-image {
            text-align: center;
            animation: fadeInRight 0.8s ease;
        }
        
        .meta-partnership-image img {
            max-width: 100%;
            height: auto;
            border-radius: var(--border-radius-lg);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
            transition: transform 0.3s ease;
        }
        
        .meta-partnership-image img:hover {
            transform: scale(1.05);
        }

/* Rodapé (Footer) */
.main-footer {
    background-color: #121212; /* Cor escura para o rodapé */
    color: #ecf0f1;
    padding: 60px 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr; /* 3 colunas com a primeira maior */
    gap: 40px;
    padding-bottom: 40px;
}

.footer-about h3, .footer-links h3, .footer-social h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #fff;
}

.footer-about p {
    color: #bdc3c7;
    line-height: 1.7;
}

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

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

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

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

.social-icons a {
    color: #ecf0f1;
    font-size: 22px;
    margin-right: 15px;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: #3498db; /* Azul para hover */
}

.footer-bottom {
    border-top: 1px solid #34495e;
    padding: 20px 0;
    text-align: center;
    font-size: 14px;
    color: #bdc3c7;
}

/* --- AJUSTES FINAIS DE RESPONSIVIDADE --- */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr; /* Empilha as colunas do rodapé */
        text-align: center;
    }

    .social-icons {
        margin-bottom: 20px;
    }
}

/* Esconde o ícone do hambúrguer em telas grandes */
.hamburger {
    display: none;
    cursor: pointer;
    z-index: 1001;
}

.hamburger .bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    transition: all 0.3s ease-in-out;
    background-color: #fff; /* Cor das barras (ajuste se necessário) */
}

/* Regras para telas de tablet e celular (ex: até 991px) */
@media (max-width: 991px) {
    /* Esconde a lista de links do desktop */
    .main-nav ul {
        display: none;
    }

    /* Mostra o ícone do hambúrguer */
    .hamburger {
        display: block;
    }

    /* Posiciona o menu fora da tela por padrão */
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%; /* Começa totalmente fora da tela à direita */
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background-color: #1e1e1e; /* Fundo escuro para o menu */
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
        transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1); /* Animação suave */
        z-index: 1000;
        padding-top: 80px;
    }

    /* REGRA MAIS IMPORTANTE: Faz o menu deslizar para dentro quando ativo */
    .main-nav.active {
        right: 0;
    }

    /* Mostra os links dentro do menu ativo */
    .main-nav.active ul {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .main-nav.active .nav-item {
        margin: 15px 0;
        width: 100%;
        text-align: center;
    }

    .main-nav.active .nav-link {
        color: #fff;
        font-size: 1.2rem;
    }

    /* Animação do ícone do hambúrguer para um "X" */
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }
    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
}

/* Estilo para o overlay que escurece a página */
.nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Seção de Clientes */

.clients {
    padding: 5rem 0;
    background-color: #121212;
}

.clients-section {
    padding: 40px 0;
    background-color: #1a1a1a;
    text-align: center;
}

.clients-section p {
    font-size: 1.1rem;
    font-weight: 500;
    color: #ccc;
    margin-bottom: 30px;
}

.clients-section h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #fff;
}

.clients-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 40px;
}

.clients-logos img {
    max-height: 60px;
    max-width: 150px;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.clients-logos img:hover {
    filter: grayscale(0%);
    opacity: 1;
}


/* Seção de Depoimentos */
.testimonials-section {
    padding: 80px 0;
    background-color: #121212;
}

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

.testimonial-card {
    background-color: #1e1e1e;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    border: 1px solid #333;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: #6a11cb;
}

.testimonial-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 3px solid #6a11cb;
}

.testimonial-text {
    font-size: 1rem;
    font-style: italic;
    color: #ccc;
    margin-bottom: 20px;
}

.testimonial-author {
    font-weight: 600;
    color: #fff;
    margin-bottom: 5px;
}

.testimonial-company {
    font-size: 0.9rem;
    color: #aaa;
}

/* --- ESTILOS PARA A SEÇÃO DE FORMULÁRIO DE CONTATO --- */

.contact-section-v2 {
    padding: 80px 20px;
    background-color: #121212; /* Mantém o fundo escuro */
    display: flex;
    justify-content: center;
    align-items: center;
}

.form-container-v2 {
    max-width: 480px;
    width: 100%;
    background-color: #eaf2f8; /* Fundo azul-claro do formulário */
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.form-header-v2 {
    text-align: center;
    margin-bottom: 30px;
}

.form-header-v2 h2 {
    color: #2c3e50;
    font-size: 20px;
    margin-bottom: 10px;
}

.form-header-v2 p {
    color: #5d6d7e;
    font-size: 15px;
    line-height: 1.6;
}

.contact-form-v2 .form-group-v2 {
    margin-bottom: 20px;
}

.contact-form-v2 label {
    display: block;
    color: #5d6d7e;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 8px;
}

.contact-form-v2 input[type="text"],
.contact-form-v2 input[type="email"],
.contact-form-v2 input[type="url"],
.contact-form-v2 input[type="tel"],
.contact-form-v2 select {
    width: 100%;
    padding: 12px 15px;
    background-color: #fff;
    border: 1px solid #bdc3c7;
    border-radius: 8px;
    color: #2c3e50;
    font-size: 16px;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.contact-form-v2 input:focus,
.contact-form-v2 select:focus {
    outline: none;
    border-color: #6a11cb; /* roxo de destaque */
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.2);
}

/* Estilos para o campo de telefone com bandeiras */
.iti {
    width: 100%;
}

/* Termos de uso */
.form-group-v2.terms {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.form-group-v2.terms input[type="checkbox"] {
    margin-top: 4px;
    width: 18px;
    height: 18px;
}

.form-group-v2.terms label {
    color: #5d6d7e;
    font-weight: normal;
    font-size: 14px;
}

.terms-details {
    display: block;
    font-size: 12px;
    color: #7f8c8d;
    margin-top: 5px;
}

/* Botão de envio */
.cta-button-v2 {
    width: 100%;
    padding: 15px;
    background-color: #02ee45;
    color: #121212;
    border: none;
    border-radius: 50px; /* Bordas bem arredondadas */
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
}

.cta-button-v2:hover {
    background-color: #6a11cb;
    transform: translateY(-2px);
}

/* Mensagens de status */
.form-status-v2 {
    text-align: center;
    padding: 10px;
    margin-top: 15px;
    border-radius: 8px;
    display: none;
}
.form-status-v2.success { display: block; background-color: #d4edda; color: #155724; }
.form-status-v2.error { display: block; background-color: #f8d7da; color: #721c24; }

/* Carrossel de clientes animado */
.clients-carousel {
    overflow: hidden;
    width: 100%;
    margin: 50px 0;
    position: relative;
}

.clients-track {
    display: flex;
    animation: scroll-left 30s linear infinite;
    width: calc(200% + 40px); /* Largura para comportar logos duplicados */
}

.client-logo {
    flex: 0 0 auto;
    margin: 0 20px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 10px;
    padding: 15px 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-width: 120px;
}

.client-logo:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.client-logo img {
    max-height: 50px;
    max-width: 100px;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: filter 0.3s ease;
}

.client-logo:hover img {
    filter: brightness(1.2);
}

/* Animação de scroll da direita para esquerda */
@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Pausar animação ao hover */
.clients-carousel:hover .clients-track {
    animation-play-state: paused;
}

/* Responsivo */
/* =================================================================== */
/*           REGRAS DE RESPONSIVIDADE OTIMIZADAS E UNIFICADAS          */
/* =================================================================== */

/* Para Tablets Maiores e Desktops Pequenos (até 1200px) */
@media (max-width: 1200px) {
    .container {
        max-width: 960px;
    }
}

/* Para Tablets em modo Retrato (até 992px) */
@media (max-width: 992px) {
    .container {
        max-width: 720px;
    }

    .hero-text h1 {
        font-size: 48px; /* Reduz o título principal um pouco antes */
    }

    /* Passa as grids de 4 para 3 colunas */
    .advantages-grid,
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .platform-content,
    .meta-partnership-content {
        grid-template-columns: 1fr; /* Empilha as seções de 2 colunas */
        text-align: center;
    }

    .platform-image {
        margin-top: 40px;
    }

    .pricing-section-dark .container {
        grid-template-columns: 1fr; /* Planos em uma coluna */
        gap: 40px;
    }

    .footer-content {
        grid-template-columns: 1fr; /* Rodapé em uma coluna */
        text-align: center;
    }
    .footer-social {
        margin-top: 20px;
    }
}

/* Para Celulares em modo Paisagem e Tablets Menores (até 768px) */
@media (max-width: 768px) {
    body {
        font-size: 15px; /* Ajusta o tamanho base da fonte */
    }

    .section-header h2,
    .platform-text h2,
    .meta-partnership-title {
        font-size: 32px; /* Reduz todos os títulos de seção */
    }

    .hero-text h1 {
        font-size: 40px;
    }

    /* Passa as grids de 3 para 2 colunas */
    .advantages-grid,
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Para Celulares em modo Retrato (até 576px) */
@media (max-width: 576px) {
    .hero-section {
        padding: 60px 0;
        min-height: auto;
        text-align: center;
    }
    .hero-container {
        flex-direction: column;
    }
    .hero-image {
        margin-top: 40px;
    }
    .hero-text h1 {
        font-size: 36px;
    }

    /* Passa as grids de 2 para 1 coluna */
    .advantages-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }

    .form-container-v2 {
        padding: 30px 20px; /* Reduz o padding do formulário em telas pequenas */
    }

    .form-header-v2 h2 {
        font-size: 24px;
    }
}

/* =================================================================== */
/*           REGRAS DO MENU HAMBÚRGUER (JÁ ESTAVAM BOAS)               */
/* =================================================================== */
/* Esconde o ícone do hambúrguer em telas grandes */
.hamburger {
    display: none;
    cursor: pointer;
    z-index: 1001;
}

.hamburger .bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    transition: all 0.3s ease-in-out;
    background-color: #fff;
}

/* Regras para telas de tablet e celular (ponto de quebra do menu) */
@media (max-width: 992px) {
    .main-nav ul {
        display: none;
    }
    .hamburger {
        display: block;
    }
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background-color: #1e1e1e;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
        transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1);
        z-index: 1000;
        padding-top: 80px;
    }
    .main-nav.active {
        right: 0;
    }
    .main-nav.active ul {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }
    .main-nav.active .nav-item {
        margin: 15px 0;
        width: 100%;
        text-align: center;
    }
    .main-nav.active .nav-link {
        color: #fff;
        font-size: 1.2rem;
    }
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }
    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
}

/* Estilo para o overlay que escurece a página */
.nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.nav-overlay.active {
    opacity: 1;
    visibility: visible;
}


