/* =========================================================
   24º COLE — ESTILOS PRINCIPAIS
   ========================================================= */


/* =========================================================
   CORES
   ========================================================= */

:root {
    --azul: #001D3B;
    --verde: #496A3F;
    --amarelo: #E3A01B;
    --verde-claro: #728D64;
    --terracota: #C35527;

    --branco: #FFFFFF;

    --fundo-claro: #F6F3EC;
    --fundo-verde: #E8ECE6;

    --texto: #1E2A35;
    --cinza: #59636D;

    --azul-escuro: #001735;

    --raio: 18px;
    --raio-grande: 25px;
}


/* =========================================================
   RESET
   ========================================================= */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: "DM Sans", sans-serif;
    background: var(--fundo-claro);
    color: var(--texto);
    line-height: 1.6;
}

h1,
h2,
h3 {
    font-family: "Playfair Display", serif;
    font-weight: 600;
}

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

img {
    display: block;
    max-width: 100%;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

::selection {
    background: var(--amarelo);
    color: var(--azul);
}

.container {
    width: min(1180px, calc(100% - 80px));
    margin: 0 auto;
}

.section {
    padding: 115px 0;
}


/* =========================================================
   CABEÇALHO
   ========================================================= */

.header {
    position: absolute;
    inset: 0 0 auto;
    z-index: 20;
    color: var(--branco);
}

.nav-container {
    min-height: 88px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;
}

.logo {
    display: flex;
    align-items: baseline;
    gap: 8px;
    flex-shrink: 0;
}

.logo-number {
    font-size: 1rem;
    font-weight: 600;
}

.logo-text {
    font-family: "Playfair Display", serif;
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -1px;
}

.nav {
    display: flex;
    align-items: center;
    gap: 28px;
    margin-left: auto;
}

.nav a {
    position: relative;

    color: rgba(255, 255, 255, 0.72);

    font-size: 0.88rem;

    transition: color 0.25s ease;
}

.nav a::after {
    content: "";

    position: absolute;
    left: 0;
    bottom: -7px;

    width: 0;
    height: 2px;

    background: var(--amarelo);

    transition: width 0.25s ease;
}

.nav a:hover {
    color: var(--branco);
}

.nav a:hover::after {
    width: 100%;
}


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

.hero {
    position: relative;
    min-height: 100vh;

    display: flex;
    align-items: center;

    overflow: hidden;

    background: var(--azul);
    color: var(--branco);

    padding: 135px 0 90px;
}

.hero::before {
    content: "";

    position: absolute;

    width: 700px;
    height: 700px;

    top: -310px;
    right: -270px;

    border-radius: 50%;

    background: var(--verde);

    opacity: 0.85;
}

.hero::after {
    content: "";

    position: absolute;

    width: 280px;
    height: 280px;

    left: -150px;
    bottom: -170px;

    border-radius: 50%;

    background: var(--terracota);

    opacity: 0.85;
}

.hero-decoration {
    position: absolute;

    border: 1px solid rgba(255, 255, 255, 0.12);

    border-radius: 50%;

    pointer-events: none;
}

.hero-decoration-one {
    width: 500px;
    height: 500px;

    right: 5%;
    bottom: -350px;
}

.hero-decoration-two {
    width: 170px;
    height: 170px;

    right: 42%;
    top: 8%;
}


/* =========================================================
   GRID DO HERO
   ========================================================= */

.hero-grid {
    position: relative;
    z-index: 2;

    /*
       IMPORTANTE:
       não usar width: 100% aqui.
       O elemento já é .container.
    */

    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(420px, 0.78fr);

    gap: 70px;

    align-items: center;
}

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


/* =========================================================
   LOGOS DO HERO
   ========================================================= */

.hero-logos {
    display: flex;
    align-items: center;

    gap: 12px;

    margin-bottom: 34px;
}

.hero-logo-box {
    width: 170px;
    height: 64px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 8px 16px;

    background: var(--branco);

    border-radius: 9px;

    box-shadow:
        0 10px 25px rgba(0, 0, 0, 0.12);
}

.hero-logo-box + .hero-logo-box {
    width: 155px;
}

.hero-logo {
    display: block;

    width: auto;
    height: 44px;

    max-width: 100%;
    max-height: 48px;

    object-fit: contain;
}


/* =========================================================
   TEXTOS DO HERO
   ========================================================= */

.hero-tag {
    display: inline-block;

    margin-bottom: 22px;
    padding-bottom: 9px;

    border-bottom: 2px solid var(--amarelo);

    color: rgba(255, 255, 255, 0.82);

    font-size: 0.72rem;
    font-weight: 700;

    letter-spacing: 1.7px;

    text-transform: uppercase;
}

.hero h1 {
    margin-bottom: 24px;

    font-size: clamp(5rem, 7.5vw, 7.5rem);

    line-height: 0.82;

    letter-spacing: -4px;
}

.hero h1 span {
    color: var(--amarelo);
}

.hero h2 {
    max-width: 620px;

    margin-bottom: 24px;

    font-size: clamp(2rem, 3.3vw, 3.5rem);

    font-weight: 500;

    line-height: 1.05;
}

.hero-description {
    max-width: 570px;

    color: rgba(255, 255, 255, 0.7);

    font-size: 0.98rem;

    line-height: 1.6;
}

.hero-info {
    display: flex;

    gap: 48px;

    margin: 32px 0;
}

.hero-info div {
    display: flex;
    flex-direction: column;
}

.hero-info strong {
    color: var(--amarelo);

    font-family: "Playfair Display", serif;

    font-size: 1.35rem;

    line-height: 1.15;
}

.hero-info span {
    color: rgba(255, 255, 255, 0.6);

    font-size: 0.82rem;
}

.hero-buttons {
    display: flex;

    gap: 12px;

    flex-wrap: wrap;
}


/* =========================================================
   IMAGEM PRINCIPAL
   ========================================================= */

.hero-image {
    position: relative;

    width: 100%;
    max-width: 520px;

    justify-self: end;
}

.hero-image::before {
    content: "";

    position: absolute;

    inset: 18px -18px -18px 18px;

    border-radius: var(--raio-grande);

    background: var(--terracota);

    z-index: 0;
}

.hero-image img {
    position: relative;
    z-index: 1;

    display: block;

    width: 100%;
    height: auto;

    object-fit: contain;

    border-radius: var(--raio-grande);

    box-shadow:
        0 22px 55px rgba(0, 0, 0, 0.23);
}

.image-caption {
    position: absolute;

    z-index: 2;

    right: 15px;
    bottom: 15px;
    left: 15px;

    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 12px;

    padding: 11px 14px;

    border-radius: 10px;

    background: rgba(0, 29, 59, 0.88);

    backdrop-filter: blur(8px);

    color: var(--branco);

    font-size: 0.66rem;

    font-weight: 700;

    letter-spacing: 0.9px;
}


/* =========================================================
   BOTÕES
   ========================================================= */

.btn {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-height: 50px;

    padding: 13px 26px;

    border: 1px solid transparent;

    border-radius: 100px;

    background: var(--amarelo);

    color: var(--azul);

    font-family: "DM Sans", sans-serif;

    font-size: 0.92rem;

    font-weight: 700;

    cursor: pointer;

    transition:
        transform 0.25s ease,
        background 0.25s ease,
        color 0.25s ease,
        border-color 0.25s ease;
}

.btn:hover {
    transform: translateY(-3px);

    background: var(--branco);
}

.btn-header {
    min-height: 42px;

    padding: 10px 21px;

    font-size: 0.82rem;
}

.btn-outline {
    background: transparent;

    color: var(--branco);

    border-color: rgba(255, 255, 255, 0.45);
}

.btn-outline:hover {
    background: var(--branco);

    color: var(--azul);

    border-color: var(--branco);
}

.btn-light {
    background: var(--branco);

    color: var(--azul);
}

.btn-light:hover {
    background: var(--amarelo);

    color: var(--azul);
}


/* =========================================================
   LABELS
   ========================================================= */

.section-label {
    display: block;

    margin-bottom: 18px;

    color: var(--terracota);

    font-size: 0.73rem;

    font-weight: 700;

    letter-spacing: 2px;
}

.section-label.light {
    color: var(--amarelo);
}


/* =========================================================
   SOBRE O CONGRESSO
   ========================================================= */

.about {
    background: var(--fundo-claro);
}

.about-grid {
    display: grid;

    grid-template-columns: 0.9fr 1.1fr;

    gap: 100px;

    align-items: center;
}

.about-image {
    position: relative;

    max-width: 550px;
}

.about-image img {
    position: relative;

    z-index: 1;

    width: 100%;
    height: auto;

    border-radius: var(--raio-grande);
}

.about-image::after {
    content: "";

    position: absolute;

    width: 80px;
    height: 80px;

    right: -22px;
    bottom: -22px;

    border-radius: 50%;

    background: var(--amarelo);

    z-index: 0;
}

.about h2,
.section-heading h2,
.audience h2 {
    color: var(--azul);

    font-size: clamp(2.8rem, 5vw, 5rem);

    line-height: 0.98;
}

.about h2 span,
.section-heading h2 span,
.audience h2 span {
    color: var(--terracota);
}

.about-content p {
    max-width: 650px;

    margin-bottom: 22px;
}

.about-content .highlight {
    color: var(--verde);

    font-family: "Playfair Display", serif;

    font-size: 1.3rem;

    line-height: 1.5;
}

.text-link {
    display: inline-flex;

    align-items: center;

    gap: 8px;

    margin-top: 8px;

    color: var(--terracota);

    font-weight: 700;
}

.text-link span {
    transition: transform 0.2s ease;
}

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


/* =========================================================
   NÚMEROS
   ========================================================= */

.numbers {
    padding: 75px 0;

    background: var(--verde);

    color: var(--branco);
}

.numbers-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 40px;
}

