/* ========================================
   CHAVES AUTOMOTIVAS - CSS TOTALMENTE ISOLADO
   Prefixo: .ak- (automotive-keys)
   ======================================== */

/* Importar fontes */
@import url('https://fonts.googleapis.com/css2?family=Epilogue:wght@400;500;600;700;800;900&family=Roboto:wght@300;400;500;700&display=swap');

/* ========================================
   SEÇÃO PRINCIPAL - TOTALMENTE ISOLADA
   ======================================== */

.ak-section {
    position: relative;
    background: #012A55;
    padding: 30px 0 140px 0;
    overflow: visible;
    min-height: auto;
    isolation: isolate;
    margin: 0;
    clear: both;
}

/* Container isolado */
.ak-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 10;
}

/* ========================================
   EFEITOS DE LUZ ANIMADOS
   ======================================== */

.ak-light-beam {
    position: absolute;
    top: -50%;
    left: -10%;
    width: 120%;
    height: 200%;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(252, 121, 26, 0.03) 25%,
        rgba(252, 121, 26, 0.08) 50%,
        rgba(252, 121, 26, 0.03) 75%,
        transparent 100%
    );
    transform: rotate(-15deg);
    animation: ak-lightSweep 8s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
}

.ak-light-beam-2 {
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(21, 178, 57, 0.03) 25%,
        rgba(21, 178, 57, 0.08) 50%,
        rgba(21, 178, 57, 0.03) 75%,
        transparent 100%
    );
    animation-delay: 3s;
    animation-duration: 10s;
}

.ak-light-beam-3 {
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(1, 42, 85, 0.05) 25%,
        rgba(1, 42, 85, 0.1) 50%,
        rgba(1, 42, 85, 0.05) 75%,
        transparent 100%
    );
    animation-delay: 6s;
    animation-duration: 12s;
}

@keyframes ak-lightSweep {
    0%, 100% {
        transform: translateX(-100%) rotate(-15deg);
        opacity: 0;
    }
    50% {
        transform: translateX(100%) rotate(-15deg);
        opacity: 1;
    }
}

/* Partículas */
.ak-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.ak-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(252, 121, 26, 0.5);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(252, 121, 26, 0.5);
    animation: ak-floatParticle 15s infinite ease-in-out;
}

.ak-particle:nth-child(1) { left: 10%; animation-delay: 0s; }
.ak-particle:nth-child(2) { left: 25%; animation-delay: 2s; background: rgba(21, 178, 57, 0.5); }
.ak-particle:nth-child(3) { left: 40%; animation-delay: 4s; }
.ak-particle:nth-child(4) { left: 55%; animation-delay: 6s; background: rgba(21, 178, 57, 0.5); }
.ak-particle:nth-child(5) { left: 70%; animation-delay: 8s; }
.ak-particle:nth-child(6) { left: 85%; animation-delay: 10s; background: rgba(21, 178, 57, 0.5); }
.ak-particle:nth-child(7) { left: 15%; animation-delay: 12s; }
.ak-particle:nth-child(8) { left: 90%; animation-delay: 14s; background: rgba(21, 178, 57, 0.5); }

@keyframes ak-floatParticle {
    0%, 100% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }
    10%, 90% {
        opacity: 1;
    }
    50% {
        transform: translateY(-10vh) scale(1);
    }
}

/* Gradiente de fundo */
.ak-gradient-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(252, 121, 26, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(21, 178, 57, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 40% 20%, rgba(1, 42, 85, 0.08) 0%, transparent 50%);
    animation: ak-gradientShift 20s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

@keyframes ak-gradientShift {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

/* ========================================
   CABEÇALHO
   ======================================== */

.ak-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 10; /* Garantir que apareça acima de outros elementos */
}

.ak-subtitle-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 16px;
}

.ak-icon-line {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #FC791A, transparent);
    position: relative;
    overflow: hidden;
}

.ak-icon-line::before {
    content: '';
    position: absolute;
    width: 30px;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
    animation: ak-shimmer 3s infinite;
}

@keyframes ak-shimmer {
    0% { left: -30px; }
    100% { left: 100%; }
}

.ak-subtitle {
    font-family: "Roboto", sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 3px;
    color: #FC791A;
    text-transform: uppercase;
    text-shadow: 0 0 20px rgba(252, 121, 26, 0.5);
}

