.site-header {
    height: 92px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(23, 59, 53, .14);
    background: rgba(247, 242, 232, .94);
    position: sticky;
    top: 0;
    z-index: 4;
    backdrop-filter: blur(10px);
}

.brand img {
    width: 74px;
    height: 52px;
    object-fit: contain;
    border-radius: 0;
    mix-blend-mode: multiply;
}

.single article > header {
    height: auto;
    min-height: 0;
    display: block;
    position: static;
    background: transparent;
    border: 0;
    backdrop-filter: none;
}


/* =========================================
   ANIMAÇÕES
   ========================================= */

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(
            circle at 75% 22%,
            rgba(170, 125, 59, .16),
            transparent 26%
        ),
        radial-gradient(
            circle at 88% 78%,
            rgba(23, 59, 53, .12),
            transparent 25%
        );
    animation: bannerGlow 12s ease-in-out infinite alternate;
    pointer-events: none;
}

.hero-grid > div,
.hero-aside {
    animation: bannerEnter .8s cubic-bezier(.2, .75, .2, 1) both;
}

.hero-aside {
    animation-delay: .18s;
}

.post-card {
    animation: cardEnter .65s ease both;
}

.post-card:nth-child(2) {
    animation-delay: .1s;
}

.post-card:nth-child(3) {
    animation-delay: .2s;
}

.btn {
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        110deg,
        transparent 20%,
        rgba(255, 255, 255, .25) 48%,
        transparent 76%
    );
    transform: translateX(-130%);
    transition: transform .7s ease;
}

.btn:hover::before {
    transform: translateX(130%);
}

@keyframes bannerGlow {
    to {
        transform: scale(1.08) translate(-1.5%, -1%);
    }
}