.number-item {
    display: flex;

    flex-direction: column;
}

.number-item strong {
    color: var(--amarelo);

    font-family: "Playfair Display", serif;

    font-size: 4rem;

    line-height: 1;
}

.number-item span {
    max-width: 220px;

    margin-top: 8px;

    color: rgba(255, 255, 255, 0.72);
}


/* =========================================================
   TEMÁRIO
   ========================================================= */

.theme {
    position: relative;

    overflow: hidden;

    background: var(--terracota);

    color: var(--branco);

    text-align: center;
}

.theme::before {
    content: "";

    position: absolute;

    width: 400px;
    height: 400px;

    left: -200px;
    top: -200px;

    border: 1px solid rgba(255, 255, 255, 0.15);

    border-radius: 50%;
}

.theme-content {
    position: relative;

    max-width: 1000px;
}

.quote-mark {
    height: 65px;

    color: var(--amarelo);

    font-family: "Playfair Display", serif;

    font-size: 9rem;

    line-height: 1;
}

.theme h2 {
    margin-bottom: 35px;

    font-size: clamp(2.8rem, 6vw, 6rem);

    line-height: 1.03;
}

.theme p {
    max-width: 680px;

    margin: 0 auto;

    color: rgba(255, 255, 255, 0.8);

    font-size: 1.1rem;
}


