/* ========================================
   CHAVES CODIFICADAS NACIONAIS - CSS ULTRA FUTURISTA
   Prefixo: .ccn- (Chaves Codificadas Nacionais)
   ======================================== */

/* ========== Importação AOS ========== */
@import url('https://unpkg.com/aos@2.3.4/dist/aos.css');

/* ========== PREVENIR OVERFLOW GLOBAL ========== */
html {
    overflow-x: hidden;
    max-width: 100%;
}

body {
    overflow-x: hidden;
    max-width: 100vw;
    position: relative;
}

/* Prevenir animações AOS causarem overflow */
[data-aos] {
    pointer-events: auto;
}

[data-aos].aos-animate {
    pointer-events: auto;
}

/* ========================================
   REGRA PRIORITÁRIA - OCULTA TECNOLOGIAS NO MOBILE
   ======================================== */
@media screen and (max-width: 768px) {
    .ccn-types-section,
    section.ccn-types-section,
    #ccn-tech-section,
    .ccn-divider-before-tech,
    div.ccn-divider-before-tech {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        height: 0px !important;
        min-height: 0px !important;
        max-height: 0px !important;
        padding: 0px !important;
        margin: 0px !important;
        overflow: hidden !important;
        position: absolute !important;
        left: -9999px !important;
    }
    
    .ccn-tech-card,
    .ccn-tech-icon,
    .ccn-tech-line {
        display: none !important;
    }
}

/* ========== VARIÁVEIS E RESET ========== */
:root {
    --ccn-primary: #012A55;
    --ccn-secondary: #FC791A;
    --ccn-accent: #15B239;
    --ccn-dark: #0a0e27;
    --ccn-light: #f8f9fa;
    --ccn-gradient-1: linear-gradient(135deg, #012A55 0%, #FC791A 100%);
    --ccn-gradient-2: linear-gradient(135deg, #15B239 0%, #012A55 100%);
    --ccn-gradient-3: linear-gradient(135deg, #FC791A 0%, #15B239 100%);
}

/* ========== HERO SECTION ========== */
.ccn-hero-section {
    position: relative;
    width: 100%;
    max-width: 100%;
    display: block;
    min-height: auto;
    background: #012A55;
    padding: 30px 0 80px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

/* Efeito de Scanner */
.ccn-scanner-effect {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, 
        transparent 0%, 
        rgba(21, 178, 57, 0.1) 50%, 
        transparent 100%
    );
    animation: ccn-scanner 4s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
}

@keyframes ccn-scanner {
    0%, 100% {
        transform: translateY(-100%);
    }
    50% {
        transform: translateY(100%);
    }
}

/* Efeito de Luz Passando */
.ccn-light-sweep {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(252, 121, 26, 0.1) 45%,
        rgba(252, 121, 26, 0.3) 50%,
        rgba(252, 121, 26, 0.1) 55%,
        transparent 100%
    );
    animation: ccn-light-sweep 8s linear infinite;
    pointer-events: none;
    z-index: 2;
    transform: rotate(45deg);
}

@keyframes ccn-light-sweep {
    0% {
        transform: translateX(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) rotate(45deg);
    }
}

/* Grid Background */
.ccn-grid-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(21, 178, 57, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(21, 178, 57, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.3;
    z-index: 1;
}

.ccn-hero-content {
    position: relative;
    z-index: 3;
}

.ccn-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(21, 178, 57, 0.1);
    border: 1px solid rgba(21, 178, 57, 0.3);
    padding: 12px 24px;
    border-radius: 50px;
    color: #15B239;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
    animation: ccn-pulse-glow 3s ease-in-out infinite;
}

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

.ccn-hero-title {
    font-size: 56px;
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 24px;
    text-shadow: 0 0 30px rgba(21, 178, 57, 0.3);
}

.ccn-gradient-text {
    background: linear-gradient(135deg, #15B239 0%, #FC791A 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: ccn-gradient-shift 3s ease infinite;
}

@keyframes ccn-gradient-shift {
    0%, 100% {
        filter: hue-rotate(0deg);
    }
    50% {
        filter: hue-rotate(20deg);
    }
}

.ccn-hero-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 32px;
    max-width: 600px;
}

.ccn-hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.ccn-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #15B239 0%, #0ea030 100%);
    color: #fff;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(21, 178, 57, 0.4);
    position: relative;
    overflow: hidden;
}

.ccn-btn-primary::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.5s ease;
}