@keyframes bannerEnter {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes cardEnter {
    from {
        opacity: 0;
        transform: translateY(16px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* =========================================
   RODAPÉ - DESKTOP
   ========================================= */

.site-footer {
    background: #063f43;
    color: #f5f0e6;
    width: 100%;
}

.site-footer .footer-main {
    display: grid !important;

    grid-template-columns:
        minmax(320px, 1.5fr)
        minmax(140px, .55fr)
        minmax(170px, .65fr) !important;

    gap: 48px;

    align-items: start;

    padding-top: 42px;
    padding-bottom: 34px;
}


/* IDENTIDADE */

.site-footer .footer-brand {
    max-width: 340px;
}

.site-footer .footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;

    color: #f5f0e6;
    text-decoration: none;

    font-family: var(--serif);
    font-size: 1.25rem;
}

.site-footer .footer-logo img {
    width: 40px;
    height: 40px;

    object-fit: cover;
    border-radius: 50%;
}

.site-footer .footer-description {
    max-width: 310px;

    margin: 16px 0 0;

    color: #d2dfdd;

    font-size: .9rem;
    line-height: 1.6;
}


/* VERSÍCULO */

.site-footer .footer-verse {
    max-width: 310px;

    margin-top: 22px;

    padding-left: 16px;

    border-left: 2px solid #d9a441;
}

.site-footer .footer-verse p {
    margin: 0 0 8px;

    color: #f5f0e6;

    font-family: var(--serif);
    font-size: .98rem;
    line-height: 1.45;
    font-style: italic;
}

.site-footer .footer-verse span {
    color: #d9a441;

    font-size: .64rem;
    font-weight: 700;

    letter-spacing: .13em;
    text-transform: uppercase;
}


/* COLUNAS */

.site-footer .footer-column {
    padding-top: 2px;
}

.site-footer .footer-column h4 {
    margin: 0 0 14px;

    color: #d9a441;

    font-size: .68rem;
    font-weight: 700;

    letter-spacing: .14em;
    text-transform: uppercase;
}

.site-footer .footer-column a {
    display: flex;
    align-items: center;

    width: fit-content;

    margin-bottom: 9px;

    color: #d2dfdd;

    font-size: .86rem;
    line-height: 1.4;

    text-decoration: none;

    transition:
        color .2s ease,
        transform .2s ease;
}

.site-footer .footer-column a:hover {
    color: #ffffff;
    transform: translateX(3px);
}


/* CONECTE-SE MAIS À DIREITA */

.site-footer .footer-column:last-child {
    justify-self: end;
    min-width: 150px;
}


/* ÍCONES */

.site-footer .footer-social {
    display: flex !important;
    align-items: center;
    gap: 9px;
}

.site-footer .footer-social i {
    width: 18px;
    min-width: 18px;

    font-size: 16px;

    text-align: center;

    color: #f5f0e6;
}


/* COPYRIGHT */

.site-footer .copyright {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;

    padding-top: 16px;
    padding-bottom: 16px;

    border-top: 1px solid rgba(255, 255, 255, .14);

    color: #aebfbd;

    font-size: .7rem;
}

.site-footer .copyright span:last-child {
    color: #d2dfdd;
}


/* =========================================
   MENU MOBILE
   ========================================= */

.mobile-menu-button,
.mobile-menu {
    display: none;
}


/* =========================================
   TABLET / CELULAR
   ========================================= */

@media screen and (max-width: 800px) {

    /*
     * IMPORTANTE:
     * no desktop o header é flex horizontal.
     * no celular precisamos empilhar:
     *
     * nav
     * menu aberto
     */

    .site-header {
        height: auto !important;
        min-height: 76px;

        display: flex !important;
        flex-direction: column !important;

        align-items: stretch !important;

        padding: 0 !important;
    }


    /* BARRA SUPERIOR */

    .site-header .nav {
        display: flex !important;
        flex-direction: row !important;

        align-items: center !important;
        justify-content: space-between !important;

        width: min(100% - 32px, 1160px) !important;
        min-height: 76px;

        margin: 0 auto !important;

        gap: 14px;
    }


    /* LOGO */

    .site-header .brand {
        display: flex !important;
        align-items: center !important;

        gap: 9px;

        font-size: 1rem !important;
        line-height: 1.1;

        white-space: nowrap;
    }

    .site-header .brand img {
        width: 48px !important;
        height: 48px !important;

        object-fit: contain;

        flex-shrink: 0;
    }


    /* ESCONDE DESKTOP */

    .site-header .navlinks,
    .site-header .nav-cta {
        display: none !important;
    }


    /* BOTÃO HAMBÚRGUER */

    .site-header .mobile-menu-button {
        display: flex !important;

        flex-direction: column;

        align-items: center;
        justify-content: center;

        width: 44px;
        height: 44px;

        padding: 0;
        margin-left: auto;

        border: 0 !important;
        border-radius: 0 !important;

        background: transparent !important;
        box-shadow: none !important;

        cursor: pointer;

        flex-shrink: 0;
    }

    .site-header .mobile-menu-button span {
        display: block !important;

        width: 25px;
        height: 2px;

        margin: 3px 0;

        background: #173b35 !important;

        border: 0;
        border-radius: 2px;

        transition:
            transform .25s ease,
            opacity .25s ease;
    }


    /* MENU */

.site-header .mobile-menu {
    display: block !important;

    position: static !important;

    width: 100% !important;

    margin: 0 !important;

    padding: 0 24px !important;

    background: #f7f2e8;

    border-top: 1px solid rgba(23, 59, 53, .12);

    overflow: hidden;

    max-height: 0;
    opacity: 0;

    transform: translateY(-8px);

    pointer-events: none;

    transition:
        max-height .38s ease,
        opacity .25s ease,
        transform .38s ease,
        padding .38s ease;
}


/* MENU ABERTO */

.site-header .mobile-menu.open {
    max-height: 500px;

    opacity: 1;

    transform: translateY(0);

    padding-top: 8px !important;
    padding-bottom: 25px !important;

    pointer-events: auto;
}


/* LINKS */

.site-header .mobile-menu a {
    display: block !important;

    width: 100%;

    padding: 16px 4px;

    color: #173b35;

    font-size: .82rem;
    font-weight: 700;

    letter-spacing: .11em;
    text-transform: uppercase;

    text-align: left;

    text-decoration: none;

    border-bottom: 1px solid rgba(23, 59, 53, .10);

    opacity: 0;
    transform: translateY(-6px);

    transition:
        opacity .25s ease,
        transform .25s ease,
        color .2s ease;
}


/* LINKS ENTRANDO EM SEQUÊNCIA */

.site-header .mobile-menu.open a {
    opacity: 1;
    transform: translateY(0);
}

.site-header .mobile-menu.open a:nth-child(1) {
    transition-delay: .05s;
}

.site-header .mobile-menu.open a:nth-child(2) {
    transition-delay: .10s;
}

.site-header .mobile-menu.open a:nth-child(3) {
    transition-delay: .15s;
}

.site-header .mobile-menu.open a:nth-child(4) {
    transition-delay: .20s;
}

.site-header .mobile-menu.open a:nth-child(5) {
    transition-delay: .25s;
}


/* CTA DO MENU */

.site-header .mobile-menu .mobile-menu-cta {
    display: flex !important;

    align-items: center;
    justify-content: space-between;

    width: 100%;

    margin-top: 18px;

    padding: 16px 18px;

    background: #173b35;
    color: #ffffff;

    border: 0;

    text-align: left;
}


    /* ANIMAÇÃO PARA X */

    .site-header .mobile-menu-button.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .site-header .mobile-menu-button.active span:nth-child(2) {
        opacity: 0;
    }

    .site-header .mobile-menu-button.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }


    /* RODAPÉ TABLET */

    .site-footer .footer-main {
        grid-template-columns: 1.4fr .7fr .8fr !important;

        gap: 30px;

        padding-top: 40px;
        padding-bottom: 32px;
    }

    .site-footer .footer-column:last-child {
        justify-self: start;
    }


    .single article > header {
        height: auto;
    }
}


/* =========================================
   CELULAR
   ========================================= */

@media screen and (max-width: 620px) {

    .site-footer .footer-main {
        grid-template-columns: 1fr !important;

        gap: 30px;

        padding-top: 42px;
        padding-bottom: 32px;
    }

    .site-footer .footer-brand {
        max-width: 100%;
    }

    .site-footer .footer-column:last-child {
        justify-self: start;
        min-width: 0;
    }

    .site-footer .copyright {
        flex-direction: column;
        align-items: flex-start;

        gap: 7px;
    }
}


/* =========================================
   ACESSIBILIDADE
   ========================================= */

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
    }
}