/* =========================================================
   SESSÕES TEMÁTICAS
   ========================================================= */

.sessions {
    background: var(--branco);
}

.section-heading {
    display: flex;

    justify-content: space-between;
    align-items: flex-end;

    gap: 50px;

    margin-bottom: 65px;
}

.section-heading p {
    max-width: 430px;

    color: var(--cinza);
}

.sessions-grid {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 18px;
}

.session-card {
    position: relative;

    min-height: 210px;

    padding: 30px;

    display: flex;

    flex-direction: column;
    justify-content: space-between;

    overflow: hidden;

    border-radius: var(--raio);

    background: var(--fundo-claro);

    border-left: 5px solid var(--verde);

    transition:
        transform 0.25s ease,
        background 0.25s ease,
        color 0.25s ease;
}

.session-card:nth-child(3n + 2) {
    border-left-color: var(--amarelo);
}

.session-card:nth-child(3n) {
    border-left-color: var(--terracota);
}

.session-card:hover {
    transform: translateY(-6px);

    background: var(--azul);

    color: var(--branco);
}

.session-card span {
    color: var(--terracota);

    font-size: 0.8rem;

    font-weight: 700;
}

.session-card:hover span {
    color: var(--amarelo);
}

.session-card h3 {
    max-width: 500px;

    font-size: 1.65rem;

    line-height: 1.18;
}


