/* ===== Variáveis - Paleta Velune (das imagens) ===== */
:root {
    --bg-dark: #0a0b10;
    --bg-mid: #10111b;
    --bg-card: #16182a;
    --blue-deep: #1e3066;
    --blue-rich: #364689;
    --blue-accent: #4a5ba8;
    --gradient-start: #ec0b96;
    --gradient-mid: #9900ff;
    --gradient-end: #5d00b8;
    --gradient: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-mid) 50%, var(--gradient-end) 100%);
    --neon-purple: #bf00ff;
    --neon-purple-rgb: 191, 0, 255;
    --bg-dark-trans: rgba(10, 11, 16, 0.88);
    --bg-mid-trans: rgba(16, 17, 27, 0.88);
    --text-primary: #e8eefd;
    --text-secondary: #a8b4d4;
    --text-muted: #6b7a9e;
}

/* ===== Reset & Base ===== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Dosis', -apple-system, BlinkMacSystemFont, sans-serif;
    background:
        radial-gradient(900px 900px at 10% 0%, rgba(236, 11, 150, 0.08) 0%, transparent 55%),
        radial-gradient(900px 900px at 90% 100%, rgba(var(--neon-purple-rgb), 0.14) 0%, transparent 55%),
        var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

#particles-bg{
    position: fixed;
    top:0;
    left:0;

    width:100vw;
    height:100vh;

    z-index:-1;
    pointer-events:none;
}

/* garante que o site fique acima */

header,
main,
section,
footer{
    position:relative;
    z-index:1;
}
body {
    position: relative;
    z-index: 1;
}

main,
section,
footer {
    position: relative;
    z-index: 1;
}

/* ===== Header ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 11, 16, 0.9);
    backdrop-filter: blur(3px);
    border-bottom: 1px solid rgba(54, 70, 137, 0.2);
}

.nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img {
    height: 48px;
    width: auto;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    text-decoration: none;
    margin-left: -6px;
}

.brand-name {
    font-family: 'Cinzel', 'DM Serif Display', Georgia, serif;
    font-weight: 600;
    letter-spacing: 0.22em;
    font-size: 1.15rem;
    line-height: 1;
    color: rgba(232, 238, 253, 0.92);
    text-shadow: 0 18px 50px rgba(var(--neon-purple-rgb), 0.25);
    display: inline-block;
}

.brand-name::after {
    content: "";
    display: block;
    height: 1px;
    margin-top: 6px;
    background: var(--gradient);
    opacity: 0.35;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--text-primary);
}

.btn-nav {
    background: var(--gradient) !important;
    color: white !important;
    padding: 0.5rem 1.25rem !important;
    border-radius: 8px;
    font-weight: 600;
}

.btn-nav:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
}

/* ===== Hero ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 8rem 2rem 4rem;
}

.hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    background:
    radial-gradient(circle at center, rgba(191,0,255,0.08), transparent 70%);
    z-index: 0;
}

.hero-logo {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    width: 45%;
    max-width: 500px;
    opacity: 0.4;
    pointer-events: none;
    z-index: 1;
}

.hero-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(
        ellipse at center,
        rgba(var(--neon-purple-rgb), 0.2) 0%,
        rgba(var(--neon-purple-rgb), 0.12) 40%,
        transparent 70%
    );
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 650px;
}

.hero h1 {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--text-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.btn-primary {
    display: inline-block;
    background: var(--gradient);
    color: white !important;
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 40px rgba(var(--neon-purple-rgb), 0.5);
}

.btn-large {
    padding: 1.25rem 2.5rem;
    font-size: 1.2rem;
}

/* ===== Sections ===== */
.section {
    padding: 5rem 2rem;
    position: relative;
    overflow: hidden;
}

.section > .container {
    position: relative;
    z-index: 1;
}

/* Partículas das seções removidas: só as fixas do body são usadas, para não acompanharem o scroll */
.section::before {
    content: none;
}