/* =========================================
   PÁGINA DE AULAS
   ========================================= */

.classes-hero {
    padding: 90px 0 60px;
    background: #f7f2e8;
}

.classes-hero .wrap {
    max-width: 900px;
}

.classes-hero h1 {
    margin: 12px 0 18px;

    font-family: var(--serif);
    font-size: clamp(2.8rem, 6vw, 5.2rem);
    line-height: 1.02;
    letter-spacing: -.04em;

    color: var(--ink);
}

.classes-hero p {
    max-width: 650px;

    margin: 0;

    color: var(--muted);

    font-size: 1rem;
    line-height: 1.75;
}


/* =========================================
   LISTAGEM
   ========================================= */

.classes-section {
    padding: 70px 0 100px;

    background: #fffdf8;
}

.classes-grid {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 28px;
}


/* CARD */

.class-card {
    padding: 30px;

    background: #f7f2e8;

    border-top: 3px solid var(--gold);

    transition:
        transform .25s ease,
        box-shadow .25s ease;
}

.class-card:hover {
    transform: translateY(-4px);

    box-shadow:
        0 15px 30px
        rgba(15, 42, 37, .08);
}


/* MATÉRIA */

.class-subject {
    display: block;

    margin-bottom: 11px;

    color: var(--gold);

    font-size: .67rem;
    font-weight: 700;

    letter-spacing: .13em;
    text-transform: uppercase;
}


/* TÍTULO */

.class-card h2 {
    margin: 0 0 14px;

    font-family: var(--serif);
    font-size: 1.7rem;
    line-height: 1.2;

    color: var(--ink);
}

.class-card h2 a {
    text-decoration: none;
}


/* RESUMO */

.class-summary {
    margin: 0 0 20px;

    color: var(--muted);

    font-size: .9rem;
    line-height: 1.7;
}


/* DATA */

.class-meta {
    margin-bottom: 18px;

    color: #819088;

    font-size: .72rem;
}


/* LINK */

.class-link {
    display: inline-flex;
    align-items: center;

    color: var(--ink);

    font-size: .72rem;
    font-weight: 700;

    letter-spacing: .08em;
    text-transform: uppercase;

    transition:
        color .2s ease,
        transform .2s ease;
}

.class-link:hover {
    color: var(--gold);

    transform: translateX(3px);
}


/* SEM RESUMOS */

.classes-empty {
    max-width: 700px;

    padding: 60px 0;
}

.classes-empty h2 {
    margin: 0 0 14px;

    font-family: var(--serif);
    font-size: 2.2rem;

    color: var(--ink);
}

.classes-empty p {
    margin: 0;

    color: var(--muted);
}


/* =========================================
   MOBILE
   ========================================= */

@media screen and (max-width: 700px) {

    .classes-hero {
        padding: 65px 0 45px;
    }

    .classes-hero h1 {
        font-size: 2.8rem;
    }

    .classes-section {
        padding: 50px 0 70px;
    }

    .classes-grid {
        grid-template-columns: 1fr;

        gap: 22px;
    }

    .class-card {
        padding: 24px;
    }

    .class-card h2 {
        font-size: 1.5rem;
    }
}

/* =========================================
   AULA INDIVIDUAL
   ========================================= */

.class-single-subject {
    margin-top: 35px;

    color: var(--gold);

    font-size: .7rem;
    font-weight: 700;

    letter-spacing: .14em;
    text-transform: uppercase;
}

