@font-face {
    src: url('../font/InlanderDemo-Eag8W.otf') format('opentype');
    font-family: 'Inlander';
}

@font-face {
    src: url('../font/Vintage Rotter.otf') format('opentype');
    font-family: 'Vintage Rotter';
}

@font-face {
    src: url('../font/BrittanySignature.ttf') format('truetype');
    font-family: 'Brittany Signature Regular';
}

@font-face {
    src: url('../font/Baskerville Old Face.TTF') format('truetype');
    font-family: 'Bask Old Face';
}

* {
    transition: all .1s ease;
    box-sizing: border-box;
    margin: 0;
    outline: none;
    padding: 0;
    font-weight: normal;
    list-style: none;
    text-decoration: none;
}

:root {
    --cor-dourado-header: #b69765;
    --cor-dourado-cursiva: #b7a377;
    --cor-titulo: #9f9c4d;
    --cor-texto: #8f8f8f;
    --cor-verde: #7e9a36;
    --cor-marrom: #a28b5a;
    --cor-fundo: #f6f4ef;
}

a {
    text-decoration: none;
}

body {
    background-color: #f6f4ef;
    overflow-x: hidden;
    font-family: 'Poppins', sans-serif;
}

.mask-img {
    position: relative;
    overflow: hidden;
}

.mask-img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}


.cursivo {
    color: var(--cor-dourado-cursiva);
    font-family: "Brittany Signature Regular", cursive;
}

/* HEADER  */
header {
    display: flex;
    position: absolute;
    top: 24px;
    left: 50%;
    flex-direction: column;
    transform: translateX(-50%);
    z-index: 100;
    margin: 0 auto;
    border-radius: 25px;
    padding: 20px 40px;
    padding-bottom: 350px;
    width: calc(100% - 50px);
    overflow: hidden;
}

header h1 {
    position: relative;
    z-index: 1000;
    cursor: pointer;
    box-shadow: rgba(0, 0, 0, 0.3) 0 0 28px 24px;
    border-radius: 70px;
    background: url(../imagens/logo.png) center no-repeat;
    background-color: rgba(0, 0, 0, 0.3);
    padding: 27px 86px;
    text-indent: -9999px;
}

header .topo {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

header .nav-desktop {
    display: flex;
    justify-content: center;
    border-top: 1px solid rgba(0, 0, 0, 0.302);
    border-bottom: 1px solid rgba(0, 0, 0, 0.302);
    padding: 18px 0;
    width: 100%;
}

header nav {
    display: flex;
    align-items: center;
    gap: 80px;
    box-shadow: rgba(0, 0, 0, 0.46) 0 0 80px 100px;
    border-radius: 70px;
    background-color: rgba(0, 0, 0, 0.46);
    padding: 0 200px;
}

header nav a {
    transition: color 0.3s ease;
    padding: 5px 10px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    font-size: 15px;
    font-family: "Montserrat", sans-serif;
    letter-spacing: 1px;
    text-transform: uppercase;
}

header nav a:hover {
    color: white;
}

header nav .divisor {
    background-color: rgba(255, 255, 255, 0.2);
    width: 1px;
    height: 20px;
}

header nav .nav-link.selected {
    position: relative;
    color: var(--cor-dourado-header);
    /* Framing based on mockup and user comments */
}

/* Left and right golden bars for selected item */
header nav .nav-link.selected::before,
header nav .nav-link.selected::after {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.9;
    background-color: var(--cor-dourado-header);
    width: 1px;
    height: 30px;
    content: '';
}

header nav .nav-link.selected::before {
    left: -2px;
}

header nav .nav-link.selected::after {
    right: -2px;
}

.menu-mobile-sombra,
.menu-mobile,
.bt_menu_mobile {
    display: none;
}

.como-chegar {
    display: flex;
    align-items: center;
    z-index: 0;
    box-shadow: rgba(0, 0, 0, 0.4) 0 0 50px 42px;
    border-radius: 70px;
    background-color: rgba(0, 0, 0, 0.4);
    padding: 10px;
}

.bt_como_chegar {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ffffff;
    font-weight: 300;
    font-size: 14px;
    font-family: "Montserrat", sans-serif;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.bt_como_chegar img {
    width: auto;
    height: 20px;
}


/* BANNER */
#banner {
    display: flex;
    position: relative;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 25px;
    border-radius: 25px;
    width: calc(100% - 50px);
    height: calc(100vh - 50px);
    overflow: hidden;
}

#banner .bkgd-img {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    filter: brightness(0.7);
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#banner .banner-content {
    position: relative;
    z-index: 2;
    box-shadow: rgba(0, 0, 0, 0.46) 0 0 80px 100px;
    border-radius: 70px;
    background-color: rgba(0, 0, 0, 0.46);
    padding: 30px;
    text-align: center;
}

