.elementor-983 .elementor-element.elementor-element-6d13f3a{--display:flex;--gap:0px 0px;--row-gap:0px;--column-gap:0px;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-983 .elementor-element.elementor-element-37187b6{margin:0px 0px calc(var(--kit-widget-spacing, 0px) + 0px) 0px;padding:0px 0px 0px 0px;}.elementor-theme-builder-content-area{height:400px;}.elementor-location-header:before, .elementor-location-footer:before{content:"";display:table;clear:both;}/* Start custom CSS *//* --- Variáveis de Marca --- */
:root {
    --primary-blue: #194b8f;
    /* Azul Profundo */
    --secondary-blue: #3699cd;
    /* Azul Claro Vibrante */
    --primary-orange: #ff7b08;
    /* Laranja Terroso (Ação) */
    --secondary-orange: #ff7b08;
    /* Amarelo Dourado (Detalhes) */
    --text-dark: #333333;
    --text-gray: #666666;
    --bg-light: #f4f6f8;
    --white: #ffffff;
    --radius: 8px;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* --- Reset e Tipografia --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
}

.section {
    /* Espaçamento padrão para todas as seções (Desktop) */
    padding-top: 100px;
    padding-bottom: 100px;
    position: relative;
    overflow: hidden;
    /* Evita que elementos vazem e criem barra de rolagem lateral */
}

h1,
h2,
h3,
h4 {
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
    color: var(--text-gray);
}

a {
    text-decoration: none;
    transition: 0.3s;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-orange {
    color: var(--primary-orange);
}

.text-center {
    text-align: center;
}

.mb-2 {
    margin-bottom: 1rem;
}

.mb-5 {
    margin-bottom: 3rem;
}

/* --- Botões --- */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: var(--radius);
    font-weight: 600;
    cursor: pointer;
    border: none;
    font-size: 0.95rem;
}

.btn-orange {
    background-color: var(--primary-orange);
    color: var(--white);
}

.btn-orange:hover {
    background-color: #d16228;
    transform: translateY(-2px);
}

.btn-blue {
    background-color: var(--primary-blue);
    color: var(--white);
}

.btn-blue:hover {
    background-color: #123566;
}

.btn-blue-outline {
    border: 2px solid var(--primary-blue);
    color: var(--primary-blue);
    background: transparent;
}

.btn-blue-outline:hover {
    background-color: var(--primary-blue);
    color: var(--white);
}

.block {
    display: block;
    width: 100%;
}

/* --- Header --- */
.header {
    background-color: var(--white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 15px 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-blue);
    letter-spacing: -0.5px;
}

.nav-menu a {
    color: var(--text-dark);
    margin: 0 15px;
    font-weight: 500;
    font-size: 0.95rem;
}

.nav-menu a:hover {
    color: var(--primary-orange);
}

/* --- Hero Section (Professional Dark Theme) --- */
.hero {
    position: relative;
    /* Fundo Azul Tecnológico Profundo */
    background: radial-gradient(circle at top right, rgba(5, 77, 144, 0.6) 0%, rgba(5, 77, 144, 0.6) 40%, rgba(5, 77, 144, 0.3) 100%), url('https://www.servicelogic.com.br/wp-content/uploads/2026/01/truck-highway-sunset-scaled.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 50px 0 80px 0;
    /* Mais espaçamento para respirar */
    min-height: 90vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    /* Corta os brilhos que vazam */
}



/* Elementos de Glow no Fundo (Ambientação) */
.hero-bg-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    z-index: 1;
    opacity: 0.4;
}

.glow-1 {
    width: 600px;
    height: 600px;
    background: var(--secondary-blue);
    top: -200px;
    right: -100px;
}

.glow-2 {
    width: 500px;
    height: 500px;
    background: var(--primary-orange);
    bottom: -100px;
    left: -100px;
    opacity: 0.15;
}

/* Container */
.hero-content {
    position: relative;
    z-index: 2;
    /* Fica acima do glow */
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

/* --- Texto da Hero --- */
.hero-text {
    flex: 1;
    max-width: 600px;
    color: var(--white);
}

/* Badge (Pílula no topo) */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 24px;
    backdrop-filter: blur(5px);
}

/* Título */
.hero-text h1 {
    font-size: 3.2rem;
    /* Maior impacto */
    line-height: 1.15;
    color: var(--white);
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.text-gradient {
    color: var(--secondary-orange);
    /* Opcional: Efeito gradiente no texto */
    background: linear-gradient(90deg, #ffa300, #ffc966);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-sub {
    font-size: 1.1rem;
    color: #dbe4f0;
    /* Branco levemente azulado para leitura suave */
    margin-bottom: 35px;
    max-width: 90%;
    font-weight: 300;
}

/* --- Formulário Moderno --- */
.hero-form {
    display: flex;
    gap: 10px;
    background: rgba(255, 255, 255, 0.05);
    /* Vidro sutil */
    padding: 8px;
    border-radius: 50px;
    /* Formato pílula */
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    max-width: 500px;
    backdrop-filter: blur(10px);
}

.input-wrapper {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
}

.input-wrapper i {
    position: absolute;
    left: 15px;
    color: #ccc;
    font-size: 1.2rem;
}

.hero-form input {
    width: 100%;
    padding: 12px 12px 12px 45px;
    /* Espaço para o ícone */
    border: none;
    outline: none;
    background: transparent;
    color: var(--white);
    font-size: 1rem;
}

.hero-form input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.hero-form button {
    border-radius: 40px;
    padding: 12px 30px;
    white-space: nowrap;
}

/* Ícones de Confiança abaixo do form */
.hero-trust {
    display: flex;
    gap: 20px;
    margin-top: 25px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

.hero-trust span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.hero-trust i {
    color: var(--secondary-orange);
    font-size: 1.1rem;
}


/* --- Divisor de Onda (Opcional) --- */
.hero-wave {
    position: absolute;
    margin-bottom: -2px;
    bottom: 0;
    left: 0;
    width: 100%;
    line-height: 0;
    z-index: 3;
}

.hero-wave svg {
    width: 100%;
    height: auto;
}

/* --- Responsividade da Hero --- */
@media (max-width: 900px) {
    .hero {
        padding: 100px 0 60px 0;
        text-align: center;
    }

    .hero-content {
        flex-direction: column-reverse;
        /* Roda em cima no mobile, ou coluna normal */
    }

    .hero-text {
        margin-top: -40px;
        /* Ajuste visual */
    }

    .hero-form {
        flex-direction: column;
        border-radius: 16px;
        background: transparent;
        border: none;
        box-shadow: none;
    }

    .hero-form input {
        background: rgba(255, 255, 255, 0.1);
        border-radius: 8px;
        margin-bottom: 10px;
    }

    .hero-form button {
        width: 100%;
    }

    .hero-badge,
    .hero-trust {
        justify-content: center;
    }
}

/* --- Seção Sobre (Novo Layout Split) --- */
.about {
    padding: 100px 0;
    background-color: var(--white);
    overflow: hidden;
    /* Evita que elementos decorativos vazem */
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    /* Divide a tela em 2 */
    gap: 80px;
    /* Espaço generoso entre texto e imagem */
    align-items: center;
    /* Espaço antes dos diferenciais */
}

/* Coluna de Texto */
.about-text {
    max-width: 550px;
}

.badge-pill {
    display: inline-block;
    background: rgba(25, 75, 143, 0.1);
    color: var(--primary-blue);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.about-text h2 {
    font-size: 2.2rem;
    line-height: 1.25;
    margin-bottom: 25px;
    color: var(--primary-blue);
}

.about-text p {
    font-size: 1rem;
    color: var(--text-gray);
    margin-bottom: 20px;
    line-height: 1.7;
}

/* Estatísticas em Linha */
.stats-row {
    display: flex;
    gap: 40px;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #eee;
}

.stat-item strong {
    display: block;
    font-size: 1.8rem;
    color: var(--primary-orange);
    font-weight: 800;
    line-height: 1;
}

.stat-item span {
    font-size: 0.85rem;
    color: var(--text-dark);
    font-weight: 500;
}

/* Coluna Visual (Imagem Composta) */
.about-visual {
    position: relative;
    padding-left: 20px;
    /* Espaço para o efeito deslocado */
}

/* Imagem Principal */
.image-main {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    z-index: 1;
}

.image-main img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.image-main:hover img {
    transform: scale(1.05);
    /* Zoom suave ao passar o mouse */
}

/* Elemento Decorativo Atrás (Quadrado Laranja) */
.about-visual::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, var(--secondary-orange) 0%, transparent 70%);
    opacity: 0.5;
    z-index: 0;
}

.about-visual::after {
    content: '';
    position: absolute;
    bottom: -30px;
    left: -30px;
    width: 60%;
    height: 60%;
    background: var(--primary-blue);
    border-radius: 24px;
    z-index: 0;
    opacity: 0.05;
}

/* Card Flutuante (Interface UI) */
.floating-ui-card {
    position: absolute;
    bottom: -40px;
    left: -40px;
    background: var(--white);
    padding: 20px;
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    width: 200px;
    z-index: 2;
    /* Fica acima da imagem */
    border: 1px solid #eee;
    animation: floatCard 6s ease-in-out infinite;
}

.ui-header {
    display: flex;
    gap: 6px;
    margin-bottom: 15px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.red {
    background: #ff5f56;
}

.yellow {
    background: #ffbd2e;
}

.green {
    background: #27c93f;
}

.ui-body {
    display: flex;
    align-items: flex-end;
    gap: 15px;
}

.ui-graph {
    display: flex;
    align-items: flex-end;
    gap: 4px;
    height: 60px;
    flex: 1;
}

.bar {
    flex: 1;
    background: #eee;
    border-radius: 3px;
}

.bar.active {
    background: var(--primary-orange);
}

.ui-info strong {
    display: block;
    font-size: 0.75rem;
    color: var(--text-dark);
    line-height: 1.2;
}

.ui-info span {
    font-size: 0.7rem;
    color: #27c93f;
    /* Verde positivo */
    font-weight: 700;
}

@keyframes floatCard {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Responsividade */
@media (max-width: 900px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-text {
        max-width: 100%;
        text-align: center;
    }

    .stats-row {
        justify-content: center;
    }

    .about-visual {
        max-width: 400px;
        margin: 0 auto;
    }

    .floating-ui-card {
        left: -10px;
        bottom: -20px;
    }

    .center-mobile {
        text-align: center;
        display: block;
    }
}

/* --- Diferenciais (Grid Inteligente 3 em cima / 2 em baixo) --- */
.cards-grid {
    display: grid;
    /* Criamos um grid de 6 colunas virtuais para ter flexibilidade */
    grid-template-columns: repeat(6, 1fr);
    gap: 30px;
}

.feature-card {
    background: var(--white);
    padding: 30px;
    border-radius:15px;
    border: 1px solid #e5e7eb;
    /* Borda sutil */
    transition: 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    height: 100%;
    /* Garante altura igual */
    margin-top: 20px;
}

span.pre-header {
    font-weight: bold;
}

/* Efeitos de Hover */
.feature-card:hover {
    border-color: var(--primary-blue);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* Ícone */
.icon-circle {
    width: 60px;
    height: 60px;
    background: rgba(54, 153, 205, 0.1);
    color: var(--secondary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 20px;
}

/* Tipografia do Card */
/* Tipografia do Card */
/* Tipografia do Card - Ajuste Fino */
.feature-card h3 {
    font-size: 1.25rem;
    line-height: 1.3;
    color: var(--primary-blue);
    
    /* ALTERAÇÃO 1: Removemos a altura forçada */
    min-height: auto; 
    
    /* ALTERAÇÃO 2: Reduzimos a margem de baixo para aproximar o texto */
    margin-bottom: 12px; 
    
    margin-top: 0;
}

/* Opcional: Garante que o conteúdo não se espalhe verticalmente */
.feature-card {
    justify-content: flex-start; /* Força todo conteúdo para o topo */
    gap: 0; /* Remove gaps extras do flexbox se houver */
}

.hover-text {
    font-size: 0.95rem;
    color: var(--text-gray);
    line-height: 1.6;
}

/* --- A MÁGICA DO ALINHAMENTO PARA 5 ITENS --- */

/* Os 3 primeiros cards ocupam 2 colunas cada (Total = 6, ou seja, 3 por linha) */
.feature-card:nth-child(1),
.feature-card:nth-child(2),
.feature-card:nth-child(3) {
    grid-column: span 2;
}

/* Os 2 últimos cards ocupam 3 colunas cada (Total = 6, ou seja, 2 por linha) */
.feature-card:nth-child(4),
.feature-card:nth-child(5) {
    grid-column: span 3;
}

/* --- Responsividade --- */

/* Tablet (Até 1024px): Vira 2 colunas */
@media (max-width: 1024px) {
    .cards-grid {
        grid-template-columns: repeat(2, 1fr);
        /* Grid de 2 colunas simples */
    }

    /* Reseta os spans para o padrão de 1 coluna cada */
    .feature-card:nth-child(n) {
        grid-column: span 1;
    }

    /* O último card (5º) ocupa a linha toda para não ficar buraco */
    .feature-card:last-child {
        grid-column: span 2;
    }
}

/* Mobile (Até 768px): Vira 1 coluna */
@media (max-width: 768px) {
    .cards-grid {
        grid-template-columns: 1fr;
    }

    .feature-card:nth-child(n),
    .feature-card:last-child {
        grid-column: span 1;
    }
}

.about-footer {
    margin-top: 50px;
    border-top: 1px solid #eee;
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.about-footer p {
    max-width: 70%;
    margin: 0;
    font-weight: 500;
    color: var(--primary-blue);
}

/* --- Solutions (Grid Premium) --- */
.bg-light {
    /* Mudança: De cinza para um Azul Gelo muito suave */
    background-color: #f0f4f8;
    position: relative;
}

/* Detalhe visual decorativo */
.bg-light::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-blue), var(--secondary-blue));
}

.solutions .section-header {
    text-align: center;
}

.solutions .section-header h2 {
    color: var(--primary-blue);
    font-size: 2.2rem;
}

.solutions .section-header p {
    color: var(--text-gray);
    font-size: 1.1rem;
}

.solutions-grid {
    display: grid;
    /* Garante 4 colunas no desktop, mas quebra bonito em telas menores */
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.solution-item {
    background: var(--white);
    padding: 40px 25px;
    border-radius: 16px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}

/* Estado Hover (Ao passar o mouse) */
.solution-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(25, 75, 143, 0.15);
    /* Sombra Azulada */
    border-color: var(--primary-orange);
    /* Borda Laranja */
}

/* Ícone */
.icon-lg {
    font-size: 3.5rem;
    color: var(--secondary-blue);
    margin-bottom: 20px;
    transition: color 0.3s ease;
}

.solution-item:hover .icon-lg {
    color: var(--primary-orange);
    /* Ícone fica laranja no hover */
}

/* Título do Card */
.solution-item h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

/* Link "Ver detalhes" */
.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-orange);
    font-weight: 600;
    font-size: 0.95rem;
    margin-top: auto;
    /* Empurra para o fundo se o texto variar */
    transition: color 0.3s;
}

.link-arrow i {
    transition: transform 0.3s ease;
}

/* Animação da Setinha */
.solution-item:hover .link-arrow i {
    transform: translateX(5px);
    /* Move a seta para a direita */
}

/* Responsividade da Grid de Soluções */
@media (max-width: 1024px) {
    .solutions-grid {
        grid-template-columns: repeat(2, 1fr);
        /* 2 por linha em tablets */
    }
}

@media (max-width: 600px) {
    .solutions-grid {
        grid-template-columns: 1fr;
        /* 1 por linha no mobile */
    }
}

/* --- Seção Transformação (Novo Layout Centralizado) --- */
.transformation-section {
    /* MUDANÇA: Fundo Azul Profundo para quebrar o branco */
    background: linear-gradient(135deg, var(--primary-blue) 0%, #0f2d57 100%);
    padding: 100px 0;
    position: relative;
    color: var(--white);
}

/* 1. Cabeçalho Centralizado */
.trans-header-centered {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px auto;
}

.pre-header-blue {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 700;
    /* Texto Laranja para contraste no fundo azul */
    color: var(--secondary-orange);
    letter-spacing: 1px;
    margin-bottom: 20px;
    background: rgba(255, 255, 255, 0.1);
    padding: 6px 16px;
    border-radius: 20px;
    text-transform: uppercase;
}

.trans-header-centered h2 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--white);
    /* Texto Branco */
}

.subtitle-centered {
    font-size: 1.2rem;
    color: #cbd5e1;
    /* Cinza claro azulado */
    font-weight: 400;
}

/* 2. Grid de Conteúdo (Texto vs Imagem) */
.trans-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 60px;
}

.trans-body-text {
    background: rgba(255, 255, 255, 0.05);
    /* Transparente */
    padding: 40px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.trans-body-text p {
    font-size: 1rem;
    color: #e2e8f0;
    /* Texto claro */
    margin-bottom: 20px;
    line-height: 1.8;
}

.trans-body-text strong {
    color: var(--secondary-orange);
    /* Destaque Laranja/Amarelo */
}

/* Visual (Imagem) */
.img-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    border: 4px solid rgba(255, 255, 255, 0.1);
}

.img-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s;
}

