/* Variáveis */
:root {
    --primary: #39AFFF;
    --dark: #212121;
    --light: #F7F7F7;
    --gray: #757575;
    --gray-light: #E0E0E0;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    --ai-accent: #39AFFF;
    --sales-accent: #FF6B6B;
}

/* Reset e estilos base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Titillium Web', sans-serif;
    color: var(--dark);
    background-color: var(--light);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Botões */
.btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    outline: none;
}

.btn-primary {
    background-color: #39AFFF;
    color: white;
    box-shadow: 0 4px 15px rgba(57, 175, 255, 0.4);
    border-radius: 50px;
    padding: 14px 28px;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0) 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-primary:hover {
    background-color: #2b9fe8;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(57, 175, 255, 0.6);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-secondary:hover {
    background-color: rgba(57, 175, 255, 0.1);
    transform: translateY(-2px);
}

/* Header */
.header {
    position: relative;
    width: 100%;
    z-index: 1000;
    background-color: rgba(247, 247, 247, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

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

.header-cta .btn {
    padding: 10px 20px;
    font-size: 0.9rem;
}

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

.main-nav ul {
    display: flex;
    gap: 30px;
}

.main-nav a {
    font-weight: 500;
    position: relative;
    color: #212121;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #39AFFF;
    transition: var(--transition);
}

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

.nav-cta {
    color: #39AFFF;
    font-weight: 600;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 24px;
    position: relative;
}

.mobile-menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--dark);
    position: absolute;
    transition: var(--transition);
}

.mobile-menu-toggle span:nth-child(1) {
    top: 0;
}

.mobile-menu-toggle span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
}

.mobile-menu-toggle span:nth-child(3) {
    bottom: 0;
}

/* Hero Section */
.hero {
    padding: 80px 0 80px;
    background: #F7F7F7;
    position: relative;
    overflow: hidden;
    color: #212121;
    min-height: 500px;
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(57, 175, 255, 0.2) 0%, rgba(247, 247, 247, 0) 60%);
    filter: blur(60px);
    z-index: 0;
    animation: rotate 30s linear infinite;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 30%, rgba(57, 175, 255, 0.1) 0%, rgba(247, 247, 247, 0) 50%);
    z-index: 0;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 1;
    width: 100%;
}