.ccn-btn-primary:hover::before {
    left: 100%;
}

.ccn-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(21, 178, 57, 0.6);
    color: #fff;
}

.ccn-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(252, 121, 26, 0.1);
    color: #FC791A;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    border: 2px solid rgba(252, 121, 26, 0.3);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.ccn-btn-secondary:hover {
    background: rgba(252, 121, 26, 0.2);
    border-color: #FC791A;
    transform: translateY(-3px);
    color: #FC791A;
}

/* Floating Cards */
.ccn-hero-visual {
    position: relative;
    min-height: 500px;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.ccn-floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 32px;
    text-align: center;
    transition: all 0.3s ease;
    animation: ccn-float 6s ease-in-out infinite;
}

.ccn-floating-card:nth-child(1) {
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.ccn-floating-card:nth-child(2) {
    top: 50%;
    right: 5%;
    animation-delay: 2s;
}

.ccn-floating-card:nth-child(3) {
    bottom: 10%;
    left: 15%;
    animation-delay: 4s;
}

@keyframes ccn-float {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-20px) scale(1.05);
    }
}

.ccn-floating-card:hover {
    transform: translateY(-10px) scale(1.1);
    border-color: rgba(21, 178, 57, 0.5);
}

.ccn-card-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(21, 178, 57, 0.3) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    animation: ccn-glow-pulse 3s ease-in-out infinite;
}

@keyframes ccn-glow-pulse {
    0%, 100% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.5);
    }
}

.ccn-floating-card i {
    font-size: 48px;
    color: #15B239;
    margin-bottom: 16px;
    display: block;
}

.ccn-floating-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

.ccn-floating-card p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

/* Partículas */
.ccn-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
    z-index: 1;
}

.ccn-particles span {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(21, 178, 57, 0.6);
    border-radius: 50%;
    animation: ccn-particle-float 15s linear infinite;
    box-shadow: 0 0 10px rgba(21, 178, 57, 0.8);
}

.ccn-particles span:nth-child(1) {
    left: 10%;
    animation-duration: 20s;
    animation-delay: 0s;
}

.ccn-particles span:nth-child(2) {
    left: 30%;
    animation-duration: 25s;
    animation-delay: 2s;
}

.ccn-particles span:nth-child(3) {
    left: 50%;
    animation-duration: 18s;
    animation-delay: 4s;
}

.ccn-particles span:nth-child(4) {
    left: 70%;
    animation-duration: 22s;
    animation-delay: 1s;
}

.ccn-particles span:nth-child(5) {
    left: 90%;
    animation-duration: 19s;
    animation-delay: 3s;
}

@keyframes ccn-particle-float {
    0% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100vh) scale(1);
        opacity: 0;
    }
}

/* ========== BRANDS SECTION ========== */
.ccn-brands-section {
    padding: 40px 0;
    background: linear-gradient(180deg, #0a0e27 0%, #012A55 100%);
    position: relative;
}

.ccn-section-header {
    margin-bottom: 60px;
}

.ccn-subtitle {
    display: inline-block;
    color: #15B239;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
    position: relative;
    padding-left: 40px;
    padding-right: 40px;
}

.ccn-subtitle::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, #15B239, transparent);
    transform: translateY(-50%);
}

.ccn-subtitle::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #15B239);
    transform: translateY(-50%);
}

.ccn-section-title {
    font-size: 48px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 16px;
}

.ccn-section-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    max-width: 700px;
    margin: 0 auto;
}

.ccn-brand-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px 30px;
    height: 100%;
    min-height: 550px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.ccn-brand-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(21, 178, 57, 0.1), transparent);
    transition: left 0.6s ease;
}

.ccn-brand-card:hover::before {
    left: 100%;
}

.ccn-brand-card:hover {
    transform: translateY(-10px);
    border-color: rgba(21, 178, 57, 0.3);
    box-shadow: 0 20px 60px rgba(21, 178, 57, 0.2);
}

.ccn-brand-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(21, 178, 57, 0.2), rgba(252, 121, 26, 0.2));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    position: relative;
}

.ccn-brand-icon i {
    font-size: 36px;
    color: #15B239;
    z-index: 2;
}

.ccn-icon-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(21, 178, 57, 0.3);
    border-radius: 20px;
    animation: ccn-pulse 2s ease-in-out infinite;
}

@keyframes ccn-pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.1);
        opacity: 0;
    }
}

