/* ========================
   VARIÁVEIS GLOBAIS
   ======================== */
:root {
    --primary-color: #c40000;
    --dark-red: #5a0000;
    --black: #000000;
    --secondary-color: #111;
    --text-color: #ffffff;
    --accent-color: #1DB954;
}

/* ========================
   FONTES
   ======================== */
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@500;700&family=Inter:wght@400;600&display=swap');

/* ========================
   RESET E ESTILOS BASE
   ======================== */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Inter', sans-serif;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background-color: var(--secondary-color);
    color: var(--text-color);
    line-height: 1.6;
    font-size: 16px;
    overflow-x: hidden;
}

/* ========================
   HEADER
   ======================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: linear-gradient(135deg, #000000 0%, #5a0000 50%, #000000 100%);
    padding: 0.8rem 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 15px rgba(200, 0, 0, 0.6);
    border-bottom: 1px solid #5a0000;
    width: 100%;
}

/* Logo */
.logo-img {
    height: 60px;
    width: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--accent-color);
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.05);
}

.logo h1 {
    margin: 0;
    font-size: 1.4rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    white-space: nowrap;
}

/* ========================
   MENU HAMBÚRGUER (sempre visível)
   ======================== */
.menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
    width: 35px;
    height: 28px;
    position: relative;
    font-size: 1.5rem;
}

.hamburger {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 3px;
    background: white;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Transformação do hambúrguer em X */
.menu-toggle.active .hamburger span:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
}

.menu-toggle.active .hamburger span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active .hamburger span:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
}

/* ========================
   OVERLAY DO MENU
   ======================== */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.7);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ========================
   NAVBAR (menu lateral à direita)
   ======================== */
.navbar {
    position: fixed;
    top: 0;
    right: -300px; /* Escondido inicialmente */
    width: 300px;
    height: 100vh;
    background: linear-gradient(135deg, #000000 0%, #5a0000 100%);
    box-shadow: -5px 0 15px rgba(200, 0, 0, 0.5);
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
    padding-top: 80px;
    display: flex;
    flex-direction: column;
}

.navbar.active {
    right: 0;
}

.navbar ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 0;
    margin: 0;
}

.navbar li {
    margin: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-link {
    display: block;
    padding: 1rem 1.5rem;
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    transition: color 0.3s;
}

.nav-link:hover {
    color: var(--accent-color);
}

/* ========================
   MAIN CONTENT
   ======================== */
.main-content {
    padding-top: 80px; /* Ajuste conforme altura real do header */
    min-height: calc(100vh - 80px); /* Garante altura mínima */
    width: 100%;
    overflow-x: hidden;
    box-sizing: border-box;

}

/* ========================
   HERO SECTION
   ======================== */
.hero-section {
    background: linear-gradient(180deg, rgba(0,0,0,0.7) 0%, rgba(50,0,0,0.9) 100%),
                url('https://pub-80706f0668f94e6097183e94990026d2.r2.dev/NOVAS.jpg') center/cover no-repeat;
    color: white;
    text-align: center;
    padding: 5rem 1rem;
    position: relative;
}

.hero-content h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #00ff88;
    text-shadow: 0 0 8px #00ff88, 0 0 20px rgba(0,255,136,0.5);
    animation: fadeInDown 1.2s ease-out;
}

.hero-content p {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 700px;
    margin: 1.5rem auto;
    color: #f0f0f0;
    animation: fadeInUp 1.4s ease-out;
}

/* ========================
   BOTÕES HERO
   ======================== */
.hero-buttons {
    margin-top: 2rem;
    display: flex;
    gap: 1rem;
    justify-content: center;
    animation: fadeIn 1.6s ease-out;
}

.btn-hero {
    background: #00ff88;
    color: #000;
    padding: 0.8rem 1.5rem;
    border-radius: 30px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-hero:hover {
    background: #00cc6a;
    box-shadow: 0 0 15px #00ff88;
}

.btn-outline {
    background: transparent;
    border: 2px solid #00ff88;
    color: #00ff88;
}

.btn-outline:hover {
    background: rgba(0,255,136,0.1);
}

/* ========================
   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 fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
/* ========================
   RELATOS
   ======================== */
.relatos-section {
    padding: 5rem 1rem 3rem;
    text-align: center;
}

.relatos-section h2 {
    color: var(--accent-color);
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

/* PLAYER SPOTIFY */
.spotify-player {
    max-width: 800px;
    margin: 0 auto;
}

/* ========================
   EPISÓDIOS RECENTES
   ======================== */
.episodios-scroll {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    padding: 1rem;
    scroll-snap-type: x mandatory;
}

.episodio-card {
    flex: 0 0 300px;
    scroll-snap-align: start;
    background-color: #1c1c1c;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    padding: 1rem;
}

/* ========================
   CARDS (sobre, equipe etc.)
   ======================== */
.cards-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
    padding: 0 1rem;
}

.card {
    display: flex;
    background-color: #1a1a1a;
    border-radius: 12px;
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.3);
    padding: 1rem;
    align-items: center;
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
}

