/* =========================================
   RESET & BASE
========================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: "Montserrat", sans-serif;
    line-height: 1.5;
    transition: background 0.4s ease, color 0.4s ease;
    background: var(--bg);
    color: var(--text);
    overflow-x: hidden;
    position: relative;
}

/* Fundo com grid + glow */
body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px),
        radial-gradient(circle at top, rgba(255,38,77,0.22), transparent 60%);
    background-size:
        40px 40px,
        40px 40px,
        100% 100%;
    mix-blend-mode: soft-light;
    opacity: 0.7;
    z-index: -1;
}

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

.container {
    width: 90%;
    max-width: 1300px;
    margin: 0 auto;
}

/* =========================================
   THEME VARIABLES
========================================= */
:root {
    --neon: #ff264d;
    --neon-soft: rgba(255, 38, 77, 0.7);
    --neon-glow: 0 0 6px rgba(255, 38, 77, 0.6),
                 0 0 14px rgba(255, 38, 77, 0.4);
    --bg: #080910;
    --bg-alt: #101321;
    --card-bg: #151826;
    --border: #2c3043;
    --text: #f5f5f7;
    --text-muted: #c1c4d9;
}

body.dark-mode {
    --bg: #080910;
    --bg-alt: #101321;
    --card-bg: #151826;
    --border: #2c3043;
    --text: #f5f5f7;
    --text-muted: #c1c4d9;
    --neon: #ff264d;
    --neon-soft: rgba(255, 38, 77, 0.7);
    --neon-glow: 0 0 6px rgba(255, 38, 77, 0.6),
                 0 0 14px rgba(255, 38, 77, 0.4);
}

body.light-mode {
    --bg: #fdfdfd;
    --bg-alt: #f5f5f7;
    --card-bg: #ffffff;
    --border: #dadde8;
    --text: #11121a;
    --text-muted: #555a74;
    --neon: #d6002e;
    --neon-soft: rgba(214, 0, 46, 0.4);
    --neon-glow: 0 0 6px rgba(214, 0, 46, 0.5),
                 0 0 14px rgba(214, 0, 46, 0.4);
}

/* =========================================
   HEADER & NAV
========================================= */
.header {
    background: linear-gradient(to right,
        rgba(5,5,10,0.96), rgba(10,11,20,0.98)
    );
    padding: 12px 0;
    position: sticky;
    top: 0;
    z-index: 9999;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    backdrop-filter: blur(18px);
    transition: padding 0.3s ease, background 0.3s ease,
                border-color 0.3s ease;
}

.header--scrolled {
    padding: 8px 0;
    background: linear-gradient(to right,
        rgba(5,5,10,0.98), rgba(12,13,24,0.99)
    );
    border-bottom-color: rgba(255,255,255,0.12);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.logo img {
    width: 70px;
    max-width: 100%;
    filter: drop-shadow(0 0 10px rgba(255,38,77,0.6));
}

body.light-mode .logo img {
    content: url("img/icoblack.png");
    filter: none;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* DROPDOWN DE IDIOMAS */
.lang-dropdown {
    position: relative;
}
.lang-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.22);
    background: radial-gradient(circle at top, rgba(255,255,255,0.05), rgba(0,0,0,0.7));
    color: var(--text);
    font-size: 0.82rem;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: 0.25s ease;
}
.lang-btn i.fas.fa-globe {
    color: var(--neon);
}
.lang-btn .arrow {
    font-size: 0.7rem;
    transition: transform 0.25s ease;
}
.lang-dropdown.open .lang-btn {
    box-shadow: var(--neon-glow);
    border-color: var(--neon-soft);
}
.lang-dropdown.open .lang-btn .arrow {
    transform: rotate(-180deg);
}