/* 3. CTA Centralizado */
.trans-cta-centered {
    text-align: center;
    display: flex;
    justify-content: center;
}

/* Caixa Branca para chamar atenção no fundo azul */
.cta-box {
    background: var(--white);
    padding: 30px 50px;
    border-radius: 50px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.cta-box p {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-blue);
    /* Texto Azul no fundo branco */
}

/* Mobile Responsividade */
@media (max-width: 900px) {
    .trans-header-centered h2 {
        font-size: 2rem;
    }

    .trans-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    /* No mobile, imagem vem depois do texto ou antes, conforme preferência. 
       Aqui deixamos padrão (texto em cima, imagem em baixo) */

    .cta-box {
        flex-direction: column;
        gap: 15px;
        padding: 30px;
        border-radius: 20px;
        width: 100%;
    }
}

/* --- Features (Tabs) --- */
.tabs-container {
    display: flex;
    gap: 40px;
}

.tabs-nav {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-width: 250px;
}

.tab-btn {
    text-align: left;
    padding: 18px 20px;
    background: var(--bg-light);
    border: none;
    border-radius: var(--radius);
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.tab-btn:hover {
    background: #e2e8f0;
    color: var(--primary-blue);
}

/* Aba Ativa: Fundo Azul ou Laranja? Vamos de Laranja para contraste */
.tab-btn.active {
    background: var(--primary-orange);
    /* Fundo Laranja */
    color: var(--white);
    /* Texto Branco */
    border-left-color: #c2410c;
    /* Borda mais escura */
    box-shadow: 0 5px 15px rgba(234, 117, 56, 0.3);
    transform: translateX(10px);
    /* Pequeno deslocamento para destaque */
}

/* --- Área de Conteúdo das Abas com Rolagem --- */
.tabs-content-wrapper {
    flex: 3;
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid #eee;
    padding: 30px;
    /* Espaçamento interno */

    /* DEFINIÇÃO DA ALTURA E ROLAGEM */
    height: 500px;
    /* Altura fixa para alinhar com os botões ao lado */
    overflow-y: auto;
    /* Cria a barra de rolagem se o conteúdo passar */
    overflow-x: hidden;
    /* Evita rolagem lateral */

    /* Suavidade na rolagem */
    scroll-behavior: smooth;

    /* Sombra interna sutil no topo para indicar profundidade */
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.02);
}