.hero-text {
    max-width: 800px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-block;
    background-color: rgba(33, 33, 33, 0.05);
    color: var(--dark);
    font-weight: 600;
    font-size: 0.9rem;
    padding: 8px 16px;
    border-radius: 50px;
    margin-bottom: 20px;
    border: 1px solid rgba(33, 33, 33, 0.2);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.hero h1 {
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #212121;
}

.hero .subtitle {
    font-size: 1.25rem;
    margin-bottom: 30px;
    color: rgba(33, 33, 33, 0.9);
}

.hero .subtitle strong {
    color: var(--primary);
    font-weight: 600;
}

.target-audience-container {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(33, 33, 33, 0.05);
    border-radius: 50px;
    padding: 8px 20px;
    max-width: 600px;
    margin: 0 auto 15px;
    
    border: 1px solid rgba(33, 33, 33, 0.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.target-label {
    font-weight: 600;
    margin-right: 15px;
    color: #212121;
}

.target-audience {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 0.95rem;
    color: rgba(33, 33, 33, 0.9);
    justify-content: center;
}

.target-item {
    padding: 6px 14px;
    background-color: rgba(57, 175, 255, 0.1);
    border-radius: 20px;
    color: #212121;
    font-weight: 500;
    position: relative;
    transition: all 0.3s ease;
}

.target-item:hover {
    background-color: rgba(57, 175, 255, 0.2);
    transform: translateY(-2px);
}

/* Removido o separador */

.target-note {
    font-size: 0.8rem;
    color: rgba(33, 33, 33, 0.7);
    text-align: center;
    margin: 0 auto 25px;
    max-width: 500px;
}

/* Seção Nossas Soluções */
.solutions {
    padding: 100px 0;
    background-color: #121212;
    color: var(--light);
    position: relative;
}

.section-header {
    text-align: left;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--light);
    position: relative;
    display: inline-block;
}

.solution-category {
    display: flex;
    flex-direction: row;
    margin-bottom: 60px;
    gap: 40px;
    align-items: flex-start;
}

.solution-category:last-child {
    margin-bottom: 0;
}

.solution-info {
    flex: 0 0 30%;
}

.solution-features-container {
    flex: 0 0 65%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.solution-title {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.feature-card {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 20px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    transition: transform 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.feature-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    background-color: rgba(255, 255, 255, 0.08);
}

.card-title-bar {
    width: 5px;
    height: 30px;
    border-radius: 3px;
    margin-right: 15px;
}

.ai-bar {
    background: linear-gradient(to bottom, var(--ai-accent), rgba(57, 175, 255, 0.5));
}

.sales-bar {
    background: linear-gradient(to bottom, var(--sales-accent), rgba(255, 107, 107, 0.5));
}

.solution-title h3 {
    font-size: 1.8rem;
    margin-bottom: 0;
    position: relative;
    color: var(--light);
}

.solution-info p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-top: 15px;
}

/* Seção de Benefícios de IA */
.ai-benefits {
    padding: 100px 0;
    background-color: #F7F7F7;
    color: var(--dark);
    position: relative;
    margin-top: -1px; /* Elimina qualquer espaço entre as seções */
}

.ai-benefits .section-header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.section-badge {
    display: inline-block;
    background-color: #333333;
    color: white;
    font-weight: 500;
    font-size: 0.8rem;
    padding: 5px 12px;
    border-radius: 50px;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.ai-benefits .section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 20px;
}

.highlight-text {
    color: #39AFFF;
    font-weight: 800;
    font-size: 110%;
}

.ai-benefits .section-subtitle {
    font-size: 1.2rem;
    line-height: 1.6;
    color: var(--gray);
}

/* Carrossel de Benefícios */
.carousel-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    padding: 0 50px;
}

.carousel-track {
    display: flex;
    gap: 30px;
    transition: transform 0.5s ease;
}

.benefit-card {
    flex: 0 0 calc(33.333% - 30px);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background-color: transparent;
    padding: 0 0 30px 0;
}


.benefit-image-container {
    width: 100%;
    height: 300px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    padding: 0;
    transition: transform 0.3s ease;
    position: relative;
    overflow: visible;
}


.benefit-image {
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 100%;
    object-fit: contain;
    position: relative;
}

.benefit-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}


.benefit-description {
    font-size: 1.05rem;
    line-height: 1.2;
    color: #757575;
    text-align: center;
    width: 100%;
    margin-top: 8px;
}

/* Botões de Navegação do Carrossel */
.carousel-navigation {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 40px;
    gap: 20px;
}

.carousel-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}

.carousel-button.prev {
    left: 0;
}

.carousel-button.next {
    right: 0;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: 30px;
}

.carousel-button {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: white;
    border: 1px solid rgba(33, 33, 33, 0.1);
    color: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.carousel-button:hover {
    background-color: rgba(57, 175, 255, 0.1);
    border-color: var(--primary);
    color: var(--primary);
}

.carousel-button:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(57, 175, 255, 0.3);
}

.carousel-dots {
    display: flex;
    gap: 8px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(33, 33, 33, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background-color: var(--primary);
    transform: scale(1.2);
}

.dot:hover {
    background-color: rgba(57, 175, 255, 0.5);
}

.solution-result {
    grid-column: 1 / -1;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    gap: 10px;
}


.feature-icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    flex-shrink: 0;
}

.ai-icon {
    background-color: var(--ai-accent);
    box-shadow: 0 0 10px rgba(57, 175, 255, 0.5);
}

.sales-icon {
    background-color: var(--sales-accent);
    box-shadow: 0 0 10px rgba(255, 107, 107, 0.5);
}

.feature-card p {
    margin-bottom: 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
}

.solution-result {
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    gap: 10px;
}

.result-icon {
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--primary);
    margin-right: 5px;
}

.solution-result p {
    margin-bottom: 0;
    font-size: 0.95rem;
}

.solution-result strong {
    color: var(--light);
    font-weight: 600;
}

.hero-cta-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.satisfied-customers {
    display: flex;
    align-items: center;
    gap: 12px;
}

.customer-avatars {
    display: flex;
    position: relative;
    height: 40px;
}

.avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    border: 2px solid #F7F7F7;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.avatar-1 {
    background-color: #39AFFF;
    z-index: 4;
}

.avatar-2 {
    background-color: #212121;
    margin-left: -20px;
    z-index: 3;
}

.avatar-3 {
    background-color: #39AFFF;
    margin-left: -20px;
    z-index: 2;
}