.lang-menu {
    position: absolute;
    top: 110%;
    right: 0;
    min-width: 170px;
    background: var(--bg-alt);
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.12);
    box-shadow: 0 14px 30px rgba(0,0,0,0.65);
    list-style: none;
    padding: 6px 0;
    opacity: 0;
    pointer-events: none;
    transform: translateY(6px);
    transition: opacity 0.2s ease, transform 0.2s ease;
    z-index: 9999;
}
.lang-dropdown.open .lang-menu {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}
.lang-menu li {
    padding: 8px 14px;
    font-size: 0.85rem;
    color: var(--text-muted);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.lang-menu li:hover {
    background: rgba(255,255,255,0.04);
    color: var(--text);
}
body.light-mode .lang-menu {
    background: #ffffff;
    border-color: var(--border);
    box-shadow: 0 12px 26px rgba(0,0,0,0.12);
}

/* Botão de tema */
.theme-toggle {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 999px;
    color: var(--neon);
    font-size: 18px;
    cursor: pointer;
    padding: 6px 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s ease;
}
.theme-toggle:hover {
    box-shadow: var(--neon-glow);
    transform: translateY(-1px) scale(1.05);
}

/* NAV principal */
.nav {
    display: flex;
    align-items: center;
    gap: 25px;
}
.nav ul {
    display: flex;
    gap: 22px;
    list-style: none;
}
.nav a {
    color: var(--text);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.04em;
    position: relative;
    padding-bottom: 4px;
    transition: color 0.3s ease;
}
.nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0%;
    height: 2px;
    background: var(--neon);
    box-shadow: var(--neon-glow);
    transition: width 0.3s ease;
}
.nav a:hover {
    color: var(--neon);
}
.nav a:hover::after {
    width: 100%;
}

/* Redes sociais na nav */
.nav-socials {
    display: flex;
    gap: 15px;
    font-size: 1.3rem;
}
.nav-socials a {
    color: var(--neon);
    transition: transform 0.2s ease, text-shadow 0.3s ease;
}
.nav-socials a:hover {
    transform: translateY(-2px) scale(1.1);
    text-shadow: var(--neon-glow);
}

/* Hamburguer */
.nav-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    width: 32px;
    height: 26px;
    position: relative;
    z-index: 10000;
}
.nav-toggle span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 3px;
    border-radius: 999px;
    background: var(--neon);
    transition: 0.3s ease;
    box-shadow: 0 0 6px rgba(255,38,77,0.8);
}
.nav-toggle span:nth-child(1) { top: 3px; }
.nav-toggle span:nth-child(2) { top: 11px; }
.nav-toggle span:nth-child(3) { top: 19px; }

.nav-toggle.open span:nth-child(1) {
    top: 11px;
    transform: rotate(45deg);
}
.nav-toggle.open span:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}
.nav-toggle.open span:nth-child(3) {
    top: 11px;
    transform: rotate(-45deg);
}

/* Light mode header tweaks */
body.light-mode .header {
    background: rgba(255,255,255,0.92);
    border-bottom: 1px solid var(--border);
}
body.light-mode .header--scrolled {
    background: rgba(255,255,255,0.98);
}
body.light-mode .nav a {
    color: var(--text);
}
body.light-mode .nav a:hover {
    color: var(--neon);
}
body.light-mode .nav-toggle span {
    background: var(--neon);
}
body.light-mode .theme-toggle {
    color: var(--neon);
    border-color: rgba(0,0,0,0.18);
}
body.light-mode .nav-socials a {
    color: var(--neon);
}

/* =========================================
   HERO
========================================= */
.hero {
    display: flex;
    align-items: center;
    gap: 50px;
    padding: 90px 0 80px;
    flex-wrap: wrap;
    position: relative;
}
.hero::before {
    content: "";
    position: absolute;
    inset: -40%;
    background:
        radial-gradient(circle at top left, rgba(255, 38, 77, 0.16), transparent 55%),
        radial-gradient(circle at right, rgba(80, 120, 255, 0.12), transparent 55%);
    opacity: 0.9;
    z-index: -1;
}

.hero-left {
    flex: 1 1 320px;
}
.hero-right {
    flex: 1 1 280px;
    display: flex;
    justify-content: center;
}