.class-single-summary {
    margin: 0 0 38px;

    padding: 22px 25px;

    border-left: 3px solid var(--gold);

    background: #f7f2e8;

    color: #48605a;

    font-family: var(--serif);
    font-size: 1.18rem;
    line-height: 1.6;
    font-style: italic;
}

.class-single-bottom {
    margin-top: 55px;

    padding-top: 28px;

    border-top: 1px solid var(--line);
}

@media screen and (max-width: 620px) {

    .class-single-summary {
        padding: 18px 20px;

        font-size: 1.05rem;
    }

}

/* =========================================
   MATERIAIS DA AULA
   ========================================= */

.class-materials {
    margin-top: 70px;

    padding-top: 45px;

    border-top: 1px solid var(--line);
}


/* CABEÇALHO */

.class-materials-heading {
    max-width: 600px;

    margin-bottom: 30px;
}

.class-materials-heading h2 {
    margin: 8px 0 10px;

    color: var(--ink);

    font-family: var(--serif);
    font-size: 2rem;
    line-height: 1.2;
}

.class-materials-heading p {
    margin: 0;

    color: var(--muted);

    font-size: .9rem;
    line-height: 1.6;
}


/* LISTA */

.class-materials-list {
    display: grid;

    gap: 12px;
}


/* CARD */

.class-material-card {
    display: flex;
    align-items: center;

    gap: 18px;

    padding: 18px 20px;

    background: #f7f2e8;

    border: 1px solid var(--line);

    text-decoration: none;

    transition:
        transform .2s ease,
        border-color .2s ease,
        background .2s ease;
}

.class-material-card:hover {
    transform: translateX(4px);

    border-color: var(--gold);

    background: #fffdf8;
}


/* ÍCONE */

.class-material-icon {
    width: 48px;
    height: 48px;

    display: grid;
    place-items: center;

    flex-shrink: 0;

    background: var(--ink);

    color: #fff;

    font-size: 1.2rem;
}


/* INFORMAÇÕES */

.class-material-info {
    min-width: 0;
}

.class-material-type {
    display: block;

    margin-bottom: 3px;

    color: var(--gold);

    font-size: .62rem;
    font-weight: 700;

    letter-spacing: .12em;
    text-transform: uppercase;
}

.class-material-info h3 {
    margin: 0 0 4px;

    color: var(--ink);

    font-family: var(--serif);
    font-size: 1.1rem;
    line-height: 1.3;
}

.class-material-open {
    color: var(--muted);

    font-size: .7rem;
    font-weight: 600;

    letter-spacing: .05em;
}


/* =========================================
   MOBILE
   ========================================= */

@media screen and (max-width: 620px) {

    .class-materials {
        margin-top: 50px;

        padding-top: 35px;
    }

    .class-materials-heading h2 {
        font-size: 1.7rem;
    }

    .class-material-card {
        gap: 14px;

        padding: 16px;
    }

    .class-material-icon {
        width: 42px;
        height: 42px;

        font-size: 1rem;
    }

    .class-material-info h3 {
        font-size: 1rem;
    }

}

/* =========================================
   AULAS AGRUPADAS POR MATÉRIA
   ========================================= */

.class-subject-group {
    margin-bottom: 85px;
}

.class-subject-group:last-child {
    margin-bottom: 0;
}


/* CABEÇALHO DA MATÉRIA */

.class-subject-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 30px;

    margin-bottom: 30px;

    padding-bottom: 20px;

    border-bottom: 1px solid var(--line);
}

.class-subject-heading h2 {
    margin: 7px 0 0;

    color: var(--ink);

    font-family: var(--serif);
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.1;
}


/* CONTADOR */

.class-subject-count {
    flex-shrink: 0;

    padding: 8px 13px;

    border: 1px solid var(--line);

    color: var(--muted);

    font-size: .68rem;
    font-weight: 700;

    letter-spacing: .08em;
    text-transform: uppercase;
}


/* MOBILE */

@media screen and (max-width: 700px) {

    .class-subject-group {
        margin-bottom: 60px;
    }

    .class-subject-heading {
        align-items: flex-start;
        flex-direction: column;

        gap: 14px;

        margin-bottom: 22px;
    }

    .class-subject-heading h2 {
        font-size: 2rem;
    }

}

/* =========================================
   AULAS NA HOME
   ========================================= */

.home-classes {
    padding: 90px 0;
    background: var(--paper);
}

.home-classes-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    margin-top: 38px;
    margin-bottom: 12px;
}

.home-class-card {
    display: flex;
    flex-direction: column;

    min-height: 280px;

    padding: 30px;

    background: #fff;

    border: 1px solid var(--line);
}

