/* Correções para ícones e efeitos de hover */

/* Corrigir proporções dos ícones */
.fas, .far, .fab, .fa {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1em;
    height: 1em;
    vertical-align: middle;
}

/* Melhorar efeitos de hover nos cards */
.card-custom {
    z-index: 1;
}

.card-custom:hover .gradient-text {
    background-size: 200% 200%;
    animation: gradient-shift 2s ease infinite;
}

@keyframes gradient-shift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Efeito de brilho nos badges ao passar o mouse */
.badge {
    transition: all 0.3s ease;
}

.badge:hover {
    transform: scale(1.1);
    box-shadow: 0 0 10px var(--ainexaCyan);
}

/* Efeito de brilho nos botões */
.btn-cyan:hover, .btn-outline-purple:hover {
    box-shadow: 0 0 15px var(--ainexaCyan);
}

/* Efeito nos ícones circulares */
.rounded-circle {
    transition: all 0.3s ease;
}

.card-custom:hover .rounded-circle {
    transform: scale(1.1);
    box-shadow: 0 0 10px var(--ainexaCyan);
}

/* Efeito nas imagens */
.card-custom img {
    transition: all 0.5s ease;
}

.card-custom:hover img {
    transform: scale(1.03);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
}

/* Efeito nos links "Ler mais" */
.card-custom a.text-cyan {
    position: relative;
    transition: all 0.3s ease;
}

.card-custom a.text-cyan:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 0;
    background: linear-gradient(to right, var(--ainexaCyan), var(--ainexaPurple));
    transition: width 0.3s ease;
}

.card-custom:hover a.text-cyan:after {
    width: 100%;
}

/* Melhorar efeito de hover nos ícones sociais */
.social-icon {
    overflow: hidden;
    position: relative;
}

.social-icon:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, var(--ainexaCyan), var(--ainexaPurple));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
    border-radius: 50%;
}

.social-icon:hover:before {
    opacity: 0.8;
}

/* Efeito de hover nos campos de formulário */
.form-control {
    transition: all 0.3s ease;
}

.form-control:focus {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 255, 255, 0.2);
}

/* Efeito de hover nos itens do FAQ */
.faq-header {
    transition: all 0.3s ease;
}

.faq-header:hover {
    background-color: rgba(255, 255, 255, 0.08);
}

.faq-header i {
    transition: transform 0.3s ease;
}

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

/* Efeito de hover nos itens do menu */
.nav-link {
    position: relative;
}

.nav-link:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background: var(--ainexaCyan);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover:after {
    width: 70%;
}
