/* RESET BÁSICO */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #f4f4f4;
    color: #333;
    overflow-x: hidden; /* Evita rolagem horizontal causada por elementos rotacionados */
}

/* CONTAINER CENTRALIZA O CONTEÚDO */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0;
}

/* --- HEADER --- */
.header {
    background-color: rgba(230, 240, 255, 0.1); /* 50% mais translúcido */
    color: #333;
    padding: 0; /* Remove o padding vertical para diminuir a margem do logo */
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 0; /* Adiciona um padding vertical mínimo para o cabeçalho */
}

.logo-container {
    margin-bottom: 0; /* Remove a margem que empurrava o menu para baixo */
}

.logo-img {
    height: 130px; /* Aumenta um pouco mais a altura do logo */
    width: auto;   /* A largura se ajusta automaticamente */
    display: inline-block;
    /* filter: brightness(0) invert(1); -- Removido para exibir a cor original do logo */ 
}

.main-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end; /* Alinha os itens internos (os links) à direita */
}

.main-nav a {
    color: #333;
    text-decoration: none;
    margin: 0 10px; /* Espaçamento reduzido para a nova fonte */
    font-family: "Arial Black", Arial, sans-serif; /* Fonte alterada */
    font-size: 1.1rem;
    transition: color 0.3s;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.main-nav a:hover {
    color: #111184;
}

.btn-cta-nav {
    background-color: #111184;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    margin-left: 20px;
    font-family: "Arial Black", Arial, sans-serif;
    text-transform: uppercase;
}

.btn-cta-nav:hover {
    background-color: #0e0e6f;
    color: white;
}

/* Ajuste para o link do logo */
.logo-container a {
    display: flex; /* Garante que a imagem do logo se comporte bem no flexbox */
    align-items: center;
}


/* --- HERO SECTION --- */
.hero {
    position: relative; /* Essencial para posicionar o carrossel de fundo */
    background-color: #070738; /* Cor de fundo fallback caso as imagens não carreguem */
    color: #ffffff;
    padding: 70px 0;
    text-align: center;
    overflow: hidden; /* Garante que nada saia dos limites */
}

/* --- CARROSSEL DE IMAGENS DE FUNDO --- */
.hero-image-carousel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1; /* Fica atrás do conteúdo */
}

.hero-image-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.8s ease-in-out; /* Transição mais suave para o fundo */
}

/* Camada azul translúcida sobre a imagem para melhorar o contraste do texto */
.hero-image-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(7, 7, 56, 0.5); /* Azul marinho (#070738) com 50% de opacidade */
}

.hero-image-slide.active {
    opacity: 1;
}

/* --- CARROSSEL DE TEXTO HERO --- */
.hero-text-carousel {
    position: relative;
    min-height: 120px; /* Altura mínima para acomodar o texto */
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 5px 0 15px; /* Espaçamento padronizado: 5px acima, 15px abaixo */
}

.slide-text {
    position: absolute;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    font-family: Arial, sans-serif;
    font-size: 1.5rem;
    color: #ffffff;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    line-height: 1.4;
}

.slide-text.active {
    opacity: 1;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative; /* Garante que o conteúdo fique sobre o fundo */
    z-index: 2; /* Fica na frente do carrossel de imagens */
}

/* --- CAMINHOS PARA IMAGENS DE FUNDO --- */
/* Instrução: Salve 5 imagens com estes nomes na sua pasta 'img' */
#bg-slide-1 { background-image: url('img/hero-juntas-comerciais.webp'); }
#bg-slide-2 { background-image: url('img/hero-armazens-gerais.webp'); }
#bg-slide-3 { background-image: url('img/hero-documentos-societarios.webp'); }
#bg-slide-4 { background-image: url('img/hero-contabilidades-advocacias.webp'); }
#bg-slide-5 { background-image: url('img/hero-pequenas-grandes-empresas.webp'); }


.headline {
    font-family: "Arial Black", Arial, sans-serif;
    font-size: 3rem;
    margin-bottom: 0; /* Margem zerada para controle pelo carrossel de texto */
    line-height: 1.2;
    color: #ffffff;
}

.headline b {
    color: #ffffff;
    font-weight: 900;
}

.subheadline {
    font-size: 1.2rem;
    color: #f0f0f0;
    margin-bottom: 30px;
}
.btn-primary {
    display: inline-block;
    background-color: #3B82F6;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    text-transform: uppercase;
    transition: background-color 0.3s, transform 0.2s;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-family: "Arial Black", Arial, sans-serif;
}

.btn-primary:hover {
    background-color: #1E40AF;
    transform: translateY(-2px);
}

/* --- SERVIÇOS --- */
.value-proposition {
    padding: 60px 0;
    background-color: #ffffff;
}

.value-proposition h3 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2rem;
    color: #1a1a1a;
}

.card-grid {
    display: flex;
    gap: 30px; 
    justify-content: center;
    flex-wrap: wrap;
}

.card-grid .card {
    background-color: #f9f9f9;
    padding: 25px;
    border-left: 5px solid #070738;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    flex-basis: calc(33.333% - 20px);
    min-width: 280px;
}