.avatar-4 {
    background-color: #212121;
    margin-left: -20px;
    z-index: 1;
}

.customers-count {
    font-size: 0.85rem;
    font-weight: 500;
    color: #212121;
}

.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    line-height: 0;
}

/* Animações */
.animate-fade-up {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.6s ease forwards;
}

.animate-fade-in {
    opacity: 0;
    animation: fadeIn 0.8s ease forwards;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* Seção Processo Comercial */
.sales-process {
    padding: 100px 0;
    background-color: #f0f4f8; /* Cor clara e sutil diferente do fundo padrão */
    color: var(--dark);
    position: relative;
}

.sales-process .section-header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.sales-process .section-badge {
    background-color: #333333;
}

.sales-process .section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 20px;
}

.sales-process .section-subtitle {
    font-size: 1.2rem;
    line-height: 1.6;
    color: var(--gray);
}

.sales-process-row {
    display: flex;
    justify-content: space-between;
    gap: 15px; /* Espaçamento reduzido entre os cards */
    margin-bottom: 15px; /* Espaçamento reduzido entre as linhas */
}

.sales-process-row:last-child {
    margin-bottom: 0;
}

/* Primeira linha: 60% / 40% */
.sales-process-row:first-child .card-large {
    width: 60%;
}

.sales-process-row:first-child .card-small {
    width: 40%;
}

/* Segunda linha: 40% / 60% */
.sales-process-row:last-child .card-small {
    width: 40%;
}

.sales-process-row:last-child .card-large {
    width: 60%;
}

.process-card {
    display: flex;
    flex-direction: column;
    background-color: white;
    border-radius: 16px; /* Cantos mais arredondados */
    padding: 30px;
    border: 1px solid rgba(33, 33, 33, 0.1); /* Borda bem fininha */
    box-shadow: none; /* Sem sombreado */
    position: relative;
    overflow: hidden;
}

/* Removida a animação de hover */

.process-image-container {
    height: 160px;
    margin-top: 30px; /* Espaço entre o texto e a imagem */
    overflow: hidden;
    position: relative;
    order: 2; /* Coloca a imagem depois do texto */
    margin-bottom: -30px; /* Faz a imagem ficar cortada na parte inferior */
    margin-left: -30px;
    margin-right: -30px;
    width: calc(100% + 60px);
}

.process-image {
    width: 160%; /* Imagem ainda maior para garantir o corte lateral */
    height: auto;
    object-fit: cover;
    object-position: left top; /* Posiciona a imagem para ser cortada à direita e embaixo */
    max-height: none; /* Remove a limitação de altura */
    transform: scale(1); /* Reduzido o zoom para mostrar mais da imagem */
    transform-origin: left top; /* Ponto de origem da transformação */
    position: absolute;
    top: 0;
    left: 30px; /* Adicionado espaço no lado esquerdo */
}

.process-title {
    font-size: 1.5rem;
    font-weight: 500; /* Grossura reduzida */
    margin-bottom: 15px;
    color: var(--dark);
    position: relative;
    display: inline-block;
}

.process-description {
    font-size: 0.95rem; /* Fonte menor */
    font-weight: 300; /* Fonte mais fina */
    line-height: 1.3; /* Espaçamento entre linhas menor */
    color: var(--gray);
    flex-grow: 1;
}

.process-highlight {
    margin-top: 20px;
    margin-bottom: 25px;
    padding: 15px;
    background-color: rgba(57, 175, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    border-left: 3px solid #39AFFF;
}

.highlight-icon {
    font-size: 1.2rem;
}

.process-highlight p {
    margin: 0;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--dark);
    line-height: 1.5;
}

/* Ajuste específico para a imagem de Vendas Previsíveis */
.sales-process-row:last-child .card-small .process-image-container {
    margin-top: 15px; /* Reduz o espaço entre o texto e a imagem */
}

/* Seção Quem Confia em Nós */
.trusted-by {
    padding: 80px 0;
    background-color: #FFFFFF;
    text-align: center;
    border-top: 1px solid rgba(33, 33, 33, 0.05);
    border-bottom: 1px solid rgba(33, 33, 33, 0.05);
    overflow: hidden; /* Garante que o carrossel não ultrapasse os limites da seção */
}

.trusted-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #39AFFF;
    margin-bottom: 50px;
    text-align: center;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}

