.elementor-10 .elementor-element.elementor-element-4bf0157{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-widget-text-editor{font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );color:var( --e-global-color-text );}.elementor-widget-text-editor.elementor-drop-cap-view-stacked .elementor-drop-cap{background-color:var( --e-global-color-primary );}.elementor-widget-text-editor.elementor-drop-cap-view-framed .elementor-drop-cap, .elementor-widget-text-editor.elementor-drop-cap-view-default .elementor-drop-cap{color:var( --e-global-color-primary );border-color:var( --e-global-color-primary );}.elementor-10 .elementor-element.elementor-element-4c671b4{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-10 .elementor-element.elementor-element-9fb64b4{width:100%;max-width:100%;}.elementor-10 .elementor-element.elementor-element-9fb64b4.elementor-element{--align-self:center;}.elementor-10 .elementor-element.elementor-element-bf30203{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-10 .elementor-element.elementor-element-7da338b{width:100%;max-width:100%;}/* Start custom CSS for text-editor, class: .elementor-element-c5ccf8d *//* --- VARIÁVEIS --- */
:root {
    --ak-red-bright: #D5001C;  
    --ak-red-dark: #600000;    
    --ak-white: #FFFFFF;
    --ak-black: #121212;
    --ak-grey-text: #4A4A4A;
    --ak-transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    --ak-font: 'Poppins', sans-serif;
    --ak-header-height: 100px;
    --ak-header-sticky-height: 75px;
    /* Variável de sombra suave */
    --ak-shadow-premium: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.ak-header {
    font-family: var(--ak-font);
    background-color: var(--ak-white);
    height: var(--ak-header-height);
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    transition: var(--ak-transition);
    border-bottom: 1px solid rgba(0,0,0,0.03);
    /* Sombra inicial bem leve */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

/* Estado Sticky: Aumenta a sombra para destacar sobre o banner */
.ak-header.sticky {
    height: var(--ak-header-sticky-height);
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: var(--ak-shadow-premium);
    border-bottom: 1px solid rgba(0,0,0,0.08);
}

.ak-nav-container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 30px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
}

.ak-logo-col { display: flex; justify-content: flex-start; }
.ak-logo-link img { height: 54px; width: auto; transition: var(--ak-transition); }
.ak-header.sticky .ak-logo-link img { height: 42px; }

.ak-menu-col { display: flex; justify-content: center; }
.ak-nav-list { display: flex; list-style: none; gap: 35px; margin: 0; padding: 0; }

.ak-nav-link {
    text-decoration: none;
    color: var(--ak-grey-text);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding: 8px 0;
    transition: var(--ak-transition);
}

.ak-nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--ak-red-bright);
    transition: var(--ak-transition);
    transform: translateX(-50%);
}

.ak-nav-link:hover, .ak-nav-link.active { color: var(--ak-red-bright); }
.ak-nav-link:hover::after, .ak-nav-link.active::after { width: 100%; }

.ak-actions-col { display: flex; justify-content: flex-end; align-items: center; gap: 20px; }

.ak-btn-header {
    background-color: var(--ak-red-bright);
    color: var(--ak-white);
    padding: 12px 25px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 4px;
    border: 2px solid var(--ak-red-bright);
    transition: var(--ak-transition);
}

.ak-btn-header:hover { background-color: transparent; color: var(--ak-red-bright); }

.ak-mobile-trigger { display: none; cursor: pointer; flex-direction: column; gap: 6px; z-index: 10001; }
.ak-mobile-trigger span { width: 28px; height: 2px; background-color: var(--ak-black); transition: var(--ak-transition); }

@media (max-width: 1024px) {
    .ak-nav-container { grid-template-columns: 1fr 1fr; padding: 0 20px; }
    .ak-menu-col {
        position: fixed; top: 0; right: -100%; width: 100%; height: 100vh;
        background-color: var(--ak-white); flex-direction: column;
        justify-content: center; align-items: center; transition: var(--ak-transition);
    }
    .ak-menu-col.open { right: 0; }
    .ak-nav-list { flex-direction: column; gap: 25px; text-align: center; }
    .ak-nav-link { font-size: 18px; border-bottom: 1px solid #f0f0f0; padding-bottom: 10px; width: 100%; }
    .ak-nav-link::after { display: none; }
    .ak-mobile-trigger { display: flex; }
    .ak-mobile-trigger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
    .ak-mobile-trigger.active span:nth-child(2) { opacity: 0; }
    .ak-mobile-trigger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }
    .ak-btn-header { display: none; }
}/* End custom CSS */
/* Start custom CSS for text-editor, class: .elementor-element-9fb64b4 *//* --- VARIÁVEIS PREMIUM AK-SWISS --- */
:root {
    --ak-red-bright: #D5001C;  /* Vermelho Vivo Suíço */
    --ak-red-dark: #8A0012;    /* Vermelho Escuro para Hover */
    --ak-white: #FFFFFF;
    --ak-black: #121212;
    --ak-font: 'Poppins', sans-serif;
    /* Variáveis específicas para o efeito NEON */
    --ak-neon-red: #ff3333; /* Uma matiz mais brilhante para o neon */
    --ak-neon-red-glow: rgba(255, 51, 51, 0.6);
    --ak-transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

/* --- RESET BASE & WHITE SPACE --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ============================================================
   ESTRUTURA BASE DO HERO 
   ============================================================ */
.ak-hero {
    position: relative;
    width: 100vw; 
    min-height: 90vh; 
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: var(--ak-black); 
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
}

.ak-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://cliente.agenciaglobalgenesis.com/wp-content/uploads/2026/04/banner-supremo-1.jpg');
    background-size: cover;
    background-position: center right;
    z-index: 1;
}

.ak-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(15,15,15,0.95) 0%, rgba(15,15,15,0.7) 45%, rgba(15,15,15,0) 100%);
    z-index: 2;
}