.home-class-subject {
    margin-bottom: 18px;

    color: var(--gold);

    font-size: .68rem;
    font-weight: 700;

    letter-spacing: .1em;
    text-transform: uppercase;
}

.home-class-card h3 {
    margin: 0 0 16px;

    font-family: var(--serif);
    font-size: 1.55rem;
    line-height: 1.2;
}

.home-class-card h3 a {
    color: var(--ink);
    text-decoration: none;
}

.home-class-card h3 a:hover {
    color: var(--gold);
}

.home-class-card p {
    margin: 0 0 20px;

    color: var(--muted);

    font-size: .9rem;
    line-height: 1.7;
}

.home-class-date {
    margin-top: auto;
    margin-bottom: 15px;

    color: var(--muted);

    font-size: .72rem;
}

.home-class-link {
    color: var(--ink);

    font-size: .76rem;
    font-weight: 700;

    letter-spacing: .04em;

    text-decoration: none;
}

.home-class-link:hover {
    color: var(--gold);
}


/* TABLET */

@media screen and (max-width: 900px) {

    .home-classes-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

}


/* CELULAR */

@media screen and (max-width: 620px) {

    .home-classes {
        padding: 65px 0;
    }

    .home-classes-grid {
        grid-template-columns: 1fr;

        gap: 16px;
        margin-top: 28px;
    }

    .home-class-card {
        min-height: auto;
        padding: 24px;
    }

}
/* =========================================
   AJUSTE DO BOTÃO DAS AULAS NA HOME
   ========================================= */

.home-classes .center {
    margin-top: -50px;
    position: relative;
    z-index: 2;
}

.home-classes-grid {
    margin-bottom: 0;
}

/* =========================================
   REFINAMENTO VISUAL 2026
   ========================================= */

:root {
    --ink: #123c38;
    --ink2: #0b2926;
    --paper: #f5efe4;
    --cream: #fffdf8;
    --sand: #e7dac4;
    --line: #d8cbb5;
    --gold: #a87836;
    --gold-soft: #d9b77a;
    --muted: #66736e;
    --radius-sm: 8px;
    --radius: 14px;
    --radius-lg: 24px;
    --shadow-soft: 0 18px 55px rgba(15, 45, 40, .08);
    --shadow-card: 0 12px 34px rgba(15, 45, 40, .09);
}

::selection {
    background: var(--gold-soft);
    color: var(--ink2);
}

body {
    background: var(--paper);
    text-rendering: optimizeLegibility;
}

.skip-link {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 100;
    padding: 10px 15px;
    border-radius: var(--radius-sm);
    background: var(--ink);
    color: #fff;
    font-size: .8rem;
    font-weight: 700;
    transform: translateY(-150%);
    transition: transform .2s ease;
}

.skip-link:focus {
    transform: translateY(0);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 3px solid var(--gold-soft);
    outline-offset: 4px;
}

.wrap {
    width: min(1180px, calc(100% - 56px));
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--gold);
    font-size: .68rem;
    letter-spacing: .18em;
}

.eyebrow::before {
    content: '';
    width: 24px;
    height: 1px;
    background: currentColor;
}

.btn {
    min-height: 48px;
    justify-content: center;
    padding: 13px 22px;
    border-radius: 999px;
    box-shadow: 0 8px 22px rgba(18, 60, 56, .14);
}

.btn:hover {
    box-shadow: 0 12px 28px rgba(18, 60, 56, .2);
}

.text-link,
.post-read {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--ink);
    font-size: .76rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.text-link span,
.post-read span {
    font-size: 1rem;
    transition: transform .2s ease;
}

.text-link:hover,
.post-card:hover .post-read {
    color: var(--gold);
}

.text-link:hover span,
.post-card:hover .post-read span {
    transform: translateX(4px);
}

/* Cabeçalho */

.site-header {
    height: 84px;
    background: rgba(245, 239, 228, .86);
    border-bottom-color: rgba(18, 60, 56, .1);
    backdrop-filter: blur(16px) saturate(130%);
    transition:
        height .25s ease,
        box-shadow .25s ease,
        background .25s ease;
}

.site-header.scrolled {
    height: 76px;
    background: rgba(255, 253, 248, .94);
    box-shadow: 0 10px 35px rgba(18, 60, 56, .08);
}

.brand {
    gap: 10px;
    letter-spacing: -.01em;
}

.brand img {
    width: 66px;
    height: 48px;
}

.navlinks {
    gap: 29px;
}

.navlinks a {
    position: relative;
    padding: 30px 0 27px;
    transition: color .2s ease;
}

.navlinks a::after {
    content: '';
    position: absolute;
    right: 0;
    bottom: 20px;
    left: 0;
    height: 2px;
    border-radius: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transition: transform .2s ease;
}