.trusted-by .container {
    position: relative;
    width: 100vw;
    max-width: 100vw; /* Usa a largura total da viewport */
    padding: 0; /* Remove o padding do container */
    margin: 0; /* Remove a margem do container */
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.clients-logo-grid {
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
    gap: 40px;
    padding: 20px 0;
    animation: scroll-logos 45s linear infinite;
    width: 100vw; /* Usa a largura total da viewport */
    margin-left: 0;
    margin-right: 0;
}

.clients-logo-grid:hover {
    animation-play-state: paused;
}

@keyframes scroll-logos {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-180px * 13 - 40px * 13)); /* Ajuste baseado no número de logos e gaps */
    }
}

.client-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 70px;
    width: 180px; /* Largura fixa aumentada para cada logo */
    flex-shrink: 0; /* Impede que as logos encolham */
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.client-logo:hover {
    opacity: 1;
}

.client-logo img {
    max-height: 90%;
    max-width: 160px;
    filter: grayscale(100%);
    transition: filter 0.3s ease, transform 0.3s ease;
    object-fit: contain;
}

.client-logo:hover img {
    filter: grayscale(0%);
    transform: scale(1.1);
}

/* Seção Pra quem somos */
.audience-section {
    padding: 100px 0;
    background-color: #FFFFFF;
}

.audience-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 40px;
    align-items: start;
}

.audience-left {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-self: center; /* centraliza verticalmente em relação à coluna direita */
}

.audience-badge {
    display: inline-block;
    background-color: #333333;
    color: #FFFFFF;
    font-weight: 600;
    font-size: 0.75rem;
    padding: 4px 10px; /* badge mais compacto em largura */
    border-radius: 9999px;
    letter-spacing: 0.4px;
    width: fit-content; /* garante que não expanda além do conteúdo */
}

.audience-title {
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--dark);
}

.audience-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--gray);
    max-width: 640px;
}

.audience-cta {
    margin-top: 10px;
    align-self: flex-start;
}

.audience-right {
    width: 100%;
}

.audience-list {
    counter-reset: item;
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.audience-list li {
    position: relative;
    background-color: #FFFFFF;
    border: 1px solid rgba(33, 33, 33, 0.12);
    border-radius: 14px;
    padding: 18px 20px 18px 84px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.03);
    color: var(--dark);
}

.audience-list li::before {
    counter-increment: item;
    content: counter(item, decimal-leading-zero);
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--primary);
    background: rgba(57, 175, 255, 0.08);
    border: 1px solid rgba(57, 175, 255, 0.25);
}

/* Seção Sobre */
.about {
    padding: 100px 0;
    background-color: #F7F7F7;
    position: relative;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 20px;
    height: 500px;
}

.about-box {
    background-color: white;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.about-main {
    grid-column: 1;
    grid-row: 1 / span 2;
    background-color: #39AFFF;
    color: white;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center; /* centraliza verticalmente */
    text-align: left;        /* texto alinhado à esquerda */
}

.about-background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;        /* fundo */
    pointer-events: none;
    opacity: 0.85;     /* leve ajuste de opacidade para melhorar legibilidade */
}

.about-content-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(57, 175, 255, 0.72); /* azul translúcido por cima do vídeo */
    z-index: 1;        /* sobre o vídeo */
    pointer-events: none;
}

.about-main .about-title,
.about-main .about-text {
    position: relative;
    z-index: 2;             /* acima do overlay e do vídeo */
    text-align: left;       /* garantindo alinhamento à esquerda */
    max-width: 100%;        /* garantir que o texto não ultrapasse os limites */
    padding: 0 20px;        /* espaçamento lateral aumentado */
}

.about-main .about-title {
    margin-top: 0;          /* remove margem superior do título */
}

.about-main .about-text {
    margin-bottom: 0;       /* remove margem inferior do texto */
}

.about-differential {
    grid-column: 2;
    grid-row: 1;
    background-color: #F7F7F7;
}

.about-logo {
    grid-column: 2;
    grid-row: 2;
    background-color: #212121;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 0; /* Remove o padding para a imagem ocupar todo o espaço */
}

.about-logo-image {
    width: 70%;      /* Reduzido para 70% do espaço disponível */
    height: auto;    /* Mantém a proporção da imagem */
    object-fit: contain; /* Garante que a imagem seja exibida inteira */
    max-width: 100%;
    max-height: 100%;
    filter: brightness(1.1); /* Deixa a logo um pouco mais brilhante no fundo escuro */
}