.card h4 {
    color: #070738;
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.card p {
    color: #555;
}

/* --- CARROSSEL DE LOGOS (NOVO) --- */
.client-logos {
    padding: 60px 0;
    background-color: #f4f4f4; 
    text-align: center;
}

.logo-carousel-container {
    width: 100%;
    overflow: hidden; 
    /* Variáveis para controle do carrossel */
    --logo-width: 200px;
    --logo-margin: 20px;
    --logo-count: 13; /* Número de logos únicos */
    --animation-time: 80s; /* Duração da animação (bem mais lento) */
}

.logo-carousel-track {
    display: flex;
    animation: scrollLogos var(--animation-time) linear infinite; 
    padding: 20px 0;
}

.logo-item {
    flex-shrink: 0;
    width: var(--logo-width);
    height: 100px;
    margin: 0 var(--logo-margin);
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-carousel-track img {
    max-width: 100%;
    /* Força a imagem a ocupar a altura total do contêiner */
    height: 100%; 
    width: auto; /* A largura se ajustará automaticamente */
    object-fit: contain; /* Garante que a imagem se ajuste sem distorcer */
    opacity: 0.5;
    transition: opacity 0.3s;
    user-select: none;
}

/* Pausa a animação quando o mouse está sobre o carrossel (melhor UX) */
.logo-carousel-container:hover .logo-carousel-track {
    animation-play-state: paused;
}

.logo-carousel-track img:hover {
    opacity: 1;
}

/* ANIMAÇÃO DINÂMICA COM CSS VARIABLES */
@keyframes scrollLogos {
    from {
        transform: translateX(0);
    }
    to {
        /* Move a faixa pela largura exata dos logos originais, calculado dinamicamente */
        transform: translateX(calc(var(--logo-count) * (var(--logo-width) + var(--logo-margin) * 2) * -1));
    }
}

/* --- AJUSTES PARA ÍCONES E FOTO --- */
.card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: flex-start;
}

.card .icon {
    width: 50px;
    height: 50px;
    margin-bottom: 15px;    fill: #070738; /* Cor do ícone */
}

.history-content {
    align-items: center; /* Centraliza verticalmente */
}

.founder-photo-container {
    flex-basis: 300px; /* Largura fixa para a foto */
    flex-shrink: 0;
    text-align: center;
}

.founder-photo-container img {
    width: 100%;
    max-width: 250px; /* Tamanho da foto */
    border-radius: 8px; /* Foto com cantos arredondados */
    border: 5px solid #070738;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.founder-photo-container h4 {
    margin-top: 15px;
    color: #1a1a1a;
    font-size: 1.2rem;
}

.founder-photo-container p {
    color: #555;
    font-size: 0.9rem;
}

.form-group select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1rem;
    background-color: white; /* Garante fundo branco em todos os navegadores */
    -webkit-appearance: none; /* Remove estilo padrão do iOS */
    -moz-appearance: none; /* Remove estilo padrão do Firefox */
    appearance: none; /* Remove estilo padrão */
    background-image: url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20width%3D%2220%22%20height%3D%2220%22%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%3E%3Cpath%20d%3D%22M5%208l5%205%205-5z%22%20fill%3D%22%23555%22/%3E%3C/svg%3E');
    background-repeat: no-repeat;
    background-position: right 10px top 50%;
    background-size: 16px;
}

/* --- HISTÓRIA --- */
.history-section {
    padding: 40px 0;
    background-color: #ffffff; /* Mudei para branco para destacar mais após o carrossel cinza */
}

.section-title {
    text-align: center;
    font-size: 2.2rem;
    color: #070738;
    margin-bottom: 50px;
}

.history-content {
    display: flex;
    gap: 40px;
    align-items: center;
}

.text-block {
    flex: 2;
    font-size: 1.1rem;
    color: #444;
    border-left: 4px solid #111184;
    padding-left: 15px;
}

.text-block p {
    margin-bottom: 20px;
    text-align: justify;
}

.intro-text {
    font-size: 1.3rem;
    font-weight: bold;
    color: #1a1a1a;
}

.highlight-card {
    background-color: #070738;
    color: white;
    flex: 1;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.highlight-title {
    color: #ffffff;
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.highlight-data {
    font-size: 1.1rem;
    font-weight: bold;
    margin-bottom: 15px;
}

.btn-secondary {
    display: inline-block;
    background-color: #111184;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s;
    margin-top: 15px;
}

.btn-secondary:hover {
    background-color: #0e0e6f;
}

/* --- CONTATO --- */
.contact-section {
    padding: 5px 0; /* Altura mínima na seção */
    background-color: #f9f9f9; /* Mudei para cinza claro para contraste */
}

.contact-section .section-title {
    margin-bottom: 10px; /* Título mais próximo do subtítulo */
}

.contact-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 10px; /* Subtítulo mais próximo do formulário */
}

.contact-grid {
    display: flex;
    gap: 20px; /* Aproximei as duas caixas (formulário e info) */
    align-items: stretch; /* Garante que os itens filhos tenham a mesma altura */
}

.contact-form-container, .contact-info {
    flex: 1;
    background-color: #ffffff; /* Fundo branco para formulário */
    padding: 8px; /* Caixas internas super compactas */
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    border-left: 4px solid #070738;
}

.contact-info {
    display: flex; /* Habilita o flexbox */
    flex-direction: column; /* Organiza os itens principais em coluna */
}

.contact-form-container h3, .contact-info h3 {
    font-size: 1.5rem;
    color: #1a1a1a;
    margin-bottom: 5px; /* Títulos colados no conteúdo */
    border-bottom: 1px solid #ddd;
    padding-bottom: 3px;
}

.form-group {
    margin-bottom: 5px; /* Menos espaço entre campos */
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #444;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group textarea {
    width: 100%;
    padding: 6px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1rem;
}

.form-group textarea {
    resize: vertical; /* Permite ao usuário aumentar a altura da caixa se precisar escrever mais */
}

.form-submit {
    width: 100%;
    margin-top: 10px;
}

.form-group-checkbox {
    display: flex;
    align-items: center;
    margin-bottom: 5px;
}

.form-group-checkbox input[type="checkbox"] {
    margin-right: 10px;
    width: 18px;
    height: 18px;
}

.form-group-checkbox label {
    font-weight: normal;
    font-size: 0.9rem;
    color: #555;
}

.contact-info-main {
    flex-grow: 1; /* Permite que esta área cresça para ocupar o espaço */
    padding: 0; /* Remove padding vertical extra */
}

.info-item {
    margin-bottom: 5px; /* Itens da lista de contato mais juntos */
    padding-bottom: 3px;
    border-bottom: 1px dashed #eee;
}

.info-item h4 {
    color: #070738;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.info-item p a {
    color: #111184;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
}

/* --- FOOTER --- */
.footer {
    background-color: #070738; 
    color: white;
    text-align: center;
    padding: 20px 0;
    font-size: 0.9rem;
    border-top: 5px solid #111184;
}

/* --- BOTÃO WHATSAPP --- */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.3s;
}

.whatsapp-float:hover {
    background-color: #128C7E;
    transform: scale(1.1);
}

.whatsapp-float svg {
    width: 35px;
    height: 35px;
    fill: #ffffff;
}