.navlinks a:hover::after,
.navlinks a[aria-current="page"]::after {
    transform: scaleX(1);
}

.navlinks a[aria-current="page"] {
    color: var(--gold);
}

.nav-cta {
    transition: color .2s ease, border-color .2s ease;
}

.nav-cta:hover {
    color: var(--gold);
}

/* Banner principal */

.hero {
    min-height: 640px;
    padding: 86px 0 82px;
    background:
        linear-gradient(105deg, rgba(245, 239, 228, .98) 0 58%, rgba(225, 214, 194, .9) 58%),
        var(--paper);
}

.hero::after {
    width: 620px;
    height: 620px;
    right: -265px;
    top: 10px;
    border-color: rgba(168, 120, 54, .22);
    box-shadow:
        0 0 0 54px rgba(255, 253, 248, .14),
        0 0 0 108px rgba(168, 120, 54, .035);
}

.hero-grid {
    grid-template-columns: minmax(0, 1.2fr) minmax(300px, .62fr);
    gap: clamp(50px, 8vw, 105px);
}

.hero-copy {
    max-width: 760px;
}

.hero h1 {
    margin: 20px 0 27px;
    font-size: clamp(3.8rem, 6.5vw, 6.7rem);
    line-height: .96;
    letter-spacing: -.055em;
}

.hero h1 em {
    position: relative;
    white-space: nowrap;
}

.hero p {
    max-width: 590px;
    font-size: 1.02rem;
    line-height: 1.75;
}

.hero-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 22px;
}

.hero-aside {
    position: relative;
    overflow: hidden;
    padding: 42px 38px 36px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-left: 3px solid var(--gold-soft);
    border-radius: var(--radius-lg);
    background: var(--ink);
    color: #fff;
    box-shadow: 0 28px 70px rgba(12, 43, 39, .2);
}

.hero-aside .eyebrow,
.hero-aside cite {
    color: var(--gold-soft);
}

.hero-aside .quote {
    position: relative;
    z-index: 1;
    margin: 22px 0 18px;
    color: #fffaf0;
    font-size: 1.32rem;
    line-height: 1.55;
}

.hero-aside-mark {
    position: absolute;
    right: -18px;
    bottom: -32px;
    width: 205px;
    height: 180px;
    background: rgba(255, 255, 255, .075);
    -webkit-mask: url('assets/brand-symbol.png') center / contain no-repeat;
    mask: url('assets/brand-symbol.png') center / contain no-repeat;
    pointer-events: none;
}

/* Seções e hierarquia */

.intro,
.recent,
.home-classes {
    position: relative;
}

.intro {
    padding: 108px 0;
}

.intro-grid {
    grid-template-columns: .78fr 1.22fr;
    gap: clamp(55px, 8vw, 105px);
}

.intro h2,
.section-heading h1,
.section-heading h2,
.about-copy h2 {
    line-height: 1.06;
}

.intro-text {
    font-size: 1.02rem;
    line-height: 1.78;
}

.pillars {
    gap: 12px;
    margin-top: 36px;
    border: 0;
}

.pillar {
    min-height: 116px;
    padding: 19px 20px;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    background: rgba(245, 239, 228, .45);
    transition: transform .2s ease, border-color .2s ease;
}

.pillar:hover {
    transform: translateY(-3px);
    border-color: var(--gold-soft);
}

.pillar span {
    font-size: 1.35rem;
}

.recent {
    padding: 100px 0;
    background:
        radial-gradient(circle at 6% 8%, rgba(168, 120, 54, .07), transparent 25%),
        var(--paper);
}

.section-heading {
    margin-bottom: 50px;
}

.section-heading p {
    max-width: 610px;
    line-height: 1.75;
}

/* Artigos */

.post-grid {
    gap: 28px;
}

.post-card {
    overflow: hidden;
    border: 1px solid rgba(18, 60, 56, .09);
    border-bottom: 0;
    border-radius: var(--radius);
    background: var(--cream);
    box-shadow: 0 8px 26px rgba(15, 45, 40, .055);
}

.post-card:hover {
    transform: translateY(-7px);
    box-shadow: var(--shadow-card);
}

.post-card > a {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.post-card img {
    height: auto;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    transition: transform .45s ease, filter .45s ease;
}

.post-card:hover img {
    transform: scale(1.035);
    filter: saturate(.92) contrast(1.02);
}

.post-card-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 28px;
}

.post-card .category,
.book-category,
.class-subject,
.home-class-subject {
    align-self: flex-start;
    padding: 6px 9px;
    border-radius: 999px;
    background: rgba(168, 120, 54, .1);
    color: #8a5c20;
    line-height: 1;
}