.reveal {
    opacity: 0;
    transform: translateY(14px);
    filter: blur(3px);
    transition: opacity 700ms ease, transform 700ms ease, filter 900ms ease;
    will-change: opacity, transform, filter;
}

.reveal.in-view {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
}

.container {
    max-width: 1100px;
    margin: 0 auto;
}

.section h2 {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 400;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.section-subtitle {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

/* ===== Velune (sobre) ===== */
.section-velune {
    background: rgba(16, 17, 27, 0.58);
    -webkit-backdrop-filter: blur(3px);
    backdrop-filter: blur(3px);
}

.velune-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(0, 1.1fr);
    gap: 2.5rem;
    align-items: center;
    margin-top: 1.5rem;
}

.velune-copy {
    max-width: 780px;
}

.velune-copy p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    margin-bottom: 1rem;
}

.velune-visual {
    position: relative;
    min-height: 260px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 1.5rem;
}

.velune-visual-banner {
    position: relative;
    width: min(420px, 100%);
}

.velune-banner-text {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0.25rem 0.75rem;
    text-align: center;
}

.velune-banner-tag {
    display: inline-block;
    font-family: 'Dosis', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 600;
    font-size: 1.2rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #f4e9ff;
    margin-bottom: 0.75rem;
    text-shadow:
        0 0 8px rgba(236, 11, 150, 0.9),
        0 0 18px rgba(var(--neon-purple-rgb), 0.95);
}

.velune-banner-line {
    display: block;
    font-family: 'Dosis', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 700;
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #f5ecff;
    text-shadow:
        0 0 8px rgba(236, 11, 150, 0.8),
        0 0 18px rgba(var(--neon-purple-rgb), 0.9),
        0 10px 26px rgba(0, 0, 0, 0.7);
}

.velune-visual-image {
    position: relative;
    width: min(420px, 100%);
}

.velune-visual-image-frame {
    position: relative;
    border-radius: 22px;
    overflow: hidden;
    background: radial-gradient(220px 220px at 30% 20%, rgba(236, 11, 150, 0.16) 0%, transparent 60%),
                radial-gradient(260px 260px at 75% 85%, rgba(var(--neon-purple-rgb), 0.22) 0%, transparent 65%),
                rgba(22, 24, 42, 0.85);
    border: 1px solid rgba(var(--neon-purple-rgb), 0.55);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.55);
}

.velune-visual-image-frame img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* ===== Benefícios ===== */
.section-velune-sync {
    background: rgba(16, 17, 27, 0.58);
    -webkit-backdrop-filter: blur(3px);
    backdrop-filter: blur(3px);
}

.section-sync-label {
    font-family: 'Cinzel', 'DM Serif Display', Georgia, serif;
    font-style: italic;
    font-weight: 600;
    font-size: 1.4rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(232, 238, 253, 0.9);
    margin-top: 0.25rem;
    margin-bottom: 0.25rem;
}

.beneficios-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 2rem;
}

.beneficio-text p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.beneficio-visual {
    min-height: 500px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    padding: 1.25rem 0.75rem 0;
}

.beneficio-visual::before {
    content: "";
    position: absolute;
    inset: 6% 10% 2% 10%;
    border-radius: 28px;
    background:
        radial-gradient(220px 220px at 35% 30%, rgba(236, 11, 150, 0.14) 0%, transparent 60%),
        radial-gradient(260px 260px at 70% 70%, rgba(var(--neon-purple-rgb), 0.16) 0%, transparent 62%),
        rgba(22, 24, 42, 0.2);
    border: 1px solid rgba(var(--neon-purple-rgb), 0.22);
    filter: blur(0px);
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.45);
    z-index: 0;
}

.beneficio-visual::after {
    content: "";
    position: absolute;
    inset: 10% 14% 6% 14%;
    border-radius: 24px;
    background:
        linear-gradient(135deg, rgba(236, 11, 150, 0.06) 0%, rgba(var(--neon-purple-rgb), 0.08) 50%, rgba(var(--neon-purple-rgb), 0.05) 100%);
    opacity: 0.35;
    z-index: 0;
}

