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

html {
    font-size: 16px;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    background-color: #f4f4f4;
    color: #333;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
    width: 100%;
}

/* Header */
header {
    background-color: #fff;
    padding: 40px 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.logo {
    max-width: 150px;
    width: 100%;
    height: auto;
    margin-bottom: 20px;
}

h1 {
    color: #e63946;
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.subtitle {
    color: #666;
    font-weight: bold;
    font-size: 1rem;
}

/* Player Section */
.player-section {
    padding: 50px 20px;
    background-color: #fdfdfd;
    flex-grow: 1;
}

h2 {
    margin-bottom: 30px;
    color: #333;
    font-size: 2rem;
}

.player-container {
    background: #fff;
    padding: 30px 20px;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    display: inline-block;
    margin-bottom: 20px;
    width: 100%;
    max-width: 400px;
}

audio {
    width: 100%;
    max-width: 350px;
    height: 50px;
}

.status {
    font-size: 0.95rem;
    color: #2a9d8f;
    font-weight: bold;
}

/* About Section */
.about {
    padding: 40px 20px;
    background-color: #fff;
}

h3 {
    margin-bottom: 15px;
    color: #e63946;
    font-size: 1.5rem;
}

.about p {
    max-width: 600px;
    margin: 0 auto;
    color: #555;
    font-size: 1rem;
}

/* Social Media Section */
.social-media {
    padding: 40px 20px;
    background-color: #f9f9f9;
}

.social-media h3 {
    margin-bottom: 25px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 15px 25px;
    border-radius: 10px;
}

.social-link i {
    font-size: 2.5rem;
    transition: all 0.3s ease;
}

.social-link span {
    font-weight: bold;
    font-size: 1rem;
}

.social-link.instagram {
    color: #E4405F;
}

.social-link.instagram:hover {
    background-color: rgba(228, 64, 95, 0.1);
    transform: translateY(-5px);
}

.social-link.instagram:hover i {
    font-size: 2.8rem;
}

.social-link.youtube {
    color: #FF0000;
}

.social-link.youtube:hover {
    background-color: rgba(255, 0, 0, 0.1);
    transform: translateY(-5px);
}

.social-link.youtube:hover i {
    font-size: 2.8rem;
}

/* Creditos Animation Section */
.credits-animation {
    background-color: #f4f4f4;
    padding: 20px 0 10px 0;
    text-align: center;
}

.credits-container {
    display: inline-flex;
    gap: 10px;
    font-size: 1.2rem;
    font-weight: bold;
    color: #333;
}

.word {
    opacity: 0;
    animation: fadeInOut 4s infinite;
}

.word:nth-child(1) { animation-delay: 0s; }
.word:nth-child(2) { animation-delay: 1s; }
.word:nth-child(3) { animation-delay: 2s; }
.word:nth-child(4) { animation-delay: 3s; }

@keyframes fadeInOut {
    0%, 20%, 100% { opacity: 0; transform: translateY(5px); }
    25%, 75% { opacity: 1; transform: translateY(0); }
}

/* Membros Marquee Section */
.members-marquee {
    background-color: #000;
    color: #fff;
    padding: 20px 0;
    overflow: hidden;
    position: relative;
}

.marquee-wrapper {
    overflow: hidden;
    width: 100%;
}

.marquee-content {
    display: flex;
    gap: 40px;
    animation: scroll-left 60s linear infinite;
    white-space: nowrap;
    padding: 0 20px;
}

.member {
    font-size: 1.1rem;
    font-weight: bold;
    flex-shrink: 0;
    padding: 10px 0;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Footer */
footer {
    background-color: #333;
    color: #fff;
    padding: 20px;
    margin-top: auto;
    text-align: center;
}

footer p {
    font-size: 0.9rem;
}

/* Responsividade - Tablets (768px e abaixo) */
@media (max-width: 768px) {
    html {
        font-size: 15px;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.7rem;
    }

    h3 {
        font-size: 1.3rem;
    }

    .logo {
        max-width: 120px;
    }

    header {
        padding: 30px 20px;
    }

    .player-section {
        padding: 40px 20px;
    }

    .player-container {
        padding: 25px 15px;
        border-radius: 40px;
    }

    audio {
        max-width: 300px;
        height: 45px;
    }

    .social-links {
        gap: 30px;
    }

    .social-link i {
        font-size: 2rem;
    }

    .marquee-content {
        gap: 30px;
        animation: scroll-left 50s linear infinite;
    }

    .member {
        font-size: 1rem;
    }
}

/* Responsividade - Celulares (480px e abaixo) */
@media (max-width: 480px) {
    html {
        font-size: 14px;
    }

    h1 {
        font-size: 1.5rem;
    }

    h2 {
        font-size: 1.3rem;
    }

    h3 {
        font-size: 1.1rem;
    }

    .subtitle {
        font-size: 0.9rem;
    }

    .logo {
        max-width: 100px;
        margin-bottom: 15px;
    }

    header {
        padding: 25px 15px;
    }

    .player-section {
        padding: 30px 15px;
    }

    .about {
        padding: 30px 15px;
    }

    .player-container {
        padding: 20px 15px;
        border-radius: 30px;
        max-width: 100%;
    }

    audio {
        max-width: 100%;
        height: 40px;
    }

    .status {
        font-size: 0.85rem;
    }

    .about p {
        font-size: 0.95rem;
    }

    .social-media {
        padding: 30px 15px;
    }

    .social-links {
        gap: 20px;
        flex-direction: column;
    }

    .social-link {
        width: 100%;
        max-width: 200px;
        margin: 0 auto;
    }

    .social-link i {
        font-size: 1.8rem;
    }

    .social-link span {
        font-size: 0.9rem;
    }

    .members-marquee {
        padding: 15px 0;
    }

    .marquee-content {
        gap: 20px;
        animation: scroll-left 40s linear infinite;
    }

    .member {
        font-size: 0.9rem;
    }

    footer p {
        font-size: 0.8rem;
    }
}

/* Celulares muito pequenos (360px e abaixo) */
@media (max-width: 360px) {
    h1 {
        font-size: 1.3rem;
    }

    h2 {
        font-size: 1.1rem;
    }

    .logo {
        max-width: 80px;
    }

    .player-container {
        padding: 15px 10px;
    }

    audio {
        height: 35px;
    }

    .social-link i {
        font-size: 1.5rem;
    }

    .marquee-content {
        gap: 15px;
        animation: scroll-left 35s linear infinite;
    }

    .member {
        font-size: 0.8rem;
    }
}