.ccn-brand-card h3 {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}

.ccn-brand-card > p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 24px;
    line-height: 1.6;
}

.ccn-models-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ccn-models-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.ccn-models-list li:last-child {
    border-bottom: none;
}

.ccn-models-list i {
    color: #15B239;
    font-size: 16px;
}

.ccn-card-hover-effect {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #15B239, #FC791A);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.ccn-brand-card:hover .ccn-card-hover-effect {
    transform: scaleX(1);
}

/* ========== TYPES SECTION ========== */
.ccn-types-section {
    padding: 40px 0;
    background: linear-gradient(180deg, #012A55 0%, #0a0e27 100%);
    position: relative;
}

.ccn-tech-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    height: 100%;
    min-height: 300px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.ccn-tech-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(21, 178, 57, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.ccn-tech-card:hover::after {
    opacity: 1;
}

.ccn-tech-card:hover {
    transform: translateY(-10px) rotateY(5deg);
    border-color: rgba(252, 121, 26, 0.3);
    box-shadow: 0 20px 60px rgba(252, 121, 26, 0.2);
}

.ccn-tech-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgba(252, 121, 26, 0.2), rgba(21, 178, 57, 0.2));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    position: relative;
    z-index: 2;
}

.ccn-tech-icon i {
    font-size: 48px;
    color: #FC791A;
}

.ccn-tech-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
    position: relative;
    z-index: 2;
}

.ccn-tech-card p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin: 0;
    position: relative;
    z-index: 2;
}

.ccn-tech-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #FC791A, #15B239);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.ccn-tech-card:hover .ccn-tech-line {
    transform: scaleX(1);
}

/* ========== PROCESS SECTION (Timeline) ========== */
.ccn-process-section {
    padding: 40px 0;
    background: linear-gradient(180deg, #0a0e27 0%, #012A55 100%);
    position: relative;
}

.ccn-timeline {
    position: relative;
    max-width: 1000px;
    margin: 60px auto 0;
}

.ccn-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, #15B239, #FC791A);
    transform: translateX(-50%);
}

.ccn-timeline-item {
    position: relative;
    margin-bottom: 80px;
    display: flex;
    align-items: center;
}

.ccn-timeline-item:nth-child(odd) {
    flex-direction: row;
}

.ccn-timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.ccn-timeline-number {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #15B239, #FC791A);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    box-shadow: 0 0 30px rgba(21, 178, 57, 0.5);
    z-index: 3;
}

.ccn-timeline-content {
    width: 45%;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 32px;
    transition: all 0.4s ease;
}

.ccn-timeline-content:hover {
    transform: scale(1.05);
    border-color: rgba(21, 178, 57, 0.3);
    box-shadow: 0 20px 60px rgba(21, 178, 57, 0.2);
}

.ccn-timeline-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(21, 178, 57, 0.2), rgba(252, 121, 26, 0.2));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.ccn-timeline-icon i {
    font-size: 28px;
    color: #15B239;
}

.ccn-timeline-content h3 {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}

.ccn-timeline-content p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin: 0;
}

.ccn-timeline-line {
    position: absolute;
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, #15B239, #FC791A);
    top: 50%;
    transform: translateY(-50%);
}

.ccn-timeline-item:nth-child(odd) .ccn-timeline-line {
    right: 50%;
    margin-right: 30px;
}

.ccn-timeline-item:nth-child(even) .ccn-timeline-line {
    left: 50%;
    margin-left: 30px;
}