.beneficio-visual img {
    position: relative;
    z-index: 1;

    width: 100%;
    max-width: 420px;
    height: auto;

    object-fit: contain;

    filter: drop-shadow(0 26px 55px rgba(0, 0, 0, 0.55))
            drop-shadow(0 20px 45px rgba(var(--neon-purple-rgb), 0.35));
}

.beneficio-frame{
    width: 100%;
    max-width: 420px;

    border-radius: 24px;
    overflow: hidden;

    background: rgba(22,24,42,0.85);

    border: 1px solid rgba(var(--neon-purple-rgb),0.45);

    box-shadow:
        0 25px 70px rgba(0,0,0,0.55),
        0 0 35px rgba(var(--neon-purple-rgb),0.25);

    display:flex;
    align-items:center;
    justify-content:center;
}

.beneficio-frame img{
    width:100%;
    height:auto;
    display:block;
}
/* ===== Nossa visão ===== */
.section-nossa-visao {
    position: relative;
    overflow: hidden;
    background: radial-gradient(800px 400px at 15% 20%, rgba(236, 11, 150, 0.10) 0%, transparent 55%),
                radial-gradient(700px 380px at 85% 75%, rgba(var(--neon-purple-rgb), 0.14) 0%, transparent 55%),
                var(--bg-dark-trans);
}

.visao-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 2.5rem;
    align-items: center;
}

.visao-copy h2 {
    margin-bottom: 0.75rem;
}

.visao-copy .section-subtitle {
    margin-bottom: 1.75rem;
    max-width: 48ch;
}

.visao-copy p {
    color: var(--text-secondary);
    font-size: 1.08rem;
    margin-bottom: 1rem;
    max-width: 62ch;
}

.visao-panel {
    position: relative;
    border-radius: 20px;
    padding: 1.75rem;
    background: rgba(22, 24, 42, 0.70);
    border: 1px solid rgba(54, 70, 137, 0.35);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(12px);
    overflow: hidden;
}

.visao-panel::before {
    content: "";
    position: absolute;
    inset: -2px;
    background: var(--gradient);
    opacity: 0.22;
    filter: blur(3px);
    pointer-events: none;
}

.visao-metric {
    position: relative;
    margin-top: 1.25rem;
}

.visao-metric-label {
    display: block;
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.visao-metric-bar {
    display: block;
    height: 10px;
    border-radius: 999px;
    background: rgba(54, 70, 137, 0.22);
    border: 1px solid rgba(54, 70, 137, 0.22);
    overflow: hidden;
}

.visao-metric-bar i {
    display: block;
    height: 100%;
    width: var(--w, 70%);
    background: var(--gradient);
    border-radius: 999px;
    transform-origin: left;
    transform: scaleX(0.2);
    animation: metricFill 1.2s ease forwards;
}

.visao-orbit {
    position: absolute;
    inset: auto -40px -55px auto;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 1px dashed rgba(var(--neon-purple-rgb), 0.5);
    opacity: 0.7;
    animation: orbitSpin 12s linear infinite;
}

@keyframes orbitSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes metricFill {
    from { transform: scaleX(0.0); }
    to { transform: scaleX(1.0); }
}

/* ===== Recursos ===== */
.section-recursos {
    background: rgba(16, 17, 27, 0.58);
    -webkit-backdrop-filter: blur(3px);
    backdrop-filter: blur(3px);
}

.recursos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.recurso-card {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(54, 70, 137, 0.2);
    transition: all 0.3s;
}

.recurso-card:hover {
    border-color: rgba(var(--neon-purple-rgb), 0.55);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.recurso-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.recurso-icon-img {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: rgba(54, 70, 137, 0.14);
    border: 1px solid rgba(var(--neon-purple-rgb), 0.35);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.25);
}

.recurso-icon-img img {
    width: 32px;
    height: 32px;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 8px 18px rgba(var(--neon-purple-rgb), 0.4));
}