/* --- Customização da Barra de Rolagem (Scrollbar) --- */

/* Largura da barra */
.tabs-content-wrapper::-webkit-scrollbar {
    width: 8px;
}

/* Fundo da trilha da barra */
.tabs-content-wrapper::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
    margin: 10px 0;
    /* Margem para não colar nas bordas */
}

/* A barra em si (o "polegar") */
.tabs-content-wrapper::-webkit-scrollbar-thumb {
    background-color: var(--primary-orange);
    /* Laranja da marca */
    border-radius: 4px;
    border: 2px solid #f1f1f1;
    /* Cria um respiro ao redor */
}

/* A barra ao passar o mouse */
.tabs-content-wrapper::-webkit-scrollbar-thumb:hover {
    background-color: #d16228;
    /* Laranja mais escuro */
}

/* Firefox (Suporte) */
.tabs-content-wrapper {
    scrollbar-width: thin;
    scrollbar-color: var(--primary-orange) #f1f1f1;
}

.tab-content {
    display: none;
    gap: 30px;
    animation: fadeEffect 0.5s;
}

.tab-content.active {
    display: flex;
}

.tab-text h3 {
    color: var(--primary-orange);
    /* Título Laranja */
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.check-list li::before {
    content: '✔';
    position: absolute;
    left: 0;
    color: var(--primary-blue);
    /* Checks Azuis */
    font-weight: bold;
    background: rgba(25, 75, 143, 0.1);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
}

@keyframes fadeEffect {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.tab-text {
    flex: 1;
}

.tab-text h3 {
    color: var(--primary-orange);
    font-size: 1rem;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.tab-text h4 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.check-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.check-list li::before {
    content: '✔';
    position: absolute;
    left: 0;
    color: var(--secondary-blue);
    font-weight: bold;
}

.tab-img {
    flex: 1;
}

.tab-img img {
    width: 100%;
    border-radius: var(--radius);
}

.center-btn {
    text-align: center;
    margin-top: 50px;
}

/* --- Integrations & Testimonials --- */
.logos-carousel {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.logo-item {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ccc;
    text-transform: uppercase;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.testimonial-card {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    position: relative;
}

.quote-icon {
    font-size: 4rem;
    color: var(--secondary-orange);
    line-height: 1;
    position: absolute;
    top: 10px;
    left: 20px;
    opacity: 0.3;
}

.author {
    margin-top: 20px;
    border-left: 3px solid var(--primary-blue);
    padding-left: 15px;
}

.author strong {
    display: block;
    color: var(--primary-blue);
}

.author span {
    font-size: 0.85rem;
    color: var(--text-gray);
}

/* --- Contact & Footer --- */
.contact-wrapper {
    display: flex;
    gap: 50px;
}

.contact-form-box {
    flex: 1;
    background: var(--bg-light);
    padding: 40px;
    border-radius: var(--radius);
}

.input-group {
    margin-bottom: 15px;
}

.input-group label {
    display: block;
    font-weight: 500;
    margin-bottom: 5px;
    font-size: 0.9rem;
}

.input-group input,
.input-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-family: inherit;
}

.contact-info-box {
    flex: 1;
    padding: 20px;
}

.contact-info-box h3 {
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.map-placeholder {
    width: 100%;
    height: 200px;
    background: #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
    border-radius: var(--radius);
    color: #777;
}

/* --- Footer Premium --- */
.footer-premium {
    /* Mesmo gradiente da Hero para consistência visual */
    background: radial-gradient(circle at bottom right, #1f5aa8 0%, #194b8f 40%, #0f2d57 100%);
    color: rgba(255, 255, 255, 0.8);
    padding: 80px 0 30px 0;
    font-size: 0.95rem;
    position: relative;
    border-top: 4px solid var(--primary-orange);
    /* Detalhe visual */
}

/* Grid de Colunas */
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    /* Colunas assimétricas */
    gap: 40px;
    margin-bottom: 60px;
}

/* Títulos das Colunas */
.footer-col h4 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 3px;
    background-color: var(--primary-orange);
    border-radius: 2px;
}

/* Links */
.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s;
    display: inline-block;
}

.footer-col ul li a:hover {
    color: var(--primary-orange);
    transform: translateX(5px);
    /* Pequeno movimento ao passar o mouse */
}

/* Coluna da Marca */
.footer-logo {
    font-family: 'Poppins', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.brand-col p {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    margin-bottom: 25px;
}

/* Redes Sociais */
.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--white);
    font-size: 1.2rem;
    transition: 0.3s;
}

.social-links a:hover {
    background: var(--primary-orange);
    transform: translateY(-3px);
}

/* Coluna de Contato */
.contact-col li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin-bottom: 18px;
    color: rgba(255, 255, 255, 0.8);
}

.contact-col i {
    color: var(--primary-orange);
    font-size: 1.2rem;
    margin-top: 2px;
}

/* Badge "Vagas" */
.badge-new {
    background: var(--primary-orange);
    color: white;
    font-size: 0.65rem;
    padding: 2px 6px;
    border-radius: 4px;
    margin-left: 5px;
    text-transform: uppercase;
    font-weight: 700;
    vertical-align: middle;
}

/* Rodapé Inferior (Copyright) */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.5);
    transition: 0.3s;
}