/* =========================================================
   PROGRAMAÇÃO
   ========================================================= */

.schedule {
    background: var(--fundo-verde);
}

.schedule-grid {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 18px;

    align-items: start;
}

.schedule-day {
    min-width: 0;

    padding: 28px;

    border-radius: var(--raio);

    background: var(--branco);

    box-shadow:
        0 8px 30px rgba(0, 29, 59, 0.04);
}

.schedule-day.featured {
    background: var(--azul);

    color: var(--branco);
}

.day-header {
    display: flex;

    align-items: center;

    gap: 15px;

    margin-bottom: 25px;

    padding-bottom: 20px;

    border-bottom:
        1px solid rgba(0, 29, 59, 0.1);
}

.featured .day-header {
    border-color:
        rgba(255, 255, 255, 0.14);
}

.day-header > span {
    color: var(--terracota);

    font-family: "Playfair Display", serif;

    font-size: 3.3rem;

    line-height: 1;
}

.featured .day-header > span {
    color: var(--amarelo);
}

.day-header strong {
    display: block;

    color: var(--azul);

    font-size: 0.95rem;
}

.featured .day-header strong {
    color: var(--branco);
}

.day-header p {
    color: var(--cinza);

    font-size: 0.76rem;
}

.featured .day-header p {
    color: rgba(255, 255, 255, 0.55);
}


/* =========================================================
   ITENS DA PROGRAMAÇÃO
   ========================================================= */

.schedule-items {
    display: flex;

    flex-direction: column;
}

.schedule-item {
    display: grid;

    grid-template-columns:
        58px minmax(0, 1fr);

    gap: 10px;

    padding: 13px 0;

    border-bottom:
        1px solid rgba(0, 29, 59, 0.1);
}

.schedule-item:last-child {
    border-bottom: 0;
}

.featured .schedule-item {
    border-color:
        rgba(255, 255, 255, 0.13);
}

.schedule-time {
    display: block;

    color: var(--terracota);

    font-size: 0.67rem;

    font-weight: 700;

    line-height: 1.25;
}

.featured .schedule-time {
    color: var(--amarelo);
}

.schedule-item h3 {
    color: var(--azul);

    font-family: "DM Sans", sans-serif;

    font-size: 0.82rem;

    font-weight: 700;

    line-height: 1.3;
}

.featured .schedule-item h3 {
    color: var(--branco);
}

.schedule-item p {
    margin-top: 3px;

    color: var(--cinza);

    font-size: 0.72rem;

    line-height: 1.4;
}

.featured .schedule-item p {
    color: rgba(255, 255, 255, 0.6);
}

.schedule-item.highlight {
    margin: 3px -10px;

    padding-right: 10px;
    padding-left: 10px;

    border-radius: 8px;

    background:
        rgba(227, 160, 27, 0.1);
}

.schedule-day.featured .schedule-item.highlight {
    background:
        rgba(227, 160, 27, 0.12);
}

.schedule-item.no-time {
    grid-template-columns:
        58px minmax(0, 1fr);
}

.schedule-item.no-time .schedule-time {
    color: rgba(89, 99, 109, 0.5);
}


/* =========================================================
   CIDADE DA LEITURA
   ========================================================= */

.city {
    padding: 130px 0;

    background: var(--verde);

    color: var(--branco);
}

.city-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 100px;

    align-items: center;
}

.city h2 {
    margin-bottom: 30px;

    font-size: clamp(4rem, 7vw, 7rem);

    line-height: 0.88;
}

.city h2 span {
    color: var(--amarelo);
}

.city-content > p {
    max-width: 520px;

    color: rgba(255, 255, 255, 0.78);

    font-size: 1.05rem;
}

