    :root {
    --bg: #06131f;
    --bg-secondary: #0b1d2d;
    --surface: rgba(255, 255, 255, 0.08);
    --surface-strong: rgba(255, 255, 255, 0.12);
    --card-border: rgba(255, 255, 255, 0.14);

    --text: #f4fbff;
    --text-soft: #bfd4e4;
    --text-muted: #8eabc0;

    --primary: #47d7ff;
    --primary-strong: #18b8ea;
    --secondary: #7ae7ff;
    --accent: #ffd24d;

    --gradient-main: linear-gradient(135deg, #47d7ff 0%, #18b8ea 45%, #7a7cff 100%);
    --gradient-soft: linear-gradient(180deg, rgba(71, 215, 255, 0.15), rgba(122, 124, 255, 0.08));
    --gradient-hero: radial-gradient(circle at top left, rgba(71, 215, 255, 0.2), transparent 35%),
        radial-gradient(circle at top right, rgba(255, 210, 77, 0.14), transparent 25%),
        radial-gradient(circle at bottom center, rgba(122, 124, 255, 0.16), transparent 30%);

    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.22);
    --shadow-glow: 0 0 30px rgba(71, 215, 255, 0.18);

    --radius-sm: 12px;
    --radius-md: 18px;
    --radius-lg: 28px;
    --radius-xl: 36px;

    --container: 1200px;
    --transition: 0.3s ease;
    }

    * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    }

    html {
    scroll-behavior: smooth;
    }

    body {
    font-family: "Poppins", sans-serif;
    background:
        var(--gradient-hero),
        linear-gradient(180deg, #07111b 0%, #08192a 35%, #0a1c2b 100%);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    }

    body::before,
    body::after {
    content: "";
    position: fixed;
    inset: auto;
    pointer-events: none;
    z-index: -1;
    border-radius: 50%;
    filter: blur(80px);
    }

    body::before {
    width: 320px;
    height: 320px;
    top: 80px;
    left: -80px;
    background: rgba(71, 215, 255, 0.12);
    }

    body::after {
    width: 260px;
    height: 260px;
    right: -60px;
    bottom: 60px;
    background: rgba(122, 124, 255, 0.12);
    }

    img {
    max-width: 100%;
    display: block;
    }

    a {
    color: inherit;
    text-decoration: none;
    }

    ul {
    list-style: none;
    }

    section {
    padding: 100px 0;
    position: relative;
    }

    .container {
    width: min(100% - 32px, var(--container));
    margin: 0 auto;
    }

    .section-heading {
    max-width: 760px;
    margin-bottom: 48px;
    }

    .section-tag,
    .eyebrow {
    display: inline-block;
    margin-bottom: 14px;
    padding: 8px 14px;
    border: 1px solid rgba(71, 215, 255, 0.25);
    background: rgba(71, 215, 255, 0.08);
    color: var(--secondary);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: 999px;
    }

    .section-heading h2,
    .cta-box h2 {
    font-size: clamp(2rem, 4vw, 3.4rem);
    line-height: 1.1;
    margin-bottom: 14px;
    }

    .section-heading p,
    .hero-description,
    .video-info p,
    .about-card p,
    .schedule-card p,
    .social-card p,
    .lore-content p,
    .faq-item p,
    .footer-content p,
    .cta-box p,
    .profile-list li {
    color: var(--text-soft);
    }

    .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 24px;
    border-radius: 999px;
    font-weight: 600;
    transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition);
    }

    .btn:hover {
    transform: translateY(-2px);
    }

    .btn-primary {
    background: var(--gradient-main);
    color: #06131f;
    box-shadow: 0 10px 24px rgba(71, 215, 255, 0.25);
    }

    .btn-primary:hover {
    box-shadow: 0 16px 30px rgba(71, 215, 255, 0.3);
    }

    .btn-secondary {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--card-border);
    color: var(--text);
    }

    .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    }

    .text-link {
    color: var(--secondary);
    font-weight: 600;
    transition: color var(--transition);
    }

    .text-link:hover {
    color: var(--accent);
    }

    /* HEADER */
    .site-header {
    position: sticky;
    top: 0;
    z-index: 999;
    backdrop-filter: blur(18px);
    background: rgba(6, 19, 31, 0.6);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }

    .site-header .container {
    min-height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    }

    .logo {
    font-size: 1.35rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    color: #ffffff;
    }

    .navbar {
    flex: 1;
    display: flex;
    justify-content: center;
    }

    .nav-list {
    display: flex;
    align-items: center;
    gap: 22px;
    flex-wrap: wrap;
    }

    .nav-list a {
    position: relative;
    font-size: 0.95rem;
    color: var(--text-soft);
    transition: color var(--transition);
    }

    .nav-list a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -7px;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width var(--transition);
    }

    .nav-list a:hover {
    color: #fff;
    }

    .nav-list a:hover::after {
    width: 100%;
    }

    .header-cta {
        display: flex;
        justify-content: center;
        align-items: center;
        min-height: 44px;
        padding: 0 18px;
        border-radius: 999px;
        background: rgba(71, 215, 255, 0.12);
        border: 1px solid rgba(71, 215, 255, 0.25);
        color: var(--secondary);
        font-weight: 600;
        transition: all var(--transition);
    }

    .header-cta:hover {
    transform: translateY(-2px);
    background: rgba(71, 215, 255, 0.18);
    }

    /* HERO */
    .hero {
    padding-top: 80px;
    }

    .hero-content {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 42px;
    }

    .hero-text h1 {
    font-size: clamp(2.6rem, 5vw, 5rem);
    line-height: 1.02;
    margin-bottom: 22px;
    letter-spacing: -0.03em;
    }

    .hero-text h1 span {
    display: block;
    background: linear-gradient(90deg, #ffffff 0%, #7ae7ff 45%, #ffd24d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    }

    .hero-description {
    max-width: 640px;
    font-size: 1.05rem;
    margin-bottom: 30px;
    }

    .hero-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 30px;
    }

    .hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(120px, 1fr));
    gap: 14px;
    max-width: 620px;
    }

    .hero-stats li {
    padding: 18px 16px;
    border: 1px solid var(--card-border);
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    backdrop-filter: blur(8px);
    box-shadow: var(--shadow-soft);
    }

    .hero-stats strong {
    display: block;
    font-size: 1.3rem;
    color: #fff;
    }

    .hero-stats span {
    font-size: 0.92rem;
    color: var(--text-soft);
    }

    .hero-visual {
    display: flex;
    justify-content: center;
    }

    .character-card {
    position: relative;
    width: min(100%, 500px);
    padding: 20px;
    border-radius: var(--radius-xl);
    background:
        linear-gradient(180deg, rgba(255,255,255,0.12), rgba(255,255,255,0.04));
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: var(--shadow-soft), var(--shadow-glow);
    overflow: hidden;
    }

    .character-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(255,255,255,0.18), transparent 20%),
        radial-gradient(circle at 80% 10%, rgba(71,215,255,0.18), transparent 25%),
        radial-gradient(circle at 60% 90%, rgba(255,210,77,0.12), transparent 20%);
    pointer-events: none;
    }

    .character-card img {
    position: relative;
    z-index: 1;
    width: 100%;
    border-radius: 24px;
    }

    /* ABOUT */
    .about-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    }

    .about-card {
    padding: 28px;
    border-radius: var(--radius-md);
    background: var(--surface);
    border: 1px solid var(--card-border);
    box-shadow: var(--shadow-soft);
    transition: transform var(--transition), border-color var(--transition), background var(--transition);
    }

    .about-card:hover {
    transform: translateY(-6px);
    border-color: rgba(71, 215, 255, 0.32);
    background: rgba(255, 255, 255, 0.1);
    }

    .about-card h3 {
    margin-bottom: 12px;
    font-size: 1.1rem;
    color: #fff;
    }

    /* PROFILE */
    .profile-wrapper {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 28px;
    align-items: center;
    }

    .profile-image,
    .profile-info {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--surface);
    border: 1px solid var(--card-border);
    box-shadow: var(--shadow-soft);
    }

    .profile-image {
    padding: 16px;
    }

    .profile-image img {
    border-radius: 20px;
    }

    .profile-info {
    padding: 32px;
    }

    .profile-list {
    display: grid;
    gap: 16px;
    }

    .profile-list li {
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .profile-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
    }

    .profile-list strong {
    color: #fff;
    }

    /* SCHEDULE */
    .schedule-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    }

    .schedule-card {
    padding: 24px;
    border-radius: var(--radius-md);
    background: var(--surface);
    border: 1px solid var(--card-border);
    transition: transform var(--transition), border-color var(--transition);
    }

    .schedule-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 210, 77, 0.35);
    }

    .day {
    display: inline-block;
    margin-bottom: 12px;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(255, 210, 77, 0.12);
    color: var(--accent);
    font-size: 0.82rem;
    font-weight: 600;
    }

    .schedule-card h3 {
    margin-bottom: 8px;
    font-size: 1.08rem;
    }

    /* VIDEOS */
    .videos-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr;
    gap: 20px;
    }

    .featured-video {
    grid-row: span 2;
    }

    .video-card {
    overflow: hidden;
    border-radius: var(--radius-lg);
    background: var(--surface);
    border: 1px solid var(--card-border);
    box-shadow: var(--shadow-soft);
    transition: transform var(--transition), border-color var(--transition);
    }

    .video-card:hover {
    transform: translateY(-6px);
    border-color: rgba(71, 215, 255, 0.35);
    }

    .video-thumb {
    aspect-ratio: 16 / 10;
    overflow: hidden;
    }

    .video-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
    }

    .video-card:hover .video-thumb img {
    transform: scale(1.05);
    }

    .video-info {
    padding: 22px;
    }

    .video-label {
    display: inline-block;
    margin-bottom: 10px;
    color: var(--accent);
    font-size: 0.82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    }

    .video-info h3 {
    margin-bottom: 10px;
    font-size: 1.15rem;
    }

    /* QUOTE */
    .quote-banner {
    padding: 60px 0;
    }

    .quote-banner .container {
    padding: 32px;
    border-radius: var(--radius-xl);
    background:
        linear-gradient(135deg, rgba(71, 215, 255, 0.14), rgba(122, 124, 255, 0.12));
    border: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    box-shadow: var(--shadow-soft);
    }

    .quote-banner blockquote {
    font-size: clamp(1.4rem, 2.5vw, 2.4rem);
    line-height: 1.2;
    font-weight: 700;
    color: #fff;
    }

    /* GALLERY */
    .gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    }

    .gallery-item {
    overflow: hidden;
    border-radius: 22px;
    border: 1px solid var(--card-border);
    background: var(--surface);
    box-shadow: var(--shadow-soft);
    }

    .gallery-item img {
    width: 100%;
    aspect-ratio: 4 / 4.4;
    object-fit: cover;
    transition: transform 0.45s ease;
    }

    .gallery-item:hover img {
    transform: scale(1.05);
    }

    /* LORE */
    .lore-content {
    max-width: 860px;
    display: grid;
    gap: 18px;
    padding: 32px;
    border-radius: var(--radius-lg);
    background: var(--surface);
    border: 1px solid var(--card-border);
    box-shadow: var(--shadow-soft);
    }

    /* SOCIALS */
    .socials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    }

    .social-card {
    display: block;
    padding: 28px;
    border-radius: var(--radius-md);
    background: var(--surface);
    border: 1px solid var(--card-border);
    box-shadow: var(--shadow-soft);
    transition: transform var(--transition), border-color var(--transition), background var(--transition);
    }

    .social-card:hover {
    transform: translateY(-6px);
    border-color: rgba(71, 215, 255, 0.35);
    background: rgba(255, 255, 255, 0.1);
    }

    .social-card h3 {
    margin-bottom: 8px;
    font-size: 1.1rem;
    }

    /* FAQ */
    .faq-list {
    display: grid;
    gap: 14px;
    max-width: 900px;
    }

    .faq-item {
    border-radius: var(--radius-md);
    background: var(--surface);
    border: 1px solid var(--card-border);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
    }

    .faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 22px 24px;
    font-weight: 600;
    color: #fff;
    position: relative;
    }

    .faq-item summary::-webkit-details-marker {
    display: none;
    }

    .faq-item summary::after {
    content: "+";
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.3rem;
    color: var(--secondary);
    }

    .faq-item[open] summary::after {
    content: "–";
    }

    .faq-item p {
    padding: 0 24px 22px;
    }

    /* CTA FINAL */
    .cta-box {
    padding: 42px;
    border-radius: var(--radius-xl);
    background:
        linear-gradient(135deg, rgba(71, 215, 255, 0.14), rgba(255, 210, 77, 0.1));
    border: 1px solid rgba(255,255,255,0.12);
    box-shadow: var(--shadow-soft), var(--shadow-glow);
    text-align: center;
    }

    .cta-box p {
    max-width: 700px;
    margin: 0 auto 22px;
    }

    /* FOOTER */
    .site-footer {
    padding: 40px 0 60px;
    border-top: 1px solid rgba(255,255,255,0.06);
    }

    .footer-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 24px;
    }

    .footer-content h3 {
    margin-bottom: 10px;
    font-size: 1.3rem;
    }

    /* RESPONSIVIDADE */
    @media (max-width: 1100px) {
    .hero-content,
    .profile-wrapper {
        grid-template-columns: 1fr;
    }

    .about-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .schedule-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .videos-grid {
        grid-template-columns: 1fr 1fr;
    }

    .featured-video {
        grid-column: span 2;
        grid-row: auto;
    }

    .gallery-grid,
    .socials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
    }

    @media (max-width: 820px) {
    .site-header .container {
        flex-wrap: wrap;
        justify-content: center;
        padding: 14px 0;
    }

    .navbar {
        order: 3;
        width: 100%;
    }

    .nav-list {
        justify-content: center;
        gap: 16px;
    }

    section {
        padding: 80px 0;
    }

    .hero {
        padding-top: 50px;
    }

    .hero-stats {
        grid-template-columns: 1fr;
    }

    .schedule-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .videos-grid,
    .gallery-grid,
    .socials-grid {
        grid-template-columns: 1fr;
    }

    .featured-video {
        grid-column: auto;
    }

    .section-heading {
        margin-bottom: 36px;
    }

    .cta-box,
    .lore-content,
    .profile-info {
        padding: 24px;
    }
    }

    @media (max-width: 560px) {
    .container {
        width: min(100% - 24px, var(--container));
    }

    .nav-list {
        gap: 12px;
    }

    .nav-list a {
        font-size: 0.9rem;
    }

    .header-cta {
        width: 100%;
        justify-content: center;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .about-grid,
    .schedule-grid {
        grid-template-columns: 1fr;
    }

    .about-card,
    .schedule-card,
    .social-card,
    .video-info {
        padding: 20px;
    }

    .quote-banner .container {
        padding: 24px 18px;
    }

    .faq-item summary {
        padding: 18px 20px;
    }

    .faq-item p {
        padding: 0 20px 18px;
    }
    }

    .site-header.scrolled {
  background: rgba(6, 19, 31, 0.88);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.22);
}

.about-card,
.schedule-card,
.video-card,
.gallery-item,
.social-card,
.faq-item,
.profile-wrapper,
.lore-content,
.cta-box {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease,
    border-color 0.3s ease,
    background 0.3s ease;
}

.about-card.revealed,
.schedule-card.revealed,
.video-card.revealed,
.gallery-item.revealed,
.social-card.revealed,
.faq-item.revealed,
.profile-wrapper.revealed,
.lore-content.revealed,
.cta-box.revealed {
  opacity: 1;
  transform: translateY(0);
}

.character-card {
  transition: transform 0.25s ease;
  will-change: transform;
}

/* SCROLLBAR PERSONALIZADA */

/* Chrome / Edge / Opera */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #08192a;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(
    180deg,
    #47d7ff,
    #18b8ea
  );
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(
    180deg,
    #7ae7ff,
    #47d7ff
  );
}

/* Firefox */
* {
  scrollbar-width: thin;
  scrollbar-color: #47d7ff #08192a;
}