.card-img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 50%;
    margin-right: 1.5rem;
    border: 3px solid var(--accent-color);
}

.card-content h3 {
    margin-top: 0;
    color: var(--accent-color);
    min-height: 1.5em;
    display: flex;
    align-items: center;
}

.card-content p {
    margin: 0;
    color: #ccc;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* ========================
   HEADER BANNER
   ======================== */
.header-banner {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background-color: #000;
}

.header-banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* ========================
   FOOTER
   ======================== */
.footer {
    background: linear-gradient(135deg, #000000 0%, #5a0000 50%, #000000 100%);
    color: var(--text-color);
    padding: 1.5rem 0;
    border-top: 1px solid #5a0000;
    box-shadow: 0 -2px 15px rgba(200, 0, 0, 0.4);
    position: relative;
    width: 100%;
}

.footer-content {
    display: flex;
    justify-content: space-around;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
    gap: 1.5rem;
    padding: 0 1rem;
}

.footer-section {
    min-width: 200px;
    padding: 0.5rem;
}

.footer-bottom {
    text-align: center;
    padding: 1rem;
    font-size: 0.9rem;
    color: #ccc;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-color);
    text-decoration: none;
    padding: 0.3rem 0;
    transition: color 0.3s;
}

.footer-link:hover {
    color: var(--accent-color);
}

.footer-heading {
    margin-bottom: 0.8rem;
    font-size: 1.2rem;
    color: var(--accent-color);
}

.contact-info a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s;
}

.contact-info a:hover {
    color: var(--accent-color);
}

.dev-link {
    color: var(--accent-color);
    text-decoration: none;
    margin-left: 4px;
}

.dev-link:hover {
    text-decoration: underline;
}

/* ========================
   BOTÃO WHATSAPP FLUTUANTE
   ======================== */
.whatsapp-float {
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-decoration: none;
    z-index: 9999;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.5);
    transition: all 0.3s;
    overflow: hidden;
}

/* Efeito de hover */
.whatsapp-float:hover {
    background-color: #128C7E;
    transform: scale(1.05);
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.7);
}

/* Estilo para desktop */
@media (min-width: 769px) {
    .whatsapp-float {
        width: auto;
        height: 50px;
        padding: 0 75px;
        gap: 10px;
    }

    .whatsapp-text {
        display: inline;
        font-size: 1rem;
        font-weight: 500;
        white-space: nowrap;
    }

    .whatsapp-icon {
        font-size: 1.5rem;
    }
}

/* Estilo para mobile */
@media (max-width: 768px) {
    .whatsapp-float {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        padding: 0 15px;
        bottom: 80px;


    }

    .whatsapp-text {
        display: none;
    }

    .whatsapp-icon {
        font-size: 2rem;
    }
}

/* Ícone - você pode usar um ícone de fonte ou imagem */
.whatsapp-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ========================
   RESPONSIVO
   ======================== */
@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    /* Ajustes cards e navbar lateral */
    .cards-container {
        gap: 1.5rem;
    }

    @media (max-width: 768px) {
        .main-content {
            padding-top: 100px; /* Header maior no mobile */
            min-height: calc(100vh - 100px);
        }
    }

    .card {
        flex-direction: column;
        align-items: center;
        text-align: center;
        max-width: 90%;
        margin: 0 auto;
        padding: 1.5rem;
    }

    .card-img {
        width: 150px;
        height: 150px;
        margin: 0 0 1rem 0;
    }

    .card-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .card-content h3 {
        text-align: center;
        font-size: 1.2rem;
        margin-bottom: 0.5rem;
    }

    .card-content p {
        font-size: 0.9rem;
    }



@media (max-width: 480px) {
    .logo h1 {
        font-size: 1.2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-section {
        width: 100%;
    }

    .card-img {
        width: 130px;
        height: 130px;
    }

    .card {
        max-width: 95%;
        padding: 1.2rem;
    }
}