#banner .cursivo {
    margin-bottom: 10px;
    font-size: 60px;
    text-align: center;
}

#banner p {
    margin: 0 auto;
    max-width: 900px;
    color: #ffffff;
    font-size: 60px;
    line-height: 1.1;
    font-family: "Bask Old Face", "Times New Roman", serif;
    text-align: center;
}

/* Scroll indicator */
#banner .scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

#banner .scroll-indicator img {
    width: auto;
    height: auto;
}

#eventos .cursivo,
#quem-somos .cursivo,
#sobre .cursivo {
    font-size: 60px;
    line-height: 100px;
}

#quem-somos h3,
#sobre h3 {
    margin-top: 10px;
    margin-bottom: 30px;
    color: var(--cor-titulo);
    font-weight: 700;
    font-size: 64px;
    line-height: 64px;
    font-family: "Montserrat", sans-serif;
}

#eventos p,
#quem-somos p,
#sobre p {
    color: #838383;
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    font-family: "Montserrat", sans-serif;
}

/* #############################
   # SEÇÃO SOBRE
   ############################# */
#sobre {
    margin-top: 90px;
    margin-bottom: 75px;
    background-color: #f6f4ef;
}

#sobre .centro {
    display: flex;
    display: grid;
    grid-template-columns: 1.54fr 430px 1fr;
    align-items: stretch;
    gap: 70px;
    margin: 0 auto;
    width: calc(100% - 50px);
    max-width: 1870px;
}

#sobre .esquerda {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-end;
}

#sobre .cabecalho {
    margin-top: 20px;
    max-width: 648px;
}

#sobre .meio {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

#sobre .direita {
    justify-content: flex-end;
}

/* imagens */
#sobre .mask-img img {
    display: block;
    border-radius: inherit;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#sobre .mask-img::after {
    position: absolute;
    top: 10px;
    right: 10px;
    bottom: 10px;
    left: 10px;
    z-index: 2;
    border: 1px solid #ffffff;
    pointer-events: none;
    content: "";
}

#sobre .esquerda .mask-img {
    border-radius: 64px 0 32px 64px;
    width: 100%;
    height: 100%;
    max-height: 441px;
}

#sobre .esquerda .mask-img::after {
    border-radius: 47px 0 0 47px;
}

#sobre .direita .mask-img {
    border-radius: 0 65px 65px 0;
    width: 100%;
    height: 750px;
}

#sobre .direita .mask-img::after {
    border-radius: 0 47px 47px 0;
}

/* Coluna do Meio */
#sobre .folha {
    margin-bottom: 50px;
}

#sobre .meio p {
    color: #8f8f8f;
    font-weight: 500;
    font-size: 16px;
    line-height: 26px;
    font-family: "Montserrat";
}

#sobre .canto-direito {
    align-self: flex-end;
    margin: 60px 0;
    margin-right: -15px;
}

#sobre .canto-esquerdo {
    margin: 60px 0;
    margin-left: -15px;
}

/* Botão */
.acoes {
    display: flex;
    align-items: center;
    margin-top: auto;
    width: 100%;
}

