@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=Rock+Salt&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background: #222;
    color: #ffffff;
    height: 100vh;
}

h1 {
    text-align: center;
    font-family: 'Rock Salt', cursive;
    font-weight: normal;
}

.masked-text {
    font-size: 6rem;
    color: transparent;
    background-image: url('https://images.unsplash.com/photo-1747253590504-3a17cd5a4f9c?q=80&w=1974&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D');
    background-size: 80%;
    /* Enlarged for smooth animation */
    background-position: 0 50%;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: animate-background 5s infinite alternate linear;
}

@keyframes animate-background {
    0% {
        background-position: 0 50%;
    }

    100% {
        background-position: 100% 50%;
    }
}

footer {
    background: transparent;
    color: #fff;
    padding: 30px 0 10px 0;
    text-align: center;
    margin-top: 40px;
}

.footer-content {
    max-width: 900px;
    margin: 0 auto;
}

.footer-content p {
    margin-bottom: 15px;
    font-size: 1.1rem;
    letter-spacing: 1px;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 24px;
}

.footer-social a img {
    width: 32px;
    height: 32px;
    filter: brightness(0) invert(1);
    transition: transform 0.2s, filter 0.2s;
}

.footer-social a:hover img {
    transform: scale(1.15);
}

.btn-sc {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 30px auto 20px auto;
    background: linear-gradient(90deg, #ff7700 0%, #ff9900 100%);
    color: #fff;
    border: none;
    border-radius: 25px;
    padding: 12px 32px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 2px 12px 0 rgba(255, 119, 0, 0.15);
    transition: background 0.3s, transform 0.2s, box-shadow 0.2s;
}

.btn-sc:hover {
    background: linear-gradient(90deg, #ff9900 0%, #ff7700 100%);
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 4px 18px 0 rgba(255, 153, 0, 0.18);
}

.btn-yt {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 30px auto 20px auto;
    background: linear-gradient(90deg, #ff0000 0%, #c4302b 100%);
    color: #fff;
    border: none;
    border-radius: 25px;
    padding: 12px 32px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 2px 12px 0 rgba(255, 0, 0, 0.15);
    transition: background 0.3s, transform 0.2s, box-shadow 0.2s;
}

.btn-yt:hover {
    background: linear-gradient(90deg, #c4302b 0%, #ff0000 100%);
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 4px 18px 0 rgba(196, 48, 43, 0.18);
}

.btn-icon {
    width: 28px;
    height: 28px;
    filter: brightness(0) invert(1);
}

.playlist-wrapper {
    max-width: 700px;
    margin: 0 auto 30px auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.btn-fechar-playlist {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 0 0 20px 0;
    position: static;
    color: #fff;
    border: none;
    border-radius: 18px;
    padding: 8px 28px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 2px 8px 0 rgba(58, 28, 113, 0.10);
    transition: background 0.2s, transform 0.2s;
    z-index: 1;
}

.btn-fechar-sc {
    background: linear-gradient(90deg, #ff7700 0%, #ff9900 100%);
}

.btn-fechar-sc:hover {
    background: linear-gradient(90deg, #ff9900 0%, #ff7700 100%);
    transform: translateY(-2px) scale(1.05);
}

.btn-fechar-yt {
    background: linear-gradient(90deg, #ff0000 0%, #c4302b 100%);
}

.btn-fechar-yt:hover {
    background: linear-gradient(90deg, #c4302b 0%, #ff0000 100%);
    transform: translateY(-2px) scale(1.05);
}

.btn-icon-fechar {
    width: 22px;
    height: 22px;
    filter: brightness(0) invert(1);
}

.responsive-iframe {
    position: relative;
    width: 100%;
    max-width: 700px;
    margin: 0 auto 30px auto;
    padding-bottom: 56.25%;
    /* Proporção 16:9 */
    height: 0;
    overflow: hidden;
    border-radius: 18px;
    box-shadow: 0 2px 18px 0 rgba(58, 28, 113, 0.12);
}

.responsive-iframe iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.sobre {
    max-width: 700px;
    margin: 10px auto 20px auto;
    padding: 32px 24px;
    color: #fff;
    text-align: center;
}

.sobre h2 {
    font-family: 'Rock Salt', cursive;
    font-size: 2rem;
    margin-bottom: 18px;
    color: #ffffff;
    font-weight: normal;
}

.sobre p {
    font-size: 1.15rem;
    line-height: 1.6;
    letter-spacing: 1px;
}

.sobre, main, footer {
    animation: fadeInUp 1s ease;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Estilos para o seletor de idioma */
.language-switcher {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 15px 0;
}

.lang-btn {
    background: transparent;
    border: none;
    cursor: pointer;
    transition: transform 0.2s;
}

.lang-btn img {
    width: 28px;
    height: 20px;
    border-radius: 3px;
}

.lang-btn:hover {
    transform: scale(1.15);
}

@media (max-width: 600px) {
    .masked-text {
        font-size: 2.5rem;
    }

    .sobre {
        padding: 18px 8px;
        font-size: 1rem;
    }

    main {
        padding: 0 6px;
    }

    .btn-sc, .btn-yt {
        padding: 10px 12px;
        font-size: 1rem;
    }
}

@media (max-width: 600px) {
    .responsive-iframe {
        max-width: 100%;
        padding-bottom: 70%;
        /* Mais alto para mobile */
        border-radius: 10px;
    }

    .footer-content p {
        font-size: 0.95rem;
    }

    .footer-social a img {
        width: 26px;
        height: 26px;
    }

    .playlist-wrapper {
        max-width: 100%;
    }

    .btn-fechar-playlist {
        padding: 8px 18px;
        font-size: 0.95rem;
        margin-bottom: 10px;
        gap: 6px;
    }

    .btn-icon-fechar {
        width: 18px;
        height: 18px;
    }

    .btn-sc, .btn-yt {
        padding: 8px 16px;
        font-size: 1rem;
        gap: 7px;
    }

    .btn-icon {
        width: 22px;
        height: 22px;
    }
}

/* Responsividade para tablets e celulares */
@media (max-width: 900px) {
    .masked-text {
        font-size: 4rem;
        background-size: 120%;
    }
}

@media (max-width: 600px) {
    body {
        font-size: 1rem;
    }

    .masked-text {
        font-size: 2.5rem;
        padding: 20px 0;
        background-size: 200%;
    }

    h1 {
        margin-top: 10px;
    }

    header {
        padding: 0 5px;
    }
}