@import url(reset.css);


/* =========================================================
   RODAPÉ — MOBILE
========================================================= */

.rodape {
    position: relative;

    width: 100%;

    padding: 10px 20px 15px;

    background-color: var(--corSegundaria);

    display: flex;
    flex-direction: column;
    align-items: flex-start;

    gap: 8px;

    z-index: 1;
    overflow: hidden;
}


/* =========================================================
   EFEITO DE FUNDO
========================================================= */

.rodape::after {
    content: "";

    position: absolute;

    left: 0;
    right: 0;
    bottom: 0;

    height: 200px;

    background:
        radial-gradient(
            ellipse at 20% 100%,
            rgba(134, 113, 80, 0.35),
            transparent 65%
        ),
        radial-gradient(
            ellipse at 80% 100%,
            rgba(134, 113, 80, 0.35),
            transparent 65%
        );

    pointer-events: none;

    z-index: 0;
}


/* =========================================================
   CONTEÚDO ACIMA DO FUNDO
========================================================= */

.rodape > * {
    position: relative;
    z-index: 1;
}


/* =========================================================
   LOGO
========================================================= */

.rodape .logo {
    width: 100%;

    display: flex;
    flex-direction: column;

    align-items: center;

    text-align: center;
}


/* =========================================================
   IMAGEM DO LOGO
========================================================= */

.rodape .logo > img {
    width: 150px;
    height: auto;

    display: block;

    margin: 0 0 5px;
}


/* =========================================================
   FUNÇÕES / DESCRIÇÃO
========================================================= */

.rodape .logo > ul {
    width: 100%;

    display: flex;
    flex-wrap: wrap;

    align-items: center;
    justify-content: center;

    list-style: none;

    padding: 0;
    margin: 0;
}


.rodape .logo > ul li {
    color: var(--corBranca);

    font-size: var(--esp-7);
    font-weight: var(--peso-4);

    white-space: nowrap;
}


/* =========================================================
   SEPARADOR ENTRE FUNÇÕES
========================================================= */

.rodape .logo > ul li:not(:first-child)::before {
    content: "";

    width: 3px;
    height: 3px;

    display: inline-block;

    margin: 0 7px;

    background-color: var(--corBranca);

    border-radius: 50%;

    vertical-align: middle;
}


/* =========================================================
   BLOCOS — EXPLORAR / CONHECIMENTO / CONTACTO
========================================================= */

.rodape .explora {
    width: 100%;

    display: flex;
    flex-direction: column;

    align-items: flex-start;

    text-align: left;
}


/* =========================================================
   TÍTULOS
========================================================= */

.rodape .explora h2 {
    position: relative;

    width: 100%;

    margin: 0 0 5px;
    padding: 0 0 8px;

    color: var(--corPrincipal);

    font-size: var(--esp-5);
    font-weight: var(--peso-4);

    text-align: left;
}


/* =========================================================
   LINHA DOS TÍTULOS
========================================================= */

.rodape .explora h2::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: 0;

    width: 290px;
    height: 0.5px;

    background-color: var(--corPrincipal);
}


/* =========================================================
   LINHA CURTA DOS TÍTULOS
========================================================= */

.rodape .explora h2::before {
    content: "";

    position: absolute;

    left: 0;
    bottom: -3px;

    width: 24px;
    height: 3px;

    border-radius: 20px;

    background-color: var(--corPrincipal);

    z-index: 2;
}


/* =========================================================
   LISTA
========================================================= */

.rodape .explora ul {
    width: 100%;

    display: flex;
    flex-direction: column;

    align-items: flex-start;

    gap: 7px;

    list-style: none;

    padding: 0;
    margin: 0;
}


.rodape .explora ul li {
    margin: 0;
    padding: 0;
}


/* =========================================================
   LINKS
========================================================= */

.rodape .explora ul li a {
    display: flex;

    align-items: center;
    justify-content: flex-start;

    gap: 5px;

    color: var(--corBranca);

    font-size: var(--esp-7);
    font-weight: var(--peso-4);

    text-decoration: none;

    transition: 0.3s ease;
}