/* --- RESPONSIVIDADE --- */
@media (max-width: 768px) {
    .header .container {
        flex-direction: column; /* Volta a empilhar no mobile */
    }
    .logo-container {
        margin-bottom: 20px; /* Adiciona a margem de volta no mobile */
    }

    /* Layout em grade 2x2 para o menu no mobile */
    .nav-links {
        display: flex;
        flex-wrap: wrap;
        width: 100%;
        justify-content: center;
    }

    .nav-links > .nav-item,
    .nav-links > a {
        flex: 0 0 50%; /* Define largura de 50% para cada item (2 por linha) */
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 5px 0;
    }

    .main-nav a {
        display: inline-block; 
        margin: 0;
        font-weight: 900; /* Força o negrito extra (Black) no mobile */
    }
    .btn-cta-nav {
        margin-left: 0;
        margin-top: 10px;
        display: inline-block;
    }

    .hero-carousel {
        min-height: 180px; /* Mais altura no mobile */
    }
    .slide-text { font-size: 1.2rem; }

    .headline, .service-hero h1, .service-hero.hero-lg h1 { font-size: 2rem; }
    .card-grid { 
        flex-direction: column; 
        align-items: center; /* Centraliza os cards */
        padding: 0 20px; 
    }
    .history-content, .contact-grid { 
        flex-direction: column; 
        align-items: center; /* Centraliza os blocos de conteúdo */
    }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }
    .whatsapp-float svg {
        width: 28px;
        height: 28px;
    }

    .logo-carousel-container {
        --logo-width: 150px;
        --logo-margin: 10px;
        --animation-time: 60s;
    }

    .logo-item {
        /* A largura e a margem agora são controladas por variáveis no container */
        height: 80px;  /* Altura menor para celular */
    }

    .history-content {
        text-align: center; /* Centraliza o texto dentro dos blocos */
    }
    .founder-photo-container {
        margin-bottom: 30px;
    }
}

/* --- ESTILOS DO DROPDOWN --- */

/* Contêiner do item de navegação que tem um dropdown */
.nav-item.dropdown {
    position: relative; /* Essencial para o posicionamento do menu dropdown */
    display: inline-block;
}

/* O link principal que aciona o dropdown */
.dropdown-toggle {
    cursor: pointer;
}

/* Adiciona uma seta para indicar que há um submenu */
.dropdown-toggle::after {
    content: ' ▼';
    font-size: 0.7em;
    display: inline-block;
    margin-left: 5px;
    vertical-align: middle;
}

/* O menu dropdown (escondido por padrão) */
.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%; /* Posiciona logo abaixo do item "Serviços" */
    left: 0;
    background-color: #ffffff;
    border: 1px solid #ddd;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    border-radius: 5px;
    min-width: 220px; /* Largura mínima para os itens */
    z-index: 1000;
}

/* Links dentro do menu dropdown */
.dropdown-menu a {
    color: #333;
    padding: 12px 16px;
    text-decoration: none;
    display: block; /* Faz com que cada link ocupe a largura total */
    text-align: left;
    font-size: 1rem; /* Tamanho da fonte dos sub-itens */
    text-transform: none; /* Remove o uppercase dos sub-itens */
    letter-spacing: normal;
    border-bottom: 1px solid #f4f4f4;
}

.dropdown-menu a:last-child {
    border-bottom: none; /* Remove a borda do último item */
}

/* Efeito hover para os links do dropdown */
.dropdown-menu a:hover {
    background-color: #f4f4f4;
    color: #111184; /* Mantém a cor do hover principal */
}

/* Mostra o menu dropdown quando o mouse passa sobre o contêiner */
.nav-item.dropdown:hover .dropdown-menu {
    display: block;
}

/* --- ESTILOS PARA SUB-PÁGINAS DE SERVIÇO --- */

/* Navegação simplificada para as sub-páginas */
.subpage-nav {
    display: flex;
    align-items: center;
    gap: 20px; /* Espaçamento entre os botões */
}

/* Estilo para o link "Home" */
.subpage-nav .nav-link-home {
    color: #333;
    text-decoration: none;
    font-family: "Arial Black", Arial, sans-serif;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s;
}

.subpage-nav .nav-link-home:hover {
    color: #111184;
}

/* Conteúdo principal da página de serviço */
.service-page-content {
    padding: 60px 0;
    background-color: #ffffff;
}

.service-page-content h1 {
    font-size: 2.5rem;
    color: #070738;
    margin-bottom: 20px;
}

.service-page-content p, .service-page-content ul {
    font-size: 1.1rem;
    margin-bottom: 20px;
}

/* --- ESTILOS DO MODELO DE PÁGINA DE SERVIÇO --- */

/* Hero da Página de Serviço */
.service-hero {
    position: relative;
    background-position: center;
    color: #ffffff;
    padding: 70px 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 550px; /* Garante altura mínima consistente em todas as páginas */
}

.service-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(7, 7, 56, 0.6); /* Sobreposição escura para legibilidade */
    z-index: 1;
}

.service-hero h1 {
    font-family: "Arial Black", Arial, sans-serif;
    font-size: 2.8rem;
    line-height: 1.2;
}

/* Classe específica para manter a Página 2 com fonte maior */
.service-hero.hero-lg h1 {
    font-size: 3rem;
}

.service-hero .service-subtitle {
    font-size: 1.5rem; /* Padronizado com a página inicial */
    color: #ffffff; /* Cor alterada para branco puro */
    margin-top: 20px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5); /* Sombra para legibilidade */
    line-height: 1.4;
}

.service-hero .container {
    position: relative;
    z-index: 2; /* Garante que o texto fique sobre a camada escura */
}
.service-hero .btn-primary {
    margin-top: 40px; /* Adiciona espaço entre o subtítulo e o botão */
}


/* Seção de Introdução do Serviço */
.service-intro {
    background-color: #ffffff;
    padding: 60px 0;
}

.service-intro h2 {
    font-size: 2rem;
    color: #070738;
    text-align: center;
    margin-bottom: 30px;
}