.city-features {
    display: flex;

    flex-wrap: wrap;

    gap: 9px;

    margin-top: 30px;
}

.city-features span {
    padding: 9px 14px;

    border: 1px solid
        rgba(255, 255, 255, 0.22);

    border-radius: 100px;

    color: rgba(255, 255, 255, 0.85);

    font-size: 0.76rem;
}

.city-image {
    position: relative;

    max-width: 600px;

    justify-self: end;
}

.city-image::before {
    content: "";

    position: absolute;

    inset: 25px 25px -25px -25px;

    border-radius: var(--raio-grande);

    background: var(--amarelo);

    z-index: 0;
}

.city-image img {
    position: relative;

    z-index: 1;

    width: 100%;
    height: auto;

    border-radius: var(--raio-grande);
}


/* =========================================================
   PÚBLICO
   ========================================================= */

.audience {
    text-align: center;
}

.audience-tags {
    display: flex;

    justify-content: center;

    flex-wrap: wrap;

    gap: 12px;

    margin-top: 55px;
}

.audience-tags span {
    padding: 13px 20px;

    border: 1px solid
        rgba(0, 29, 59, 0.1);

    border-radius: 100px;

    background: var(--branco);

    color: var(--azul);

    transition:
        background 0.25s ease,
        color 0.25s ease,
        transform 0.25s ease;
}

.audience-tags span:hover {
    transform: translateY(-3px);

    background: var(--verde);

    color: var(--branco);
}


/* =========================================================
   INSCRIÇÕES
   ========================================================= */

.registration {
    position: relative;

    overflow: hidden;

    padding: 130px 0;

    background: var(--azul);

    color: var(--branco);

    text-align: center;
}

.registration::before {
    content: "";

    position: absolute;

    width: 500px;
    height: 500px;

    right: -250px;
    top: -250px;

    border: 1px solid
        rgba(255, 255, 255, 0.1);

    border-radius: 50%;
}

.registration-content {
    position: relative;

    max-width: 850px;
}

.registration h2 {
    margin-bottom: 30px;

    font-size: clamp(3.5rem, 7vw, 7rem);

    line-height: 0.94;
}

.registration h2 span {
    color: var(--amarelo);
}

.registration p {
    max-width: 600px;

    margin: 0 auto 35px;

    color: rgba(255, 255, 255, 0.68);
}


/* =========================================================
   RODAPÉ
   ========================================================= */

.footer {
    padding-top: 75px;

    background: var(--azul-escuro);

    color: var(--branco);
}


/* =========================================================
   LOGOS INSTITUCIONAIS DO RODAPÉ
   ========================================================= */

.footer-institutions {
    display: flex;

    align-items: center;

    gap: 25px;

    padding: 0 0 55px;

    border-bottom:
        1px solid rgba(255, 255, 255, 0.1);
}

.institution-logo {
    display: flex;

    align-items: center;
}

.footer-logo-box {
    width: 250px;
    height: 100px;

    display: flex;

    align-items: center;
    justify-content: center;

    padding: 15px 25px;

    background: var(--branco);

    border-radius: 10px;

    box-shadow:
        0 8px 25px rgba(0, 0, 0, 0.12);
}

.footer-logo-box img {
    width: auto;

    max-width: 100%;

    height: 68px;

    object-fit: contain;
}


/* =========================================================
   INFORMAÇÕES DO RODAPÉ
   ========================================================= */

.footer-grid {
    display: grid;

    grid-template-columns:
        2fr 1fr 1fr;

    gap: 60px;

    padding: 60px 0;
}

.footer-logo {
    color: var(--amarelo);

    font-family: "Playfair Display", serif;

    font-size: 3rem;

    font-weight: 700;

    line-height: 1;
}

.footer p {
    margin-top: 12px;

    color: rgba(255, 255, 255, 0.55);

    font-size: 0.88rem;
}

.footer strong {
    color: var(--amarelo);

    font-size: 0.72rem;

    letter-spacing: 1.5px;

    text-transform: uppercase;
}


/* =========================================================
   RODAPÉ INFERIOR
   ========================================================= */

