.lgnx-wrapper {
    padding: 60px 20px;
    max-width: 1100px;
    margin: 0 auto;
    color: #fff;
    font-family: 'Segoe UI', sans-serif;
}

/* =========================
   HEADER (VISUAL LEGION)
========================= */

.lgnx-card h3 {
    font-size: 20px; /* ajuste aqui */
    margin: 10px 0 5px;
}

.lgnx-header {
    text-align: center;
    position: relative;
    max-width: 100%;
    margin-bottom: 50px;
}

/* BANNER IMAGE */
.lgnx-banner {
    display: flex;
    justify-content: center;
    align-items: center;
}

.lgnx-banner img {
    max-width: 360px;
    width: 100%;
    filter: drop-shadow(0 0 25px rgba(0,200,255,0.6));
    transition: 0.3s;
}

/* leve animação igual UI moderna */
.lgnx-banner img:hover {
    transform: scale(1.03);
    filter: drop-shadow(0 0 35px rgba(0,200,255,0.9));
}

/* SUBTITLE */
.lgnx-sub {
    font-size: 15px;
    opacity: 0.85;
    color: #cfe6ff;
}

/* destaque no LegionBR */
.lgnx-sub b {
    color: #5fbfff;
    text-shadow: 0 0 10px rgba(0,200,255,0.6);
}

/* GRID */
.lgnx-grid {
    display: flex;
    gap: 20px;
    justify-content: space-between; /* ← ao invés de center */
    flex-wrap: wrap;
}

/* CARD */
.lgnx-card {
    width: calc(33.333% - 17px); /* alinhamento matemático perfeito */
    min-width: 280px;
    height: 420px;
    padding: 25px;
    border-radius: 20px;
    background: rgba(20, 30, 60, 0.55);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(120,170,255,0.15);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center; /* alinhamento perfeito */
    align-items: center;
    min-height: 280px;
    position: relative;
}

/* POPULAR */
.lgnx-pop {
    border: 1px solid rgba(0,200,255,0.6);
    box-shadow: 0 0 25px rgba(0,200,255,0.25);
}

/* BADGE */
.lgnx-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: linear-gradient(135deg,#00c6ff,#0072ff);
    padding: 4px 10px;
    border-radius: 8px;
    font-size: 12px;
}

/* ICON */
.lgnx-icon {
    font-size: 40px;
    margin-bottom: 10px;
    height: auto;
    padding: 10px;
    width: 35%;
}

/* DIVIDER */
.lgnx-divider {
    width: 100%;
    height: 1px;
    margin: 15px 0;

    background: linear-gradient(
        to right,
        transparent 0%,
        rgba(120,170,255,0.4) 50%,
        transparent 100%
    );
}

/* META */
.lgnx-meta {
    display: flex;
    justify-content: space-between;
    margin: 15px 0;
    gap: 25px;
}

/* cada coluna */
.lgnx-meta-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

/* label (TAMANHO / ATUALIZADO) */
.lgnx-meta-label {
    font-size: 10px;
    opacity: 0.6;
    letter-spacing: 1px;
}

/* valor (6GB / data) */
.lgnx-meta-value {
    font-size: 14px;
    font-weight: 600;
}


/* BUTTON BASE */
.lgnx-btn {
    position: relative;
    overflow: hidden;

    margin-top: auto;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    padding: 12px 16px;
    border-radius: 10px;

    font-weight: 600;
    color: #fff;
    text-decoration: none;

    background: linear-gradient(135deg,#4f8cff,#3a6df0);

    transition: all 0.25s ease;
}

/* TEXTO */
.lgnx-btn-text {
    position: relative;
    z-index: 2;
}

/* ICON */
.lgnx-btn-icon {
    width: 18px;
    height: 18px;
    z-index: 2;
    transition: all 0.25s ease;
}

/* =========================
   💡 SHINE EFFECT
========================= */
.lgnx-btn-shine {
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;

    background: linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,0.6),
        transparent
    );

    transform: skewX(-25deg);
}

/* ativa no hover */
.lgnx-btn:hover .lgnx-btn-shine {
    animation: lgnx-shine 0.8s forwards;
}

@keyframes lgnx-shine {
    100% {
        left: 130%;
    }
}

/* =========================
   🎮 HOVER (GAME STYLE)
========================= */
.lgnx-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 30px rgba(79,140,255,0.5);
}

/* ícone mexendo */
.lgnx-btn:hover .lgnx-btn-icon {
    transform: translateY(3px) scale(1.1);
}

/* =========================
   ⚡ CLICK RIPPLE
========================= */
.lgnx-btn::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    transform: scale(0);
    background: rgba(255,255,255,0.4);
    pointer-events: none;
}

.lgnx-btn:active::after {
    animation: lgnx-ripple 0.5s linear;
}

@keyframes lgnx-ripple {
    from {
        transform: scale(0);
        opacity: 0.6;
    }
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* SUPPORT BOX */
.lgnx-support-box {
    margin-top: 40px;
    width: 100%;
    border-radius: 15px;
    background: rgba(30, 45, 80, 0.6);
    border: 1px solid rgba(255,255,255,0.08);
}

/* HEADER */
.lgnx-support-header {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
}

.lgnx-support-icon {
    font-size: 22px;
}

/* DIVIDER */
.lgnx-support-divider {
    height: 1px;
    background: rgba(255,255,255,0.08);
}

/* CONTENT */
.lgnx-support-content {
    display: flex;
    gap: 20px;
    padding: 20px;
    flex-wrap: wrap;
}

/* PROBLEMS */
.lgnx-problems h4 {
  color: rgb(114, 109, 62);

}
.lgnx-problems {
    flex: 1;
    padding: 15px;
    border-radius: 10px;
    border: 1px solid rgba(255,200,0,0.2);
    background-color: rgba(255, 200, 0, 0.062);
}

.lgnx-problems ul {
    color: rgb(121, 108, 65);
    margin-top: 10px;
    padding-left: 18px;
}

/* SIDE */
.lgnx-side {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* LINK CARD */
.lgnx-side-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    border-radius: 10px;
    text-decoration: none;
    color: #fff;
    background: rgba(20,30,60,0.6);
    border: 1px solid rgba(255,255,255,0.05);
    transition: 0.2s;
}

.lgnx-side-card:hover {
    background: rgba(40,60,120,0.6);
    transform: translateY(-3px);
}
/* estrutura esquerda (icone + texto) */
.lgnx-side-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* icone */
.lgnx-side-icon {
    width: 26px;
    height: 26px;
    flex-shrink: 0;

    color: #5fbfff;
    filter: drop-shadow(0 0 6px rgba(0,200,255,0.4));

    transition: 0.2s;
}

/* hover no card afeta o ícone */
.lgnx-side-card:hover .lgnx-side-icon {
    transform: scale(1.1);
    color: #8fd3ff;
}

.lgnx-wrapper {
    opacity: 0;
    transform: translateY(20px);
    animation: charFadeIn 0.9s ease forwards;
}

@keyframes charFadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}