.post-card h2 {
    margin: 15px 0 12px;
    font-size: 1.62rem;
}

.post-card p {
    line-height: 1.65;
}

.post-meta {
    margin-top: 20px;
    padding-top: 17px;
    border-top: 1px solid rgba(18, 60, 56, .1);
}

.post-read {
    margin-top: 18px;
}

/* Aulas */

.home-classes {
    padding: 100px 0;
    background: var(--cream);
}

.home-classes-grid {
    gap: 28px;
}

.home-class-card,
.class-card {
    overflow: hidden;
    border: 1px solid rgba(18, 60, 56, .1);
    border-top: 3px solid var(--gold);
    border-radius: var(--radius);
    background: var(--paper);
    box-shadow: 0 8px 24px rgba(15, 45, 40, .045);
    transition: transform .25s ease, box-shadow .25s ease;
}

.home-class-card:hover,
.class-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-card);
}

.home-class-subject,
.class-subject {
    margin-bottom: 18px;
}

.home-class-card h3 {
    font-size: 1.65rem;
}

.home-class-date {
    padding-top: 16px;
    border-top: 1px solid rgba(18, 60, 56, .1);
}

.home-class-link,
.class-link,
.book-link {
    transition: color .2s ease, transform .2s ease;
}

.home-class-link:hover {
    display: inline-block;
    transform: translateX(3px);
}

.home-classes .center {
    margin-top: 42px;
}

.classes-grid {
    gap: 24px;
}

.class-card {
    padding: 32px;
}

.class-subject-count {
    border-radius: 999px;
    background: var(--paper);
}

/* Sobre */

.about {
    min-height: 640px;
    background: #e8dfcf;
}

.about-photo {
    position: relative;
    background-position: center 30%;
}

.about-photo::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, transparent 62%, rgba(232, 223, 207, .4)),
        linear-gradient(0deg, rgba(8, 37, 34, .14), transparent 42%);
    pointer-events: none;
}

.about-copy {
    position: relative;
    padding-top: 90px;
    padding-bottom: 90px;
}

.about-copy::before {
    content: '“';
    position: absolute;
    top: 54px;
    right: 9%;
    color: rgba(168, 120, 54, .13);
    font-family: var(--serif);
    font-size: 10rem;
    line-height: 1;
}

.about-copy p {
    max-width: 560px;
    font-size: 1rem;
    line-height: 1.78;
}

.about-copy .btn {
    align-self: flex-start;
    margin-top: 8px;
}

/* Páginas internas */

.archive-hero,
.classes-hero,
.books-hero {
    position: relative;
    overflow: hidden;
    padding: 92px 0 68px;
    border-bottom: 1px solid rgba(18, 60, 56, .1);
    background:
        radial-gradient(circle at 86% 30%, rgba(168, 120, 54, .13), transparent 23%),
        linear-gradient(120deg, var(--cream), var(--paper));
}

.archive-hero::after,
.classes-hero::after,
.books-hero::after {
    content: '';
    position: absolute;
    top: -180px;
    right: -130px;
    width: 430px;
    height: 430px;
    border: 1px solid rgba(168, 120, 54, .18);
    border-radius: 50%;
    box-shadow: 0 0 0 55px rgba(168, 120, 54, .035);
    pointer-events: none;
}

.archive-hero .wrap,
.classes-hero .wrap,
.books-hero .wrap {
    position: relative;
    z-index: 1;
    max-width: 940px;
}

.archive-hero h1,
.classes-hero h1,
.books-hero h1 {
    max-width: 820px;
    font-size: clamp(3.1rem, 6vw, 5.4rem);
}

.archive-hero p,
.classes-hero p,
.books-hero p {
    font-size: 1.02rem;
    line-height: 1.75;
}

.archive,
.classes-section,
.books-section {
    padding: 82px 0 110px;
}

/* Livros */

.books-grid {
    gap: 52px 34px;
}

.book-card {
    transition: transform .3s ease;
}

.book-card:hover {
    transform: translateY(-7px);
}

.book-cover {
    width: calc(100% - 18px);
    margin: 0 auto;
    overflow: hidden;
    border-radius: 6px 13px 13px 6px;
    box-shadow:
        -7px 8px 0 #d8cbb5,
        0 22px 40px rgba(15, 45, 40, .15);
}

.book-cover::after {
    content: '';
    position: absolute;
    inset: 0 auto 0 6%;
    width: 1px;
    background: rgba(255, 255, 255, .35);
    box-shadow: 2px 0 5px rgba(0, 0, 0, .14);
    pointer-events: none;
}

.book-cover {
    position: relative;
}

