/* ============================================ */
/* COPIAS DE CHAVES - CSS FUTURISTA           */
/* Prefixo: ck- (para evitar conflitos)       */
/* ============================================ */

/* Importação da biblioteca de animações AOS */
@import url('https://unpkg.com/aos@2.3.1/dist/aos.css');

/* ============================================ */
/* SEÇÃO PRINCIPAL */
/* ============================================ */
.ck-section {
    position: relative;
    padding: 30px 0;
    background: linear-gradient(135deg, #010f1c 0%, #012A55 50%, #010f1c 100%);
    overflow: hidden;
}

/* Background Wrapper */
.ck-background-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

/* Grid Overlay Futurista - REMOVIDO */

/* ============================================ */
/* FEIXES DE LUZ ANIMADOS - ESTILO BANNER */
/* ============================================ */
.ck-light-beam {
    position: absolute;
    width: 200px;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(21, 178, 57, 0.15) 50%,
        transparent 100%
    );
    opacity: 0;
    animation: ck-light-sweep 4s ease-in-out infinite;
    transform: skewX(-20deg);
}

.ck-light-beam-1 {
    left: -200px;
    animation-delay: 0s;
}

.ck-light-beam-2 {
    left: -200px;
    animation-delay: 1.5s;
}

.ck-light-beam-3 {
    left: -200px;
    animation-delay: 3s;
}

@keyframes ck-light-sweep {
    0% {
        left: -200px;
        opacity: 0;
    }
    20% {
        opacity: 1;
    }
    80% {
        opacity: 1;
    }
    100% {
        left: 100%;
        opacity: 0;
    }
}

/* ============================================ */
/* CABEÇALHO DA SEÇÃO */
/* ============================================ */
.ck-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.ck-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 25px;
    background: rgba(21, 178, 57, 0.1);
    border: 2px solid rgba(21, 178, 57, 0.3);
    border-radius: 50px;
    color: #15B239;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    animation: ck-badge-pulse 3s ease-in-out infinite;
}

.ck-badge i {
    font-size: 18px;
}

@keyframes ck-badge-pulse {
    0%, 100% {
        box-shadow: 0 0 20px rgba(21, 178, 57, 0.3);
    }
    50% {
        box-shadow: 0 0 40px rgba(21, 178, 57, 0.6);
    }
}

.ck-title {
    font-size: 48px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 15px;
    line-height: 1.2;
}

.ck-highlight {
    color: #15B239;
    position: relative;
    display: inline-block;
}

.ck-highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #15B239, #FC791A);
    animation: ck-underline-expand 2s ease-in-out infinite;
}

@keyframes ck-underline-expand {
    0%, 100% {
        width: 100%;
        opacity: 1;
    }
    50% {
        width: 60%;
        opacity: 0.6;
    }
}

.ck-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ============================================ */
/* CARDS DE TIPOS DE CHAVES */
/* ============================================ */
.ck-cards-row {
    position: relative;
    z-index: 2;
    margin-bottom: 60px;
}

.ck-card {
    position: relative;
    background: rgba(1, 42, 85, 0.6);
    border: 2px solid rgba(21, 178, 57, 0.2);
    border-radius: 20px;
    padding: 30px;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    cursor: pointer;
    backdrop-filter: blur(10px);
}

.ck-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #15B239, #FC791A, #012A55);
    border-radius: 20px;
    opacity: 0;
    transition: opacity 0.4s;
    z-index: -1;
}

.ck-card:hover::before {
    opacity: 0.3;
    animation: ck-border-rotate 3s linear infinite;
}

@keyframes ck-border-rotate {
    0% {
        filter: hue-rotate(0deg);
    }
    100% {
        filter: hue-rotate(360deg);
    }
}

.ck-card:hover {
    transform: translateY(-5px);
    border-color: rgba(21, 178, 57, 0.3);
    box-shadow: 0 10px 30px rgba(21, 178, 57, 0.15);
}

/* Efeito de brilho no card - ULTRA SUAVE */
.ck-card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(
        circle,
        rgba(21, 178, 57, 0.03) 0%,
        transparent 70%
    );
    opacity: 0;
    transition: opacity 0.4s;
    pointer-events: none;
}

.ck-card:hover .ck-card-glow {
    opacity: 0.5;
    animation: ck-glow-pulse 2s ease-in-out infinite;
}

@keyframes ck-glow-pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.5;
    }
}