.ak-title {
    font-family: "Epilogue", sans-serif;
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ak-title-gradient {
    background: linear-gradient(135deg, #ffffff 0%, #e0e0e0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
}

.ak-title-accent {
    background: linear-gradient(135deg, #FC791A 0%, #FF9A3C 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    position: relative;
}

.ak-title-accent::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(135deg, #FC791A 0%, #FF9A3C 100%);
    border-radius: 2px;
    box-shadow: 0 0 20px rgba(252, 121, 26, 0.6);
}

.ak-description {
    font-family: "Roboto", sans-serif;
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    max-width: 700px;
    margin: 0 auto;
}

/* ========================================
   GRID DE SERVIÇOS
   ======================================== */

.ak-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.ak-service-card {
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 24px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: default !important; /* Forçar cursor normal */
    overflow: hidden;
    transform-style: preserve-3d;
}

.ak-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(252, 121, 26, 0.05), rgba(21, 178, 57, 0.05));
    opacity: 0;
    transition: opacity 0.5s ease;
    border-radius: 24px;
}

.ak-service-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(252, 121, 26, 0.5);
    box-shadow: 0 20px 60px rgba(252, 121, 26, 0.2),
                0 0 40px rgba(252, 121, 26, 0.1),
                inset 0 0 20px rgba(252, 121, 26, 0.05);
    cursor: default !important; /* Garantir cursor normal no hover */
}

.ak-service-card:hover::before {
    opacity: 1;
}

.ak-card-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(252, 121, 26, 0.15) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.ak-service-card:hover .ak-card-glow {
    opacity: 1;
    animation: ak-pulseGlow 2s ease-in-out infinite;
}

@keyframes ak-pulseGlow {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(1.1); }
}

.ak-card-shine {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, 
        transparent 30%, 
        rgba(255, 255, 255, 0.1) 50%, 
        transparent 70%
    );
    transform: rotate(45deg);
    transition: all 0.6s ease;
    pointer-events: none;
}

.ak-service-card:hover .ak-card-shine {
    left: 100%;
    top: 100%;
}

.ak-card-content {
    position: relative;
    z-index: 2;
}

.ak-icon-container {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ak-icon-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #FC791A 0%, #FF9A3C 100%);
    border-radius: 50%;
    opacity: 0.15;
    transition: all 0.5s ease;
}

.ak-service-card:hover .ak-icon-bg {
    opacity: 0.3;
    transform: scale(1.2) rotate(180deg);
}

.ak-icon-container i {
    font-size: 36px;
    color: #FC791A;
    z-index: 2;
    transition: all 0.5s ease;
}

.ak-service-card:hover .ak-icon-container i {
    transform: scale(1.1) rotate(-5deg);
    filter: drop-shadow(0 0 15px rgba(252, 121, 26, 0.8));
}

.ak-icon-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid #FC791A;
    border-radius: 50%;
    opacity: 0;
    animation: ak-iconPulse 2s ease-out infinite;
}

@keyframes ak-iconPulse {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.ak-card-title {
    font-family: "Epilogue", sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
    text-align: center;
    transition: all 0.3s ease;
}

.ak-service-card:hover .ak-card-title {
    color: #FC791A;
}

.ak-card-description {
    font-family: "Roboto", sans-serif;
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    margin-bottom: 24px;
}

.ak-card-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ak-card-features li {
    font-family: "Roboto", sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.ak-card-features li:last-child {
    border-bottom: none;
}

.ak-card-features li i {
    color: #15B239;
    font-size: 16px;
    transition: all 0.3s ease;
}

.ak-service-card:hover .ak-card-features li i {
    transform: scale(1.2);
    filter: drop-shadow(0 0 8px rgba(21, 178, 57, 0.6));
}

/* ========================================
   SEÇÃO DE MARCAS
   ======================================== */

.ak-brands-section {
    margin: 60px 0;
    padding: 40px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

.ak-brands-title {
    font-family: "Epilogue", sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
}

.ak-title-line {
    flex: 1;
    height: 2px;
    background: linear-gradient(90deg, transparent, #FC791A, transparent);
    max-width: 200px;
}

.ak-brands-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 24px;
}

.ak-brand-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.4s ease;
    cursor: default !important; /* Forçar cursor normal */
}

.ak-brand-item:hover {
    background: rgba(252, 121, 26, 0.1);
    border-color: rgba(252, 121, 26, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(252, 121, 26, 0.2);
    cursor: default !important; /* Garantir cursor normal no hover */
}

.ak-brand-item i {
    font-size: 32px;
    color: #FC791A;
    transition: all 0.4s ease;
}

.ak-brand-item:hover i {
    transform: scale(1.2);
    filter: drop-shadow(0 0 10px rgba(252, 121, 26, 0.6));
}

.ak-brand-item span {
    font-family: "Roboto", sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
}

/* ========================================
   CTA
   ======================================== */

.ak-cta-section {
    margin: 60px 0;
    padding: 60px;
    background: linear-gradient(135deg, rgba(252, 121, 26, 0.1), rgba(21, 178, 57, 0.1));
    border-radius: 32px;
    border: 2px solid rgba(252, 121, 26, 0.3);
    position: relative;
    overflow: hidden;
}

.ak-cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.03), transparent);
    animation: ak-rotateBg 10s linear infinite;
    pointer-events: none;
}