.footer-legal a:hover {
    color: var(--primary-orange);
}

.separator {
    margin: 0 10px;
}

/* Responsividade */
@media (max-width: 900px) {
    .footer-grid {
        grid-template-columns: 1fr;
        /* Uma coluna no mobile */
        gap: 40px;
        text-align: center;
    }

    .footer-col h4::after {
        left: 50%;
        transform: translateX(-50%);
        /* Centraliza o sublinhado */
    }

    .social-links {
        justify-content: center;
    }

    .contact-col li {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* --- Modal --- */
.modal {
    display: none;
    position: fixed;
    z-index: 200;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: var(--white);
    width: 90%;
    max-width: 600px;
    padding: 40px;
    border-radius: var(--radius);
    position: relative;
    animation: slideDown 0.3s;
}

@keyframes slideDown {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 1.5rem;
    cursor: pointer;
    color: #999;
}

.close-modal:hover {
    color: var(--primary-orange);
}

.modal-pre-header {
    color: var(--primary-orange);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 10px;
}

.modal-list li {
    padding: 5px 0;
    border-bottom: 1px solid #eee;
}

/* --- Mobile --- */
@media (max-width: 900px) {

    .hero-content,
    .contact-wrapper,
    .tabs-container {
        flex-direction: column;
    }

    .hero-text {
        margin-bottom: 40px;
        text-align: center;
    }

    .hero-form {
        flex-direction: column;
    }

    .solutions-grid {
        grid-template-columns: 1fr 1fr;
    }

    .tabs-nav {
        flex-direction: row;
        overflow-x: auto;
        padding-bottom: 10px;
    }

    .tab-content {
        flex-direction: column;
    }

    .nav-menu {
        display: none;
    }

    /* Simples hide para demo */
    .about-footer {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}






/* --- Hero Wheel Wrapper --- */
.hero-wheel-wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    height: 420px;
    margin-top: 20px;
}

.interactive-wheel {
    width: 400px;
    height: 400px;
    position: relative;
}

/* SVG (Fundo) */
.wheel-svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.wheel-segment {
    fill: rgba(255, 255, 255, 0.15);
    /* Branco Transparente */
    stroke: rgba(255, 255, 255, 0.4);
    stroke-width: 1px;
    transition: all 0.3s ease-out;
    cursor: pointer;
}

/* Estado Ativo (Controlado via JS) */
.wheel-segment.active,
.wheel-segment:hover {
    fill: var(--primary-orange);
    stroke: var(--primary-orange);
    fill-opacity: 1;
    filter: drop-shadow(0 0 15px rgba(234, 117, 56, 0.6));
}

/* Centro (Core) */
.wheel-core {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 130px;
    height: 130px;
    background: transparent;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    z-index: 5;
    pointer-events: none;
}

.core-logo {
    font-size: 5rem;
    font-weight: 800;
    color: var(--primary-orange);
    font-family: 'Poppins', sans-serif;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* --- Itens (Ícone + Label) --- */
.wheel-item {
    position: absolute;
    z-index: 10;
    /* AGORA OS ÍCONES RECEBEM O MOUSE PARA ATIVAR O JS */
    pointer-events: auto;
    cursor: pointer;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 140px;
    color: var(--white);
    transition: transform 0.3s ease;
}

.wheel-item .icon {
    font-size: 3rem;
    margin-bottom: 5px;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease;
}

/* Label Oculto por Padrão */
.wheel-item .label {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.8);
    letter-spacing: 0.5px;

    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* --- Classe .active (Controlada via JS) --- */
.wheel-item.active .label {
    opacity: 1;
    transform: translateY(0);
}

.wheel-item.active .icon {
    transform: translateY(-5px);
}

.wheel-item.active {
    transform: translate(-50%, -50%) scale(1.05);
}

/* --- Posicionamento Matemático --- */
.item-tms {
    top: 25%;
    left: 75%;
    transform: translate(-50%, -50%);
}

.item-dfe {
    top: 75%;
    left: 75%;
    transform: translate(-50%, -50%);
}

.item-track {
    top: 75%;
    left: 25%;
    transform: translate(-50%, -50%);
}

.item-trip {
    top: 25%;
    left: 25%;
    transform: translate(-50%, -50%);
}

/* Mobile */
@media (max-width: 900px) {
    .hero-wheel-wrapper {
        transform: scale(0.7);
        height: 350px;
    }
}


/* --- Seção Diferenciais (Blue Theme) --- */
.differentials-section {
    /* Fundo Azul com leve gradiente para profundidade */
    background: linear-gradient(180deg, var(--primary-blue) 0%, #0d2546 100%);
    padding: 100px 0;
    color: var(--white);
    position: relative;
}

/* Cabeçalho centralizado dentro da seção azul */
.section-header-center {
    text-align: center;
    margin-bottom: 60px;
}

.text-white {
    color: var(--white) !important;
}

.pre-header-orange {
    display: inline-block;
    color: var(--secondary-orange);
    font-weight: 800;
    letter-spacing: 1.5px;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

/* Ajustes nos Cards para ficarem perfeitos no fundo azul */
.differentials-section .feature-card {
    background: var(--white);
    /* Card Branco */
    border: none;
    /* Remove borda cinza padrão */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    /* Sombra mais forte */
}

/* Hover do Card */
.differentials-section .feature-card:hover {
    transform: translateY(-10px);
    /* Borda inferior laranja ao passar o mouse */
    border-bottom: 5px solid var(--primary-orange);
}

/* Ícones dentro do card */
.differentials-section .icon-circle {
    background: rgba(25, 75, 143, 0.08);
    /* Fundo azul bem claro */
    color: var(--primary-blue);
}

.differentials-section h3 {
    color: var(--primary-blue);
    /* Título do card em azul */
}

.differentials-section p {
    color: var(--text-gray);
    /* Texto cinza para leitura */
}

/* Mantém o grid layout que já tínhamos (3 em cima, 2 embaixo) */
/* O CSS anterior do .cards-grid continua valendo aqui */

/* --- Seção Integrações (Dark Blue Theme) --- */
.integrations-section {
    /* Fundo Azul Profundo (Mesmo tom dos Diferenciais para consistência) */
    background: radial-gradient(circle at center, #1f5aa8 0%, #0f2d57 100%);
    padding: 100px 0;
    color: var(--white);
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    /* Separador sutil */
}

.integrations-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--white);
}

.subtitle-light {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    /* Branco com transparência */
    max-width: 600px;
    margin: 0 auto 50px auto;
}

/* Grid de Logos Premium */
.logos-grid-premium {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 50px;
}

/* Card estilo "Vidro" (Glassmorphism) */
.logo-card {
    background: rgba(255, 255, 255, 0.05);
    /* Fundo Transparente */
    border: 1px solid rgba(255, 255, 255, 0.1);
    /* Borda fina */
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 20px 30px;
    min-width: 160px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    cursor: default;
}

/* Ícones dentro dos cards */
.logo-card i {
    font-size: 2rem;
    color: var(--secondary-blue);
    /* Azul claro para destacar */
    transition: color 0.3s;
}

.logo-card span {
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    color: var(--white);
}

/* Hover no Card */
.logo-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
    border-color: var(--primary-orange);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.logo-card:hover i {
    color: var(--primary-orange);
}

/* Mobile */
@media (max-width: 768px) {
    .logo-card {
        flex: 1 1 40%;
        /* 2 por linha no mobile */
        min-width: auto;
    }
}/* End custom CSS */