/* Card em Destaque */
.ck-card-featured {
    border-color: rgba(252, 121, 26, 0.5);
    background: rgba(252, 121, 26, 0.05);
}

.ck-featured-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #FC791A, #ff9d4d);
    color: #fff;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(252, 121, 26, 0.4);
    animation: ck-featured-float 3s ease-in-out infinite;
}

@keyframes ck-featured-float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

/* Cabeçalho do Card */
.ck-card-header {
    text-align: center;
    margin-bottom: 25px;
}

.ck-icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 15px;
    background: linear-gradient(135deg, rgba(252, 121, 26, 0.2), rgba(252, 121, 26, 0.1));
    border: 3px solid rgba(252, 121, 26, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    color: #FC791A;
    transition: all 0.4s;
    position: relative;
}

.ck-icon-wrapper::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: inherit;
    filter: blur(15px);
    opacity: 0;
    transition: opacity 0.4s;
}

.ck-card:hover .ck-icon-wrapper {
    transform: scale(1.05);
    border-color: rgba(252, 121, 26, 0.6);
    box-shadow: 0 0 20px rgba(252, 121, 26, 0.3);
}

.ck-card:hover .ck-icon-wrapper::before {
    opacity: 0.5;
}

.ck-card-title {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin: 0;
}

/* Corpo do Card */
.ck-card-body {
    position: relative;
}

.ck-features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

/* Sem efeito de opacidade no hover - mantém 100% das informações */

.ck-features-list li {
    padding: 10px 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s;
}

.ck-features-list li:last-child {
    border-bottom: none;
}

.ck-features-list li:hover {
    padding-left: 10px;
    color: #FC791A;
    opacity: 1 !important;
}

.ck-features-list li i {
    color: #FC791A;
    font-size: 16px;
    flex-shrink: 0;
}

/* Rodapé do Card */
.ck-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 2px solid rgba(255, 255, 255, 0.1);
}

.ck-time {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: opacity 0.3s ease;
}

/* Mantém o tempo visível no hover */
.ck-card:hover .ck-time {
    opacity: 1;
}

.ck-time i {
    color: #FC791A;
}

.ck-btn-consult {
    background: linear-gradient(135deg, #FC791A, #ff9d4d);
    color: #fff;
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.ck-btn-consult::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.ck-btn-consult:hover::before {
    width: 300px;
    height: 300px;
}

.ck-btn-consult:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(252, 121, 26, 0.5);
}

.ck-btn-consult i {
    transition: transform 0.3s;
}

.ck-btn-consult:hover i {
    transform: translateX(5px);
}

/* ============================================ */
/* SEÇÃO DE PROCESSO */
/* ============================================ */
.ck-process-section {
    margin-top: 60px;
    position: relative;
    z-index: 2;
}

.ck-process-title {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 50px;
}

.ck-process-title span {
    color: #15B239;
}

.ck-process-card {
    text-align: center;
    padding: 30px 20px;
    background: rgba(1, 42, 85, 0.4);
    border: 2px solid rgba(21, 178, 57, 0.2);
    border-radius: 15px;
    position: relative;
    transition: all 0.4s;
    height: 100%;
    cursor: pointer;
}

.ck-process-card:hover {
    transform: translateY(-5px);
    border-color: #15B239;
    box-shadow: 0 15px 40px rgba(21, 178, 57, 0.3);
}

.ck-process-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #FC791A, #ff9d4d);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    box-shadow: 0 5px 20px rgba(252, 121, 26, 0.4);
}

.ck-process-icon {
    font-size: 50px;
    color: #15B239;
    margin: 30px 0 20px;
    transition: all 0.4s;
}

.ck-process-card:hover .ck-process-icon {
    transform: scale(1.2) rotateY(360deg);
}

.ck-process-card h4 {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.ck-process-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    margin: 0;
}

/* ============================================ */
/* BANNER DE EMERGÊNCIA */
/* ============================================ */
.ck-emergency-banner {
    margin: 60px 0;
    padding: 40px;
    background: linear-gradient(135deg, rgba(252, 121, 26, 0.1), rgba(21, 178, 57, 0.1));
    border: 3px solid rgba(252, 121, 26, 0.3);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.ck-emergency-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: ck-emergency-shine 3s infinite;
}

@keyframes ck-emergency-shine {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

.ck-emergency-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    position: relative;
    z-index: 1;
}

.ck-emergency-icon {
    font-size: 60px;
    color: #FC791A;
    animation: ck-emergency-pulse 2s ease-in-out infinite;
}

