#about-section {
    z-index: 2;
}

/* Logo central otimizado */
.logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    margin-bottom: 1.5rem !important; /* Espaçamento reduzido */
}

.logo-central {
    max-width: 400px;
    max-height: 200px;
    width: auto;
    height: auto;
    object-fit: cover;
    object-position: center;
    filter: drop-shadow(0 0 15px rgba(0, 255, 255, 0.4));
    transform: scale(1.8);
}

/* Responsividade para telas menores */
@media (max-width: 768px) {
    .logo-central {
        max-width: 280px;
        max-height: 150px;
        transform: scale(1.4);
        filter: drop-shadow(0 0 10px rgba(0, 255, 255, 0.3));
    }
}

/* Seção de CTA minimalista */
.about-cta-section {
    margin-top: 10px;
    padding-top: 20px;
}

.about-intro-text {
    font-size: 18px;
    line-height: 1.6;
}

.about-cta-text {
    font-size: 22px;
    color: #ffffff;
    margin: 0 0 15px 0;
    line-height: 1.6;
}

.about-cta-highlight {
    color: #ffffff;
    font-weight: bold;
}

/* Texto com gradiente */
.text-gradient-highlight {
    background: var(--gradient-text-highlight);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: bold;
}

/* Botão CTA Gradiente */
.btn-cta-gradient {
    display: inline-block;
    padding: 13px 40px;
    margin-top: 25px;
    background: var(--gradient-btn-cta);
    color: #020617;
    text-decoration: none;
    border: none;
    border-radius: 30px;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 0 20px rgba(6, 182, 212, 0.3);
    cursor: pointer;
}

.btn-cta-gradient:hover {
    background: var(--gradient-btn-cta-hover);
    box-shadow: 0 0 30px rgba(6, 182, 212, 0.5);
    transform: translateY(-3px);
    color: #020617;
}

.btn-cta-gradient:active {
    transform: translateY(-1px);
}