/* Tagline + status */
.hero-pill-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.tagline {
    display: inline-block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.status-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.15);
    background: linear-gradient(120deg, rgba(0,0,0,0.3), rgba(255,255,255,0.05));
    padding: 4px 10px;
    font-size: 0.75rem;
    color: var(--text-muted);
}
.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: #06d6a0;
    box-shadow: 0 0 8px rgba(6,214,160,0.9);
}

.hero h1 {
    font-family: "Cinzel", serif;
    font-size: clamp(2.4rem, 5vw, 4rem);
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--text);
    text-transform: uppercase;
    text-shadow: var(--neon-glow);
    margin-top: 8px;
}
body.light-mode .hero h1 {
    color: #111;
    text-shadow: none;
}
.subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-weight: 400;
    color: var(--text-muted);
    margin-top: 10px;
}

.cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 25px;
    margin-top: 15px;
}
.btn-primary,
.btn-outline {
    font-size: 0.95rem;
    padding: 11px 20px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: 0.25s ease;
}
.btn-primary {
    background: var(--neon);
    color: #fff;
    box-shadow: var(--neon-glow);
}
.btn-primary:hover {
    transform: translateY(-2px) scale(1.03);
}
.btn-outline {
    border: 1px solid var(--neon-soft);
    color: var(--neon);
    background: transparent;
}
.btn-outline:hover {
    background: var(--neon-soft);
    color: #fff;
    box-shadow: var(--neon-glow);
}

.hero-features {
    list-style: none;
    color: var(--text-muted);
    font-size: 0.95rem;
}
.hero-features li {
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.hero-features i {
    color: var(--neon);
}

.hero-card {
    padding: 0;
    background: none;
    border: none;
    box-shadow: none;
    border-radius: 0;
    position: relative;
    overflow: visible;
    animation: float 6s ease-in-out infinite;
    display: flex;
    justify-content: center;
}
.hero-orbit {
    position: absolute;
    inset: -40%;
    border-radius: 50%;
    background: conic-gradient(from 180deg, rgba(255,255,255,0.06), rgba(255,38,77,0.25), rgba(80, 120, 255, 0.2), rgba(255,255,255,0.06));
    opacity: 0.3;
    filter: blur(12px);
}
.hero-img {
    width: 100%;
    max-width: 300px;
    filter: drop-shadow(0 0 24px rgba(255,38,77,0.8));
    position: relative;
    z-index: 1;
}
body.light-mode .hero-img {
    content: url("img/imgblack.png");
    filter: none;
}

/* =========================================
   SEÇÕES GENÉRICAS
========================================= */
.section-header {
    margin-bottom: 35px;
}
.section-header.center {
    text-align: center;
}
.section-header h2,
.section-title {
    font-size: 2.2rem;
    margin-bottom: 8px;
    color: #fff;
    text-shadow: var(--neon-glow);
}
body.light-mode .section-header h2,
body.light-mode .section-title {
    color: #111;
    text-shadow: none;
}
.section-header p {
    color: var(--text-muted);
}

/* =========================================
   ABOUT + VIDEO CAROUSEL
========================================= */
.about {
    padding: 40px 0 80px;
}
.about-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr);
    gap: 40px;
    align-items: center;
}

.video-carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.05);
    box-shadow: 0 0 45px rgba(0,0,0,0.8);
    background: #000;
}
body.light-mode .video-carousel {
    border-color: var(--border);
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}
.carousel-video {
    width: 100%;
    display: none;
}
.carousel-video.active {
    display: block;
}

/* Fade suave ao carregar elementos */
.fade-in {
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Hover neon suave */
.neon-hover:hover {
    filter: drop-shadow(0 0 8px var(--neon));
    transform: translateY(-2px);
    transition: 0.3s ease;
}

/* Sombra respirante em imagens */
.img-soft {
    transition: 0.4s ease;
}
.img-soft:hover {
    transform: scale(1.02);
    filter: brightness(1.05);
}

.video-carousel-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at bottom, rgba(0,0,0,0.5), transparent 60%);
    pointer-events: none;
}
.video-carousel-label {
    position: absolute;
    left: 14px;
    bottom: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0,0,0,0.7);
    color: #fff;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 0.8rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}
