:root {
    --primary: #9787f4;
    --surface: rgba(255,255,255,0.02);
    --border: rgba(255,255,255,0.05);
    --text: #ffffff;
    --text-secondary: #a0a0a0;
}

/* Hero */
.hero {
    padding: 100px 0 60px;
}

.hero-inner {
    max-width: 700px;
}

.hero-title {
    margin-top: 22px;
    font-size: 38px;
    font-weight: 700;
    color: var(--text);
}

.hero-lead {
    margin-top: 8px;
    font-size: 16px;
    color: var(--text-secondary);
}

/* About Section */
/* GRID PRINCIPAL */
.about-pro {
    padding: 70px 0;
}

.about-pro-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
}

/* LEFT SIDE */
.about-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 18px;
    border-radius: 40px;
    background: rgba(151,135,244,0.18);
    border: 1px solid rgba(151,135,244,0.30);
    color: var(--primary);
    font-weight: 500;
}

.about-title {
    margin-top: 18px;
    font-size: 34px;
    font-weight: 700;
    color: #fff;
}

.about-text {
    margin-top: 12px;
    color: #bfbfbf;
    line-height: 1.6;
    font-size: 16px;
}

.about-list {
    margin-top: 20px;
    color: #dcdcdc;
    list-style: none;
    padding: 0;
}

.about-list li {
    margin-bottom: 10px;
    font-size: 15px;
}

/* RIGHT SIDE CARDS */
.about-pro-right {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
}

.about-pro-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.05);
    padding: 26px;
    border-radius: 18px;
    backdrop-filter: blur(10px);
    transition: .3s ease;
}

.about-pro-card i {
    font-size: 32px;
    color: var(--primary);
}

.about-pro-card h4 {
    margin-top: 12px;
    font-size: 18px;
    color: #fff;
}

.about-pro-card p {
    margin-top: 6px;
    color: #bfbfbf;
    font-size: 14px;
}

.card-link {
    display: inline-block;
    margin-top: 12px;
    font-size: 14px;
    color: var(--primary);
    font-weight: 600;
}

/* EFEITO NO HOVER */
.about-pro-card:hover {
    transform: translateY(-6px);
    border-color: rgba(151,135,244,0.35);
    box-shadow: 0 12px 26px rgba(0,0,0,0.55),
                0 0 18px rgba(151,135,244,0.25);
}

.about-pro-card:hover i {
    text-shadow: 0 0 12px rgba(151,135,244,0.55);
}


/* Cards da seção "Sobre" */
.about-item {
    background: var(--surface);
    padding: 28px;
    border-radius: 18px;
    border: 1px solid var(--border);
    text-align: center;
    backdrop-filter: blur(10px);
    transition: .3s ease;
    position: relative;
}

/* Ícone */
.about-item i {
    font-size: 32px;
    color: var(--primary);
    transition: .3s ease;
}

/* HOVER — animação premium */
.about-item:hover {
    transform: translateY(-8px);
    border-color: rgba(151, 135, 244, 0.35);
    box-shadow:
        0 12px 30px rgba(0, 0, 0, 0.6),
        0 0 18px rgba(151, 135, 244, 0.25);
}

/* Glow no ícone */
.about-item:hover i {
    color: #b6a4ff;
    text-shadow: 0 0 12px rgba(151,135,244,0.55);
}

/* Borda brilhante suave ao redor */
.about-item::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 18px;
    background: linear-gradient(140deg,
        rgba(151,135,244,0.22),
        rgba(151,135,244,0.02)
    );
    opacity: 0;
    transition: .35s ease;
}

.about-item:hover::after {
    opacity: 1;
}


/* Team */
.team-section {
    padding: 40px 0 80px;
}

.team-header {
    text-align: center;
    margin-bottom: 30px;
}

.team-badge {
    background: rgba(151,135,244,0.2);
    padding: 8px 18px;
    border-radius: 40px;
    color: var(--primary);
    border: 1px solid rgba(151,135,244,0.3);
    display: inline-block;
}

.team-header h3 {
    margin-top: 14px;
    font-size: 32px;
    color: var(--text);
}

.team-header p {
    color: var(--text-secondary);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 25px;
}

/* === TEAM CARDS (EFEITOS PREMIUM) === */

.team-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    padding: 26px;
    border-radius: 18px;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: .28s ease;
    position: relative;
}

/* Nome */
.team-card h4 {
    font-size: 18px;
    color: #fff;
    transition: .28s ease;
}

/* Cargo */
.team-card p {
    margin-top: 6px;
    color: #bdbdbd;
}

/* Glow suave ao redor */
.team-card::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 18px;
    background: linear-gradient(
        140deg,
        rgba(151,135,244,0.22),
        rgba(151,135,244,0.04)
    );
    opacity: 0;
    transition: .28s ease;
    pointer-events: none;
}

/* === HOVER EFFECT === */
.team-card:hover {
    transform: translateY(-8px);
    border-color: rgba(151,135,244,0.30);
    box-shadow:
        0 12px 32px rgba(0,0,0,0.55),
        0 0 22px rgba(151,135,244,0.28);
}

/* Glow fica visível no hover */
.team-card:hover::after {
    opacity: 1;
}

/* Nome ganha brilho suave */
.team-card:hover h4 {
    color: #c8baff;
    text-shadow: 0 0 12px rgba(151,135,244,0.55);
}