/* ===== SEÇÃO CTA ===== */
.cta {
    background: #0e131f;
    position: relative;
    overflow: hidden;
    padding: 40px 0;
    width: 100%;
}

.cta-box {
    position: relative;
    z-index: 1;
    border: 1px solid #2a3655;
    border-radius: 12px;
    padding: 25px 30px;
    background: #0e131f;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    text-align: center;
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
}

/* EFEITOS NOS CANTOS */
.cta-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: #00e5ff;
}

.cta-box::after {
    content: '';
    position: absolute;
    top: -10px;
    right: -10px;
    width: 120px;
    height: 120px;
    background: rgba(0, 229, 255, 0.15);
    border-radius: 50%;
    z-index: -1;
    opacity: 0.6;
}

.cta-box h3 {
    margin: 0;
    font-size: 20px;
    color: #ffffff;
    line-height: 1.2;
    flex: 1;
    min-width: 200px;
    font-weight: 600;
}

.btn-cta {
    height: 44px;
    padding: 0 22px;
    font-size: 14px;
    font-weight: 700;
    border-radius: 10px;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    background: #00e5ff;
    color: #00141c;
    border: 0;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 229, 255, 0.2);
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 229, 255, 0.3);
}

.btn-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: left 0.5s;
}

.btn-cta:hover::before {
    left: 100%;
}

/* EFEITOS NO FUNDO DO CTA */
.cta::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: rgba(0, 229, 255, 0.08);
    border-radius: 50%;
    z-index: 0;
    opacity: 0.7;
}

.cta::after {
    content: '';
    position: absolute;
    bottom: -30px;
    left: -30px;
    width: 150px;
    height: 150px;
    background: rgba(124, 255, 196, 0.06);
    border-radius: 50%;
    z-index: 0;
    opacity: 0.7;
}

/* RESPONSIVE - DESKTOP GRANDE */
@media (min-width: 1200px) {
    .cta-box {
        padding: 28px 35px;
    }
    
    .cta-box h3 {
        font-size: 22px;
    }
}

/* RESPONSIVE - TABLET */
@media (min-width: 768px) and (max-width: 1199px) {
    .cta {
        padding: 30px 0;
    }
    
    .cta-box {
        padding: 22px 25px;
        max-width: 90%;
    }
    
    .cta-box h3 {
        font-size: 18px;
    }
}

/* RESPONSIVE - MOBILE */
@media (max-width: 767px) {
    .cta {
        padding: 30px 0 20px;
    }
    
    .cta-box {
        padding: 18px 20px;
        border-radius: 10px;
        gap: 15px;
        flex-direction: column;
        text-align: center;
        max-width: 95%;
    }
    
    .cta-box h3 {
        font-size: 16px;
        min-width: auto;
    }
    
    .btn-cta {
        height: 40px;
        padding: 0 18px;
        font-size: 13px;
        width: 100%;
    }
    
    /* Ajuste dos efeitos no mobile */
    .cta::before {
        width: 120px;
        height: 120px;
        top: -20px;
        right: -20px;
    }
    
    .cta::after {
        width: 100px;
        height: 100px;
        bottom: -15px;
        left: -15px;
    }
    
    .cta-box::after {
        width: 80px;
        height: 80px;
        top: -5px;
        right: -5px;
    }
}

@media (max-width: 480px) {
    .cta {
        padding: 25px 0 15px;
    }
    
    .cta-box {
        padding: 15px 16px;
        border-radius: 8px;
    }
    
    .cta-box h3 {
        font-size: 15px;
    }
    
    .btn-cta {
        height: 38px;
        padding: 0 16px;
    }
}

/* ACESSIBILIDADE - REDUÇÃO DE MOVIMENTO */
@media (prefers-reduced-motion: reduce) {
    .cta-box,
    .btn-cta {
        transition: none;
    }
    
    .btn-cta:hover {
        transform: none;
    }
    
    .btn-cta::before {
        display: none;
    }
}