@keyframes ak-rotateBg {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.ak-cta-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.ak-cta-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #15B239 0%, #1FD450 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: ak-bounce 2s ease-in-out infinite;
    box-shadow: 0 10px 40px rgba(21, 178, 57, 0.4);
}

.ak-cta-icon i {
    font-size: 40px;
    color: #ffffff;
}

@keyframes ak-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.ak-cta-text {
    flex: 1;
    min-width: 250px;
}

.ak-cta-text h3 {
    font-family: "Epilogue", sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
}

.ak-cta-text p {
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
}

.ak-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    padding: 18px 36px;
    background: linear-gradient(135deg, #FC791A 0%, #FF9A3C 100%);
    color: #ffffff;
    font-family: "Epilogue", sans-serif;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.4s ease;
    box-shadow: 0 10px 40px rgba(252, 121, 26, 0.3);
    position: relative;
    overflow: hidden;
}

.ak-cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.ak-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(252, 121, 26, 0.5);
    color: #ffffff !important;
}

.ak-cta-button:hover::before {
    left: 100%;
}

.ak-button-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transition: all 0.4s ease;
}

.ak-cta-button:hover .ak-button-icon {
    transform: translateX(5px) rotate(45deg);
}

/* ========================================
   STATS
   ======================================== */

.ak-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 60px;
    align-items: stretch;
}

.ak-stat-item {
    text-align: center;
    padding: 40px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 220px;
}

.ak-stat-item:hover {
    background: rgba(252, 121, 26, 0.08);
    border-color: rgba(252, 121, 26, 0.3);
    transform: translateY(-5px);
}

.ak-stat-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 16px;
    background: linear-gradient(135deg, #FC791A 0%, #FF9A3C 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ak-stat-icon i {
    font-size: 28px;
    color: #ffffff;
}

.ak-stat-number {
    font-family: "Epilogue", sans-serif;
    font-size: 56px;
    font-weight: 800;
    background: linear-gradient(135deg, #FC791A 0%, #FF9A3C 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
    line-height: 1.2;
}

.ak-stat-label {
    font-family: "Roboto", sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ========================================
   RESPONSIVIDADE
   ======================================== */

@media (max-width: 1200px) {
    .ak-brands-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 1024px) {
    .ak-services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .ak-brands-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .ak-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}

@media (max-width: 768px) {
    .ak-section {
        padding: 30px 0 80px 0; /* AUMENTADO: padding-top bem maior */
        margin-top: 0; /* Remover margin extra */
    }
    
    /* Esconder efeitos de luz no mobile */
    .ak-light-beam,
    .ak-particles {
        display: none;
    }
    
    .ak-title {
        font-size: 36px;
    }
    
    .ak-services-grid {
        grid-template-columns: 1fr;
    }
    
    .ak-cta-content {
        flex-direction: column;
        text-align: center;
    }
    
    .ak-cta-button {
        width: 100%;
        justify-content: center;
    }
    
    .ak-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .ak-brands-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .ak-stat-number {
        font-size: 42px;
    }
}

@media (max-width: 480px) {
    .ak-section {
        padding: 30px 0 80px 0; /* AUMENTADO: ainda mais espaço no mobile pequeno */
    }
    
    .ak-title {
        font-size: 28px;
    }
    
    .ak-service-card {
        padding: 24px;
    }
    
    .ak-icon-container {
        width: 60px;
        height: 60px;
    }
    
    .ak-icon-container i {
        font-size: 28px;
    }
    
    .ak-card-title {
        font-size: 20px;
    }
    
    .ak-stats-grid {
        grid-template-columns: 1fr;
    }
    
    .ak-stat-number {
        font-size: 36px;
    }
}
/* ========================================
   SOBRESCREVER CURSOR - FORÇA MÁXIMA
   ======================================== */

.ak-service-card,
.ak-service-card:hover,
.ak-service-card *,
.ak-brand-item,
.ak-brand-item:hover,
.ak-brand-item * {
    cursor: default !important;
}











