/* =====================================================
   CORREÇÃO — EVITAR FUNDO BRANCO AO CARREGAR
   ===================================================== */

html {
    background: #0a0a0a;
    margin: 0;
    padding: 0;
}

body {
    background: #0a0a0a;
    margin: 0;
    padding: 0;
    min-height: 100vh;
}

/* =====================================================
   VARIÁVEIS
   ===================================================== */

:root {
    --preto: #000000;
    --branco: #ffffff;
    --cinza-escuro: #111111;
    --cinza-medio: #777777;
    --cinza-claro: #bdbdbd;
    --cinza-card: #151515;
    --cinza-card-hover: #202020;
    --cinza-borda: #333333;
    --transicao: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* =====================================================
   RESET
   ===================================================== */

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

/* =====================================================
   SCROLL SUAVE
   ===================================================== */

html {
    background: var(--preto);
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: var(--preto);
    color: var(--branco);
    line-height: 1.6;
    overflow-x: hidden;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

body.page-ready {
    opacity: 1;
    visibility: visible;
}

body.page-loading {
    opacity: 0;
    visibility: hidden;
}

/* =====================================================
   SCROLL DAS SEÇÕES
   ===================================================== */

section {
    scroll-margin-top: 90px;
}

/* =====================================================
   ANIMAÇÕES
   ===================================================== */

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-50px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes photoEntrance {
    from { opacity: 0; transform: translateY(40px) scale(0.8); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes heroLineEntrance {
    from { width: 0; opacity: 0; transform: translateX(-20px); }
    to { width: 60px; opacity: 1; transform: translateX(0); }
}

@keyframes musicButtonFadeIn {
    0% { opacity: 0; transform: translateY(18px) scale(0.65); }
    60% { opacity: 1; transform: translateY(-3px) scale(1.05); }
    100% { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes ripple {
    to { transform: scale(4); opacity: 0; }
}

/* =====================================================
   ANIMAÇÕES DE SCROLL
   ===================================================== */

.scroll-hidden {
    opacity: 0;
    transform: translateY(30px);
}

.scroll-visible {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

/* =====================================================
   NAVEGAÇÃO
   ===================================================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--cinza-borda);
    z-index: 1000;
    animation: fadeInDown 0.6s ease-out;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--branco);
    text-transform: uppercase;
}

.nav-menu {
    display: flex !important;
    list-style: none;
    gap: 1.5rem;
    align-items: center;
    flex-wrap: wrap;
}

.nav-menu li {
    display: list-item !important;
}

.nav-link {
    color: var(--branco);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease, transform 0.3s ease;
    white-space: nowrap;
}

.nav-link:hover {
    color: var(--cinza-claro);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--branco);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:active {
    transform: scale(0.96);
}

/* =====================================================
   HERO
   ===================================================== */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 80px 2rem 2rem;
    background: var(--preto);
    position: relative;
    overflow: hidden;
}

.hero-content {
    flex: 1;
    z-index: 10;
    animation: slideInLeft 0.8s ease-out;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
    letter-spacing: -1px;
    display: flex;
    flex-wrap: wrap;
    gap: 0.25em;
    color: var(--branco);
}

.hero-title span {
    display: inline-block;
    cursor: pointer;
    transition: transform 0.3s ease, text-shadow 0.3s ease;
}

.hero-title span:hover {
    transform: translateY(-10px);
    text-shadow: 0 8px 18px rgba(255, 255, 255, 0.15);
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--cinza-claro);
    margin-bottom: 2rem;
    font-weight: 300;
    letter-spacing: 1px;
    user-select: none;
    cursor: default;
    animation: fadeInUp 0.8s ease-out 0.2s both;
    transition: transform 0.3s ease, color 0.3s ease;
}

.hero-subtitle:hover {
    transform: translateY(-4px);
    color: var(--branco);
}

.hero-line {
    width: 60px;
    height: 3px;
    background: var(--branco);
    margin-bottom: 2rem;
    transform-origin: left center;
    animation: heroLineEntrance 1s ease-out 0.2s both;
    transition: transform 0.35s ease, width 0.35s ease, box-shadow 0.35s ease;
}

.hero-line:hover {
    transform: translateY(-6px) scaleX(1.08);
    box-shadow: 0 8px 15px rgba(255, 255, 255, 0.15);
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--branco);
    color: var(--preto);
    text-decoration: none;
    font-weight: 600;
    border: 2px solid var(--branco);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.8s ease-out 0.4s both;
    transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.cta-button:hover {
    background: transparent;
    color: var(--branco);
    transform: translateY(-3px);
}

.cta-button:active {
    transform: scale(0.96);
}

.hero-animation {
    flex: 1;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: photoEntrance 1s ease-out;
}

.hero-photo {
    width: 280px;
    height: 280px;
    object-fit: cover;
    border-radius: 25px;
    display: block;
    cursor: pointer;
    transition: transform 0.7s ease, box-shadow 0.4s ease;
}

.hero-photo:hover {
    transform: perspective(600px) rotateX(8deg) rotateY(-8deg) scale(1.05);
    box-shadow: 0 20px 45px rgba(255, 255, 255, 0.12);
}

/* =====================================================
   MODAL DE IMAGEM
   ===================================================== */

.image-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
    z-index: 99999;
}

.image-modal.active {
    opacity: 1;
    visibility: visible;
}

.image-modal-content {
    max-width: 90vw;
    max-height: 90vh;
    transform: scale(0.7);
    transition: transform 0.4s ease;
}

.image-modal.active .image-modal-content {
    transform: scale(1);
}

.image-modal-img {
    max-width: 90vw;
    max-height: 90vh;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
    border-radius: 15px;
}

.image-modal-close {
    position: absolute;
    top: 20px;
    right: 30px;
    background: transparent;
    border: none;
    color: var(--branco);
    font-size: 45px;
    cursor: pointer;
    z-index: 100000;
    transition: transform 0.2s ease;
}

.image-modal-close:hover {
    transform: scale(1.2);
}

/* =====================================================
   SEÇÕES
   ===================================================== */

section {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    scroll-margin-top: 90px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 3rem;
    text-align: center;
    letter-spacing: -0.5px;
    position: relative;
    color: var(--branco);
}

.section-title span {
    display: inline-block;
    cursor: pointer;
    transition: transform 0.3s ease, text-shadow 0.3s ease;
}

.section-title span:hover {
    transform: translateY(-8px) scale(1.04);
    text-shadow: 0 6px 15px rgba(255, 255, 255, 0.15);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--branco);
}

/* =====================================================
   SOBRE
   ===================================================== */

.about {
    background: var(--cinza-escuro);
    color: var(--branco);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
    animation: fadeInUp 0.8s ease-out;
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--cinza-claro);
    line-height: 1.8;
}

.about-text .experience-title {
    color: #474747 !important;
    font-size: 1.1rem;
    font-weight: 700;
    margin-top: 2rem;
    margin-bottom: 0.8rem;
}

.skills-list {
    list-style: none;
    margin-top: 1rem;
}

.skills-list li {
    padding: 0.8rem 0 0.8rem 1.5rem;
    position: relative;
    color: var(--cinza-claro);
    transition: transform 0.3s ease, color 0.3s ease;
}

.skills-list li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--branco);
    font-weight: bold;
}