.ak-hero-content {
    position: relative;
    z-index: 3; 
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    padding-top: 100px; 
}

.ak-hero-text-box {
    max-width: 680px;
}

.ak-hero-title {
    font-family: var(--ak-font);
    color: var(--ak-white);
    font-size: 54px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
    letter-spacing: -1.5px;
}

.ak-hero-subtitle {
    font-family: var(--ak-font);
    color: #E8E8E8;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 45px;
    max-width: 550px;
}

/* ============================================================
   BOTÕES PREMIUM (Animação Sweep + Lift 3D) Mantido
   ============================================================ */
.ak-hero-buttons {
    display: flex;
    gap: 20px;
}

.ak-btn-hero {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--ak-red-bright);
    color: var(--ak-white);
    padding: 16px 38px;
    font-family: var(--ak-font);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 4px;
    letter-spacing: 1.5px;
    border: none;
    overflow: hidden; 
    z-index: 1;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease;
}

.ak-btn-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background-color: var(--ak-red-dark);
    transition: width 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: -1;
}

.ak-btn-hero:hover {
    transform: translateY(-4px); 
    box-shadow: 0 12px 24px rgba(213, 0, 28, 0.35); 
    color: var(--ak-white);
}

.ak-btn-hero:hover::before { width: 100%; }

/* Botão Branco */
.ak-btn-white {
    background-color: var(--ak-white);
    color: var(--ak-red-bright);
}

.ak-btn-white::before { background-color: var(--ak-red-bright); }

.ak-btn-white:hover {
    color: var(--ak-white); 
    box-shadow: 0 12px 24px rgba(255, 255, 255, 0.25); 
}

/* ============================================================
   🟢 ANIMAÇÃO DO CAMINHÃO NEON COM "AK" RECORTADO (CORRIGIDO) 🟢
   ============================================================ */
.ak-animated-neon-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 70px; /* Um pouco mais alto para o glow aparecer bem */
    z-index: 5;
    overflow: hidden; /* Esconde o caminhão quando sai da tela */
}

/* A "Pista Neon" (Mantida) */
.ak-neon-track-line {
    position: absolute;
    bottom: 15px; 
    left: 0;
    width: 100%;
    height: 2px; 
    background: linear-gradient(90deg, transparent 0%, var(--ak-neon-red) 50%, transparent 100%);
    opacity: 0.8;
    box-shadow: 0 0 15px var(--ak-neon-red-glow);
}

/* O container do caminhão que faz a movimentação */
.ak-neon-truck-wrapper {
    position: absolute;
    bottom: 16px; /* Roda em cima da pista neon */
    left: -80px;  /* Começa fora da tela pela esquerda */
    /* 14 segundos para cruzar a tela. "linear" mantém a velocidade constante */
    animation: driveAcrossNeon 14s linear infinite;
}

/* 🟢 O SEGREDO DO CONSERTO ESTÁ AQUI 🟢 */
.ak-neon-truck-icon {
    width: 55px; /* Tamanho do ícone ligeiramente maior para o texto ler bem */
    height: 55px;
    color: var(--ak-neon-red); /* Define a cor base para herança */
    /* Mágica do Neon: Drop shadow cria o glow tanto no caminhão quanto no texto interno */
    filter: drop-shadow(0 0 15px var(--ak-neon-red-glow));
}

/* 🟢 Forçando o preenchimento apenas do corpo (path) com a cor neon 🟢 */
.ak-neon-truck-icon path {
    fill: var(--ak-neon-red) !important;
}

/* 🟢 O Texto do Recorte (dentro da Mask) não precisa de cor via CSS 🟢 */

