@import url('https://fonts.googleapis.com/css2?family=Comic+Neue:ital,wght@0,300;0,400;0,700;1,300;1,400;1,700&family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Outfit:wght@100..900&family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&family=Space+Grotesk:wght@300..700&family=Urbanist:ital,wght@0,100..900;1,100..900&display=swap&family=Urbanist:ital,wght@0,100..900;1,100..900&family=Wix+Madefor+Text:ital,wght@0,400..800;1,400..800&family=Albert+Sans:ital,wght@0,100..900;1,100..900&family=Instrument+Sans:ital,wght@0,400..700;1,400..700&family=Google+Sans:ital,opsz,wght@0,17..18,400..700;1,17..18,400..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Host+Grotesk:ital,wght@0,300..800;1,300..800&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Quicksand:wght@300..700&family=Sour+Gummy:ital,wght@0,100..900;1,100..900&family=Space+Grotesk:wght@300..700&family=Varela+Round&display=swap');
/* REMIX ICONS */
@import url('https://cdn.jsdelivr.net/npm/remixicon@4.9.1/fonts/remixicon.css');
/* PHOSPHOR ICONS */
@import url('https://cdn.jsdelivr.net/npm/@phosphor-icons/web@2.1.1/src/regular/style.css');
@import url('https://cdn.jsdelivr.net/npm/@phosphor-icons/web@2.1.1/src/fill/style.css');
@import url('https://cdn.jsdelivr.net/npm/@phosphor-icons/web@2.1.1/src/thin/style.css');
@import url('https://cdn.jsdelivr.net/npm/@phosphor-icons/web@2.1.1/src/light/style.css');
@import url('https://cdn.jsdelivr.net/npm/@phosphor-icons/web@2.1.1/src/bold/style.css');
@import url('https://cdn.jsdelivr.net/npm/@phosphor-icons/web@2.1.1/src/duotone/style.css');

/* CORPO DO SITE */
html {
    scroll-behavior: smooth;
}

* {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    font-family: 'Google Sans', sans-serif;
}

:root {
    --ml-yellow: #424242; /* #ff4400 */
    --ml-bg: #161616;
    --ml-text: #ffffff;
    --ml-light-text: #666666;
    --ml-blue: #3483fa;
    --ml-green: #00a650;
    --border-radius: 4px;
}

body {
    margin: 0;
    background-color: var(--ml-bg);
    color: var(--ml-text);
}

.flex-div {
    display: flex;
    align-items: center;
}

nav {
    padding: 0px 2%;
    justify-content: space-between;
    /*box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);*/
    background: #33333331;
    position: sticky;
    top: 0;
    z-index: 1000000;
    backdrop-filter: blur(55px);
    -webkit-backdrop-filter: blur(75px);
}

.nav-right img {
    width: 25px;
    margin-right: 25px;
}

.nav-right .user-icon {
    width: 35px;
    margin-right: 0px;
    border-radius: 50%;
}

.nav-left .menu-icon {
    font-size: 28px;
    margin-right: 20px;
    cursor: pointer;
}

.nav-left .menu-icon:hover {
    color: #ffbb55;
}

.nav-left .logo {
    width: 150px;
}

.nav-middle .mic-icon {
    width: 16px;
}

.nav-middle .search-box {
    border: 1px solid #ccc;
    margin-right: 15px;
    padding: 8px 12px;
    /* border-radius: 25px; */
}

.nav-middle .search-box input {
    width: 400px;
    border: 0;
    outline: 0;
    background: transparent;
}

.nav-middle .search-box img {
    width: 15px;
}

/* Header */
.header {
    background-color: var(--ml-yellow);
    padding: 10px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 1px 1px rgba(0,0,0,.1);
}

/* Cards (Produtos, Painel do Dashboard) */
.card {
    background-color: #343434;
    border-radius: var(--border-radius);
    box-shadow: 0 1px 2px 0 rgba(0,0,0,.12);
    padding: 24px;
    margin-bottom: 16px;
    transition: box-shadow 0.2s ease-in-out;
}

.card:hover {
    box-shadow: 0 2px 4px 0 rgba(0,0,0,.24);
}

/* Botões */
.btn-primary {
    background-color: #ff4400;
    color: white;
    border: none;
    border-radius: var(--border-radius);
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s;
}

.btn-primary:hover {
    background-color: #c13300;
}

.pHint {
    color: #ffffff77;
    font-size: 14px;
}

.pHint.marginmenos {
    margin-top: -8px;
}

.list-container_h {
    display: grid;
    grid-gap: 11px;
    padding: 3px;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    grid-auto-flow: row;
    grid-auto-columns: minmax(160px, 1fr);
    overflow-x: auto;
    overflow-y: hidden;
    cursor: default;
    user-select: none;
    /* Impede a seleção de texto */
    scroll-snap-type: x mandatory;
}

.list-container {
    display: grid;
    grid-gap: 8px;
    padding: 1px;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    grid-auto-flow: dense;
    grid-auto-columns: minmax(160px, 1fr);
    overflow-x: hidden;
    overflow-y: hidden;
    /*cursor: grab;*/
    user-select: none;
    /* Impede a seleção de texto */
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
}