.video-carousel-label i {
    font-size: 0.8rem;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--neon-soft);
    border: none;
    color: #fff;
    font-size: 24px;
    padding: 8px 11px;
    cursor: pointer;
    border-radius: 50%;
    box-shadow: var(--neon-glow);
    transition: 0.3s ease;
    z-index: 2;
}
.carousel-btn:hover {
    transform: translateY(-50%) scale(1.08);
}
.prev-btn { left: 15px; }
.next-btn { right: 15px; }

.about-content h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
}
.about-content p {
    color: var(--text-muted);
    margin-bottom: 18px;
}
.about-list {
    list-style: none;
    margin-bottom: 20px;
}
.about-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
    margin-bottom: 10px;
}
.about-list i {
    color: var(--neon);
}

/* =========================================
   SERVICES
========================================= */
.services {
    padding: 20px 0 80px;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(260px,1fr));
    gap: 30px;
}
.service-card {
    background: radial-gradient(circle at top,
        rgba(255,38,77,0.18), var(--card-bg)
    );
    border-radius: 18px;
    padding: 28px 24px;
    border: 1px solid rgba(255,255,255,0.06);
    box-shadow: 0 0 24px rgba(0,0,0,0.8);
    transition: transform 0.25s ease,
                box-shadow 0.25s ease,
                border-color 0.25s ease;
    position: relative;
    overflow: hidden;
}
.service-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top, rgba(255,255,255,0.18), transparent 55%);
    opacity: 0;
    transition: opacity 0.3s ease;
}
body.light-mode .service-card {
    background: #ffffff;
    border-color: var(--border);
    box-shadow: 0 8px 25px rgba(0,0,0,0.06);
}
.service-card:hover {
    transform: translateY(-6px);
    border-color: var(--neon-soft);
    box-shadow: var(--neon-glow);
}
.service-card:hover::before {
    opacity: 0.5;
}

.service-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 16px;
}
body.light-mode .service-icon {
    background: #fff;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}
.service-icon i {
    color: var(--neon);
    font-size: 1.4rem;
}
.service-card h3 {
    margin-bottom: 10px;
}
.service-card p {
    color: var(--text-muted);
    margin-bottom: 12px;
}
.service-card ul {
    list-style: none;
    color: var(--text-muted);
    font-size: 0.9rem;
}
.service-card li {
    margin-bottom: 6px;
}

/* =========================================
   TEAM
========================================= */
.team {
    padding: 10px 0 80px;
}
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(220px,1fr));
    gap: 28px;
}
.team-card {
    background: radial-gradient(circle at top,
        rgba(255,38,77,0.2), var(--card-bg)
    );
    border-radius: 18px;
    padding: 20px;
    border: 1px solid rgba(255,255,255,0.06);
    text-align: center;
    box-shadow: 0 0 24px rgba(0,0,0,0.9);
    transition: 0.25s ease;
    position: relative;
    overflow: hidden;
}
.team-card::before {
    content: "";
    position: absolute;
    inset: -40%;
    /* background: conic-gradient(from 180deg, rgba(255,255,255,0.04), rgba(255,38,77,0.35), rgba(0,0,0,0.8)); */
    opacity: 0;
    transition: opacity 0.3s ease;
}
body.light-mode .team-card {
    background: #ffffff;
    border-color: var(--border);
    box-shadow: 0 8px 25px rgba(0,0,0,0.06);
}
.team-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--neon-glow);
}
.team-card:hover::before {
    opacity: 0.4;
}
.team-card[data-artist] {
    cursor: pointer;
}
.team-img-wrapper {
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: 12px;
    border: 1px solid rgba(255,255,255,0.12);
    position: relative;
}
body.light-mode .team-img-wrapper {
    border-color: var(--border);
}
.team-img-wrapper img {
    width: 100%;
    display: block;
    transition: transform 0.35s ease;
}
.team-card:hover img {
    transform: scale(1.05);
}
.team-card h3 {
    margin-bottom: 4px;
}
.team-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* =========================================
   MAP & CONTACT