/* A Mágica do Movimento da Esquerda para a Direita */
@keyframes driveAcrossNeon {
    0% {
        transform: translateX(-80px);
    }
    100% {
        transform: translateX(calc(100vw + 100px));
    }
}

/* ============================================================
   📱 RESPONSIVIDADE 📱
   ============================================================ */
@media (max-width: 1024px) {
    .ak-hero-title { font-size: 42px; }
}

@media (max-width: 768px) {
    .ak-hero { min-height: 100vh; align-items: center; }
    .ak-hero-content { padding: 0 25px; text-align: center; }
    .ak-hero-text-box { margin: 0 auto; }
    .ak-hero-title { font-size: 34px; line-height: 1.25; }
    .ak-hero-buttons { flex-direction: column; align-items: center; gap: 12px; }
    .ak-btn-hero { width: 100%; max-width: 320px; margin: 0 auto !important; }
    
    /* Caminhão neon um pouco menor e mais rápido no celular, garantindo leitura do AK recortaao */
    .ak-neon-truck-icon { width: 40px; height: 40px; filter: drop-shadow(0 0 10px var(--ak-neon-red-glow)); }
    /* Ajustando o tamanho do texto dentro da Mask no mobile para não sumir */
    .ak-neon-truck-icon text { font-size: 6px; } 
    .ak-neon-truck-wrapper { animation: driveAcrossNeon 8s linear infinite; bottom: 20px; }
    .ak-neon-track-line { bottom: 18px; box-shadow: 0 0 10px var(--ak-neon-red-glow); }
}/* End custom CSS */
/* Start custom CSS for text-editor, class: .elementor-element-7da338b *//* ============================================================
   ESTILOS DA SEÇÃO DE SERVIÇOS (FULL WIDTH)
   ============================================================ */
.ak-services-section {
    padding: 120px 0;
    background-color: #F9F9F9; 
    position: relative;
    overflow: hidden;
    width: 100vw; /* Garante que a seção ocupe toda a tela */
    margin-left: calc(-50vw + 50%); /* Força expansão caso o Elementor bloqueie */
    margin-right: calc(-50vw + 50%);
}

/* NOVO CONTAINER LARGURA TOTAL */
.ak-services-container {
    width: 100%;
    max-width: 100%; /* Quebra o limite antigo de 1300px */
    padding: 0 4%; /* Respiro percentual para se adaptar a qualquer monitor */
    margin: 0 auto;
}

/* Cabeçalho da Seção */
.ak-section-header {
    text-align: center;
    margin-bottom: 80px;
}

.ak-section-title {
    font-family: var(--ak-font);
    font-size: 42px;
    font-weight: 800;
    color: var(--ak-black);
    letter-spacing: -1px;
    margin-bottom: 15px;
}

.ak-title-divider {
    width: 60px;
    height: 4px;
    background-color: var(--ak-red-bright);
    margin: 0 auto 20px;
    border-radius: 2px;
}

.ak-section-subtitle {
    font-family: var(--ak-font);
    font-size: 18px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Grid de Cards (Esticados na largura total) */
.ak-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px; /* Aumentado um pouco o gap para compensar a tela mais larga */
}

/* O CARD PREMIUM */
.ak-service-card {
    position: relative;
    padding: 50px 40px; /* Um pouco mais de padding interno para equilibrar */
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.6); 
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Efeito de Vidro (Glass) */
.ak-card-glass {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(10px); 
    -webkit-backdrop-filter: blur(10px);
    z-index: 1;
}

.ak-card-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

/* Ícones */
.ak-service-icon {
    font-size: 45px;
    color: var(--ak-red-bright);
    margin-bottom: 25px;
    transition: var(--ak-transition);
}

.ak-service-name {
    font-family: var(--ak-font);
    font-size: 24px; /* Aumentado levemente para telas maiores */
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--ak-black);
}

.ak-service-desc {
    font-family: var(--ak-font);
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 30px;
}

.ak-service-link {
    font-family: var(--ak-font);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--ak-red-bright);
    text-decoration: none;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* HOVER ANIMATION */
.ak-service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--ak-red-bright);
}

.ak-service-card:hover .ak-service-icon {
    transform: scale(1.1);
    filter: drop-shadow(0 0 10px rgba(213, 0, 28, 0.3));
}

/* RESPONSIVIDADE MOBILE */
@media (max-width: 992px) {
    .ak-services-grid {
        grid-template-columns: 1fr; /* Um card por linha no mobile */
        gap: 25px;
    }
    
    .ak-services-container {
        padding: 0 25px; /* Ajusta o respiro no celular */
    }
    
    .ak-section-title { font-size: 32px; }
    .ak-service-card { padding: 40px 20px; }
}/* End custom CSS */