.about-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: white;
}

.about-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #212121;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

.about-quote {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #212121;
    border-left: 3px solid #39AFFF;
    padding-left: 20px;
    margin: 0;
    font-style: italic;
}

.about-quote strong {
    color: #39AFFF;
}

/* Rodapé */
.footer {
    background-color: #212121;
    color: #F7F7F7;
    padding: 60px 0 30px;
    position: relative;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 40px;
    gap: 30px;
}

.footer-brand {
    flex: 0 0 300px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo {
    width: 120px;
    margin-bottom: 15px;
}

.footer-logo img {
    width: 100%;
    height: auto;
    filter: brightness(1.2);
}

.footer-company-name {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #39AFFF;
}

.footer-company-info {
    font-size: 0.9rem;
    color: #F7F7F7;
    margin-bottom: 8px;
}

.footer-company-address {
    font-size: 0.9rem;
    color: #F7F7F7;
    line-height: 1.5;
    margin-top: 0;
}

.footer-links {
    flex: 1;
    display: flex;
    justify-content: space-around;
    gap: 60px;
}

.footer-nav h4,
.footer-contact h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #F7F7F7;
}

.footer-nav ul,
.footer-contact ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-nav li,
.footer-contact li {
    margin-bottom: 15px;
}

.footer-link {
    display: flex;
    align-items: center;
    color: #F7F7F7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-nav .footer-link {
    color: rgba(255, 255, 255, 0.8);
}

.footer-link:hover {
    color: #39AFFF;
}

.footer-icon {
    width: 24px;
    height: 24px;
    margin-right: 10px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.email-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%2339AFFF' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 4h16c1.1 0 2 .9 2 2v12c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V6c0-1.1.9-2 2-2z'%3E%3C/path%3E%3Cpolyline points='22,6 12,13 2,6'%3E%3C/polyline%3E%3C/svg%3E");
}

.whatsapp-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%2339AFFF' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 11.5a8.38 8.38 0 0 1-.9 3.8 8.5 8.5 0 0 1-7.6 4.7 8.38 8.38 0 0 1-3.8-.9L3 21l1.9-5.7a8.38 8.38 0 0 1-.9-3.8 8.5 8.5 0 0 1 4.7-7.6 8.38 8.38 0 0 1 3.8-.9h.5a8.48 8.48 0 0 1 8 8v.5z'%3E%3C/path%3E%3C/svg%3E");
}

.instagram-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%2339AFFF' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='2' y='2' width='20' height='20' rx='5' ry='5'%3E%3C/rect%3E%3Cpath d='M16 11.37A4 4 0 1 1 12.63 8 4 4 0 0 1 16 11.37z'%3E%3C/path%3E%3Cline x1='17.5' y1='6.5' x2='17.51' y2='6.5'%3E%3C/line%3E%3C/svg%3E");
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    flex-wrap: wrap;
    gap: 20px;
}