.skills-list li:hover {
    transform: translateX(8px);
    color: var(--branco);
}

.about-stats {
    display: grid;
    gap: 2rem;
}

.stat-box {
    padding: 2rem;
    background: var(--cinza-card);
    border: 1px solid var(--cinza-borda);
    transition: box-shadow 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.stat-box:hover {
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
    border-color: #666;
    transform: translateY(-5px);
}

.stat-box h3 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: var(--branco);
}

.stat-box p {
    color: var(--cinza-claro);
    font-size: 0.95rem;
}

/* =====================================================
   PROJETOS
   ===================================================== */

.projects {
    background: var(--preto);
    color: var(--branco);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.project-card {
    background: var(--cinza-card);
    border: 1px solid var(--cinza-borda);
    overflow: hidden;
    position: relative;
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}

.project-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
    border-color: #666;
}

.project-image {
    width: 100%;
    height: 200px;
    background: var(--preto);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.project-image img {
    width: auto;
    height: 140px;
    max-width: 80%;
    object-fit: contain;
    transition: transform 0.5s ease;
}

.project-card:hover .project-image img {
    transform: scale(1.08);
}

.project-name {
    font-size: 1.3rem;
    font-weight: 700;
    padding: 1.5rem 1.5rem 0;
    color: var(--branco);
}

.project-description {
    padding: 0.5rem 1.5rem;
    color: #777777;
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.6;
}

.project-link {
    display: inline-block;
    padding: 1rem 1.5rem;
    color: #777777;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease, transform 0.3s ease;
}

.project-link:hover {
    color: #ffffff;
    transform: translateX(5px);
}

/* =====================================================
   LOJA
   ===================================================== */

.store {
    background: var(--cinza-escuro);
    padding: 5rem 2rem;
}

.store-subtitle {
    text-align: center;
    color: var(--cinza-claro);
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.store-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.product-card {
    background: var(--cinza-card);
    border: 1px solid var(--cinza-borda);
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.product-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: #0a0a0a;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.06);
}

.product-content {
    padding: 1.5rem;
}

.product-category {
    font-size: 0.75rem;
    color: var(--cinza-medio);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.product-name {
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0.5rem 0;
    color: var(--branco);
}

.product-description {
    color: var(--cinza-claro);
    font-size: 0.9rem;
    margin-bottom: 1.2rem;
    line-height: 1.5;
}

.product-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product-price {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--branco);
}

.product-button {
    padding: 0.7rem 1.4rem;
    background: var(--branco);
    color: var(--preto);
    text-decoration: none;
    font-weight: 700;
    border-radius: 8px;
    transition: background 0.3s ease, transform 0.2s ease;
}

.product-button:hover {
    background: #ddd;
    transform: scale(1.03);
}

/* =====================================================
   TERCEIROS
   ===================================================== */

.third-party {
    background: var(--preto);
    padding: 5rem 2rem;
}

.third-party-subtitle {
    text-align: center;
    color: var(--cinza-claro);
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.third-party-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.third-party-card {
    background: var(--cinza-card);
    border: 1px solid var(--cinza-borda);
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.third-party-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.third-party-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: #0a0a0a;
}

.third-party-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.third-party-content {
    padding: 1.5rem;
}

.third-party-category {
    font-size: 0.75rem;
    color: var(--cinza-medio);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.third-party-name {
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0.5rem 0;
    color: var(--branco);
}

.third-party-description {
    color: var(--cinza-claro);
    font-size: 0.9rem;
    margin-bottom: 1.2rem;
    line-height: 1.5;
}

.third-party-button {
    display: inline-block;
    padding: 0.7rem 1.4rem;
    background: transparent;
    color: var(--branco);
    border: 1px solid var(--branco);
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s ease, color 0.3s ease;
}

.third-party-button:hover {
    background: var(--branco);
    color: var(--preto);
}

/* Mensagem do botão Conhecer */
.third-party-contact-message {
    display: none;
    margin: 40px auto 0;
    max-width: 520px;
    padding: 28px;
    background: #111;
    border: 1px solid #333;
    border-radius: 14px;
    text-align: center;
}

.third-party-contact-message.active {
    display: block !important;
}

.third-party-contact-message strong {
    display: block;
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: var(--branco);
}

.third-party-contact-message p {
    color: var(--cinza-claro);
    line-height: 1.6;
    margin-bottom: 20px;
}

.third-party-contact-button {
    padding: 0.7rem 1.8rem;
    background: var(--branco);
    color: var(--preto);
    border: none;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
}

/* =====================================================
   CONTATO
   ===================================================== */

.contact {
    background: #1a1a1a;
    color: var(--branco);
}

.contact-container {
    text-align: center;
}

.contact-content {
    margin-top: 3rem;
}

.contact-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: var(--cinza-claro);
}

.contact-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.contact-link {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    border: 2px solid var(--branco);
    color: #777777;
    background: var(--branco);
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s ease, color 0.3s ease, transform 0.2s ease;
}

.contact-link:hover {
    background: transparent;
    color: var(--branco);
    transform: translateY(-3px);
}

/* =====================================================
   FOOTER
   ===================================================== */

.footer {
    background: #0a0a0a;
    padding: 2.5rem 2rem;
    text-align: center;
    border-top: 1px solid #222;
}

.footer-content p {
    color: var(--cinza-medio);
    font-size: 0.9rem;
}

.footer-line {
    width: 60px;
    height: 2px;
    background: #333;
    margin: 1rem auto 0;
}

/* =====================================================
   PLAYER DE MÚSICA
   ===================================================== */

.music-player-wrapper {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 9000;
}

.music-toggle-panel {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    border: none;
    padding: 0;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease;
}

.music-toggle-panel img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.music-toggle-panel:hover {
    transform: scale(1.08);
}

.music-player {
    position: absolute;
    bottom: 70px;
    right: 0;
    width: 320px;
    background: #151515;
    border: 1px solid #333;
    border-radius: 18px;
    padding: 18px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    display: flex;
    gap: 15px;
    align-items: center;
}

.music-player.hidden {
    display: none !important;
}

.music-cover {
    width: 70px;
    height: 70px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
    cursor: pointer;
}

.music-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.music-info {
    flex: 1;
    min-width: 0;
}

.music-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.music-title small {
    display: block;
    font-size: 0.75rem;
    color: #888;
    font-weight: 400;
    margin-top: 2px;
}

.music-progress {
    margin: 10px 0 8px;
}

.music-time {
    display: flex;
    justify-content: space-between;
    font-size: 0.7rem;
    color: #777;
    margin-bottom: 4px;
}

.progress-control,
.volume-control {
    width: 100%;
    height: 4px;
    -webkit-appearance: none;
    appearance: none;
    background: #333;
    border-radius: 4px;
    outline: none;
}

.progress-control::-webkit-slider-thumb,
.volume-control::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 12px;
    height: 12px;
    background: #fff;
    border-radius: 50%;
    cursor: pointer;
}

.music-controls {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
}

.music-button {
    background: transparent;
    border: none;
    color: #fff;
    font-size: 1.1rem;
    cursor: pointer;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.2s ease;
}

.music-button:hover {
    background: rgba(255, 255, 255, 0.1);
}

.volume-control {
    flex: 1;
    min-width: 60px;
}

/* =====================================================
   MENSAGEM DE BOAS-VINDAS
   ===================================================== */

.welcome-message {
    position: fixed;
    bottom: 30px;
    left: 30px;
    max-width: 340px;
    background: #151515;
    border: 1px solid #333;
    border-radius: 18px;
    padding: 18px;
    display: flex;
    gap: 14px;
    align-items: flex-start;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    z-index: 9500;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.welcome-message.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.welcome-photo {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
}

.welcome-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.welcome-text {
    flex: 1;
    font-size: 0.9rem;
    line-height: 1.4;
}

.welcome-text strong {
    display: block;
    margin-bottom: 4px;
}

.welcome-choice {
    display: flex;
    gap: 8px;
    margin-top: 12px;
}

.welcome-choice-button {
    padding: 6px 16px;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.8rem;
    cursor: pointer;
}

.welcome-choice-button.yes {
    background: #fff;
    color: #000;
}

.welcome-choice-button.no {
    background: #333;
    color: #fff;
}

.welcome-close {
    position: absolute;
    top: 10px;
    right: 12px;
    background: transparent;
    border: none;
    color: #888;
    font-size: 1.4rem;
    cursor: pointer;
}

.welcome-store-link {
    display: inline-block;
    margin-top: 10px;
    color: #fff;
    font-weight: 700;
    text-decoration: none;
}

/* =====================================================
   RESPONSIVO
   ===================================================== */

@media (max-width: 900px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 120px;
    }

    .hero-title {
        font-size: 2.5rem;
        justify-content: center;
    }

    .hero-animation {
        height: 280px;
        margin-top: 2rem;
    }

    .hero-photo {
        width: 220px;
        height: 220px;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .nav-menu {
        gap: 1rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 600px) {
    .nav-container {
        padding: 1rem 1.2rem;
    }

    .logo {
        font-size: 1.2rem;
    }

    .nav-menu {
        gap: 0.8rem;
        font-size: 0.82rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.9rem;
    }

    .music-player {
        width: 280px;
        right: -10px;
    }

    .welcome-message {
        left: 15px;
        right: 15px;
        max-width: none;
        bottom: 20px;
    }
}

/* =====================================================
   UTILITÁRIOS
   ===================================================== */

.hidden {
    display: none !important;
}