/*.list-container:active {
    cursor: grabbing;
}*/

.list-container::-webkit-scrollbar {
    width: 2px;
    height: 4px;
}

.list-container::-webkit-scrollbar-thumb {
    background-color: #ffffff0e;
}

.list-container::-webkit-scrollbar-thumb:hover {
    background-color: #ffffff39;
}

/* ---- Navegação das list-containers (botões abaixo) ---- */
.list-container {
    position: relative;
}

.lc-nav {
    display: flex;
    gap: 10px;
    justify-content: flex-start;
    /* alinhar à direita; troque p/ center se preferir */
    align-items: center;
    margin: 10px 4px 2px;
}

.lc-nav .nav-btn {
    width: 45px;
    height: 45px;
    display: grid;
    place-items: center;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, .08);
    color: #fff;
    cursor: pointer;
    backdrop-filter: blur(6px);
}

.lc-nav .nav-btn:disabled {
    opacity: .35;
    cursor: default;
}

.lc-nav i {
    font-size: 28px;
    line-height: 1;
}

/* opcional: ocultar a barrinha do scrollbar dessas listas */
.list-container::-webkit-scrollbar {
    height: 4px;
}

.list-container::-webkit-scrollbar-thumb {
    background-color: #ffffff14;
}

.list-container-a {
    display: grid;
    grid-gap: 16px;
    padding: 5px;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    grid-auto-flow: column;
    grid-auto-columns: minmax(160px, 1fr);
}

.vid-list {
    background-color: #212121;
    padding: 6px 6px;
    border-radius: 10px;
    margin-bottom: 5px;
    transition: 0.3s;
}

.vid-list .thumbnail {
    width: 100%;
    border-radius: 12px;
    cursor: default;
}

.vid-list .flex-div {
    align-items: flex-start;
    margin-top: 7px;
}

.vid-list .flex-div img {
    width: 35px;
    margin-right: 10px;
    border-radius: 50%;
}

.vid-info a {
    color: rgb(235, 235, 235);
    font-weight: 600;
    display: block;
    margin: bottom 5px;
    margin-top: 3px;
    font-size: 14px;
    transition: 0.3s;
    cursor: default;
}

.list-container-a .vid-info a {
    color: rgb(235, 235, 235);
    font-weight: 600;
    display: block;
    margin: bottom 6px;
    margin-top: 2px;
}

.vid-info {
    color: #727272;
    font-size: 13px;
}

.vid-list-at .vid-info {
    color: #727272;
    font-size: 13px;
}

.vid-list-at .descat {
    color: #727272;
    font-size: 13px;
}

.vid-list-at .vid-info a {
    color: rgb(235, 235, 235);
    font-weight: 600;
    display: block;
    margin: bottom 5px;
    margin-top: 3px;
    font-size: 17.5px;
    transition: 0.3s;
    cursor: pointer;
}

.vid-list-at .vid-info a:hover {
    color: rgb(158, 158, 158);
}

.vid-list-at .thumbnail {
    width: 100%;
    border-radius: 100px;
}

.vid-list-at .thumbnail:hover {
    filter: brightness(80%);
    border: #ffffff solid 2px;
}

.vid-list-at .flex-div {
    align-items: flex-start;
    margin-top: 7px;
}

.vid-list-at .flex-div img {
    width: 35px;
    margin-right: 10px;
    border-radius: 50%;
}

.vid-info-at-name {
    font-size: 21px;
    margin-top: -5px;
}

.thumbnail-newsong {
    border: 2px #cc5c00 solid;
    padding: 4px;
}

.thumbnail-nonsong {
    border: 2px rgb(49, 49, 49) solid;
    padding: 4px;
}

.product-price {
    color: #0291e4;
    font-size: 18px;
}

/* ============================= */
/* RESPONSIVIDADE GLOBAL */
/* ============================= */

/* Tablets */
@media (max-width: 1024px) {
    .dashboard-container {
        padding: 0 16px;
    }

    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }

    .cart-layout,
    .checkout-layout,
    .grid-layout {
        grid-template-columns: 1fr;
    }

}

@media (max-width: 1265px) {
    .vid-des {
        padding-left: 5px;
    }

    .play-video .play-video-info a {
        margin-left: 0;
        margin-right: 15px;
        margin-top: 15px;
    }
}


/* Celulares grandes */
@media (max-width: 768px) {
    h1 {
        font-size: 22px;
    }

    h2 {
        font-size: 20px;
    }

    .card {
        padding: 18px;
    }

    /* Header */
    .header {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .header-content {
        flex-wrap: wrap;
        gap: 10px;
    }
}


/* Celulares pequenos */
@media (max-width: 480px) {
    .card {
        padding: 14px;
    }

    .btn-primary,
    .btn-outline {
        width: 100%;
        padding: 12px;
        font-size: 14px;
    }

    /* Produtos */
    .products-grid {
        grid-template-columns: 1fr;
    }

    .product-img {
        height: 180px;
    }

    .product-price {
        font-size: 20px;
    }

}