/* =========================================================
   GUITAR HERO BRASIL
   CSS ESPECÍFICO DA PÁGINA
========================================================= */


/* =========================================================
   BASE DA PÁGINA
========================================================= */

body {
    background: #0f0f0f;
    color: #e8e6e3;
}


/* =========================================================
   HEADER
========================================================= */

header {
    padding: 80px 20px 70px;
    text-align: center;

    background:
        radial-gradient(
            circle at center,
            rgba(212, 175, 55, 0.055),
            transparent 55%
        ),
        #0b0b0b;

    border-bottom: 1px solid rgba(212, 175, 55, 0.18);
}

header h1 {
    margin-bottom: 18px;

    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: clamp(3rem, 6vw, 5rem);
    line-height: 1.1;

    color: #d4af37;
}

header p {
    width: min(800px, 100%);
    margin: 0 auto;

    color: #cfc9bf;

    font-size: 1.08rem;
    line-height: 1.8;
}


/* =========================================================
   NAVEGAÇÃO
========================================================= */

body > nav {
    position: relative;

    display: flex;
    justify-content: center;
    align-items: center;

    padding: 16px 20px;

    background: #111;

    border-bottom: 1px solid rgba(212, 175, 55, 0.12);
}

body > nav a {
    color: #d4af37;

    font-size: 0.85rem;
    font-weight: 600;

    transition: color 0.25s ease;
}

body > nav a:hover {
    color: #f0d76b;
}


/* =========================================================
   CONTEÚDO PRINCIPAL
========================================================= */

main {
    width: 100%;
}

main > section {
    width: min(1120px, calc(100% - 40px));

    margin: 0 auto;

    padding: 80px 0;
}

main > section + section {
    border-top: 1px solid rgba(212, 175, 55, 0.08);
}


/* =========================================================
   TÍTULOS
========================================================= */

main h2 {
    margin-bottom: 30px;

    font-family: "Cormorant Garamond", Georgia, serif;

    font-size: clamp(2.2rem, 4vw, 3.2rem);
    line-height: 1.15;

    color: #d4af37;

    text-align: center;
}

main > section > h2 {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}


/* =========================================================
   TEXTO
========================================================= */

main p {
    color: #ddd8cf;

    font-size: 1rem;
    line-height: 1.85;
}

.texto-centro {
    width: min(820px, 100%);

    margin: 0 auto 40px;

    text-align: center;

    color: #c9c3b8;
}


/* =========================================================
   HERO DO PROJETO
========================================================= */

.hero-projeto {
    width: min(1050px, 100%);

    padding-top: 70px;
    padding-bottom: 80px;

    margin-left: auto;
    margin-right: auto;

    text-align: center;
}

.hero-projeto > img {
    display: block;

    width: min(760px, 100%);
    height: auto;

    margin: 0 auto 42px;

    border-radius: 16px;

    border: 1px solid rgba(212, 175, 55, 0.18);

    box-shadow:
        0 24px 60px rgba(0, 0, 0, 0.5);
}

.hero-texto {
    width: min(820px, 100%);

    margin: 0 auto;

    text-align: center;
}

.hero-texto h2 {
    margin-bottom: 20px;

    color: #f4f1e8;
}

.hero-texto p {
    color: #d0cbc1;

    font-size: 1.05rem;
    line-height: 1.9;
}


/* =========================================================
   CARDS
========================================================= */

.card {
    width: min(900px, 100%);

    margin: 0 auto;

    padding: 36px 40px;

    background: #171717;

    border: 1px solid rgba(212, 175, 55, 0.12);

    border-radius: 16px;

    box-shadow:
        0 14px 35px rgba(0, 0, 0, 0.25);
}

.card p {
    margin-bottom: 18px;
}

.card p:last-child {
    margin-bottom: 0;
}


/* =========================================================
   CITAÇÃO
========================================================= */

.card blockquote {
    margin: 30px 0;

    padding: 24px 30px;

    border-left: 3px solid #d4af37;

    background: #111;

    color: #eee8dd;

    font-family: "Cormorant Garamond", Georgia, serif;

    font-size: 1.35rem;
    line-height: 1.6;

    font-style: italic;
}


/* =========================================================
   LISTA
========================================================= */

.card ul {
    margin: 25px 0 0;
    padding-left: 25px;
}

.card li {
    margin-bottom: 12px;

    color: #ddd8cf;

    line-height: 1.7;
}

.card li:last-child {
    margin-bottom: 0;
}


/* =========================================================
   REPORTAGEM
========================================================= */

.imagem-reportagem {
    display: block;

    width: min(700px, 100%);
    height: auto;

    margin: 40px auto 10px;

    border-radius: 14px;

    border: 1px solid rgba(212, 175, 55, 0.18);

    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.5);

    cursor: zoom-in;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.imagem-reportagem:hover {
    transform: scale(1.015);

    box-shadow:
        0 25px 60px rgba(0, 0, 0, 0.6);
}


/* =========================================================
   VÍDEOS
========================================================= */

.videos-grid {
    width: min(1050px, 100%);

    margin: 0 auto;

    display: grid;

    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 28px;
}

.videos-grid iframe {
    display: block;

    width: 100%;
    aspect-ratio: 16 / 9;

    height: auto;

    min-height: 0;

    border: 0;

    border-radius: 14px;

    background: #090909;

    box-shadow:
        0 15px 35px rgba(0, 0, 0, 0.45);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.videos-grid iframe:hover {
    transform: translateY(-3px);

    box-shadow:
        0 20px 42px rgba(0, 0, 0, 0.55);
}


/* =========================================================
   FOOTER
========================================================= */

footer {
    padding: 45px 20px 55px;

    text-align: center;

    background: #0b0b0b;

    border-top: 1px solid rgba(212, 175, 55, 0.18);
}

footer p {
    margin: 7px auto;

    color: #a9a297;

    font-size: 0.85rem;
    line-height: 1.7;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

    main > section {
        padding: 65px 0;
    }

    .hero-projeto {
        padding-top: 55px;
        padding-bottom: 65px;
    }

    .hero-projeto > img {
        width: min(700px, 100%);
    }

    .card {
        padding: 30px;
    }

    .videos-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

}


/* =========================================================
   CELULAR
========================================================= */

@media (max-width: 600px) {

    main > section {
        width: calc(100% - 30px);

        padding: 55px 0;
    }

    header {
        padding: 60px 18px 55px;
    }

    header h1 {
        font-size: 2.7rem;
    }

    header p {
        font-size: 0.98rem;
    }

    main h2 {
        font-size: 2.15rem;
    }

    .hero-projeto {
        padding-top: 45px;
        padding-bottom: 55px;
    }

    .hero-projeto > img {
        width: 100%;

        margin-bottom: 30px;

        border-radius: 12px;
    }

    .hero-texto p {
        font-size: 0.98rem;
    }

    .card {
        padding: 24px 20px;

        border-radius: 14px;
    }

    .card blockquote {
        padding: 20px;

        font-size: 1.2rem;
    }

    .imagem-reportagem {
        width: 100%;

        margin-top: 30px;
    }

    .videos-grid {
        grid-template-columns: 1fr;

        gap: 22px;
    }

    .videos-grid iframe {
        width: 100%;

        aspect-ratio: 16 / 9;
    }

    footer {
        padding: 35px 18px 45px;
    }

}


/* =========================================================
   ACESSIBILIDADE
========================================================= */

a:focus-visible {
    outline: 2px solid #f0d76b;
    outline-offset: 4px;
}

::selection {
    background: #d4af37;
    color: #111;
}