========================================= */
.map-section {
    padding: 10px 0 70px;
}

.contact {
    padding: 10px 0 70px;
}
.contact-info {
    text-align: center;
    margin-bottom: 20px;
}
.contact-info p {
    margin-bottom: 6px;
    color: var(--text-muted);
}
.contact-info i {
    color: var(--neon);
    margin-right: 8px;
}

.socials {
    display: flex;
    justify-content: center;
    gap: 25px;
    font-size: 2rem;
}
.socials a {
    color: var(--neon);
    transition: 0.3s ease;
}
.socials a:hover {
    transform: translateY(-2px) scale(1.1);
    text-shadow: var(--neon-glow);
}

/* =========================================
   FOOTER
========================================= */
.footer {
    text-align: center;
    padding: 18px 0 25px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* =========================================
   FLOATING BUTTONS
========================================= */
.floating-whatsapp {
    position: fixed;
    right: 18px;
    bottom: 18px;
    width: 50px;
    height: 50px;
    border-radius: 999px;
    background: #25d366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 8px 20px rgba(0,0,0,0.35);
    z-index: 1000;
    transition: transform 0.25s ease, box-shadow 0.25s ease, opacity 0.25s ease;
}
.floating-whatsapp:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 10px 26px rgba(0,0,0,0.45);
}

.back-to-top {
    position: fixed;
    right: 18px;
    bottom: 80px;
    width: 42px;
    height: 42px;
    border-radius: 999px;
    border: none;
    background: rgba(10,10,20,0.9);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(0,0,0,0.4);
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px);
    transition: opacity 0.25s ease, transform 0.25s ease, background 0.25s ease;
    z-index: 999;
}
.back-to-top.visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}
.back-to-top:hover {
    background: var(--neon);
}

/* =========================================
   SCROLL REVEAL
========================================= */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* =========================================
   MODAL GALERIA
========================================= */
#artistModal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.75);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
}
#artistModal.open {
    display: flex;
}

#artistModalOverlay {
    position: absolute;
    inset: 0;
}

.artist-modal-content {
    position: relative;
    width: 95%;
    max-width: 900px;
    max-height: 90vh;
    margin: 0 auto;
    padding: 16px 18px 14px;
    background: var(--card-bg);
    border-radius: 20px;
    box-shadow: 0 0 30px rgba(0,0,0,0.7);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.artist-modal-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
    flex-shrink: 0;
}
.artist-modal-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

#artistModalClose {
    position: absolute;
    top: 12px;
    right: 12px;
    background: transparent;
    border: none;
    font-size: 1.8rem;
    color: var(--text);
    cursor: pointer;
}

.artist-modal-main {
    position: relative;
    flex: 1;
    min-height: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    overflow: hidden;
}
#artistModalMainImage {
    max-width: 100%;
    max-height: 60vh;
    width: auto;
    height: auto;
    object-fit: contain;
}

.artist-modal-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--neon);
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--neon-glow);
    z-index: 5;
}
#artistModalPrev { left: 10px; }
#artistModalNext { right: 10px; }

.artist-modal-thumbs {
    flex-shrink: 0;
    margin-top: 4px;
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: none;
}
.artist-modal-thumbs::-webkit-scrollbar {
    display: none;
}
.artist-modal-thumbs img {
    width: 65px;
    height: 65px;
    border-radius: 10px;
    object-fit: cover;
    opacity: 0.6;
    cursor: pointer;
    flex-shrink: 0;
}
.artist-modal-thumbs img.active {
    opacity: 1;
    border: 2px solid var(--neon);
}


.footer {
    background: #0b0b0e;
    padding: 25px 15px;
    text-align: center;
}

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