.footer-bottom {
    display: flex;

    justify-content: space-between;

    gap: 20px;

    padding: 25px 0;

    border-top:
        1px solid rgba(255, 255, 255, 0.1);

    color: rgba(255, 255, 255, 0.4);

    font-size: 0.72rem;
}


/* =========================================================
   RESPONSIVIDADE — ATÉ 1050 PX
   ========================================================= */

@media (max-width: 1050px) {

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

    .nav {
        display: none;
    }

    .hero {
        padding-top: 125px;
        padding-bottom: 80px;
    }

    .hero-grid {
        grid-template-columns:
            minmax(0, 1fr)
            minmax(330px, 0.75fr);

        gap: 45px;
    }

    .hero-image {
        max-width: 460px;
    }
}


/* =========================================================
   RESPONSIVIDADE — ATÉ 800 PX
   ========================================================= */

@media (max-width: 800px) {

    .hero {
        min-height: auto;
        padding: 115px 0 75px;
    }

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

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

    .hero-image {
        width: min(100%, 600px);
        justify-self: center;
    }
}


/* =========================================================
   RESPONSIVIDADE — ATÉ 600 PX
   ========================================================= */

@media (max-width: 600px) {

    .container {
        width: min(92%, 1180px);
    }

    .section {
        padding: 75px 0;
    }

    .hero {
        padding: 110px 0 70px;
    }

    .hero-logos {
        flex-direction: column;

        align-items: flex-start;

        gap: 10px;

        margin-bottom: 30px;
    }

    .hero-logo-box,
    .hero-logo-box + .hero-logo-box {
        width: 190px;
        height: 68px;
    }

    .hero-logo {
        height: 45px;
    }

    .hero h1 {
        font-size: clamp(4.8rem, 21vw, 6.5rem);

        letter-spacing: -3px;
    }

    .hero h2 {
        font-size: 2.2rem;
    }

    .hero-description {
        font-size: 0.98rem;
    }

    .hero-info {
        gap: 30px;

        margin: 32px 0;
    }

    .hero-buttons {
        flex-direction: column;

        align-items: stretch;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .hero-image::before {
        inset: 15px -15px -15px 15px;
    }

    .image-caption {
        right: 12px;
        bottom: 12px;
        left: 12px;

        padding: 11px 12px;

        font-size: 0.62rem;
    }

    .about h2,
    .section-heading h2,
    .audience h2 {
        font-size: 3rem;
    }

    .theme h2 {
        font-size: 2.8rem;
    }

    .quote-mark {
        font-size: 7rem;
    }

    .numbers {
        padding: 55px 0;
    }

    .numbers-grid {
        grid-template-columns: 1fr;

        gap: 30px;
    }

    .number-item {
        padding-bottom: 25px;

        border-bottom:
            1px solid rgba(255, 255, 255, 0.15);
    }

    .number-item:last-child {
        padding-bottom: 0;

        border-bottom: 0;
    }

    .number-item strong {
        font-size: 3.3rem;
    }

    .session-card {
        min-height: 180px;

        padding: 25px;
    }

    .session-card h3 {
        font-size: 1.4rem;
    }

    .schedule-day {
        padding: 22px;
    }

    .city {
        padding: 90px 0;
    }

    .city h2 {
        font-size: 4rem;
    }

    .registration {
        padding: 95px 0;
    }

    .registration h2 {
        font-size: 3.7rem;
    }

    .footer {
        padding-top: 55px;
    }

    .footer-institutions {
        flex-direction: column;

        align-items: flex-start;

        gap: 18px;

        padding-bottom: 40px;
    }

    .footer-logo-box {
        width: 210px;
        height: 82px;

        padding: 12px 18px;
    }

    .footer-logo-box img {
        height: 55px;
    }

    .footer-grid {
        grid-template-columns: 1fr;

        gap: 35px;

        padding: 45px 0;
    }

    .footer-grid > div:first-child {
        grid-column: auto;
    }

    .footer-logo {
        font-size: 2.6rem;
    }

    .footer-bottom {
        flex-direction: column;

        gap: 8px;
    }

}