.btn-saiba-mais {
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background 0.3s ease;
    border-radius: 30px;
    background-color: var(--cor-verde);
    padding: 14px 30px;
    width: 175px;
    height: 60px;
    color: #ffffff;
    font-weight: 500;
    font-size: 15px;
    font-family: "Montserrat", sans-serif;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.btn-saiba-mais:hover {
    background-color: #6a832d;
}

.btn-seta {
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background 0.3s ease;
    border-radius: 30px;
    background-color: var(--cor-verde);
    width: 60px;
    height: 60px;
}

.btn-seta:hover {
    background-color: #6a832d;
}

.btn-seta img {
    filter: brightness(0) invert(1);
}

/* #############################
   #         OPÇÕES            #
   ############################# */
#opcoes {
    margin-bottom: 60px;
    background-color: #f6f4ef;
}

#opcoes .centro {
    margin: 0 auto;
    width: calc(100% - 25px);
    max-width: 1620px;
}

#opcoes .conteudo {
    display: flex;
    justify-content: center;
    gap: 20px;
    width: 100%;
}

#opcoes .caixa {
    display: block;
    position: relative;
    flex: 1;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border-radius: 32px;
    height: 484px;
    overflow: hidden;
}

#opcoes .caixa img {
    display: block;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#opcoes .caixa:hover img {
    transform: scale(1.08);
}

#opcoes .caixa::before {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    transition: background 0.3s ease;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0) 0%,
            rgba(0, 0, 0, 0.55) 50%,
            rgba(0, 0, 0, 0) 100%);
    content: "";
}

#opcoes .caixa:hover::before {
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0) 0%,
            rgba(0, 0, 0, 0.65) 50%,
            rgba(0, 0, 0, 0) 100%);
}

#opcoes .caixa::after {
    position: absolute;
    top: 10px;
    right: 10px;
    bottom: 10px;
    left: 10px;
    z-index: 2;
    transition: border-color 0.3s ease;
    border: 1px solid #fff;
    border-radius: 32px;
    pointer-events: none;
    content: "";
}

#opcoes .caixa h3 {
    display: flex;
    position: absolute;
    top: 50%;
    left: 50%;
    justify-content: center;
    align-items: center;
    transform: translate(-50%, -50%);
    z-index: 3;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.8);
    width: 310px;
    height: 86px;
    pointer-events: none;
    color: #ffffff;
    font-size: 38px;
    line-height: 40px;
    font-family: "Bask Old Face";
    text-align: center;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}

#opcoes .caixa:hover h3 {
    transform: translate(-50%, -50%) scale(1.03);
    border-color: #ffffff;
    background-color: rgba(255, 255, 255, 0.1);
}

/* #############################
   #         RESERVE           #
   ############################# */
#reserve {
    display: flex;
    position: relative;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    border-radius: 64px;
    background-image: url(../imagens/reserve.jpg);
    background-size: cover;
    width: calc(100% - 50px);
    max-width: 1870px;
    height: 983px;
    overflow: hidden;
}

#reserve::after {
    position: absolute;
    top: 10px;
    right: 10px;
    bottom: 10px;
    left: 10px;
    z-index: 2;
    transition: border-color 0.3s ease;
    border: 1px solid #fff;
    border-radius: 58px;
    background-color: rgba(32, 79, 62, 0);
    pointer-events: none;
    content: "";
}

#reserve .sombra {
    box-shadow: rgba(0, 0, 0, 0.46) 0 0 80px 100px;
    border-radius: 70px;
    background-color: rgba(0, 0, 0, 0.46);
    padding: 30px;
}

#reserve h2 {
    margin-bottom: 25px;
    color: #f6f4ef;
    font-size: 80px;
    font-family: "Bask Old Face";
    text-align: center;
}

#reserve .links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    width: 100%;
}

#reserve a {
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #ffffff;
    background-color: rgba(205, 205, 205, 0);
    width: 430px;
    height: 86px;
    color: #ffffff;
    font-weight: 400;
    font-size: 18px;
    line-height: 120px;
    font-family: "Montserrat";
    letter-spacing: 2px;
    text-align: center;
    text-transform: uppercase
}