.recurso-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.recurso-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* ===== CTA ===== */
.section-cta {
    text-align: center;
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.cta-logo {
    height: 60px;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.cta-content h2 {
    margin-bottom: 0.75rem;
}

.cta-content p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.qr-placeholder {
    width: min(360px, 92vw);
    aspect-ratio: 1 / 1;
    margin: 1.25rem auto 1rem;
    border-radius: 22px;
    background:
        radial-gradient(220px 220px at 25% 25%, rgba(var(--neon-purple-rgb), 0.28) 0%, transparent 55%),
        radial-gradient(220px 220px at 75% 85%, rgba(var(--neon-purple-rgb), 0.32) 0%, transparent 55%),
        rgba(22, 24, 42, 0.55);
    border: 1px solid rgba(var(--neon-purple-rgb), 0.6);
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.55);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.qr-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    position: relative;
    z-index: 1;
}

.qr-placeholder::after {
    content: "";
    position: absolute;
    inset: -2px;
    background: var(--gradient);
    opacity: 0.12;
    filter: blur(3px);
    z-index: 0;
    pointer-events: none;
}

.qr-text {
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

/* ===== Footer ===== */
.footer {
    padding: 2rem;
    border-top: 1px solid rgba(54, 70, 137, 0.2);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.footer-logo {
    height: 36px;
    opacity: 0.8;
}

.footer p {
    color: var(--text-muted);
    font-size: 0.9rem;
}
/* ===== Carrossel Equipe (LEVE) ===== */

/* =========================
   SEÇÃO EQUIPE
========================= */

.section-equipe{
    background: radial-gradient(800px 400px at 50% 50%, rgba(191,0,255,0.05) 0%, transparent 70%),
                rgba(16,17,27,0.58);
}

/* wrapper do slider */
.carousel-3d-wrapper{
    width:100%;
    max-width:340px;
    margin:auto;
    overflow:hidden;
}

/* trilho do slider */
.carousel-3d{
    display:flex;
    width:100%;
    transition:transform .6s cubic-bezier(.22,1,.36,1);
}

/* card */
.carousel-card{
    min-width:100%;
    flex-shrink:0;

    background: var(--bg-card);
    border: 1px solid rgba(54,70,137,0.4);
    border-radius:20px;

    box-shadow:
        0 15px 40px rgba(0,0,0,0.5),
        inset 0 0 20px rgba(var(--neon-purple-rgb),0.05);

    display:flex;
    flex-direction:column;
    align-items:center;

    padding:1.5rem;
    text-align:center;

    height:auto;

    transition:
        transform .3s ease,
        box-shadow .3s ease,
        border-color .3s ease;
}

/* hover */
.carousel-card:hover{
    border-color: rgba(var(--neon-purple-rgb),0.7);

    box-shadow:
        0 15px 40px rgba(0,0,0,0.5),
        0 0 30px rgba(var(--neon-purple-rgb),0.3);

    transform: translateY(-6px);
}

/* card ativo */
.carousel-card.active{
    border-color: rgba(var(--neon-purple-rgb),0.8);

    box-shadow:
        0 20px 45px rgba(0,0,0,0.6),
        0 0 35px rgba(var(--neon-purple-rgb),0.35);
}

/* avatar */
.card-avatar{
    width:220px;
    height:220px;

    border-radius:50%;

    margin:1.5rem;

    background: radial-gradient(circle at top left, var(--gradient-start), var(--gradient-end));

    padding:4px;

    box-shadow:0 15px 35px rgba(var(--neon-purple-rgb),0.4);
}

.card-avatar img{
    width:100%;
    height:100%;

    object-fit:cover;

    border-radius:50%;

    background:var(--bg-dark);
}

/* nome */
.carousel-card h3{
    font-family:'DM Serif Display', Georgia, serif;

    font-size:1.8rem;

    color:var(--text-primary);

    margin-bottom:.5rem;
}

/* cargo */
.card-role{
    font-size:.95rem;

    color:var(--text-secondary);

    font-weight:600;

    text-transform:uppercase;

    letter-spacing:.05em;

    background:var(--gradient);

    -webkit-background-clip:text;

    background-clip:text;

    -webkit-text-fill-color:transparent;
}

/* descrição da equipe */

.team-details{
    max-width:750px;
    margin:3rem auto 1rem;
    text-align:center;
}

.team-details-content{
    background:rgba(22,24,42,0.65);
    border:1px solid rgba(54,70,137,0.4);
    border-radius:18px;
    padding:2rem;
    backdrop-filter: blur(10px);
}

#teamName{
    font-family:'DM Serif Display', Georgia, serif;
    font-size:1.8rem;
    margin-bottom:.4rem;
}

#teamRole{
    font-size:.9rem;
    margin-bottom:1rem;
    color:var(--text-secondary);
}

#teamDescription{
    line-height:1.7;
    color:var(--text-secondary);
}