.service-intro p {
    font-size: 1.1rem;
    color: #444;
    text-align: justify;
    margin-bottom: 15px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.service-intro .highlight-text {
    font-weight: bold;
    color: #1a1a1a;
    text-align: center;
    margin-top: 20px;
}

/* Seção de Detalhes do Serviço */
.service-details {
    background-color: #f4f4f4;
    padding: 60px 0;
    text-align: center; /* Centraliza os subtítulos */
}

.service-details h2 {
    font-size: 2rem;
    color: #070738;
    text-align: center;
    margin-bottom: 15px;
}

.service-details > .container > p {
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 40px;
}

.service-details-subtitle {
    font-size: 1.5rem;
    color: #1a1a1a;
    margin-top: 40px;
    margin-bottom: 20px;
    padding-bottom: 5px;
    text-align: center;
    display: inline-block; /* Permite que a borda se ajuste ao texto */
    width: auto; /* Garante que não ocupe a largura toda */
}

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

.detail-item {
    background-color: #ffffff;
    padding: 25px;
    border-radius: 8px;
    border-left: 5px solid #111184;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.detail-item h3 {
    color: #070738;
    margin-bottom: 10px;
}

/* Seção de Benefícios */
.service-benefits {
    background-color: #ffffff;
    padding: 60px 0;
}

.service-benefits h2 {
    font-size: 2rem;
    color: #070738;
    text-align: center;
    margin-bottom: 30px;
}

.service-benefits ul {
    list-style-type: '✅  ';
    padding-left: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.service-benefits li {
    font-size: 1.1rem;
    margin-bottom: 15px;
}

/* Seção de Citação */
.service-quote {
    background-color: #070738;
    color: #ffffff;
    padding: 50px 0;
    text-align: center;
}

.service-quote blockquote {
    font-size: 1.3rem;
    font-style: italic;
    max-width: 800px;
    margin: 0 auto;
    border: none;
}

/* Seção de CTA Final */
.service-cta {
    background-color: #f4f4f4;
    padding: 60px 0;
    text-align: center;
}

.service-cta h2 {
    font-size: 2.2rem;
    color: #070738;
    margin-bottom: 15px;
}

.service-cta p {
    margin-bottom: 30px;
    font-size: 1.1rem;
    font-family: "Arial Black", Arial, sans-serif;
}

/* --- SEÇÃO DE ESTATÍSTICAS (ROLETA) --- */
.stats-section {
    background-color: #f4f4f4; /* Fundo cinza claro para separar da seção anterior */
    padding: 50px 0;
}

.stats-section .container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex-basis: 250px;
}

.stat-icon {
    width: 50px;
    height: 50px;
    fill: #111184; /* Azul dos links para consistência */
    margin-bottom: 15px;
}

.stat-item p {
    font-size: 1.1rem;
    color: #555;
    order: 1; /* Faz o texto aparecer antes do número */
    margin-bottom: 10px;
}

.stat-number {
    font-family: "Arial Black", Arial, sans-serif;
    font-size: 3rem;
    color: #070738;
    line-height: 1;
    order: 2; /* Faz o número aparecer depois do texto */
}

.stat-prefix {
    display: block;
    font-size: 2rem; /* Tamanho do texto "+ de" aumentado */
    font-family: "Arial Black", Arial, sans-serif;
    color: #070738; /* Cor restaurada para azul marinho */
    margin-bottom: 5px; /* Adiciona espaço abaixo do "+ de" */
}

/* Título para os ícones de redes sociais */
.social-title {
    color: #070738;
    font-size: 1.1rem;
    margin-bottom: 5px;
    margin-top: 5px; /* Remove o 'auto' para não empurrar para o fundo */
    padding-top: 5px; /* Remove espaço extra acima do título */
    text-align: center;
}

/* --- ÍCONES DE REDES SOCIAIS (DENTRO DA CAIXA DE CONTATO) --- */
.social-icons-contact {
    display: flex;
    justify-content: center;
    gap: 25px;
}

.social-icons-contact a {
    display: inline-block;
    color: #070738; /* Cor principal do site */
    transition: transform 0.3s, color 0.3s;
}

.social-icons-contact a:hover {
    color: #111184; /* Cor de hover */
    transform: scale(1.15); /* Efeito de zoom no hover */
}

.social-icons-contact svg {
    width: 30px;
    height: 30px;
    fill: currentColor; /* O SVG herda a cor do link (<a>) */
}

/* --- ESTILOS ESPECÍFICOS DA LANDING PAGE (LP) --- */

.lp-header {
    text-align: center;
    padding: 15px 0;
    background-color: #ffffff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}
.lp-header .logo-img {
    height: 100px; /* Logo um pouco menor para a LP */
}

.lp-hero {
    background-image: url('img/hero-pequenas-grandes-empresas.webp'); /* Reutilizando imagem existente */
    background-size: cover;
    background-position: center;
    position: relative;
    padding: 80px 0;
    color: white;
    text-align: center;
}
.lp-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-color: rgba(7, 7, 56, 0.9); /* Fundo bem escuro para leitura perfeita */
}
.lp-hero .container { position: relative; z-index: 2; }
.lp-hero h1 { font-size: 2.5rem; margin-bottom: 15px; line-height: 1.2; color: #fff; font-family: "Arial Black", Arial, sans-serif; }
.lp-hero h2 { font-size: 1.3rem; font-weight: normal; margin-bottom: 25px; color: #eee; }
.lp-hero p { font-size: 1.2rem; margin-bottom: 25px; max-width: 800px; margin-left: auto; margin-right: auto; line-height: 1.5; }
.lp-highlight-line { font-weight: bold; color: #4CAF50; margin-bottom: 35px; display: block; font-size: 1.1rem; text-transform: uppercase; letter-spacing: 1px; }
.lp-btn-large { font-size: 1.2rem; padding: 20px 40px; }

.lp-section { padding: 60px 0; }
.bg-white { background-color: #ffffff; }
.bg-gray { background-color: #f4f4f4; }
.bg-blue-light { background-color: #eef2ff; }

.lp-title { text-align: center; color: #1D4ED8; font-size: 2rem; margin-bottom: 40px; font-family: "Arial Black", Arial, sans-serif; }
.lp-text-center { text-align: center; max-width: 800px; margin: 0 auto 30px; font-size: 1.1rem; color: #444; }
.lp-mt-20 { margin-top: 20px; }

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

.lp-card { background: #fff; padding: 30px; border-radius: 8px; box-shadow: 0 4px 10px rgba(0,0,0,0.08); border-top: 4px solid #3B82F6; }
.lp-card h3 { color: #1D4ED8; margin-bottom: 15px; font-size: 1.3rem; }
.lp-card p { color: #555; font-size: 1rem; }

.lp-card-highlight { border-top: 4px solid #4CAF50; background-color: #f9fff9; }

.lp-card-service { background: #fff; padding: 25px; border-radius: 8px; text-align: center; box-shadow: 0 2px 5px rgba(0,0,0,0.05); }
.lp-card-service h3 { color: #3B82F6; margin-bottom: 10px; font-size: 1.2rem; font-weight: bold; }

.lp-pricing-box {
    background: #fff;
    max-width: 600px;
    margin: 0 auto;
    padding: 50px;
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
    text-align: center;
    border: 2px solid #3B82F6;
    position: relative;
}
.lp-price { font-size: 4rem; color: #3B82F6; font-weight: 900; margin: 10px 0; font-family: "Arial Black", Arial, sans-serif; }
.lp-price-sub { font-size: 1.1rem; color: #666; margin-bottom: 30px; }
.lp-list { text-align: left; margin: 0 auto 30px; display: inline-block; }
.lp-list li { list-style: none; margin-bottom: 12px; font-size: 1.1rem; color: #333; }
.lp-note { font-size: 0.9rem; color: #d9534f; margin-bottom: 30px; font-style: italic; background: #fff0f0; padding: 10px; border-radius: 4px; display: inline-block; }

/* Botão Flutuante Pílula */
.whatsapp-float-pill {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: white;
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: bold;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: transform 0.3s, background-color 0.3s;
    font-family: Arial, sans-serif;
    font-size: 1rem;
    animation: pulseBtn 2s infinite;
}
.whatsapp-float-pill:hover { transform: scale(1.05); background-color: #128C7E; }
.whatsapp-float-pill svg { width: 24px; height: 24px; fill: white; }

@keyframes pulseBtn {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* Ajustes Mobile LP */
@media (max-width: 768px) {
    .lp-hero h1 { font-size: 1.8rem; }
    .lp-hero h2 { font-size: 1.1rem; }
    .lp-price { font-size: 3rem; }
    .lp-pricing-box { padding: 30px 20px; }
    .whatsapp-float-pill {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

/* --- ESTILOS ESPECÍFICOS DA LANDING PAGE (LP) --- */

.lp-header {
    text-align: center;
    padding: 15px 0;
    background-color: #ffffff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}
.lp-header .logo-img {
    height: 100px; /* Logo um pouco menor para a LP */
}

.lp-hero {
    background-image: url('img/hero-pequenas-grandes-empresas.webp'); /* Reutilizando imagem existente */
    background-size: cover;
    background-position: center;
    position: relative;
    padding: 80px 0;
    color: white;
    text-align: center;
}
.lp-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-color: rgba(7, 7, 56, 0.9); /* Fundo bem escuro para leitura perfeita */
}
.lp-hero .container { position: relative; z-index: 2; }
.lp-hero h1 { font-size: 2.5rem; margin-bottom: 15px; line-height: 1.2; color: #fff; font-family: "Arial Black", Arial, sans-serif; }
.lp-hero h2 { font-size: 1.3rem; font-weight: normal; margin-bottom: 25px; color: #eee; }
.lp-hero p { font-size: 1.2rem; margin-bottom: 25px; max-width: 800px; margin-left: auto; margin-right: auto; line-height: 1.5; }
.lp-highlight-line { font-weight: bold; color: #4CAF50; margin-bottom: 35px; display: block; font-size: 1.1rem; text-transform: uppercase; letter-spacing: 1px; }
.lp-btn-large { font-size: 1.2rem; padding: 20px 40px; }

.lp-section { padding: 60px 0; }
.bg-white { background-color: #ffffff; }
.bg-gray { background-color: #f4f4f4; }
.bg-blue-light { background-color: #eef2ff; }

.lp-title { text-align: center; color: #070738; font-size: 2rem; margin-bottom: 40px; font-family: "Arial Black", Arial, sans-serif; }
.lp-text-center { text-align: center; max-width: 800px; margin: 0 auto 30px; font-size: 1.1rem; color: #444; }
.lp-mt-20 { margin-top: 20px; }

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

.lp-card { background: #fff; padding: 30px; border-radius: 8px; box-shadow: 0 4px 10px rgba(0,0,0,0.08); border-top: 4px solid #111184; }
.lp-card h3 { color: #070738; margin-bottom: 15px; font-size: 1.3rem; }
.lp-card p { color: #555; font-size: 1rem; }

.lp-card-highlight { border-top: 4px solid #4CAF50; background-color: #f9fff9; }

.lp-card-service { background: #fff; padding: 25px; border-radius: 8px; text-align: center; box-shadow: 0 2px 5px rgba(0,0,0,0.05); }
.lp-card-service h3 { color: #111184; margin-bottom: 10px; font-size: 1.2rem; font-weight: bold; }

.lp-pricing-box {
    background: #fff;
    max-width: 600px;
    margin: 0 auto;
    padding: 50px;
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
    text-align: center;
    border: 2px solid #111184;
    position: relative;
}
.lp-price { font-size: 4rem; color: #111184; font-weight: 900; margin: 10px 0; font-family: "Arial Black", Arial, sans-serif; }
.lp-price-sub { font-size: 1.1rem; color: #666; margin-bottom: 30px; }
.lp-list { text-align: left; margin: 0 auto 30px; display: inline-block; }
.lp-list li { list-style: none; margin-bottom: 12px; font-size: 1.1rem; color: #333; }
.lp-note { font-size: 0.9rem; color: #d9534f; margin-bottom: 30px; font-style: italic; background: #fff0f0; padding: 10px; border-radius: 4px; display: inline-block; }

/* Botão Flutuante Pílula */
.whatsapp-float-pill {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: white;
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: bold;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: transform 0.3s, background-color 0.3s;
    font-family: Arial, sans-serif;
    font-size: 1rem;
    animation: pulseBtn 2s infinite;
}
.whatsapp-float-pill:hover { transform: scale(1.05); background-color: #128C7E; }
.whatsapp-float-pill svg { width: 24px; height: 24px; fill: white; }

@keyframes pulseBtn {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* Ajustes Mobile LP */
@media (max-width: 768px) {
    .lp-hero h1 { font-size: 1.8rem; }
    .lp-hero h2 { font-size: 1.1rem; }
    .lp-price { font-size: 3rem; }
    .lp-pricing-box { padding: 30px 20px; }
    .whatsapp-float-pill {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

/* --- ANIMAÇÕES DE SCROLL (NOVO) --- */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px); /* Começa 40px abaixo */
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    will-change: opacity, transform;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0); /* Sobe para a posição original */
}

/* Delays para efeito cascata (um card entra depois do outro) */
.delay-100 { transition-delay: 0.1s; }
.delay-200 { transition-delay: 0.2s; }

/* --- NOVOS ESTILOS AGRESSIVOS (LP V2) --- */

.lp-hero-content {
    background: rgba(29, 78, 216, 0.9);
    padding: 40px;
    border-radius: 15px;
    display: inline-block;
    max-width: 900px;
    border: 1px solid rgba(255,255,255,0.1);
    backdrop-filter: blur(5px);
}

.lp-badge {
    background-color: #25d366;
    color: #1D4ED8;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.9rem;
    text-transform: uppercase;
    margin-bottom: 15px;
    display: inline-block;
}

.text-highlight { color: #4CAF50; }

.lp-price-hero {
    margin: 20px 0;
    background: rgba(255,255,255,0.1);
    padding: 15px;
    border-radius: 10px;
    display: inline-block;
}
.lp-price-hero small { display: block; font-size: 0.9rem; color: #ccc; }
.lp-price-hero .price-tag { font-size: 2.5rem; font-weight: 900; color: #fff; line-height: 1; }

/* Grid Problema vs Solução */
.lp-grid-2-fix {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: stretch;
}

.lp-card-problem {
    background: #fff;
    border-radius: 10px;
    padding: 30px;
    border: 1px solid #eee;
    opacity: 0.8;
}
.problem-header { font-weight: bold; color: #d9534f; margin-bottom: 20px; font-size: 1.1rem; }
.problem-item { margin-bottom: 20px; border-left: 3px solid #ddd; padding-left: 10px; }
.problem-item strong { display: block; color: #555; }

.lp-card-solution {
    background: #fff;
    border-radius: 10px;
    padding: 0; /* Padding interno controlado */
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 2px solid #3B82F6;
    overflow: hidden;
    transform: scale(1.02); /* Leve destaque */
}
.solution-header {
    background: #3B82F6;
    color: white;
    padding: 15px;
    text-align: center;
    font-weight: bold;
    font-size: 1.2rem;
}
.solution-content { padding: 30px; }
.solution-content ul { list-style: none; padding: 0; margin: 20px 0; }
.solution-content ul li { margin-bottom: 10px; padding-left: 25px; position: relative; font-size: 1.1rem; }
.solution-content ul li::before { content: '✓'; color: #25d366; position: absolute; left: 0; font-weight: bold; }
.solution-footer { background: #f0f4ff; padding: 15px; text-align: center; font-weight: bold; color: #3B82F6; border-radius: 5px; }

/* Serviços com Ícones */
.icon-box { font-size: 3rem; margin-bottom: 15px; }
.service-sub { font-size: 0.9rem; color: #888; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 10px; font-weight: bold; }

/* Steps Diferenciais */
.bg-blue-dark { background-color: #1D4ED8; }
.text-white { color: white !important; }
.lp-step { text-align: center; padding: 20px; }
.step-number {
    width: 50px; height: 50px;
    background: #25d366;
    color: #1D4ED8;
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: bold;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 20px;
}

/* Oferta Final */
.lp-offer-wrapper { display: flex; justify-content: center; }
.lp-pricing-box { position: relative; border: 3px solid #3B82F6; overflow: visible; }
.offer-label {
    position: absolute;
    top: -15px; left: 50%; transform: translateX(-50%);
    background: #d9534f; color: white;
    padding: 5px 20px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.9rem;
    white-space: nowrap;
}
.lp-title-offer { font-size: 1.5rem; color: #555; margin-bottom: 10px; }
.lp-price-display { color: #3B82F6; margin: 20px 0; }
.divider { border: 0; border-top: 1px solid #eee; margin: 20px 0; }
.lp-list-check { list-style: none; padding: 0; text-align: left; display: inline-block; margin-bottom: 20px; }
.lp-list-check li { margin-bottom: 10px; font-size: 1.1rem; display: flex; align-items: center; gap: 10px; }
.lp-note-box { background: #fff3cd; color: #856404; padding: 10px; border-radius: 5px; font-size: 0.9rem; margin-bottom: 25px; }

/* Animação de Pulso no Botão */
.pulse-animation {
    animation: pulse-green 2s infinite;
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
}
@keyframes pulse-green {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { transform: scale(1.05); box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

@media (max-width: 768px) {
    .lp-grid-2-fix { grid-template-columns: 1fr; }
    .lp-hero-content { padding: 20px; }
}

/* --- ESTILOS DE PREÇO (ATUALIZADO) --- */
.price-cash-row {
    display: flex;
    align-items: baseline;
    justify-content: center;
    line-height: 1;
    color: #3B82F6;
}
.price-cash-row .amount { font-size: 5rem; font-weight: 900; letter-spacing: -2px; }
.price-cash-row .currency { font-size: 1.5rem; font-weight: bold; margin-right: 5px; vertical-align: top; }
.price-cash-row .cents { font-size: 1.5rem; font-weight: bold; vertical-align: top; }
.price-cash-row .payment-text { font-size: 1.2rem; color: #25d366; font-weight: bold; margin-left: 10px; text-transform: uppercase; }

.price-installment-row {
    font-size: 1.1rem;
    color: #666;
    margin-top: 10px;
    background: #f4f4f4;
    display: inline-block;
    padding: 5px 15px;
    border-radius: 20px;
}

/* Balão de Oferta */
.promo-balloon {
    position: absolute;
    top: -25px;
    right: -20px;
    background: #ffeb3b;
    color: #d32f2f;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: bold;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    transform: rotate(15deg);
    z-index: 10;
    animation: floatBalloon 3s ease-in-out infinite;
}
@keyframes floatBalloon {
    0%, 100% { transform: rotate(15deg) translateY(0); }
    50% { transform: rotate(15deg) translateY(-10px); }
}

@media (max-width: 768px) {
    .price-cash-row .amount { font-size: 3.5rem; }
    .promo-balloon { right: 0; top: -35px; transform: rotate(0); animation: none; }
}

/* --- NOVO DESIGN MODERNO 2025 (SPLIT HERO) --- */

/* Header Limpo */
.lp-header-modern {
    background: #fff;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}
.header-flex { display: flex; justify-content: center; align-items: center; }
.logo-img-modern { height: 120px; width: auto; }

/* Hero Split Layout */
.lp-hero-modern {
    background: linear-gradient(135deg, #f9f9f9 0%, #ffffff 100%);
    padding: 80px 0;
    overflow: hidden;
}
.split-layout {
    display: flex;
    align-items: center;
    gap: 50px;
}
.hero-text-col { flex: 1; }
.hero-img-col { flex: 1; position: relative; }

.lp-badge-modern {
    background: #e0e7ff;
    color: #3B82F6;
    padding: 5px 12px;
    border-radius: 4px;
    font-weight: bold;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 20px;
}

.lp-hero-modern h1 {
    font-size: 3rem;
    line-height: 1.1;
    color: #1D4ED8;
    margin-bottom: 20px;
    font-family: "Arial Black", Arial, sans-serif;
}
.text-blue-highlight { color: #3B82F6; }

.hero-sub {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 30px;
    line-height: 1.6;
    max-width: 90%;
}

.lp-btn-modern {
    background-color: #25d366; /* Verde WhatsApp */
    color: white;
    padding: 18px 35px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
    transition: transform 0.2s;
}
.lp-btn-modern:hover { transform: translateY(-3px); background-color: #128C7E; }
.cta-note { font-size: 0.85rem; color: #888; margin-top: 10px; display: flex; align-items: center; gap: 5px; }

/* Imagem Hero com Card Flutuante */
.img-wrapper { position: relative; }
.hero-main-img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    transform: rotate(2deg); /* Leve inclinação moderna */
    border: 5px solid #fff;
}
.floating-price-card {
    position: absolute;
    bottom: 30px;
    left: -30px;
    background: #fff;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    border-left: 5px solid #3B82F6;
    animation: floatCard 4s ease-in-out infinite;
}
@keyframes floatCard { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

.floating-price-card .label { display: block; font-size: 0.8rem; color: #888; text-transform: uppercase; }
.floating-price-card .price { display: block; font-size: 2rem; font-weight: 900; color: #1D4ED8; }
.floating-price-card .sub { display: block; font-size: 0.8rem; color: #25d366; font-weight: bold; }

/* Comparação (Grid) */
.comparison-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; margin-top: 40px; }
.comparison-card { padding: 30px; border-radius: 12px; }
.comparison-card.bad { background: #fff0f0; border: 1px solid #ffcccc; }
.comparison-card.good { background: #f0fff4; border: 1px solid #ccffcc; box-shadow: 0 10px 30px rgba(0,0,0,0.05); }
.comparison-card h3 { margin: 10px 0 20px; font-size: 1.3rem; }
.comparison-card ul { padding-left: 20px; }
.comparison-card li { margin-bottom: 10px; color: #555; }
.icon-status { font-size: 2rem; }

/* Cards Modernos */
.lp-card-modern {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s;
    border: 1px solid #f0f0f0;
}
.lp-card-modern:hover { transform: translateY(-5px); border-color: #3B82F6; }
.card-icon { font-size: 2.5rem; margin-bottom: 15px; }

/* Oferta Final */
.bg-blue-modern { background: #1D4ED8; padding: 80px 0; }
.offer-container { display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.offer-text h2 { font-size: 2.5rem; margin-bottom: 15px; }
.offer-benefits { list-style: none; padding: 0; margin-top: 20px; }
.offer-benefits li { font-size: 1.2rem; margin-bottom: 10px; opacity: 0.9; }
.offer-action { text-align: center; background: rgba(255,255,255,0.1); padding: 30px; border-radius: 15px; }
.price-big { font-size: 3.5rem; font-weight: 900; line-height: 1; margin-bottom: 20px; }
.price-big small { display: block; font-size: 1rem; font-weight: normal; opacity: 0.8; }
.btn-white-modern { background: #fff; color: #1D4ED8; padding: 15px 30px; border-radius: 50px; font-weight: bold; text-decoration: none; display: inline-block; }

/* Footer Moderno */
.footer-modern { background: #f4f4f4; padding: 30px 0; text-align: center; color: #666; font-size: 0.9rem; }
.footer-modern a { color: #3B82F6; text-decoration: none; }

/* Mobile */
@media (max-width: 768px) {
    .split-layout, .offer-container, .comparison-grid { flex-direction: column; }
    .lp-hero-modern h1 { font-size: 2.2rem; }
    .floating-price-card { left: 0; bottom: -20px; width: 100%; text-align: center; }
}

/* --- NOVO DESIGN MODERNO 2025 (SPLIT HERO) --- */

/* Header Limpo */
.lp-header-modern {
    background: #fff;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}
.header-flex { display: flex; justify-content: center; align-items: center; }
.logo-img-modern { height: 120px; width: auto; }

/* Hero Split Layout */
.lp-hero-modern {
    background: linear-gradient(135deg, #f9f9f9 0%, #ffffff 100%);
    padding: 10px 0 60px; /* Padding reduzido para aproximar o conteúdo */
    overflow: visible; /* Permite que o card flutuante sobreponha a próxima seção sem ser cortado */
}
.split-layout {
    display: flex;
    align-items: center;
    gap: 50px;
}
.lp-logo-wrapper {
    text-align: center;
    margin-bottom: 10px; /* Margem reduzida entre logo e título */
    display: block;
}
.hero-text-col { flex: 1; }
.hero-img-col { flex: 1; position: relative; }

.lp-badge-modern {
    background: #e0e7ff;
    color: #111184;
    padding: 5px 12px;
    border-radius: 4px;
    font-weight: bold;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 20px;
}

.lp-hero-modern h1 {
    font-size: 3rem;
    line-height: 1.1;
    color: #070738;
    margin-bottom: 20px;
    font-family: "Arial Black", Arial, sans-serif;
}
.text-blue-highlight { color: #111184; }

.hero-sub {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 30px;
    line-height: 1.6;
    max-width: 90%;
}

.lp-btn-modern {
    background-color: #25d366; /* Verde WhatsApp */
    color: white;
    padding: 18px 35px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
    transition: transform 0.2s;
}
.lp-btn-modern:hover { transform: translateY(-3px); background-color: #128C7E; }
.cta-note { font-size: 0.85rem; color: #888; margin-top: 10px; display: flex; align-items: center; gap: 5px; }

/* Imagem Hero com Card Flutuante */
.img-wrapper { position: relative; }
.hero-main-img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    transform: rotate(2deg); /* Leve inclinação moderna */
    border: 5px solid #fff;
}
.floating-price-card {
    position: absolute;
    bottom: 30px;
    left: -30px;
    background: #fff;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    border-left: 5px solid #111184;
    animation: floatCard 4s ease-in-out infinite;
}
@keyframes floatCard { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

.floating-price-card .label { display: block; font-size: 0.8rem; color: #888; text-transform: uppercase; }
.floating-price-card .price { display: block; font-size: 2rem; font-weight: 900; color: #070738; }
.floating-price-card .sub { display: block; font-size: 0.8rem; color: #25d366; font-weight: bold; }

/* Comparação (Grid) */
.comparison-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; margin-top: 40px; }
.comparison-card { padding: 30px; border-radius: 12px; }
.comparison-card.bad { background: #fff0f0; border: 1px solid #ffcccc; }
.comparison-card.good { background: #f0fff4; border: 1px solid #ccffcc; box-shadow: 0 10px 30px rgba(0,0,0,0.05); }
.comparison-card h3 { margin: 10px 0 20px; font-size: 1.3rem; }
.comparison-card ul { padding-left: 20px; }
.comparison-card li { margin-bottom: 10px; color: #555; }
.icon-status { font-size: 2rem; }

/* Cards Modernos */
.lp-card-modern {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s;
    border: 1px solid #f0f0f0;
}
.lp-card-modern:hover { transform: translateY(-5px); border-color: #111184; }
.card-icon { font-size: 2.5rem; margin-bottom: 15px; }

/* Oferta Final */
.bg-blue-modern { background: #070738; padding: 80px 0; }
.offer-container { display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.offer-text h2 { font-size: 2.5rem; margin-bottom: 15px; }
.offer-benefits { list-style: none; padding: 0; margin-top: 20px; }
.offer-benefits li { font-size: 1.2rem; margin-bottom: 10px; opacity: 0.9; }
.offer-action { text-align: center; background: rgba(255,255,255,0.1); padding: 30px; border-radius: 15px; }
.price-big { font-size: 3.5rem; font-weight: 900; line-height: 1; margin-bottom: 20px; }
.price-big small { display: block; font-size: 1rem; font-weight: normal; opacity: 0.8; }
.btn-white-modern { background: #fff; color: #070738; padding: 15px 30px; border-radius: 50px; font-weight: bold; text-decoration: none; display: inline-block; }

/* Footer Moderno */
.footer-modern { background: #f4f4f4; padding: 30px 0; text-align: center; color: #666; font-size: 0.9rem; }
.footer-modern a { color: #111184; text-decoration: none; }

/* Mobile */
@media (max-width: 768px) {
    .split-layout, .offer-container, .comparison-grid { flex-direction: column; }
    .lp-hero-modern h1 { font-size: 2.2rem; }
    .floating-price-card { left: 0; bottom: -20px; width: 100%; text-align: center; }
}
.lp-note-final {
    font-size: 0.9rem;
    color: #d9534f;
    margin-top: 20px;
    background: #fff0f0;
    padding: 10px; border-radius: 5px; display: inline-block;
}

/* --- TABELA DE PREÇOS ESTRATÉGICA (PAGAMENTOS) --- */
.pricing-header-section {
    text-align: center;
    margin-bottom: 40px;
}
.pricing-header-section h2 { font-size: 2.5rem; margin-bottom: 10px; }
.pricing-header-section p { font-size: 1.2rem; opacity: 0.9; }

.pricing-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.pricing-card {
    background: #fff;
    border-radius: 15px;
    padding: 30px 20px;
    width: 300px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    border: 1px solid #eef2ff;
    position: relative;
    transition: transform 0.3s;
    color: #333;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

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

/* Destaque para o Card Principal (À Vista) */
.pricing-card.featured {
    border: 3px solid #25d366; /* Borda Verde WhatsApp */
    transform: scale(1.1); /* Maior que os outros */
    z-index: 2;
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.2);
    padding: 40px 20px;
}

.pricing-card h3 {
    color: #555;
    font-size: 1.1rem;
    text-transform: uppercase;
    margin-bottom: 15px;
    letter-spacing: 1px;
    font-weight: bold;
}

.pricing-card .price {
    font-size: 2.5rem;
    font-weight: 900;
    color: #070738;
    margin-bottom: 5px;
    font-family: "Arial Black", Arial, sans-serif;
}
.pricing-card .price small { font-size: 1rem; vertical-align: middle; color: #555; }

.pricing-card .total-price {
    display: block; font-size: 0.9rem; color: #888; margin-bottom: 20px; font-weight: bold;
}

.badge-save {
    background: #d9534f; color: white; padding: 5px 15px; border-radius: 20px;
    font-size: 0.85rem; position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
    font-weight: bold; box-shadow: 0 2px 5px rgba(0,0,0,0.2); white-space: nowrap;
}

.btn-pricing {
    display: block; width: 100%; padding: 12px; border-radius: 50px; text-decoration: none;
    font-weight: bold; margin-top: 20px; transition: background 0.3s; font-size: 0.9rem;
}
.btn-outline { border: 2px solid #070738; color: #070738; background: transparent; }
.btn-outline:hover { background: #070738; color: white; }
.btn-featured { background: #25d366; color: white; border: none; }
.btn-featured:hover { background: #128C7E; }

@media (max-width: 900px) {
    .pricing-grid { flex-direction: column; gap: 40px; }
    .pricing-card { width: 100%; max-width: 320px; }
    .pricing-card.featured { transform: scale(1); }
}

/* --- BOX DE GARANTIA / DESAFIO --- */
.guarantee-box {
    border: 3px dashed #d9534f; /* Borda pontilhada vermelha */
    background-color: #fff9e6; /* Fundo amarelo suave */
    color: #333; /* Texto escuro para contraste */
    padding: 30px;
    border-radius: 12px;
    margin: 50px auto 0;
    max-width: 850px;
    text-align: center;
    position: relative;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.guarantee-box h3 {
    color: #c9302c;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 15px;
    font-size: 1.4rem;
    letter-spacing: 1px;
}

.guarantee-box p {
    font-size: 1.1rem;
    line-height: 1.6;
    font-weight: 500;
}

/* --- CLASSES DE ALINHAMENTO E TÍTULOS MODERNOS --- */
.section-header-center {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 40px;
}

.lp-title-modern {
    font-size: 2.2rem;
    color: #070738;
    margin-bottom: 15px;
    font-family: "Arial Black", Arial, sans-serif;
    line-height: 1.2;
}

/* --- CARD EXPRESS (URGÊNCIA 24H) --- */
.express-card {
    background: linear-gradient(to right, #fff9e6, #ffffff);
    border: 1px solid #ffeeba;
    border-left: 6px solid #ffc107; /* Amarelo Alerta */
    padding: 30px;
    border-radius: 12px;
    margin-top: 40px;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.express-card h3 {
    color: #b38600; /* Dourado escuro para leitura */
    font-size: 1.4rem;
    font-weight: 900;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.express-card p {
    font-size: 1.15rem;
    color: #444;
    margin-bottom: 5px;
    font-weight: 500;
}

.express-card small {
    font-size: 0.9rem;
    color: #888;
    font-style: italic;
    display: block;
    margin-top: 8px;
}