#reserve a:hover {
    transform: scale(1.03);
    border-color: #ffffff;
    background-color: rgba(255, 255, 255, 0.1);
}

#reserve .passador img,
#quem-somos .passador img {
    position: absolute;
    right: 35px;
    bottom: 50%;
    transform: translateY(50%);
    opacity: 0.902;
    border-radius: 50%;
    background-color: #f6f4ef;
    width: 60px;
    height: 60px;
    object-fit: none;
}

#reserve .passador img:first-child,
#quem-somos .passador img:first-child {
    left: 35px;
    transform: translateY(50%) rotate(180deg);
}

/* #############################
   #      QUEM SOMOS           #
   ############################# */
#pag_quem_somos #banner {
    border-radius: 36px;
    height: 690px;
    max-height: 690px;
}

#pag_quem_somos #banner .centro {
    margin: 120px auto 0 auto;
}

#quem-somos .centro {
    display: grid;
    grid-template-columns: 510px 1fr;
    justify-content: center;
    align-items: center;
    gap: 50px;
    margin: 100px auto;
    width: calc(100% - 40px);
    max-width: 1296px;
}

#quem-somos .esquerda {
    position: relative;
    width: 100%;
    max-width: 510px;
    height: 100%;
}

#quem-somos .mask-img {
    border-radius: 65px 0 0 65px;
    width: 100%;
    height: 100%;
}

#quem-somos .mask-img::after {
    position: absolute;
    top: 10px;
    right: 10px;
    bottom: 10px;
    left: 10px;
    z-index: 2;
    border: 1px solid #ffffff;
    border-radius: 47px 0 0 47px;
    pointer-events: none;
    content: "";
}

#quem-somos .passador img {
    position: absolute;
    right: 0px;
    transform: translateY(50%) translateX(60%);
    opacity: 1;
    z-index: 2;
    border-radius: 26px;
    width: 53px;
    height: 53px;
}

#quem-somos .passador img:first-child {
    left: 0;
    transform: translateY(50%) translateX(-60%) rotate(180deg);
}

#quem-somos .direita {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

#quem-somos .canto-direito {
    margin-bottom: 5px;
    margin-left: -15px;
}

#quem-somos .direita p {
    margin-bottom: 30px;
    max-width: 566px;
}

/* #############################
   #         EVENTOS           #
   ############################# */
#pag_eventos #banner {
    border-radius: 36px;
    height: 690px;
    max-height: 690px;
}

#pag_eventos #banner .centro {
    margin: 120px auto 0 auto;
    width: 100%;
}

#pag_eventos #banner p {
    margin: 0 auto;
    max-width: 900px;
    color: #ffffff;
    font-size: 60px;
    line-height: 1.1;
    font-family: "Bask Old Face", "Times New Roman", serif;
    text-align: center;
}

#pag_eventos .banner-content {
    position: relative;
    z-index: 2
}

#pag_eventos .centro {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 70px;
    margin: 100px auto;
    width: calc(100% - 40px);
    max-width: 1475px;
    text-align: center;
}

#pag_eventos p {
    color: #838383;
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    font-family: "Montserrat", sans-serif;
}

#pag_eventos b {
    font-weight: 700;
    line-height: 40px;
}

#pag_eventos .botao {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 7px;
    border: 1px solid #ffffff;
    border-radius: 30px;
    background-color: #997d4e;
    padding: 15px 30px;
    padding-right: 17px;
    width: 365px;
    height: 60px;
    color: #ffffff;
    font-weight: 500;
    font-size: 15px;
    line-height: 120px;
    font-family: "Montserrat";
    letter-spacing: 2.3px;
    text-align: center;
    text-transform: uppercase;
}

#pag_eventos .botao:hover {
    background-color: #b89c6d;
}

#pag_eventos #video {
    margin: 100px auto;
    width: 100%;
}

#pag_eventos #video .centro {
    margin: 0 auto;
    width: calc(100% - 40px);
    max-width: 1475px;
}