.footer p {
    font-size: 0.9rem;
    opacity: 0.8;
}

.livro-reclamacoes {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: inherit;
    font-size: 0.9rem;
}

.livro-reclamacoes img {
    height: 20px;
    width: auto;
}

.livro-reclamacoes:hover {
    opacity: 0.85;
}

/* Mobile */
@media (max-width: 600px) {
    .livro-reclamacoes img {
        height: 20px;
    }
}


/* =========================================
   ANIMAÇÕES
========================================= */
@keyframes float {
    0% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
    100% { transform: translateY(0); }
}

/* =========================================
   RESPONSIVIDADE
========================================= */
@media (max-width: 1440px) {
    .hero {
        gap: 40px;
        padding: 80px 0 70px;
    }
}

@media (max-width: 1200px) {
    .hero {
        padding: 80px 0 70px;
    }
    .about-grid {
        gap: 30px;
    }
}

@media (max-width: 1024px) {
    .hero {
        flex-direction: column-reverse;
        text-align: center;
        padding: 70px 0 60px;
    }
    .hero-left,
    .hero-right {
        flex: 1 1 100%;
    }
    .hero-card {
        margin-bottom: 20px;
    }
    .subtitle {
        margin-left: auto;
        margin-right: auto;
    }
    .cta-group {
        justify-content: center;
    }
    .about-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .hero-pill-row {
        justify-content: center;
    }
}

@media (max-width: 880px) {
    .nav-toggle {
        display: block;
    }

    .nav {
        position: fixed;
        top: 70px;
        right: 0;
        flex-direction: column;
        align-items: flex-start;
        background: radial-gradient(circle at top, #1b0b13, #080910);
        width: 80%;
        max-width: 320px;
        padding: 20px 22px;
        border-left: 1px solid rgba(255,255,255,0.08);
        border-bottom: 1px solid rgba(255,255,255,0.08);
        box-shadow: -8px 12px 30px rgba(0,0,0,0.9);
        transform: translateX(110%);
        opacity: 0;
        pointer-events: none;
        transition: transform 0.32s ease, opacity 0.25s ease;
        z-index: 9000;
        max-height: calc(100vh - 70px);
        overflow-y: auto;
    }

    body.light-mode .nav {
        background: #ffffff;
        box-shadow: -8px 12px 30px rgba(0,0,0,0.12);
    }

    .nav.active {
        transform: translateX(0%);
        opacity: 1;
        pointer-events: all;
    }

    .nav ul {
        flex-direction: column;
        width: 100%;
        gap: 16px;
    }

    .nav-socials {
        margin-top: 10px;
    }
}

@media (max-width: 768px) {

    .hero {
        padding-top: 70px;
        gap: 30px;
    }
    .hero h1 {
        font-size: 2.3rem;
    }
    .section-header h2,
    .section-title {
        font-size: 1.9rem;
    }

    .services,
    .team,
    .about {
        padding-left: 0;
        padding-right: 0;
    }

    .artist-modal-content {
        width: 100%;
        max-width: 100%;
        max-height: 100vh;
        border-radius: 0;
    }
}

@media (max-width: 600px) {

    .hero {
        padding-top: 70px;
        gap: 26px;
    }
    .hero h1 {
        font-size: 2.1rem;
    }
    .subtitle {
        font-size: 0.95rem;
    }
    .section-header h2,
    .section-title {
        font-size: 1.7rem;
    }

    .video-carousel {
        border-radius: 16px;
    }

    .service-card,
    .team-card {
        padding: 22px 18px;
    }

    .contact {
        padding-bottom: 50px;
    }

    .floating-whatsapp {
        right: 12px;
        bottom: 12px;
    }
    .back-to-top {
        right: 12px;
        bottom: 68px;
    }

    .artist-modal-main #artistModalMainImage {
        max-height: 55vh;
    }

    .artist-modal-thumbs img {
        width: 55px;
        height: 55px;
    }
}
