:root {
    --bg: #12141D;
    --header-bar: #DA9C21;
    --header-dark: #202020;
    --radius: 10px;
}

html {
    scrollbar-gutter: stable;

    overflow-y: scroll;
}

body {
    overflow-x: hidden;
}

/* RESET / BASE */
* {
    box-sizing: border-box;
}

a {
    text-decoration: none;
    color: inherit;
}

html, body {
    margin: 0;
    padding: 0;
    height: 100%;
}

#site-loader {
    position: fixed;
    inset: 0;
    background: #353535;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999999 !important;
    opacity: 1;
    transition: opacity .4s ease;
}

body.is-loaded #site-loader {
    opacity: 0;
    pointer-events: none;
}

body {
    display: flex;
    flex-direction: column;
    font-family: 'Poppins', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    background: #fafafa;
    line-height: 1.6;
}

.container {
    width: 100%;
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 20px;
}

/* HEADER */
.site-header {
    position: sticky;
    top: 0;
    z-index: 40;
}

/* Barra principal */
.main-bar {
    background: linear-gradient(90deg, #353535, #606060);
}

.header-inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    padding: 20px 0;
    column-gap: 40px;
}

.left-group {
    display: contents;
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.brand-logo {
    width: 150px;
    display: flex;
    align-items: center;
    transition: transform .25s ease;
}

.logo {
    width: 100%;
    height: auto;
}

.brand-logo:hover {
    transform: scale(1.06);
}

/* MENU */
.nav {
    display: none;
    gap: 24px;
    font-size: 15px;
}

.nav-link {
    color: #ffffff;
    padding: 6px 10px;
    border-radius: 5px;
    transition: background .2s ease, color .2s ease, transform .2s ease;
    font-weight: 500;
    transform: translateY(2px);
}

.nav-link:hover {
    color: #E9B452;
    transform: scale(1.05);
}

.nav-link.is-active {
    font-weight: 600;
}

/* AÇÕES HEADER */
.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn-apoie {
    background: #E9B452;
    color: #ffffff;
    padding: 7px 18px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 500;
    border: none;
    transition: .2s ease;
    display: inline-flex;
    align-items: center;
}

.btn-apoie:hover {
    background: #E9B452;
    transform: translateY(-2px);
    color: #353535;
}

.nav-toggle {
    display: inline-flex;
    flex-direction: column;
    gap: 3px;
    background: #E9B452;
    border: 0;
    padding: 6px;
}

.nav-toggle span {
    width: 22px;
    height: 2px;
    background: #ffffff;
}

/* HEADER ENCOLHENDO NO SCROLL */
.site-header.is-scrolled .main-bar {
    padding: 4px 0;
}

.site-header.is-scrolled .brand-logo {
    width: 110px;
    height: auto;
}

.site-header.is-scrolled .header-inner {
    padding: 6px 0;
}

/* LAYOUT GERAL */
.main {
    flex: 1;
}

.section-title {
    position: relative;
    font-size: 26px;
    font-weight: 700;
    margin: 30px 0 12px 0;
    color: #191919;
}

.section-title::after {
    content: "";
    display: block;
    width: 70px;
    height: 3px;
    border-radius: 999px;
    margin-top: 6px;
    background: linear-gradient(to right, #353535, #E9B452);
}

.section-sub {
    font-size: 16px;
    color: white;
    font-weight: 500;
    margin-bottom: 20px;
}

.section-sub-2 {
    font-size: 16px;
    color: #353535;
    font-weight: 500;
    margin-bottom: 20px;
}

/* BOTÃO PRINCIPAL */
.btn-primary {
    background: #E9B452;
    color: white;
    padding: 10px 22px;
    border-radius: 5px;
    font-size: 15px;
    font-weight: 600;
    transition: background .2s ease, transform .2s ease;
}

.btn-primary:hover {
    background: #DA9C21;
    color: #353535;
    transform: translateY(-2px);
}

.btn-ep {
    color: white;
    padding: 10px 22px;
    font-size: 15px;
    font-weight: 600;
}

.btn-ep:hover {
    color: #E9B452;
}

/* HERO DA HOME */
.container-hero{
    width: 100%;
    height: 100%;
    padding: 70px 0 70px 0;
    background:
            linear-gradient(rgba(53, 53, 53, 0.8), rgba(53, 53, 53, 0.8)),
            url('../img/bg-img.png');

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-layout{
    width: 100%;
    height: 100%;
    inset: 0;
    gap: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.hero-title {
    font-size: 30px;
    font-weight: 700;
    color: white;
    margin: 0 0 16px;
    line-height: 1.2;
}

.hero-sub {
    font-size: 16px;
    margin: 0;
}

.hero-actions {
    display: flex;
    gap: 14px;
    margin-top: 20px;
    justify-content: space-between;
    align-items: center;
}

.hero-media {
    width: 50%;
    display: grid;
    flex-direction: column;
    gap: 12px;
}

.hero-card {
    background-color: #2c8e02;
    color: #fff;
    border-radius: 10px;
    padding: 18px 20px;
    font-size: 14px;
    max-width: 500px;
    min-height: 190px;
    cursor: pointer;
    transition: transform .25s ease;
    text-align: justify;
}

.hero-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 999px;
    background: #202020;
    margin-bottom: 6px;
    color: white;
}

.hero-card:hover {
    transform: scale(1.05);
}

/* Ajuste fino dos cards de apoiadores (HOME) */
.supporters-grid {
    gap: 16px;              /* menos espaço entre os cards */
    margin-top: 18px;
}

.supporter-card {
    padding: 20px 20px;     /* menos espaço interno do card */
}

/* Deixa texto + logo mais próximos */
.supporter-content {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
    column-gap: 15px;
    row-gap: 8px;
    align-items: center;
}

.supporter-text {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.supporter-text h3 {
    margin: 0;
    font-size: 18px;
}

.supporter-text p {
    margin: 0;
    font-size: 13px;
    line-height: 1.3;
}

.section-hero{
    width: 100%;
    height: auto;
    overflow: hidden;
    position: relative;
}

/* GRID DA PÁGINA APOIADORES */

.card-inner a {
    display: block;
    width: 100%;
    height: 100%;
}

.apoio{
    width: 100%;
    height: auto;
    max-height: 100%;
    border-radius: 10px;
    object-fit: cover;
    cursor: pointer;
    display: block;
}

.grid-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    margin-top: 30px;
    margin-bottom: 30px;
}

.card-supporter {
    width: 100%;
    height: 150px;
    border-radius: 10px;
    transition: transform .25s ease;
}

.card-supporter:hover {
    transform: scale(1.05);
}

.card-inner {
    background: #353535;
    border-radius: inherit;
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-weight: 600;
    font-size: 16px;
}

/* SOBRE */
.about-highlight {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: flex-start;
}

.about-highlight-text p {
    margin: 0 0 10px 0;
    font-size: 15px;
    color: #353535;
}

.about-highlight-text a{
    color: #353535;
}

.about-highlight-box {
    background: #353535;
    color: #fff;
    border-radius: 10px;
    padding: 10px;
    font-size: 14px;
    margin-top: 30px;
    list-style-position: inside;
}

.about-highlight-box h3 {
    text-align: center;
}

.hero-link{
    color: #fff;
}

.hero-link:hover {
    color: #E9B452;
}

/* EQUIPE */

.team-card {
    padding: 20px 20px;
    gap: 16px;
}

.team-info {
    width: 70%;
    display: flex;
    flex-direction: column;
    text-align: justify;
    gap: 10px;
}

.team-name {
    margin: 0;
    line-height: 1.3;
}

.team-role {
    margin: 0;
    line-height: 1.3;
}

.team-bio {
    margin: 0;
    line-height: 1.4;     /* texto um pouco mais compacto */
}

/* ==== CARD DA EQUIPE — VERSÃO PREMIUM ==== */
.team-card {
    background: #353535;
    color: #ffffff;
    border-radius: 10px;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 14px;
    position: relative;
    overflow: hidden;
    transition: transform .25s ease, box-shadow .25s ease;
}

/* Glow suave na borda ao passar o mouse */
.team-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(120deg, #E9B45233, #4B2A6333, transparent);
    opacity: 0;
    transition: opacity .4s ease;
}

.team-card:hover::before {
    opacity: 1;
}

.team-card:hover {
    transform: translateY(-4px);
}

/* FOTO */
.team-photo {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 2px solid rgba(255,255,255,0.25);
    transition: transform .3s ease;
}

.team-card:hover .team-photo {
    transform: scale(1.06);
}

/* TEXTOS */
.team-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.team-name {
    font-weight: 600;
    font-size: 17px;
    margin: 0;
}

.team-role {
    font-size: 13px;
    opacity: 0.85;
    margin: 0;
}

.team-bio {
    font-size: 13px;
    opacity: 0.9;
    margin: 0;
    line-height: 1.45;
}

/* Linha suave separando nome -> bio */
.team-name + .team-role {
    margin-top: -2px;
}
.team-role + .team-bio {
    margin-top: 4px;
}

/* EPISÓDIO DETALHE */

.episode-player-box {
    background: #353535;
    color: #ffffff;
    border-radius: 14px;
    padding: 18px 22px;
    margin-top: 20px;
    position: relative;
    overflow: hidden;
    transition: transform .25s ease, box-shadow .25s ease;
}

.episode-player-box:hover::before {
    opacity: 1;
}

.episode-player-box:hover {
    transform: translateY(-3px);
}

/* Texto */
.episode-player-box span {
    font-weight: 600;
    font-size: 15px;
}

/* Botões */
.episode-content {
color: #353535;
}

.episode-links a {
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    background: #E9B452;
    color: #353535;
    transition: background .25s ease, transform .25s ease;
}

.episode-links a:hover {
    background: #DA9C21;
    color: #353535;
    transform: translateY(-2px);
}

.episode-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.3fr);
    gap: 32px;
    align-items: flex-start;
    color: white;
    margin-top: 40px;
    margin-bottom: 40px;
}

.episode-cover img {
    width: 100%;
    border-radius: 10px;
    display: block;
    cursor: pointer;
}

.episode-meta {
    font-size: 14px;
    margin: 4px 0 14px 0;
}

.episode-player-box {
    margin-top: 18px;
    background: #353535;
    color: #fff;
    border-radius: 12px;
    padding: 14px 16px;
}

.episode-links {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

/* === FORMULÁRIO PREMIUM – PÁGINA APOIE === */

.contact-form {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-top: 30px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 15px;
    font-weight: 600;
    color: #353535;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    font-family: 'Poppins', sans-serif;
    padding: 12px 14px;
    border-radius: 8px;
    border: 1px solid #c8c8c8;
    background: #ffffff;
    font-size: 15px;
    color: #202020;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #DA9C21;
    outline: none;
}

/* Altura do textarea */
.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

/* Botão */
.btn-send {
    background: #E9B452;
    color: #353535;
    padding: 12px 20px;
    border-radius: 8px;
    border: none;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: background .25s ease, transform .25s ease;
    width: fit-content;
    font-family: 'Poppins', sans-serif;
}

.btn-send:hover {
    background: #DA9C21;
    color: #12141D;
    transform: translateY(-2px);
}

/* Mobile */
@media (max-width: 480px) {
    .contact-form {
        gap: 12px;
    }
    .btn-send {
        width: 100%;
        text-align: center;
    }
}

/* APOIADORES NA HOME */

.supporters-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 14px;
    margin-top: 18px;
    margin-bottom: 40px;
}

.supporter-card {
    position: relative;
    background: #353535;
    border-radius: 10px;
    padding: 14px 16px;
    color: #ffffff;
    overflow: hidden;
    transition: transform .25s ease;
}

.supporter-card > * {
    position: relative;
    z-index: 1;
}

@property --angle {
    syntax: '<angle>';
    initial-value: 0deg;
    inherits: false;
}

.supporter-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 5px;
    background: conic-gradient(from var(--angle), #353535, #E9B452);
    mask-composite: exclude;
    opacity: 0;
    transition: opacity .25s ease;
    z-index: 0;
}

.supporter-card::after {
    content: "";
    position: absolute;
    inset: 3px;
    border-radius: inherit;
    background: #353535;
    z-index: 0;
}

@keyframes rotate-border {
    to {
        --angle: 360deg;
    }
}

.supporter-card:hover::before {
    opacity: 1;
    animation: rotate-border 2s linear infinite;
}

.supporter-tag {
    display: inline-block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .08em;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    margin-bottom: 12px;
}

.supporter-content {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    column-gap: 14px;   /* aproxima texto e logo */
    align-items: center;
}

.supporter-text {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.supporter-logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.supporter-logo img {
    max-height: 80px;
    max-width: 190px;
    width: 100%;
    object-fit: contain;
}

/* FOOTER */
.site-footer {
    background: linear-gradient(90deg, #353535, #606060);
    color: #ffffff;
    padding: 26px 0;
    font-size: 13px;
    margin-top: auto;
    border-top: 5px solid #E9B452;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: flex-start;
}

.footer-left {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
}

.footer-label {
    font-weight: 600;
    margin-bottom: 6px;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-contact-line {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
}

.footer-copy {
    font-size: 13px;
    margin-top: 8px;
}

/* LOADER AJUSTE TAMANHO */
.loader-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.loader-inner img {
    width: 300px;
    height: auto;
    max-width: 300px;
    object-fit: contain;
}

/* ============================================
   ============= DESKTOP (> 901px) =============
   ============================================ */
@media (min-width: 901px) {

    .header-inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 22px 20px; /* aumenta altura do header */
        position: relative;
        z-index: 10000;
        width: 100%;
    }

    /* MENU DESKTOP */
    .nav {
        display: flex !important;
        gap: 24px;
    }

    /* Oculta o hamburguer no desktop */
    .nav-toggle {
        display: none !important;
    }

    /* Menu mobile oculto no desktop */
    .mobile-menu {
        display: none !important;
    }

    .header-actions {
        display: flex;
        align-items: center;
        gap: 14px;
    }
}



/* ============================================
   ============= MOBILE (até 768px) ============
   ============================================ */
@media (max-width: 768px) {

    /* ================== HEADER MOBILE ================== */

    /* Aumenta a altura do header */
    .main-bar {
        padding: 22px 0;
    }

    /* Header alinhado */
    .header-inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0 20px;
        position: relative;
        z-index: 10000;
        width: 100%;
    }

    /* Oculta menu desktop */
    .nav {
        display: none !important;
    }

    /* Mostra menu hambúrguer */
    .nav-toggle {
        display: flex !important;
        width: 42px;
        height: 42px;
        justify-content: center;
        align-items: center;
        border-radius: 6px;
        background: #E9B452;
        padding: 0;
    }

    .header-actions {
        display: flex;
        align-items: center;
        gap: 12px;
    }

    /* Menu mobile */
    .mobile-menu {
        display: none;
        background: #E9B452;
        width: 100%;
        position: absolute;
        top: 100%;
        left: 0;
        z-index: 9999;
    }

    body.mobile-open .mobile-menu {
        display: block !important;
    }

    .mobile-menu nav {
        display: flex;
        flex-direction: column;
        gap: 12px;
        padding: 18px 20px;
    }


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

    .container-hero {
        width: 100%;
        height: 100%;
        position: relative;
        padding: 40px 0px 40px 0px;
        background:
                linear-gradient(rgba(53, 53, 53, 0.75), rgba(53, 53, 53, 0.75)),
                url('../img/bg-img.png');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }

    .hero-layout {
        width: 100%;
        padding: 0 20px;
        padding-top: 40px;
        color: #fff;
        display: block;
    }

    .hero-title {
        font-size: 24px;
        line-height: 1.25;
        margin-bottom: 12px;
    }

    .hero-sub {
        font-size: 15px;
        margin-bottom: 22px;
    }

    .hero-actions {
        display: flex;
        flex-wrap: wrap;
        gap: 12px;
        margin-bottom: 30px;
        width: 100%;
    }

    .hero-media {
        width: 100%;
        margin-top: 0;
    }

    .hero-card {
        width: 100%;
        max-width: 100%;
        min-height: auto;
        font-size: 15px;
    }


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

    .supporters-grid {
        grid-template-columns: 1fr;
        margin-bottom: 30px;
    }

    .episode-layout {
        grid-template-columns: 1fr;
        margin-bottom: 30px;
    }

    .about-highlight {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 30px;
    }

    .team-card {
        flex-direction: column;
        align-items: flex-start;
    }

    .team-info {
        width: 100%;
    }

    .contact-form {
        margin-bottom: 30px;
    }

    /* Footer mobile */
    .footer-grid {
        grid-template-columns: 1fr;
        row-gap: 16px;
    }

    .footer-right {
        align-items: flex-start;
    }

    .container {
        padding: 0 16px;
    }
}