#pag_eventos #video .mask-img {
    position: relative;
    border-radius: 42px;
    aspect-ratio: 16 / 9;
    width: 100%;
    overflow: hidden;
}

#pag_eventos #video .mask-img::after {
    position: absolute;
    top: 20px;
    right: 20px;
    bottom: 20px;
    left: 20px;
    z-index: 2;
    border: 1px solid #ffffff;
    border-radius: 36px;
    pointer-events: none;
    content: "";
}

#pag_eventos #video img {
    border-radius: 0;
}

#pag_eventos #video .video-bkgd {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#pag_eventos #video .play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    transition: all 0.1s ease-in-out;
    cursor: pointer;
    width: 19vw;
    max-width: 183px;
    height: auto;
}

#pag_eventos #video .play-button:hover {
    transform: translate(-50%, -50%) scale(1.4);
}

#pag_eventos #video .folha-icon {
    position: absolute;
    top: auto;
    bottom: 35px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    width: auto;
    height: auto;
}

#pag_eventos #video .video-iframe {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
    border: none;
    width: 100%;
    height: 100%;
}

/* #############################
   #         GALERIA           #
   ############################# */
#pag_eventos #galeria {
    margin: 140px auto;
    width: 100%;
}

#pag_eventos #galeria .centro {
    display: grid;
    grid-template-rows: repeat(2, 308px);
    grid-template-columns: repeat(6, 1fr);
    gap: 0;
    margin: 0 auto;
    width: calc(100% - 40px);
    max-width: 1490px;
}

#pag_eventos #galeria .mask-img {
    position: relative;
    border-radius: 0;
    width: 100%;
    height: 100%;
}

/* #pag_eventos #galeria .mask-img::after {
    display: none;
} */

#pag_eventos #galeria img {
    border-radius: 0;
}

/* #############################
   #       ACOMODAÇÕES         #
   ############################# */
#pag_acomodacoes #banner {
    border-radius: 36px;
    height: 690px;
    max-height: 690px;
}

#pag_acomodacoes #banner .centro {
    margin: 120px auto 0 auto;
    width: 100%;
}

#pag_acomodacoes #banner p {
    margin: 0 auto;
    max-width: 900px;
    color: #ffffff;
    font-size: 60px;
    line-height: 1.1;
    font-family: "Bask Old Face", "Times New Roman", serif;
    text-align: center;
}

#pag_acomodacoes .banner-content {
    position: relative;
    z-index: 2
}

#pag_acomodacoes .centro {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 70px;
    margin: 100px auto;
    width: calc(100% - 40px);
    max-width: 1475px;
    text-align: center;
}

#pag_acomodacoes p {
    color: #838383;
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    font-family: "Montserrat", sans-serif;
}

#pag_acomodacoes .top {
    position: relative;
    width: calc(100% - 40px);
    max-width: 1475px;
    height: 738px;
}

#pag_acomodacoes .mask-img {
    border-radius: 42px;
    width: 100%;
    height: 100%;
}

#pag_acomodacoes .mask-img::after {
    position: absolute;
    top: 10px;
    right: 10px;
    bottom: 10px;
    left: 10px;
    z-index: 2;
    border: 1px solid #ffffff;
    border-radius: 36px;
    pointer-events: none;
    content: "";
}

#pag_acomodacoes .passador img {
    position: absolute;
    right: 45px;
    bottom: 30px;
    opacity: 1;
    z-index: 2;
    border-radius: 26px;
    background-color: #f6f4ef;
    width: 53px;
    height: 53px;
    object-fit: none;
}

#pag_acomodacoes .passador img:first-child {
    left: 45px;
    transform: rotate(180deg);
}

#pag_acomodacoes .bottom {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 35px;
    width: 100%;
}

#pag_acomodacoes .descricao {
    display: flex;
    width: 100%;
}

#pag_acomodacoes .descricao .titulo {
    display: flex;
    align-items: flex-start;
    gap: 7px;
    width: 100%;
}

#pag_acomodacoes .descricao h2 {
    color: #a28b5a;
    font-weight: 500;
    font-size: 52px;
    line-height: 64px;
    font-family: "Montserrat";
}