/* controles */

.carousel-controls{
    display:flex;
    justify-content:center;
    gap:1.5rem;
    margin-top:1rem;
}

.btn-carousel{
    background:rgba(22,24,42,0.7);

    color:var(--text-primary);

    border:1px solid rgba(var(--neon-purple-rgb),0.5);

    width:50px;
    height:50px;

    border-radius:50%;

    font-size:1.2rem;

    cursor:pointer;

    transition:all .3s ease;

    display:flex;
    align-items:center;
    justify-content:center;
}

.btn-carousel:hover{
    background:var(--gradient);

    border-color:transparent;

    transform:scale(1.1);

    box-shadow:0 10px 20px rgba(var(--neon-purple-rgb),0.4);
}

/* responsivo */

.carousel-3d-wrapper{
    width:100%;
    max-width:340px;
    margin:auto;
    overflow:hidden;
}

@media (max-width:768px){

    .carousel-3d-wrapper{
        max-width:90%;
    }

    .carousel-card{
        padding:1.2rem;
    }

    .carousel-card h3{
        font-size:1.4rem;
    }

}


/* ===== Responsivo ===== */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 65px;
        right: -100%;
        flex-direction: column;
        background: var(--bg-mid);
        width: 100%;
        padding: 2rem;
        gap: 1.5rem;
        transition: right 0.3s;
        border-left: 1px solid rgba(54, 70, 137, 0.2);
    }

    .nav-links.active {
        right: 0;
    }

    .beneficios-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .beneficio-visual {
        order: -1;
    }

    .beneficio-visual img {
        width: min(320px, 100%);
        max-height: 460px;
    }

    .section-cta .container {
        display: flex;
        justify-content: center;
    }

    .hero-logo {
        width: 70%;
        opacity: 0.25;
    }

    .visao-grid {
        grid-template-columns: 1fr;
        gap: 1.75rem;
    }

    .velune-grid {
        grid-template-columns: 1fr;
        gap: 1.75rem;
    }

    .velune-visual {
        order: -1;
        align-items: center;
    }

    .visao-panel {
        padding: 1.25rem;
    }

    .visao-orbit {
        inset: auto -25px -40px auto;
        width: 160px;
        height: 160px;
    }
}
.team-details {
    margin-top: 2.5rem;
    display: flex;
    justify-content: center;
    perspective: 1200px;
}

.team-details-content {
    position: relative;
    max-width: 650px;
    width: 100%;
    padding: 2rem 2.5rem;
    border-radius: 18px;

    background: linear-gradient(
        145deg,
        rgba(15, 18, 35, 0.92),
        rgba(10, 12, 25, 0.97)
    );

    border: 1px solid rgba(120, 140, 255, 0.35);
    backdrop-filter: blur(18px);

    box-shadow:
        0 0 40px rgba(80, 120, 255, 0.25),
        inset 0 0 40px rgba(90, 120, 255, 0.12);

    transform: translateY(50px) scale(0.95);
    opacity: 0;

    transition:
        transform 0.7s cubic-bezier(0.23, 1, 0.32, 1),
        opacity 0.6s ease,
        box-shadow 0.5s ease;
}