/* ========== ADVANTAGES SECTION ========== */
.ccn-advantages-section {
    padding: 40px 0;
    background: linear-gradient(180deg, #012A55 0%, #0a0e27 100%);
    position: relative;
    overflow: hidden;
}

.ccn-advantages-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(21, 178, 57, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.ccn-advantages-content {
    margin-bottom: 40px;
}

.ccn-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.ccn-stat-item {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.ccn-stat-item:hover {
    transform: translateY(-5px);
    border-color: rgba(21, 178, 57, 0.3);
}

.ccn-stat-item h3 {
    font-size: 48px;
    font-weight: 800;
    background: linear-gradient(135deg, #15B239, #FC791A);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.ccn-stat-item span {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.ccn-advantages-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.ccn-advantage-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 32px;
    transition: all 0.4s ease;
    cursor: default;
}

.ccn-advantage-card:hover {
    transform: translateY(-5px);
    border-color: rgba(252, 121, 26, 0.3);
    box-shadow: 0 15px 50px rgba(252, 121, 26, 0.2);
}

.ccn-advantage-card i {
    font-size: 40px;
    color: #FC791A;
    margin-bottom: 16px;
    display: block;
}

.ccn-advantage-card h4 {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}

.ccn-advantage-card p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin: 0;
}

/* ========== FAQ SECTION ========== */
.ccn-faq-section {
    padding: 40px 0;
    background: linear-gradient(180deg, #0a0e27 0%, #012A55 100%);
}

.ccn-faq-container {
    margin-top: 40px;
}

.ccn-faq-item {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    margin-bottom: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.ccn-faq-item.active {
    border-color: rgba(21, 178, 57, 0.3);
    box-shadow: 0 10px 40px rgba(21, 178, 57, 0.2);
}

.ccn-faq-question {
    width: 100%;
    background: transparent;
    border: none;
    padding: 24px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    text-align: left;
    transition: all 0.3s ease;
}

.ccn-faq-question:hover {
    color: #15B239;
}

.ccn-faq-question i {
    font-size: 20px;
    color: #15B239;
    transition: transform 0.3s ease;
}

.ccn-faq-item.active .ccn-faq-question i {
    transform: rotate(180deg);
}

.ccn-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.ccn-faq-item.active .ccn-faq-answer {
    max-height: 500px;
    padding: 0 32px 24px;
}

.ccn-faq-answer p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    line-height: 1.8;
    margin: 0;
}

/* ========== CTA SECTION ========== */
.ccn-cta-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #012A55 0%, #0a0e27 50%, #012A55 100%);
    position: relative;
    overflow: hidden;
}

.ccn-cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(21, 178, 57, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.ccn-light-beam {
    position: absolute;
    top: -50%;
    left: -10%;
    width: 120%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 0%,
        rgba(252, 121, 26, 0.05) 48%,
        rgba(252, 121, 26, 0.2) 50%,
        rgba(252, 121, 26, 0.05) 52%,
        transparent 100%
    );
    animation: ccn-beam-sweep 10s linear infinite;
    pointer-events: none;
}

@keyframes ccn-beam-sweep {
    0% {
        transform: translateX(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) rotate(45deg);
    }
}

.ccn-cta-content {
    position: relative;
    z-index: 2;
}

.ccn-cta-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #15B239, #FC791A);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 32px;
    animation: ccn-cta-pulse 2s ease-in-out infinite;
}

@keyframes ccn-cta-pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 30px rgba(21, 178, 57, 0.5);
    }
    50% {
        transform: scale(1.1);
        box-shadow: 0 0 50px rgba(21, 178, 57, 0.8);
    }
}

.ccn-cta-icon i {
    font-size: 48px;
    color: #fff;
}

.ccn-cta-content h2 {
    font-size: 48px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 20px;
}

.ccn-cta-content > p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.ccn-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.ccn-btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #15B239 0%, #0ea030 100%);
    color: #fff;
    padding: 20px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 18px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 15px 50px rgba(21, 178, 57, 0.4);
}

.ccn-btn-cta:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(21, 178, 57, 0.6);
    color: #fff;
}

.ccn-btn-cta i {
    font-size: 24px;
}

.ccn-btn-cta-outline {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: transparent;
    color: #FC791A;
    padding: 20px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 18px;
    text-decoration: none;
    border: 2px solid #FC791A;
    transition: all 0.3s ease;
}

.ccn-btn-cta-outline:hover {
    background: rgba(252, 121, 26, 0.1);
    transform: translateY(-5px);
    color: #FC791A;
}

.ccn-cta-features {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
}

.ccn-cta-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
}

.ccn-cta-feature i {
    color: #15B239;
    font-size: 20px;
}

