@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,300;0,400;0,500;0,700;0,900;1,300;1,400;1,500;1,700;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,400;0,500;0,600;0,700;0,800;1,600;1,700;1,800&display=swap');
@import url("https://fonts.googleapis.com/css2?family=Dancing+Script&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat&display=swap");

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
    outline: none;
    border: none;
    text-decoration: none;
}

/* Header fixo no topo */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    /* Certifica que o header está acima de outros elementos */
    background-color: black;
    /* Fundo do menu */
    height: 80px;
    /* Altura do header */
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

body {
    margin: 0;
    padding: 0;
    background-color: black;
    color: white;
    overflow: hidden;
    height: auto;
    /* Permite altura dinâmica */
    overflow-y: scroll;
    /* Ativa a rolagem vertical */
    margin: 0;
    padding: 0;
}

html {
    width: 100vw;
    height: 100vh;
    font-size: 62.5%;
    font-family: 'Open Sans', sans-serif;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

.content {
    width: 100vw;
    height: 70px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    background-color: #000000;
    position: fixed;
    padding-left: 30rem;
    width: 100%;
}

.logo {
    width: 190px;
    height: auto;
    cursor: pointer;
    display: flex;
    align-items: left;
}

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

.content .list-menu {
    width: 600px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.content .list-menu li a {
    padding-top: 3rem;
    padding-bottom: 2rem;
    color: rgb(255, 255, 255);
    font-size: 1.8rem;
    text-transform: uppercase;
    font-weight: 500;
    transition: all 200ms ease-in;
}

.content .list-menu li a:hover {
    background-color: #333333;
    border-bottom: 4px solid #e7b100;
    color: #e7b100;
}

h2.first-section {
    text-align: center;
    font-size: 3rem;
    /* Tamanho do texto - ajuste conforme necessário */
    margin-top: 20vh;
    /* Espaço do topo - ajuste conforme necessário */
    margin-bottom: 10vh;
    /* Espaço inferior - ajuste conforme necessário */
}

h2.first-section .text-animation {
    margin-top: auto;
    overflow: hidden;
    border-right: .15em solid orange;
    white-space: nowrap;
    font-family: 'Open Sans', sans-serif;
    font-size: inherit;
    margin-bottom: 0.5rem;
}


.first-section .conteudo-principal {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 300px;
    text-align: center;
}

.first-section h1 {
    color: #ffc506;
    font-size: 6rem;
    text-transform: uppercase;
    margin-bottom: 1rem;
    font-family: 'Open Sans', sans-serif;
}

.first-section h2 {
    color: rgb(177, 177, 177);
    font-size: 3rem;
    font-weight: 400;
    text-transform: uppercase;
    font-family: 'Open Sans', sans-serif;
    margin-bottom: 3rem;
}


.btn button {
    width: 300px;
    height: 60px;
    cursor: pointer;
    text-transform: uppercase;
    background-color: #ffc506;
    border-radius: 10px;
    color: black;
    font-weight: 700;
    transition: all 400ms ease-in;
}

.btn button:hover {
    border: 1px solid #ffc506;
    background-color: transparent;
    color: #ffc506;
}

.btn {

    width: 480px;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    flex-direction: column;
    align-content: center;
    align-items: center;
    margin-bottom: auto;
}

.btn a {
    text-decoration: none;
    /* Remover sublinhado do link */
}

.sobrenos {
    padding-top: 10rem;
    background-color: #000000;
    width: 100%;
    color: white;
    display: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.contentsobre {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.main {
    display: block;
    justify-content: space-between;
    flex-wrap: wrap;
    flex-direction: row;
}

.contentsobre h2 {
    font-size: 6rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    margin: 0 auto;
}

.contentsobre p {
    text-align: center;
    font-size: 1.8rem;
    width: 600px;
    margin: 0 auto;
}

footer {
    height: 25px;
    background-color: #000000;
    color: rgb(255, 255, 255);
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 60px;
}

.image {
    width: 100%;
    max-width: 300px;
    margin-bottom: 20px;
}

.image img {
    width: 100%;
    /* As imagens ocupam toda a largura */
    height: auto;
    /* Mantêm as proporções */
    object-fit: contain;
}

.content {
    position: fixed;
    width: 100%;
    text-align: center;
    z-index: 100;

}

.contentcardapio {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    margin-top: 30px;
    height: 100vh;
    position: relative;

}

/* Botão "Voltar" posicionado abaixo do carrossel */
.button {
    position: relative;
    /* O botão fica dentro do fluxo normal */
    margin: 20px auto;
    /* Centraliza horizontalmente */
    display: block;
    width: 220px;
    height: 50px;
    background-color: #ffc506;
    /* Fundo amarelo */
    color: black;
    border-radius: 10px;
    text-align: center;
    line-height: 50px;
    /* Alinha verticalmente o texto */
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    /* Remove o sublinhado */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    /* Sombra do botão */
    transition: all 0.3s ease-in-out;
}

.button:hover {
    background-color: rgba(255, 255, 255, 0.9);
    /* Fundo branco no hover */
    color: #ffc506;
    /* Texto amarelo */
    border: 1px solid #ffc506;
    /* Borda amarela */
}

.carousel-container {
    position: relative;
    width: 100%;
    margin-top: 80px;
    /* Espaço para o header fixo */
    margin-bottom: 100px;
    /* Aumenta o espaço entre o carrossel e o botão */
    height: auto;
    /* Ajusta dinamicamente com rolagem */
    overflow: hidden;
}


.gallery {
    display: flex;
    flex-wrap: wrap;
    padding-top: 100px;
    /* Espaço para evitar colisão com o header */
    justify-content: center;
}

.image {
    width: 100%;
    max-width: 400px;
    margin-bottom: 20px;

}

.image img {
    width: 100%;
    height: auto;
    display: block;
}


.carousel-container {
    position: relative;
    width: 100%;

    height: 100%;

    max-width: 100%;

    overflow: hidden;
    max-height: calc(100vh - 100px);
    overflow-y: hidden;
    margin-bottom: 20px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Ajusta as imagens no carrossel */
.carousel {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.image {
    min-width: 100%;
    /* Cada slide ocupa toda a largura */
    height: 100%;
    /* Cada slide ocupa toda a altura */
    flex-shrink: 0;
}

.image img {
    width: 100%;
    /* Ajusta a largura da imagem */
    height: 100%;
    /* Ajusta a altura da imagem */
    object-fit: contain;
    /* Evita cortes ou distorções */
}

button.prev,
button.next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1;
    font-size: 30px;
}

button.prev {
    left: 10px;
}

button.next {
    right: 10px;
}


/*.carousel-container {
    position: relative;
    max-width: 100%;
    overflow: hidden;
    margin: 0 auto;
    margin-top: 7rem;
}

.carousel {
    display: flex;
    transition: transform 0.5s ease;
    width: 100%;

}

.image {
    flex: 0 0 100%;

}

img {
    width: 100%;
    height: auto;
}*/

/*


button.prev,
button.next {
    position: absolute;
    top: 30%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1;
    font-size: 30px
}

button.prev {
    left: 0;
}

button.next {
    right: 0;
}
*/

.container {
    display: flex;
    flex-direction: column;
    height: 100vh;
    padding-left: 20px;
}

.imagem {
    text-align: center;
}

.imagem img {
    width: 200px;
    height: auto;
    border-radius: 10px;
    margin-top: 70px;
    align-items: left;
    animation: bounce 3s infinite alternate;

}

.imagem p {
    margin-top: 10px;
    font-size: 2rem;

}


.contentunidades {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    margin-top: 10px;
    position: relative;
}

.btnhome {
    width: 150px;
    height: 40px;
    cursor: pointer;
    text-transform: uppercase;
    background-color: #ffc506;
    border-radius: 10px;
    color: black;
    font-weight: bold;
    font-size: 1.5rem;
    transition: all 400ms ease-in;
    text-align: center;
    line-height: 40px;
    display: flex;
    text-decoration: none;
    margin: 0 auto;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    justify-content: center;
}

.btnhome:hover {
    border: 1px solid #ffc506;
    background-color: transparent;
    color: #ffc506;
}


/* Ajuste para desbloquear a rolagem */
body.unidades-page {
    overflow: scroll;
}

.link-cardapio {
    color: black;
    margin-bottom: 10px;
    padding: 10px;
    border-radius: 5px;
    flex-grow: 1;
    background-color: #ffd700;
}

.link-cardapio a {
    background-color: #ffd700;
    color: black;
    font-size: 1.6rem;
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
}

.link-wpp {
    color: black;
    margin-bottom: 10px;
    padding: 10px;
    border-radius: 5px;
    flex-grow: 1;
    background-color: #ffd700;
}

.link-wpp a {
    background-color: #ffd700;
    color: black;
    font-size: 1.6rem;
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
}

.link-mapas {
    display: flex;
    gap: 10px;
}

.link-mapas a {
    flex: 1;
    margin-bottom: 10px;
    padding: 8px 15px;
    background-color: #ffd700;
    color: black;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    box-sizing: border-box;
    outline: none;
    font-size: 1.2rem;
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
}

.text-animation {
    font-weight: 500;
    overflow: hidden;
    border-right: .15em solid orange;
    white-space: nowrap;
    font-family: 'Open Sans', sans-serif;
    text-transform: uppercase;
    font-size: 4vw;
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#flipbook {
    width: 800px;
    height: 600px;
    margin: 50px auto;
    position: relative;
}

.page {
    width: 400px;
    height: 600px;
    background-color: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


@keyframes typing {
    from {
        width: 0;
    }

    to {
        width: 100%;
    }
}

@keyframes blinking-caret {

    from,
    to {
        border-right-color: transparent;
    }

    50% {
        border-right-color: orange;
    }
}

@keyframes erase {
    from {
        width: 100%;
    }

    to {
        width: 0;
    }
}

.background-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: opacity 1s ease-in-out;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    animation: zoomInOut 10s infinite alternate ease-in-out;
}

.background-image.hide {
    opacity: 0;
}

.background-image.fade-out {
    opacity: 0 !important;
    transition: opacity 1s ease-in-out !important;
}

@keyframes zoomInOut {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.1);
    }
}

.carousel-unidades {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin: 0 auto;
    margin-top: 40px;
}

.carousel-unid {
    display: flex;
    transition: transform 0.5s ease;
}

.ponto-comercio {
    flex: 0 0 100%;
    padding: 10px;
    text-align: center;
}

.ponto-comercio img {
    width: 100%;
    height: auto;
    max-width: 500px;
    margin-top: 20px;
    border-radius: 10px;
    object-fit: cover;
}

.ponto-comercio p {
    font-size: auto;
}


/*
1200px
980px
870px
720px
645px
399px
*/


@media (max-width: 1200px) {
    .content {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        padding: 0px 40px;
    }

    .main {
        display: flex;
    }

    .contentsobre {
        max-width: 100%;
        margin: auto;
    }

    .btn {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }

    .btn button {
        width: 300px;
        height: 50px;
        font-size: 1.4rem;
        display: center;
    }

    .button {
        width: 200px;
        height: 45px;
        font-size: 16px;
        line-height: 45px;
    }

    .carousel-container {
        height: auto;
    }
}

@media (max-width: 980px) {

    html {
        font-size: 50%;
    }

    .button {
        width: 180px;
        height: 40px;
        font-size: 14px;
        line-height: 40px;
    }

    .carousel-container {
        height: auto;
    }

}


@media (max-width: 870px) {

    .content {
        justify-content: space-between;
        padding: 0px 40px;
    }

    .content .list-menu {
        display: none;
    }

    .one,
    .two,
    .three {
        width: 100%;
        height: 4px;
        background-color: white;
        margin: 6px auto;

        transition-duration: 0.5s;
    }

    .menu-toggle {
        width: 3rem;
        height: 3rem;


    }

    .content.on {
        position: absolute;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background-color: #1f1e1f;
        z-index: 10;
        display: flex;
        justify-content: center;
        align-items: center;

    }

    .content.on .logo {
        display: none;
    }

    .content.on .menu-toggle {
        position: absolute;
        right: 40px;
        top: 20px;
    }

    .content.on .list-menu {
        display: block;

    }

    .content.on .list-menu li {
        text-align: center;
        display: flex;
        justify-content: center;

    }

    .content.on .list-menu li a {
        font-size: 3rem;
        display: block;
    }


    .content.on .menu-toggle .one {
        transform: rotate(45deg) translate(8px, -7px);
    }

    .content.on .menu-toggle .two {
        opacity: 0;
    }

    .content.on .menu-toggle .three {
        transform: rotate(-45deg) translate(20px, -6px);
    }

    h2.first-section {
        font-size: 2rem;
        margin-top: 15vh;
        margin-bottom: 15vh;
    }

    .text-animation {
        font-size: 2vw;
    }

    .content {
        padding-left: 10px;
    }

    .logo {
        width: 150px;
    }


    .first-section h1 {
        font-size: 3.5rem;
    }

    .btn {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }

    .btn button {
        width: 300px;
        height: 50px;
        font-size: 14px;
        display: center;
    }

    .sobrenos {
        padding: 50px 20px;
    }

    .main {
        display: flex;
        flex-direction: column;
    }

    .contentsobre {
        max-width: 100%;
        margin-bottom: 20px;
    }

    .list-menu {
        display: none;
    }

    .contentsobre h2 {
        font-size: 4rem;
        margin-top: 4rem;
        margin-bottom: 1rem;
        text-transform: uppercase;
    }

    .contentsobre p {
        max-width: 100%;
        margin-bottom: 5px;
        padding: 0 10px;
        box-sizing: border-box;
        overflow-wrap: break-word;
        word-wrap: break-word;
    }

    .button {
        margin: 0 auto;
    }

    html,
    body {
        position: fixed;
        width: 100%;
        height: 100%;
        overflow-x: hidden;
    }

    .typing-text {
        font-size: 1.8rem;
        margin-bottom: 10px;
        border-right: 1px solid white;
    }
}

/* Ajustes para dispositivos menores */

@media (max-width: 768px) {
    .carousel-container {
        margin-bottom: 100px;
        /* Garante o mesmo espaço em dispositivos menores */
    }

    .button {
        width: 160px;
        height: 40px;
        font-size: 14px;
        line-height: 40px;
    }

    .carousel-container {
        margin-top: 80px;
        /* Garante que o carrossel não fique sob o header */
        height: calc(100vh - 80px);
        /* Ajusta a altura restante */
    }

    .image img {
        width: 100%;
        /* Garante que as imagens ocupem a largura completa */
        height: auto;
        /* Ajusta a altura automaticamente */
        object-fit: cover;
        /* Evita distorções */
    }
}

@media (max-width: 720px) {

    h2.first-section {
        font-size: 2rem;
        margin-top: 15vh;
        margin-bottom: 15vh;
    }


    .text-animation {
        font-size: 4vw;

    }

    .content {
        padding-left: 10px;
    }

    .logo {
        width: 150px;
    }

    .first-section h1 {
        font-size: 3.5rem;
    }

    .btn {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }

    .btn button {
        width: 300px;
        height: 50px;
        font-size: 14px;
        display: center;
    }

    .sobrenos {
        padding: 50px 20px;
    }

    .main {
        display: flex;
        flex-direction: column;
    }

    .contentsobre {
        max-width: 100%;
        margin-bottom: 20px;
    }

    .contentsobre h2 {
        font-size: 4rem;
        margin-top: 4rem;
        margin-bottom: 1rem;
        text-transform: uppercase;
    }

    .contentsobre p {
        max-width: 100%;
        margin-bottom: 5px;
        padding: 0 10px;
        box-sizing: border-box;
        overflow-wrap: break-word;
        word-wrap: break-word;
    }

    .button {
        margin: 0 auto;
    }

    html,
    body {
        position: fixed;
        width: 100%;
        height: 100%;
        overflow-x: hidden;
    }

    .typing-text {
        font-size: 1.8rem;
        margin-bottom: 10px;
        border-right: 1px solid white;

    }


    .ponto-comercio h2 {
        font-size: 2.5rem;
    }

    .ponto-comercio p {
        font-size: 1.6rem;
    }

    .ponto-comercio img {
        max-width: 390px;
        max-height: 200px;
        height: auto;
        margin-top: 0 auto;
    }
}

@media (max-width: 399px) {

    .contentsobre p {
        text-align: center;
        width: 250px;
    }

    .text-animation {
        font-size: 4vw;
    }

    .menu-toggle {
        width: 3rem;
        height: 3rem;


    }

    .content.on {
        position: absolute;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background-color: #1f1e1f;
        z-index: 10;
        display: flex;
        justify-content: center;
        align-items: center;

    }

    .content.on .logo {
        display: none;
    }

    .content.on .menu-toggle {
        position: absolute;
        right: 40px;
        top: 20px;
    }

    .content.on .list-menu {
        display: block;

    }

    .content.on .list-menu li {
        text-align: center;
        display: flex;
        justify-content: center;

    }

    .content.on .list-menu li a {
        font-size: 2.5rem;
        display: block;
    }


    .content.on .menu-toggle .one {
        transform: rotate(45deg) translate(8px, -7px);
    }

    .content.on .menu-toggle .two {
        opacity: 0;
    }

    .content.on .menu-toggle .three {
        transform: rotate(-45deg) translate(20px, -6px);
    }

    .button {
        top: -5rem
    }


}


@media (max-width: 210px) {
    .content.on .list-menu li a {
        font-size: 1.5rem;
        display: block;
    }

    .text-animation {
        font-size: 3vw;
    }

    .button {
        top: -1.5rem
    }

    .btn button {
        width: 150px;
        height: 30px;
        font-size: 11px;
        display: center;
        margin-top: -50px;
    }

    .contentsobre h2 {
        font-size: 2rem;
        margin-top: 4rem;
        margin-bottom: 1rem;
        text-transform: uppercase;
    }

    .contentsobre p {
        max-width: 100%;
        margin-bottom: 5px;
        padding: 0 10px;
        box-sizing: border-box;
        overflow-wrap: break-word;
        word-wrap: break-word;
        font-size: 100%;
    }


}

#flipbook {
    width: 800px;
    height: 600px;
    margin: 50px auto;
    position: relative;
}

.page {
    width: 400px;
    /* Metade da largura do flipbook */
    height: 600px;
    background-color: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

button.prev,
button.next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1;
    font-size: 30px;
}

button.prev {
    left: 0;
}

button.next {
    right: 0;
}

/* Ajuste da proporção do cardápio para telas grandes */
@media (min-width: 1024px) {
    .contentcardapio {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        max-width: 70%;
        margin: auto;
        padding: 20px;
    }

    .carousel-container {
        width: 100%;
        max-width: 900px;
        margin: auto;
    }

    .carousel img {
        width: 100%;
        height: auto;
        max-height: 500px;
        object-fit: contain;
    }

    .menu-container {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        max-width: 80%;
        margin: auto;
    }

    .menu-items {
        width: 55%;
        font-size: 1.6rem;
        /* Ajuste de tamanho de fonte para manter proporção */
        line-height: 2.5rem;
    }

    .menu-image {
        width: 40%;
        max-width: 400px;
    }
}


/* Ajuste adicional para diminuir o tamanho do cardápio e melhorar a proporção */
@media (min-width: 1024px) {
    .contentcardapio {
        max-width: 60%;
    }

    .menu-items {
        width: 50%;
        font-size: 1.4rem;
        /* Reduzindo tamanho da fonte para melhor proporção */
        line-height: 2.2rem;
    }

    .menu-image {
        width: 35%;
        max-width: 350px;
    }

    .carousel img {
        max-height: 450px;
        /* Reduzindo altura do carrossel para melhor ajuste */
    }
}


/* Correção para evitar corte do topo da imagem do cardápio */
@media (min-width: 1024px) {
    .carousel img {
        object-fit: contain;
        /* Mantém a imagem completa sem cortes */
        max-height: 550px;
        /* Ajuste para melhor visualização */
        margin-top: 70px;
        /* Adicionando margem para evitar corte do topo */
    }

    .carousel-container {
        display: flex;
        justify-content: center;
        align-items: center;
        height: auto;
        padding-top: 20px;
        /* Garante que a imagem não fique colada no topo */
    }

    .first-section h1 {
        margin-bottom: 4rem;
        /* Aumentando o espaçamento abaixo do texto */
    }

    .btn {
        margin-top: 5rem;
        /* Ajuste extra para separar o botão */
    }

    html,
    body {
        height: 100%;
        margin: 0;
        padding: 0;
        overflow-x: hidden;
    }

    .main-content {
        min-height: 100vh;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
}