.team-details-content.show {
    transform: translateY(0px) scale(1);
    opacity: 1;
    box-shadow:
        0 0 60px rgba(80, 120, 255, 0.45),
        inset 0 0 40px rgba(90, 120, 255, 0.18);
}

/* linha holográfica refinada */
.team-details-content::before {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 240%;
    height: 2px;
    background: linear-gradient(
        90deg,
        transparent,
        #7da0ff,
        transparent
    );
    animation: scanline 3s linear infinite;
}

@keyframes scanline {
    0% { left: -120%; }
    100% { left: 120%; }
}

/* partículas sutis dentro do painel */
.team-details-content::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, rgba(255,255,255,0.02) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

/* textos */
.team-details h3 {
    font-size: 2rem;
    margin-bottom: 0.4rem;
    background: linear-gradient(90deg, #9ec4ff, #caa8ff);
    -webkit-background-clip: text;
    color: transparent;
    transition: color 0.5s ease;
}

.team-details p {
    color: var(--text-secondary);
    line-height: 1.6;
    transition: color 0.5s ease, transform 0.6s ease;
}

#teamRole {
    font-weight: 600;
    color: #8faaff;
}

/* cards do carrossel */
.carousel-card {
    transition:
        transform 0.55s cubic-bezier(0.23, 1, 0.32, 1),
        box-shadow 0.5s ease,
        filter 0.5s ease;
    cursor: pointer;
    will-change: transform, box-shadow;
}

.carousel-card.active {
    transform: scale(1.1) translateY(-12px);
    box-shadow:
        0 0 25px rgba(120, 150, 255, 0.6),
        0 0 50px rgba(120, 150, 255, 0.35),
        0 25px 70px rgba(0, 0, 0, 0.6);
    filter: drop-shadow(0 0 20px rgba(120, 160, 255, 0.5));
    border-radius: 14px;
    z-index: 10;
}

/* descrição futurista */
.team-details-content p,
.team-details-content h3,
#teamRole {
    transition: transform 0.6s cubic-bezier(.22,1,.36,1),
                opacity 0.6s ease,
                color 0.6s ease;
    transform: translateY(10px);
    opacity: 0;
}

/* estado visível */
.team-details-content.show p,
.team-details-content.show h3,
.team-details-content.show #teamRole {
    transform: translateY(0);
    opacity: 1;
}

/* ===== BLOCO DE ALTERAÇÕES FUTURISTAS - CARROSSEL E EQUIPE ===== */

/* Glow mais intenso no card ativo */
.carousel-card.active {
    transform: scale(1.12) translateY(-14px);
    box-shadow:
        0 0 35px rgba(120, 160, 255, 0.7),
        0 0 70px rgba(191, 0, 255, 0.35),
        0 25px 80px rgba(0, 0, 0, 0.6);
    z-index: 10;
}

/* Hover com brilho animado nos cards */
.carousel-card:hover::before {
    content:"";
    position:absolute;
    inset:0;
    border-radius:20px;
    background: linear-gradient(120deg, rgba(191,0,255,0.15), rgba(74,91,168,0.15));
    pointer-events:none;
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

/* Neon pulsante nos nomes da equipe */
.team-details h3 {
    animation: neonPulse 2s infinite alternate;
}

@keyframes neonPulse {
    from { text-shadow: 0 0 6px #9ec4ff, 0 0 12px #caa8ff; }
    to   { text-shadow: 0 0 14px #9ec4ff, 0 0 28px #caa8ff; }
}

/* Neon leve no cargo da equipe */
#teamRole {
    text-shadow: 0 0 4px #8faaff, 0 0 10px rgba(191,0,255,0.35);
}

/* Transição extra para textos da equipe */
.team-details-content.show p,
.team-details-content.show h3,
.team-details-content.show #teamRole {
    transition: transform 0.6s cubic-bezier(.22,1,.36,1),
                opacity 0.6s ease,
                color 0.6s ease,
                text-shadow 0.6s ease;
}