/* ========== RESPONSIVIDADE MOBILE ========== */
@media (max-width: 992px) {
    .ccn-hero-section {
        min-height: auto;
        padding: 30px 0 60px;
    }

    .ccn-hero-title {
        font-size: 40px;
    }

    .ccn-hero-visual {
        min-height: 300px;
        margin-top: 60px;
    }

    .ccn-floating-card {
        position: relative !important;
        margin: 20px auto;
        animation: none !important;
        max-width: 300px;
    }

    .ccn-floating-card:nth-child(1),
    .ccn-floating-card:nth-child(2),
    .ccn-floating-card:nth-child(3) {
        top: auto;
        left: auto;
        right: auto;
        bottom: auto;
    }

    .ccn-section-title {
        font-size: 36px;
    }

    .ccn-brand-card {
        min-height: auto;
    }

    .ccn-timeline::before {
        left: 30px;
    }

    .ccn-timeline-item {
        flex-direction: row !important;
        padding-left: 80px;
    }

    .ccn-timeline-number {
        left: 30px;
        transform: translate(-50%, 0);
        top: 0;
    }

    .ccn-timeline-content {
        width: 100%;
    }

    .ccn-timeline-line {
        display: none;
    }

    .ccn-stats-grid,
    .ccn-advantages-grid {
        grid-template-columns: 1fr;
    }
.ccn-stats-grid,
.ccn-advantages-grid {
    grid-template-columns: 1fr;
}

/* ADICIONE AQUI: */
.ccn-advantages-content {
    text-align: center;
}

.ccn-cta-content h2 {
    font-size: 36px;
}
    .ccn-cta-content h2 {
        font-size: 36px;
    }

    .ccn-cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .ccn-btn-cta,
    .ccn-btn-cta-outline {
        justify-content: center;
    }
}



@media (max-width: 768px) {
    /* DESABILITAR ANIMAÇÕES AOS NO MOBILE */
    .ccn-advantages-section [data-aos],
    .ccn-brands-section [data-aos],
    .ccn-process-section [data-aos],
    .ccn-faq-section [data-aos] {
        transform: none !important;
        opacity: 1 !important;
        transition: none !important;
    }
    
    /* PRIMEIRA REGRA: Oculta completamente a seção de tecnologias */
    .ccn-types-section,
    .ccn-divider-before-tech {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        height: 0 !important;
        padding: 0 !important;
        margin: 0 !important;
        overflow: hidden !important;
    }
    
    /* Oculta os cards flutuantes no mobile */
    .ccn-hero-visual {
        display: none;
    }

    .ccn-hero-title {
        font-size: 32px;
    }

    .ccn-hero-description {
        font-size: 16px;
    }

    .ccn-hero-buttons {
        flex-direction: column;
    }

    .ccn-btn-primary,
    .ccn-btn-secondary {
        width: 100%;
        justify-content: center;
    }

    .ccn-section-title {
        font-size: 28px;
    }

    .ccn-section-description {
        font-size: 16px;
    }

    .ccn-brand-card {
        margin-bottom: 20px;
    }

    .ccn-timeline-item {
        padding-left: 60px;
        margin-bottom: 40px;
    }

    .ccn-cta-content h2 {
        font-size: 28px;
    }

    .ccn-cta-content > p {
        font-size: 16px;
    }

    .ccn-cta-features {
        flex-direction: column;
        gap: 16px;
    }
}

@media (max-width: 576px) {
    .ccn-hero-section {
        padding: 30px 0 40px;
    }

    .ccn-hero-title {
        font-size: 28px;
    }

    .ccn-badge {
        font-size: 12px;
        padding: 10px 20px;
    }

    .ccn-section-title {
        font-size: 24px;
    }

    .ccn-brand-card,
    .ccn-tech-card {
        padding: 30px 20px;
    }

    .ccn-timeline-content {
        padding: 24px;
    }

    .ccn-faq-question {
        padding: 20px;
        font-size: 16px;
    }

    .ccn-faq-item.active .ccn-faq-answer {
        padding: 0 20px 20px;
    }

    .ccn-btn-cta,
    .ccn-btn-cta-outline {
        padding: 16px 32px;
        font-size: 16px;
    }
    
    /* Oculta seção de tecnologias no mobile */
    .ccn-types-section,
    .ccn-divider-before-tech {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        height: 0 !important;
        padding: 0 !important;
        margin: 0 !important;
        overflow: hidden !important;
    }
}

/* ========================================
   REGRA FINAL - FORÇA OCULTAÇÃO NO MOBILE
   ======================================== */
@media only screen and (max-width: 768px) {
    section.ccn-types-section {
        display: none !important;
    }
    
    div.ccn-divider-before-tech {
        display: none !important;
    }
    
    .ccn-tech-card,
    .ccn-tech-icon,
    .ccn-tech-line {
        display: none !important;
    }
}

@media only screen and (max-width: 480px) {
    section.ccn-types-section {
        display: none !important;
    }
    
    div.ccn-divider-before-tech {
        display: none !important;
    }
}