@keyframes ck-emergency-pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.ck-emergency-text h3 {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

.ck-emergency-text p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.ck-emergency-action {
    display: flex;
    gap: 15px;
}

.ck-emergency-btn {
    padding: 15px 30px;
    background: linear-gradient(135deg, #FC791A, #ff9d4d);
    color: #fff !important;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
    white-space: nowrap;
}

.ck-emergency-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(252, 121, 26, 0.5);
}

.ck-emergency-btn-whats {
    background: linear-gradient(135deg, #15B239, #12a032);
}

.ck-emergency-btn-whats:hover {
    box-shadow: 0 10px 30px rgba(21, 178, 57, 0.5);
}

/* ============================================ */
/* DIFERENCIAIS */
/* ============================================ */
.ck-features-section {
    margin-top: 60px;
    position: relative;
    z-index: 2;
}

.ck-feature-box {
    text-align: center;
    padding: 30px 15px;
    background: rgba(1, 42, 85, 0.3);
    border: 2px solid rgba(21, 178, 57, 0.2);
    border-radius: 15px;
    transition: all 0.4s;
    height: 100%;
}

.ck-feature-box:hover {
    transform: translateY(-5px);
    border-color: #15B239;
    background: rgba(1, 42, 85, 0.5);
    box-shadow: 0 10px 30px rgba(21, 178, 57, 0.2);
}

.ck-feature-box i {
    font-size: 45px;
    color: #15B239;
    margin-bottom: 15px;
    display: block;
    transition: all 0.4s;
}

.ck-feature-box:hover i {
    transform: scale(1.2) rotateZ(360deg);
}

.ck-feature-box h5 {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

.ck-feature-box p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

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

/* Tablets */
@media (max-width: 991px) {
    .ck-section {
        padding: 30px 0;
    }

    .ck-title {
        font-size: 38px;
    }

    .ck-subtitle {
        font-size: 16px;
    }

    .ck-emergency-content {
        flex-direction: column;
        text-align: center;
    }

    .ck-emergency-text h3 {
        font-size: 24px;
    }

    .ck-emergency-action {
        justify-content: center;
    }

    .ck-process-title {
        font-size: 30px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .ck-section {
        padding: 30px 0;
    }

    .ck-header {
        margin-bottom: 40px;
    }

    .ck-title {
        font-size: 32px;
    }

    .ck-subtitle {
        font-size: 15px;
    }

    .ck-badge {
        font-size: 12px;
        padding: 8px 20px;
    }

    .ck-card {
        padding: 25px;
    }

    .ck-icon-wrapper {
        width: 70px;
        height: 70px;
        font-size: 30px;
    }

    .ck-card-title {
        font-size: 20px;
    }

    .ck-features-list li {
        font-size: 14px;
        padding: 8px 0;
    }

    .ck-card-footer {
        flex-direction: column;
        gap: 15px;
        align-items: stretch;
    }

    .ck-btn-consult {
        width: 100%;
        justify-content: center;
    }

    .ck-process-title {
        font-size: 26px;
    }

    .ck-process-card {
        margin-bottom: 15px;
    }

    .ck-emergency-banner {
        padding: 25px;
    }

    .ck-emergency-icon {
        font-size: 40px;
    }

    .ck-emergency-text h3 {
        font-size: 20px;
    }

    .ck-emergency-text p {
        font-size: 14px;
    }

    .ck-emergency-action {
        flex-direction: column;
        width: 100%;
    }

    .ck-emergency-btn {
        width: 100%;
        justify-content: center;
        padding: 12px 20px;
    }

    .ck-feature-box {
        padding: 20px 10px;
        margin-bottom: 15px;
    }

    .ck-feature-box i {
        font-size: 35px;
    }

    .ck-feature-box h5 {
        font-size: 16px;
    }

    .ck-feature-box p {
        font-size: 13px;
    }
}

@media (max-width: 575px) {
    .ck-title {
        font-size: 28px;
    }

    .ck-process-number {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .ck-process-icon {
        font-size: 40px;
    }

    .ck-process-card h4 {
        font-size: 18px;
    }

    .ck-process-card p {
        font-size: 14px;
    }
}

/* ============================================ */
/* ANIMAÇÕES EXTRAS */
/* ============================================ */

/* Animação de entrada suave */
@keyframes ck-fade-in-up {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Loading para botões */
@keyframes ck-btn-loading {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Efeito de fundo suave - REMOVIDO PARA LIMPEZA VISUAL */