#pag_acomodacoes .descricao p {
    max-width: 808px;
    color: #8f8f8f;
    font-weight: 500;
    font-size: 16px;
    line-height: 2.2;
    font-family: "Montserrat";
    text-align: left;
}

#pag_acomodacoes .texto-complementar p {
    max-width: 400px;
    color: #8f8f8f;
    font-weight: 500;
    font-size: 16px;
    line-height: 26px;
    font-family: "Montserrat";
    text-align: left;
}

#pag_acomodacoes .texto-complementar b {
    font-weight: 700;
}

/* #############################
   #        FALE CONOSCO       #
   ############################# */
#pag_fale_conosco #banner {
    border-radius: 36px;
    height: 440px;
    max-height: 440px;
}

#pag_fale_conosco #banner .bkgd-img {
    filter: none;
}

#pag_fale_conosco #banner .centro {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 120px auto 0 auto;
    width: calc(100% - 40px);
    max-width: 1475px;
    text-align: center;
}

#pag_fale_conosco #banner p {
    margin: 0 auto;
    max-width: 900px;
    color: #ffffff;
    font-size: 60px;
    line-height: 1.1;
    font-family: "Bask Old Face", "Times New Roman", serif;
    text-align: center;
}

#pag_fale_conosco #topo .centro {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin: 100px auto;
    width: calc(100% - 40px);
    max-width: 1200px;
}

#pag_fale_conosco #topo h3 {
    color: #a28b5a;
    font-weight: 500;
    font-size: 39px;
    line-height: 64px;
    font-family: "Montserrat";
}

#pag_fale_conosco #topo p {
    max-width: 580px;
    color: #838383;
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    font-family: "Montserrat", sans-serif;
}

#pag_fale_conosco #topo a {
    cursor: pointer;
    color: #838383;
    text-decoration: underline;
}

#pag_fale_conosco #topo a:hover {
    text-decoration: none;
}

/* #############################
   #          FOOTER           #
   ############################# */
.footer {
    background-color: #efede9;
}

footer .reserve {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 50px auto;
    width: 100%;
    max-width: 960px;
}

footer .reserve a {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 7px;
    border: 1px solid #ffffff;
    border-radius: 30px;
    background-color: #997d4e;
    padding: 15px 30px;
    padding-right: 17px;
    height: 60px;
    color: #ffffff;
    font-weight: 500;
    font-size: 15px;
    line-height: 120px;
    font-family: "Montserrat";
    letter-spacing: 2.3px;
    text-align: center;
    text-transform: uppercase;
}

footer .reserve a img {
    filter: brightness(0) invert(1);
}

footer .reserve a:hover {
    background-color: #b89c6d;
}

footer .links {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    border-top-right-radius: 36px;
    border-top-left-radius: 36px;
    background-color: #efede9;
    width: calc(100% - 50px);
}

footer .links img {
    margin-top: 50px;
    margin-bottom: 28px;
    width: fit-content;
}

footer .barra-separadora {
    background-color: #d8d8d8;
    width: 100%;
    max-width: 1296px;
    height: 1px;
}

footer .links ul {
    display: flex;
    justify-content: space-between;
    margin: 33px auto;
    padding: 0px 10px;
    width: 100%;
    max-width: 1316px;
    list-style: none;
}

footer .links a {
    color: #707070;
    font-size: 17px;
    font-family: "Bask Old Face";
}

footer .mensagem-final p {
    color: #707070;
    font-size: 17px;
    line-height: 17px;
    font-family: "Bask Old Face";
    text-align: center;
}


#footer .creditos {
    margin: 0 auto;
    padding: 8px 0;
    width: fit-content;
    color: #2d2e32;
    font-size: 16px;
    font-family: "Bask Old Face";
}

#footer .creditos a {
    color: #2d2e32;
    text-decoration: underline;
}

/* A seção acima tem os mesmos botões... */
#pag_index footer .reserve {
    display: none;
}