.book-content {
    padding: 26px 10px 0;
}

.book-category {
    display: inline-flex;
}

.book-description {
    line-height: 1.7;
}

/* Artigo individual */

.single {
    background: var(--cream);
}

.single-wrap {
    max-width: 850px;
}

.article-title {
    line-height: 1.02;
}

.article-header {
    margin-top: 35px;
}

.article-cover {
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
}

.article-content {
    max-width: 730px;
    margin-right: auto;
    margin-left: auto;
    font-size: 1.1rem;
    line-height: 1.82;
}

.rich-content blockquote,
.class-single-summary {
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    background: var(--paper);
}

.about-principles {
    max-width: 740px;
    gap: 14px;
    margin: 0 auto;
}

.about-principles li {
    padding: 20px 22px;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    background: var(--cream);
    box-shadow: 0 8px 24px rgba(15, 45, 40, .04);
}

/* Chamada final e rodapé */

.cta {
    position: relative;
    overflow: hidden;
    padding: 110px 24px;
}

.cta::before {
    content: '';
    position: absolute;
    inset: 20px;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: var(--radius-lg);
    pointer-events: none;
}

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

.cta .eyebrow {
    color: var(--gold-soft);
}

.site-footer {
    background: #082f2c;
}

.site-footer .footer-main {
    padding-top: 54px;
    padding-bottom: 42px;
}

.site-footer .footer-logo img {
    object-fit: contain;
    border-radius: 0;
    mix-blend-mode: normal;
}

.mobile-menu a[aria-current="page"] {
    color: var(--gold);
}

@media screen and (max-width: 900px) {

    .hero-grid {
        grid-template-columns: 1fr .62fr;
        gap: 38px;
    }

    .hero h1 {
        font-size: clamp(3.4rem, 7vw, 5.4rem);
    }

    .hero-aside {
        padding: 34px 28px;
    }

}

@media screen and (max-width: 800px) {

    .wrap {
        width: min(100% - 38px, 650px);
    }

    .site-header,
    .site-header.scrolled {
        height: auto;
    }

    .site-header .mobile-menu a[aria-current="page"] {
        padding-left: 12px;
        border-left: 3px solid var(--gold);
    }

    .hero {
        padding: 70px 0 74px;
        background:
            radial-gradient(circle at 92% 12%, rgba(168, 120, 54, .13), transparent 30%),
            var(--paper);
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .hero-copy {
        max-width: 650px;
    }

    .hero-aside {
        max-width: 520px;
    }

    .intro-grid {
        grid-template-columns: 1fr;
    }

    .about-copy::before {
        top: 38px;
        font-size: 8rem;
    }

}

@media screen and (max-width: 620px) {

    .wrap {
        width: calc(100% - 34px);
    }

    .hero {
        padding: 58px 0 64px;
    }

    .hero h1 {
        margin-top: 17px;
        font-size: clamp(3rem, 15vw, 4.15rem);
        line-height: .98;
    }

    .hero h1 em {
        white-space: normal;
    }

    .hero p {
        font-size: .96rem;
    }

    .hero-actions {
        align-items: flex-start;
        flex-direction: column;
        gap: 18px;
    }

    .hero-aside {
        padding: 30px 25px;
        border-radius: var(--radius);
    }

    .hero-aside .quote {
        font-size: 1.17rem;
    }

    .hero-aside-mark {
        right: -22px;
        bottom: -30px;
        width: 165px;
        height: 145px;
    }

    .intro,
    .recent,
    .home-classes {
        padding: 72px 0;
    }

    .pillars {
        grid-template-columns: 1fr;
    }

    .pillar {
        min-height: 0;
    }

    .post-grid {
        gap: 20px;
    }

    .post-card-body {
        padding: 24px;
    }

    .post-card h2 {
        font-size: 1.48rem;
    }

    .about-photo {
        min-height: 390px;
    }

    .about-copy {
        padding: 66px 24px;
    }

    .archive-hero,
    .classes-hero,
    .books-hero {
        padding: 62px 0 48px;
    }

    .archive-hero h1,
    .classes-hero h1,
    .books-hero h1 {
        font-size: clamp(2.75rem, 13vw, 3.65rem);
    }

    .archive,
    .classes-section,
    .books-section {
        padding: 58px 0 78px;
    }

    .books-grid {
        gap: 48px;
    }

    .book-cover {
        width: min(86%, 330px);
    }

    .book-content {
        padding-right: 6px;
        padding-left: 6px;
    }

    .class-card,
    .home-class-card {
        padding: 25px;
    }

    .cta {
        padding: 86px 25px;
    }

    .cta::before {
        inset: 14px;
    }

}