.copyright {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

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

.footer-legal a {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: #39AFFF;
}

/* Media Queries */
@media (max-width: 991px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero .subtitle {
        font-size: 1.1rem;
    }
    
    .target-audience {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .header-cta {
        display: none;
    }
    
    .main-nav ul {
        gap: 20px;
    }
    
    .hero {
        padding: 130px 0 60px;
    }
    
    .hero-cta {
        text-align: center;
    }
    
    .target-audience-container {
        max-width: 90%;
        padding: 8px 15px;
    }

    /* Responsividade: Pra quem somos (tablet) */
    .audience-section {
        padding: 80px 0;
    }
    .audience-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .audience-title {
        font-size: 2rem;
    }
    .audience-description {
        font-size: 1.05rem;
    }
    .audience-list li {
        padding: 16px 16px 16px 72px;
    }
    .audience-list li::before {
        width: 44px;
        height: 44px;
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .main-nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .mobile-menu-toggle span {
        background-color: #212121;
    }
    
    .target-audience-container {
        max-width: 100%;
        padding: 8px 10px;
        flex-direction: column;
    }
    
    .target-label {
        margin-right: 0;
        margin-bottom: 10px;
    }
    
    .target-audience {
        width: 100%;
        justify-content: center;
    }
    
    .target-note {
        max-width: 100%;
        padding: 0 15px;
    }
    
    .hero-cta-container {
        flex-direction: column;
        gap: 20px;
    }
    
    .satisfied-customers {
        flex-direction: column;
        gap: 10px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .solution-category {
        flex-direction: column;
        gap: 20px;
    }
    
    .solution-info {
        flex: 0 0 100%;
    }
    
    .solution-features-container {
        flex: 0 0 100%;
        grid-template-columns: 1fr;
    }
    
    .ai-benefits .section-title {
        font-size: 2rem;
    }
    
    .ai-benefits .section-subtitle {
        font-size: 1rem;
        padding: 0 20px;
    }
    
    .benefit-card {
        flex: 0 0 calc(100% - 40px);
    }
    
    .carousel-track {
        padding: 0 20px;
    }
    
    /* Responsividade para a seção de Processo Comercial */
    .sales-process {
        padding: 70px 0;
    }
    
    .sales-process-row {
        flex-direction: column;
        gap: 25px;
        margin-bottom: 25px;
    }
    
    .sales-process-row .card-large,
    .sales-process-row .card-small,
    .sales-process-row:first-child .card-large,
    .sales-process-row:first-child .card-small,
    .sales-process-row:last-child .card-large,
    .sales-process-row:last-child .card-small {
        width: 100%;
    }
    
    .sales-process .section-title {
        font-size: 1.8rem;
    }
    
    .sales-process .section-subtitle {
        font-size: 1rem;
        padding: 0 20px;
    }
    
    .process-card {
        padding: 25px;
    }
    
    .process-image-container {
        height: 140px;
        margin-bottom: -25px;
        margin-left: -25px;
        margin-right: -25px;
        width: calc(100% + 50px);
    }
    
    .process-image {
        width: 180%;
        transform: scale(1.5);
    }
    
    .process-highlight {
        margin-bottom: 20px;
    }
    
    /* Responsividade para a seção Sobre */
    .about {
        padding: 70px 0;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto;
        height: auto;
        gap: 15px;
    }
    
    .about-main {
        grid-column: 1;
        grid-row: 1;
    }
    
    .about-differential {
        grid-column: 1;
        grid-row: 2;
    }
    
    .about-logo {
        grid-column: 1;
        grid-row: 3;
        height: 200px;
    }
    
    /* Responsividade do rodapé */
    .footer-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .footer-links {
        justify-content: flex-start;
        width: 100%;
        flex-wrap: wrap;
        gap: 30px;
    }
    
    .footer-nav,
    .footer-contact {
        flex: 0 0 45%;
    }
    
    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        text-align: center;
    }
    
    .about-box {
        padding: 25px;
    }
    
    .about-title {
        font-size: 1.8rem;
        margin-bottom: 20px;
    }
    
    .about-subtitle {
        font-size: 1.3rem;
    }
    
    .about-text,
    .about-quote {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .hero .subtitle {
        font-size: 1rem;
    }
    .btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }

    /* Responsividade: Pra quem somos (mobile) */
    .audience-section {
        padding: 60px 0;
    }
    .audience-title {
        font-size: 1.6rem;
    }
    .audience-description {
        font-size: 1rem;
    }
    .audience-list li {
        padding: 14px 14px 14px 68px;
    }
    .audience-list li::before {
        width: 40px;
        height: 40px;
        font-size: 0.95rem;
    }
 
    
    /* Ajustes adicionais para a seção Sobre em telas muito pequenas */
    .about {
        padding: 50px 0;
    }
    .about-box {
        padding: 20px;
    }
    
    .about-title {
        font-size: 1.5rem;
        margin-bottom: 15px;
    }
    
    .about-subtitle {
        font-size: 1.2rem;
        margin-bottom: 15px;
    }
    
    .about-text,
    .about-quote {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .about-logo {
        height: 150px;
    }
    
    /* Ajustes adicionais para o rodapé em telas muito pequenas */
    .footer {
        padding: 40px 0 20px;
    }
    
    .footer-brand {
        flex: 0 0 100%;
    }
    
    .footer-logo {
        width: 100px;
    }
    
    .footer-company-name {
        font-size: 1.1rem;
    }
    
    .footer-company-info,
    .footer-company-address {
        font-size: 0.85rem;
    }
    
    .footer-nav h4,
    .footer-contact h4 {
        font-size: 1rem;
    }
    
    .footer-nav,
    .footer-contact {
        flex: 0 0 100%;
    }
    
    .footer-legal {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }
}