/* =========================================================
   ÍCONE SETA
========================================================= */

.rodape .explora ul li a img {
    width: 7px;
    height: 7px;

    display: block;

    flex-shrink: 0;
}


/* =========================================================
   HOVER
========================================================= */

.rodape .explora ul li a:hover {
    color: var(--corPrincipal);

    transform: translateX(3px);
}


/* =========================================================
   CONTACTO
========================================================= */

.rodape > .explora:nth-of-type(4) {
    width: 100%;

    align-items: flex-start;

    text-align: left;
}


.rodape > .explora:nth-of-type(4) h2 {
    width: 100%;

    text-align: left;
}


.rodape > .explora:nth-of-type(4) h2::after {
    left: 0;

    transform: none;
}


.rodape > .explora:nth-of-type(4) h2::before {
    left: 8px;

    transform: none;
}


.rodape > .explora:nth-of-type(4) ul {
    align-items: flex-start;
}


.rodape > .explora:nth-of-type(4) ul li a {
    justify-content: flex-start;
}


/* =========================================================
   REDES SOCIAIS
   FICAM ABAIXO DE CONTACTO
========================================================= */

.rodape .redes-sociais {
    width: 100%;

    position: relative;
    top: 495px;

    display: flex;

    align-items: center;
    justify-content: center;

    gap: 8px;

    margin-top: 0;
}


/* =========================================================
   BOTÕES DAS REDES SOCIAIS
========================================================= */

.rodape .redes-sociais a {
    width: 28px;
    height: 28px;

    display: flex;

    align-items: center;
    justify-content: center;

    background-color: var(--corPrincipal);

    border-radius: 50%;

    text-decoration: none;

    transition: 0.3s ease;
}


/* =========================================================
   ÍCONES DAS REDES
========================================================= */

.rodape .redes-sociais img {
    width: 12px;
    height: 12px;

    display: block;
}


/* =========================================================
   HOVER REDES
========================================================= */

.rodape .redes-sociais a:hover {
    transform: translateY(-3px);
}


/* =========================================================
   FOOTER INFERIOR
========================================================= */

.rodape .footer {
    width: 100%;

    margin-top: 40px;

    padding: 8px 0 5px;

    border-top: 0.5px solid var(--corPrincipal);

    display: flex;
    flex-direction: column;

    align-items: center;
    justify-content: center;

    gap: 8px;

    text-align: center;
}


/* =========================================================
   DIREITOS RESERVADOS
========================================================= */

.rodape .reserva {
    width: 100%;

    color: var(--corBranca);

    font-size: 0.7rem;
    font-weight: var(--peso-4);

    line-height: 1.2;

    text-align: center;
}


/* =========================================================
   POLÍTICA
========================================================= */

.rodape .politica {
    width: 100%;
}


.rodape .politica ul {
    width: 100%;

    display: flex;

    flex-direction: row;
    flex-wrap: nowrap;

    align-items: center;
    justify-content: center;

    list-style: none;

    padding: 0;
    margin: 0;
}


/* =========================================================
   ITENS DA POLÍTICA
========================================================= */

.rodape .politica ul li {
    margin: 0;
    padding: 0;

    white-space: nowrap;
}


/* =========================================================
   LINKS DA POLÍTICA
========================================================= */

.rodape .politica ul li a {
    color: var(--corBranca);

    font-size: .7rem;
    font-weight: var(--peso-4);

    text-decoration: none;

    transition: 0.3s ease;
}


/* =========================================================
   SEPARADOR
========================================================= */

.rodape .politica ul li:not(:first-child)::before {
    content: "";

    width: 3px;
    height: 3px;

    display: inline-block;

    margin: 0 4px;

    background-color: var(--corBranca);

    border-radius: 50%;

    vertical-align: middle;
}


/* =========================================================
   HOVER POLÍTICA
========================================================= */

.rodape .politica ul li a:hover {
    color: var(--corPrincipal);
}