﻿@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;500;600;700&family=Roboto:wght@100;300;400;500;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
/* @import de "Russo One" removido — modelo02 passou a usar Poppins
   exclusivamente. Poupa uma chamada HTTP ao Google Fonts. */

/*-------------------------------------------------------------------
MODELO 02 — PALETA VINHO + TIPOGRAFIA RUSSO ONE
Variáveis CSS centrais. Outras paletas podem ser criadas só sobrepondo
estas variáveis em :root no próprio modelo.
--------------------------------------------------------------------*/
:root {
    /* Paleta modelo02 */
    --m2-primary:        #670612; /* vinho — CTAs, headers, links activos */
    --m2-primary-hover:  #4d040e; /* vinho mais escuro para hover */
    --m2-secondary:      #2e2921; /* bege/castanho-escuro para subtítulos e dark areas */
    --m2-bg:             #ffffff;
    --m2-text:           #333333;

    /* Tipografia */
    /* m2-font-title: era "Russo One" (display geométrico pesado).
       Mudou para Poppins (mesma família do body) para um look mais leve
       e consistente. Todos os usos via var(--m2-font-title) ganham
       automaticamente Poppins. */
    --m2-font-title:     "Poppins", sans-serif;
    --m2-font-body:      "Poppins", sans-serif;

    /* Override shared reserva-flow.css (modelos/_shared/reserva/) */
    --resv-primary:        #670612;
    --resv-primary-hover:  #4d040e;
    --resv-primary-soft:   #fbf2f4;  /* hover / background suave em tom vinho clarinho */
    --resv-primary-border: #e8d4d8;  /* borda em tom vinho clarinho */
}

/*-------------------------------------------------------------------
COMUM A TODOS
--------------------------------------------------------------------*/
@media screen and (max-width: 1023px) {

    /* PARA DISPOSITIVOS PEQUENOS*/
    #pctablet,
    .pctablet {
        display: none;
    }

    #smartphone,
    .smartphone {
        display: block
    }
}

@media screen and (min-width: 1024px) {

    /* PARA DISPOSITIVOS GRANDES*/
    #pctablet,
    .pctablet {
        display: block;
    }

    #smartphone,
    .smartphone {
        display: none
    }
}

div {
    box-sizing: border-box;
}

/*resolve o problema de quando existe padding left e right o div filho não sair fora*/

a:link,
a:visited,
a:hover,
a:active {
    font-family: "Poppins", sans-serif;
    font-size: 1em;
    text-decoration: none;
    color: #333;
}

a:hover {
    text-decoration: underline;
    background-color: transparent;
}

body {
    margin: 0px;
    padding: 0px;
    color: #333;
    font-family: "Poppins", sans-serif;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    /* iOS Safari */
    -webkit-user-select: none;
    /* Chrome, Safari, Opera */
    -khtml-user-select: none;
    /* Konqueror */
    -moz-user-select: none;
    /* Firefox */
    -ms-user-select: none;
    /* Internet Explorer/Edge */
    user-select: none;
    /* Generic */

    /* Impede scroll horizontal causado pelas margens negativas dos widgets
       da home (espacos-home, pontos-interesse-home, eventos-home, etc.) que
       usam `margin-right: calc(-1 * (100vw - 100%) / 2)` para estender o
       container até à borda direita do viewport. `clip` é preferível a
       `hidden` por não criar scroll context (preserva position:sticky de
       elementos filhos como a .topo-div / .mobile-top-bar). */
    overflow-x: clip;
}
html {
    /* Backup defensivo — alguns browsers (Safari < 16) ignoram overflow-x:clip
       no body se o html não estiver explícito. */
    overflow-x: clip;
}

.titulos {
    font-family: var(--m2-font-title);
    font-size: 2.2em;
    color: var(--m2-primary);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.subtitulos {
    font-family: var(--m2-font-body);
    font-size: 1.2em;
    color: var(--m2-secondary);
    font-weight: 400;
}

/* Modelo02 — aplicar font-title (Poppins) em headings nativos e títulos de widgets */
h1, h2, h3,
.cms-banner-page-titulo,
.cms-sobre-home-titulo,
.cms-espacos-home-titulo,
.cms-comodidades-home-titulo,
.cms-testemunhos-home-titulo,
.cms-galeria-home-titulo,
.cms-contacto-titulo,
.cms-mapa-titulo,
.cms-eventos-titulo,
.cms-pontos-titulo,
.cms-paginas-titulo,
.cms-espaco-titulo {
    font-family: var(--m2-font-title);
    letter-spacing: 0.02em;
}

.button-site {
    position: relative;
    float: left;
    padding: 12px 30px 12px 30px;
    border-radius: 30px;
    border: none;
    text-transform: uppercase;
    font-weight: 600;
    cursor: pointer;
    text-transform: uppercase;
    font-family: "Poppins", sans-serif;
    font-size: 0.9em;
    text-align: center;
    webkit-transition: all 0.5s;
    transition: all 0.5s;
}

.button-site:hover {
    opacity: 0.8;
    webkit-transition: all 0.5s;
    transition: all 0.5s;
}

/*-------------------------------------------------------------------
DESIGN LAYOUT
--------------------------------------------------------------------*/
@media screen and (max-width: 1023px) {
    .site-width {
        width: 100%;
        position: relative;
        margin: 0 auto;
        padding: 0 20px;
        box-sizing: border-box;
    }

    .titulos {
        font-size: 1.6em;
    }

    .subtitulos {
        font-size: 1em;
    }
}

@media screen and (min-width: 1024px) and (max-width: 1279px) {
    .site-width {
        width: 950px;
        position: relative;
        margin: 0 auto;
    }

    .titulos {
        font-size: 1.6em;
    }

    .subtitulos {
        font-size: 1em;
    }
}

@media screen and (min-width: 1280px) and (max-width: 1365px) {
    .site-width {
        width: 1100px;
        position: relative;
        margin: 0 auto;
    }

    .titulos {
        font-size: 1.6em;
    }

    .subtitulos {
        font-size: 1em;
    }
}

@media screen and (min-width: 1366px) {
    .site-width {
        width: 86%;
        position: relative;
        margin: 0 auto;
    }

    .titulos {
        font-size: 1.8em;
    }

    .subtitulos {
        font-size: 1.1em;
    }
}

@media screen and (min-width: 2021px) {

    /* PARA DISPOSITIVOS PEQUENOS*/
    .site-width {
        width: 1700px;
        position: relative;
        margin: 0 auto;
    }
}


/*-------------------------------------------------------------------
BANNER TOPO
--------------------------------------------------------------------*/
.slide-ativo {
    animation-name: FadinSlide;
    animation-duration: 2s;
    animation-iteration-count: 1;
}

@keyframes FadinSlide {
    0% {
        opacity: 0;
        display: none;
    }

    100% {
        opacity: 1;
        display: block;
    }
}

#slideshowcontent li {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    top: 0px;
    left: 0px;
    display: none;
}

.slide-before,
.slide-next {
    position: absolute;
    top: 45%;
    z-index: 9;
    transition: all 0.2s ease-in-out;
    cursor: pointer;
}

.slide-before {
    left: 20px;
    opacity: 0;
}

.slide-next {
    right: 20px;
    opacity: 0
}

.slide-before.ativo {
    left: 100px;
    opacity: 0.8;
}

.slide-next.ativo {
    right: 100px;
    opacity: 0.8;
}

.slide-before:hover,
.slide-next:hover {
    opacity: 1;
    transition: all 0.2s ease-in-out;
    ;
}

.slide-before i,
.slide-next i {
    font-size: 8em;
    color: #fff;
}

.slideshow-top-gradiante {
    width: 100%;
    position: absolute;
    top: 0px;
    height: 350px;
    z-index: 2;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.7) 30%, rgba(0, 0, 0, 0) 100%);
}

@media screen and (max-width: 1023px) {
    #banner {
        margin-top: 120px;
    }

    .slide-before,
    .slide-next {
        top: 35%;
    }

    .slide-before i,
    .slide-next i {
        font-size: 5em;
    }

    .slideshow-top-gradiante {
        display: none;
    }

    .slide-before {
        left: 0px;
    }

    .slide-next {
        right: 0px;
    }

    .slide-before.ativo {
        left: 20px;
    }

    .slide-next.ativo {
        right: 20px;
    }
}

@media screen and (min-width: 1024px) and (max-width: 1365px) {

    .slide-before,
    .slide-next {
        top: 35%;
    }

    .slide-before i,
    .slide-next i {
        font-size: 5em;
    }

    .slideshow-top-gradiante {
        height: 250px;
    }

    .slide-before {
        left: 10px;
    }

    .slide-next {
        right: 10px;
    }
}

@media screen and (min-width: 1280px) and (max-width: 1919px) {

    .slide-before,
    .slide-next {
        top: 35%;
    }

    .slideshow-top-gradiante {
        height: 250px;
    }
}

@media screen and (min-width: 1366px) and (max-width: 1919px) {

    .slide-before,
    .slide-next {
        top: 35%;
    }

    .slideshow-top-gradiante {
        height: 250px;
    }

    .slide-before i,
    .slide-next i {
        font-size: 6em;
    }
}

/*-------------------------------------------------------------------
BARRA FERRAMENTAS
--------------------------------------------------------------------*/
.bartop-options-div {
    position: absolute;
    top: 0px;
    width: 100%;
    z-index: 10;
    padding: 20px 0px 20px 0px;
}

.idiomas {
    font-size: 1em;
    position: relative;
    float: right;
    color: #fff;
}

a.idioma:link,
a.idioma:visited,
a.idioma:hover,
a.idioma:active {
    font-family: "Poppins", sans-serif;
    font-size: 1.1em;
    color: #fff;
    font-weight: 300;
    text-decoration: none;
    padding: 0px 3px 0px 3px;
}

a.idioma:hover,
.idiomas a.idioma.active {
    font-weight: 600;
    color: #f3f3f3
}

@media screen and (min-width: 1024px) and (max-width: 1279px) {
    .idiomas {
        font-size: 0.9em;
    }

    a.idioma:link,
    a.idioma:visited,
    a.idioma:hover,
    a.idioma:active {
        font-size: 0.9em;
    }
}

@media screen and (min-width: 1280px) and (max-width: 1365px) {}

@media screen and (min-width: 1366px) and (max-width: 1919px) {}

@media screen and (min-width: 1920px) {}

@media screen and (min-width: 2021px) {
    /* PARA DISPOSITIVOS PEQUENOS*/

}

/*===================================================================
MODELO 02 — TOPO-DIV (chrome bar inspirada em sfelix.com)

Dois modos:
  1. .topo-div (default)            → barra branca normal por cima do
                                       conteúdo (páginas internas).
  2. .topo-div.is-overlay (home)    → overlay transparente sobre o
                                       banner-home, posicionada absolute.
                                       Os chips ficam com fundo branco e
                                       o menu ganha texto branco.
===================================================================*/
.topo-div {
    position: relative;
    width: 100%;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    z-index: 50;
}

.topo-div.is-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: transparent;
    box-shadow: none;
    z-index: 50;
    /* O banner-home tem z-index:0 + isolation:isolate; o overlay fica
       acima do gradient/slides porque vive fora desse stacking context. */
}

.topo-div > .site-width {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    /* padding-top reduzido (22→8px) para todo o conjunto (chips + menu)
       ficar bem encostado ao topo do viewport. */
    padding: 8px 0 18px;
    gap: 20px;
    position: relative;
}

/* No modo overlay (home) o logo não é renderizado — empurra o conteúdo
   todo para a direita. */
.topo-div.is-overlay > .site-width {
    justify-content: flex-end;
}

.topo-logotipo-link {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
}

.topo-logotipo {
    max-height: 60px;
    width: auto;
    display: block;
}

.topo-botoes-div {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    /* Gap reduzido (14→6px) para que o menu fique mais próximo dos chips
       (telefone+idioma) acima — todo o conjunto sobe e fica mais compacto. */
    gap: 6px;
    flex: 0 0 auto;
}

/* ---------- Chips (telefone + idioma) ---------- */
/* z-index:5 + position:relative cria um stacking context local. O dropdown
   do idioma (z-index:60 dentro deste contexto) fica garantidamente acima
   do .topo-menu (z-index:1) que vive na mesma topo-botoes-div. Sem isto,
   o dropdown abria por trás dos items do menu por source order. */
.topo-chips {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    position: relative;
    z-index: 5;
}

.topo-chip {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 6px 22px 6px 6px;
    background: #fff;
    border-radius: 999px;
    color: var(--m2-secondary);
    font-family: var(--m2-font-body);
    font-size: 0.95em;
    font-weight: 500;
    text-decoration: none;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
    cursor: pointer;
    user-select: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    line-height: 1;
}

/* Defensive: o reset legado tem regras agressivas em todos os estados de <a>
     a:link,a:visited,a:hover,a:active { color:#333 }                (0,1,1)
     a:hover { text-decoration:underline; background-color:transparent } (0,1,1)
   No hover, `a:hover` (0,1,1) vence `.topo-chip` (0,1,0) e o background-color
   fica TRANSPARENTE, deixando o texto cinza sobre a foto do banner → quase
   invisível. Usamos `a.topo-chip:<state>` (0,2,1) + !important nas propriedades
   críticas (color, background, text-decoration) para garantir que o pill branco
   com texto castanho-escuro se mantém em todos os estados. */
a.topo-chip,
a.topo-chip:link,
a.topo-chip:visited,
a.topo-chip:hover,
a.topo-chip:active,
a.topo-chip:focus {
    color: var(--m2-secondary) !important;
    background: #fff !important;
    text-decoration: none !important;
}

.topo-chip:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
}

.topo-chip-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--m2-primary);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.topo-chip-icon i {
    color: #fff;
    font-size: 1.05em;
    line-height: 1;
}

.topo-chip-label {
    white-space: nowrap;
    letter-spacing: 0.5px;
}

.topo-tel {
    /* hover do tel é coberto pelo .topo-chip:hover */
}

/* ---------- Dropdown idioma (.select-menu como chip) ---------- */
.select-menu {
    position: relative;
    display: inline-block;
}

.select-menu .select-menu-button {
    /* O .select-menu-button está dentro de .topo-chip que já trata do pill */
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    background: transparent;
    padding: 0;
}

.select-menu .select-menu-button:hover,
.select-menu.is-open .select-menu-button {
    background: transparent;
}

.select-menu-button-content {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    min-width: 110px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
    padding: 6px 0;
    z-index: 60;
}

.select-menu-button-content[hidden] {
    display: none;
}

.select-menu-arrow {
    position: absolute;
    top: -6px;
    right: 22px;
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 6px solid #fff;
}

.select-menu-button-content ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.select-menu-button-content a.select-menu-options {
    display: block;
    text-decoration: none;
}

.select-menu-button-content li {
    padding: 8px 22px;
    color: var(--m2-secondary);
    font-family: var(--m2-font-body);
    font-size: 0.9em;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
    list-style: none;
}

.select-menu-button-content a:hover li,
.select-menu-button-content a.active li {
    background: var(--m2-primary);
    color: #fff;
}

/* ---------- Menu inline (direita, por baixo dos chips) ---------- */
/* position:relative + z-index:1 = stacking context local com nível 1, sempre
   por baixo do .topo-chips (z-index:5). Garante que o dropdown de idioma
   fica visualmente por cima de qualquer item de menu. */
.topo-menu.menu-div {
    position: relative;
    display: inline-flex;
    align-items: center;
    width: auto;
    justify-content: flex-end;
    z-index: 1;
    gap: 2px;
}

.topo-menu .menu-topo-buttom {
    padding: 0;
    position: relative;
}

/* Default: páginas internas (topo-div branca) → texto escuro */
.topo-menu a.menu-topo:link,
.topo-menu a.menu-topo:visited {
    color: var(--m2-secondary);
    background: transparent;
    font-family: var(--m2-font-body);
    font-size: 0.92em;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 8px 14px;
    border-radius: 30px;
    margin: 0;
}

.topo-menu a.menu-topo:hover,
.topo-menu a.menu-topo.active {
    background: var(--m2-primary);
    color: #fff;
    text-decoration: none;
}

/* Modo overlay (home): texto branco com text-shadow para legibilidade
   sobre fotos com cores variáveis. Hover continua a fazer pill vinho. */
.topo-div.is-overlay .topo-menu a.menu-topo:link,
.topo-div.is-overlay .topo-menu a.menu-topo:visited {
    color: #fff;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.45);
}

/* Overlay (home + subpages): no hover/active, item ganha pill BRANCO
   com texto escuro (m2-secondary) — contraste invertido vs. estado normal
   (texto branco sobre banner). Visual igual à imagem de referência:
   pill branco arredondado destacando o item activo/em hover. */
.topo-div.is-overlay .topo-menu a.menu-topo:hover,
.topo-div.is-overlay .topo-menu a.menu-topo.active {
    background: #fff;
    color: var(--m2-secondary);
    text-shadow: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
}

/* Caret (chevron-baixo) ao lado do título dos itens com filhos */
.topo-menu .menu-topo-caret {
    display: inline-flex;
    align-items: center;
    margin-left: 8px;
    font-size: 0.7em;
    line-height: 1;
    opacity: 0.85;
    transition: transform 0.25s ease, opacity 0.25s ease;
}
.topo-menu .menu-topo-buttom.has-kids:hover > a > .menu-topo-caret,
.topo-menu .menu-topo-buttom.has-kids:focus-within > a > .menu-topo-caret {
    transform: rotate(180deg);
    opacity: 1;
}

/* Dropdown submenu — animado com fade+slide */
.topo-menu .dropdown-content-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.14), 0 4px 10px rgba(0, 0, 0, 0.06);
    padding: 8px;
    min-width: 240px;
    z-index: 60;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;
    pointer-events: none;
}

/* Hover-bridge invisível: cobre o gap de 10px entre o botão "A CASA" e o
   dropdown, para que o cursor possa atravessar sem perder o hover do
   .menu-topo-buttom (caso contrário o submenu fechava a meio do caminho).
   Mesmo padrão usado em .select-menu-button-content (kebab). */
.topo-menu .dropdown-content-menu::before {
    content: "";
    position: absolute;
    top: -12px;
    left: 0;
    right: 0;
    height: 14px;
    background: transparent;
    pointer-events: auto;  /* essencial: sem isto o gap continua a "matar" o hover */
}

.topo-menu .menu-topo-buttom.has-kids:hover > .dropdown-content-menu,
.topo-menu .menu-topo-buttom.has-kids:focus-within > .dropdown-content-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.topo-menu .menu-topo-arrow {
    position: absolute;
    top: -7px;
    left: 28px;
    width: 0;
    height: 0;
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-bottom: 7px solid #fff;
    filter: drop-shadow(0 -2px 2px rgba(0, 0, 0, 0.06));
}

.topo-menu a.submenu:link,
.topo-menu a.submenu:visited {
    display: block;
    width: 100%;
    color: var(--m2-secondary);
    background: transparent;
    border: none;
    border-radius: 10px;
    padding: 11px 16px;
    font-family: var(--m2-font-body, "Poppins", sans-serif);
    font-size: 0.92em;
    font-weight: 500;
    text-decoration: none;
    text-shadow: none;
    text-align: left;
    box-sizing: border-box;
    transition: background 0.18s ease, color 0.18s ease, padding-left 0.18s ease;
}

.topo-menu a.submenu:hover,
.topo-menu a.submenu:focus-visible,
.topo-menu a.submenu.active {
    background: var(--m2-primary);
    color: #fff;
    padding-left: 22px;
    outline: none;
}

/* Em ecrãs estreitos, encolhe chips e menu */
@media screen and (min-width: 1024px) and (max-width: 1279px) {
    .topo-chip {
        font-size: 0.85em;
        padding: 5px 18px 5px 5px;
        gap: 8px;
    }
    .topo-chip-icon { width: 30px; height: 30px; }
    .topo-menu a.menu-topo:link,
    .topo-menu a.menu-topo:visited {
        font-size: 0.78em;
        padding: 7px 10px;
    }
}

/*===================================================================
FIM MODELO 02 TOPO-DIV
===================================================================*/

/*-------------------------------------------------------------------
MENU PC TOPO
--------------------------------------------------------------------*/
.menu-div {
    position: absolute;
    top: 85px;
    left: 0px;
    z-index: 3;
    width: 100%;
    justify-content: center;
    display: flex;
    align-items: center;
}

/*
 * Pill que envolve os links do menu — fundo escuro semi-transparente
 * com cantos arredondados para garantir visibilidade quando o conteúdo
 * por baixo é claro (ex: ao rolar para fora do banner, ou em páginas
 * sem hero image). backdrop-filter dá o efeito de "vidro" subtil.
 * NÃO mexer no .menu-div (full-width centered) — só na pill interna.
 */
.menu-topo-pill {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 8px 12px;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 999px;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.18);
}

/* Anula o padding-bottom assimétrico legado de .menu-topo-buttom quando
   está dentro da pill — o legado tinha "padding:0 0 8px 0" para criar um
   gap visual antes do dropdown, mas isto descentra verticalmente os items
   dentro da pill (texto fica colado ao topo). */
.menu-topo-pill .menu-topo-buttom {
    padding: 0;
    display: flex;
    align-items: center;
}

.menu-topo-buttom {
    position: relative;
    float: left;
    padding: 0px 0px 8px 0px
}

.menu-topo-buttom:hover .dropdown-content-menu {
    display: block;
    -webkit-transition: all 0.5s;
    /* Safari */
    transition: all 0.5s;
}

a.submenu:hover,
a.submenu.active {
    color: #ff232d;
    background-color: #000;
    border: 2px solid #ff232d;
}

a.menu-topo:link,
a.menu-topo:visited {
    color: #fff;
    font-family: "Poppins", sans-serif;
    font-size: 1.1em;
    font-weight: 400;
    text-transform: uppercase;
    position: relative;
    float: left;
    margin: 0px 2px 0px 2px;
    padding: 8px 30px 8px 30px;
    border-radius: 30px;
    background-color: transparent;
    text-decoration: none;
    -webkit-transition: all 0.5s;
    /* Safari */
    transition: all 0.5s;
}

a.menu-topo:hover,
a.menu-topo.active {
    background-color: var(--m2-primary);
}

.menu-topo-arrow {
    border-top: 5px solid #ff232d;
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    transform: rotate(180deg);
    position: absolute;
    top: -5px;
    left: 20px;
    border-top: 5px solid #ccc;
}

.dropdown-content-menu {
    position: absolute;
    top: 50px;
    left: 0px;
    width: 200px;
    z-index: 3;
    display: none;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}

a.submenu:link,
a.submenu:visited {
    color: #000;
    background-color: #ccc;
    border-bottom: 2px solid #fff;
    width: 100%;
    position: relative;
    float: left;
    border-radius: 20px;
    font-family: "Poppins", sans-serif;
    font-size: 0.9em;
    font-weight: 500;
    padding: 10px 10px 10px 15px;
    text-align: left;
    text-decoration: none;
}


@media screen and (max-width: 1023px) {
    .menu-div {
        display: none;
    }
}

@media screen and (min-width: 1024px) and (max-width: 1279px) {

    /* PARA DISPOSITIVOS PEQUENOS*/
    .menu-div {
        top: 65px;
    }

    a.menu-topo:link,
    a.menu-topo:visited {
        font-size: 0.75em;
        margin: 0px 2px 0px 2px;
        padding: 8px 20px 8px 20px;
    }

    .dropdown-content-menu {
        top: 40px;
    }
}

@media screen and (min-width: 1280px) and (max-width: 1365px) {

    /* PARA DISPOSITIVOS MÉDIOS*/
    .menu-div {
        top: 65px;
    }

    a.menu-topo:link,
    a.menu-topo:visited {
        font-size: 0.75em;
        margin: 0px 2px 0px 2px;
        padding: 8px 20px 8px 20px;
    }

    .dropdown-content-menu {
        top: 40px;
    }
}

@media screen and (min-width: 1366px) and (max-width: 1911px) {

    /* PARA DISPOSITIVOS MÉDIOS*/
    a.menu-topo:link,
    a.menu-topo:visited {
        font-size: 0.8em;
        margin: 0px 2px 0px 2px;
        padding: 8px 20px 8px 20px;
    }

    .dropdown-content-menu {
        top: 40px;
    }
}

/*-------------------------------------------------------------------
MENU PC SCROLL
--------------------------------------------------------------------*/
.barmenudown,
.barmenuup {
    width: 100%;
    position: fixed;
    z-index: 9;
    padding: 0px 100px 0px 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    -webkit-transition: all 1s ease;
    transition: all 1s ease;
}

.barmenuup {
    top: -100px;
    opacity: 0;
    padding: 0px 200px 0px 200px;
}

.barmenudown {
    top: 0px;
    opacity: 1;
}

.barmenubox {
    width: 100%;
    height: 75px;
    position: relative;
    float: left;
    text-align: center;
    background-color: #fff;
    padding: 20px;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    -webkit-box-shadow: 0px 0px 36px -1px rgba(0, 0, 0, 0.16);
    -moz-box-shadow: 0px 0px 36px -1px rgba(0, 0, 0, 0.16);
    box-shadow: 0px 0px 36px -1px rgba(0, 0, 0, 0.16);
}

.minilogo {
    width: 60px;
    height: 60px;
    position: absolute;
    cursor: pointer;
    left: 10px;
    background-image: url(/images/touch-icon.webp);
    background-repeat: no-repeat;
    background-position: left center;
    background-size: contain;
}




.menu2-topo-buttom {
    position: relative;
    float: left;
    padding: 0px 0px 8px 0px
}

.menu2-topo-buttom:hover .dropdown-content-menu {
    display: block;
    -webkit-transition: all 0.5s;
    /* Safari */
    transition: all 0.5s;
}

a.submenu2:hover,
a.submenu2.active {
    color: #ff232d;
    background-color: #000;
    border: 2px solid #ff232d;
}

a.menu2-topo:link,
a.menu2-topo:visited {
    color: #000;
    font-family: "Poppins", sans-serif;
    font-size: 1.1em;
    font-weight: 400;
    text-transform: uppercase;
    position: relative;
    float: right;
    margin: 0px 2px 0px 2px;
    padding: 8px 30px 8px 30px;
    border-radius: 30px;
    background-color: transparent;
    text-decoration: none;
    -webkit-transition: all 0.5s;
    /* Safari */
    transition: all 0.5s;
}

a.menu2-topo:hover,
a.menu2-topo.active {
    background-color: var(--m2-primary);
    color: #fff;
}

.menu2-topo-arrow {
    border-top: 5px solid #ff232d;
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    transform: rotate(180deg);
    position: absolute;
    top: -5px;
    left: 20px;
    border-top: 5px solid #ccc;
}

.dropdown-content-menu2 {
    position: absolute;
    top: 50px;
    left: 0px;
    width: 200px;
    z-index: 3;
    display: none;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}

a.submenu2:link,
a.submenu2:visited {
    color: #000;
    background-color: #ccc;
    border-bottom: 2px solid #fff;
    width: 100%;
    position: relative;
    float: left;
    border-radius: 20px;
    font-family: "Poppins", sans-serif;
    font-size: 0.9em;
    font-weight: 500;
    padding: 10px 10px 10px 15px;
    text-align: left;
    text-decoration: none;
}

@media screen and (min-width: 1024px) and (max-width: 1279px) {

    /* PARA DISPOSITIVOS PEQUENOS*/
    /* Reduzir o "espaço morto" lateral da barra (era 100px) para os botões
   terem mais largura útil — sem isto, CONTACTOS quebra para 2.ª linha. */
    .barmenudown,
    .barmenuup {
        padding: 0px 30px;
    }

    .barmenuup {
        padding: 0px 60px;
    }

    a.menu2-topo:link,
    a.menu2-topo:visited {
        font-size: 0.7em;
        margin: 0px 1px 0px 1px;
        padding: 7px 12px 7px 12px;
    }

    .dropdown-content-menu {
        top: 40px;
    }

}

@media screen and (min-width: 1280px) and (max-width: 1365px) {

    /* PARA DISPOSITIVOS MÉDIOS*/
    .barmenudown,
    .barmenuup {
        padding: 0px 50px;
    }

    .barmenuup {
        padding: 0px 100px;
    }

    a.menu2-topo:link,
    a.menu2-topo:visited {
        font-size: 0.72em;
        margin: 0px 1px 0px 1px;
        padding: 7px 14px 7px 14px;
    }

    .dropdown-content-menu2 {
        top: 40px;
    }
}

@media screen and (min-width: 1366px) and (max-width: 1911px) {

    /* PARA DISPOSITIVOS MÉDIOS*/
    a.menu2-topo:link,
    a.menu2-topo:visited {
        font-size: 0.8em;
        margin: 0px 2px 0px 2px;
        padding: 8px 20px 8px 20px;
    }

    .dropdown-content-menu2 {
        top: 40px;
    }
}

/*-------------------------------------------------------------------
LOGÓTIPO TOPO E RODAPE
--------------------------------------------------------------------*/
/* Faixas horizontais 100% largura (logotipo, menu, idiomas) ficam transparentes
   a eventos nas áreas vazias — só os elementos com conteúdo real (<a>, <img>,
   itens de menu) é que capturam cliques. Sem isto, as faixas tapam botões/
   links que estão por baixo, como as setas prev/next do banner-home.
   `!important` defensivo para garantir que vence qualquer regra a jusante. */
.logotipo-div,
.bartop-options-div,
.bartop-options-div .site-width,
.menu-div {
    pointer-events: none !important;
}

.logotipo-div a,
.logotipo-div img,
.bartop-options-div .idiomas,
.bartop-options-div .idiomas a,
.menu-div .menu-topo-buttom,
.menu-div .menu-topo,
.menu-div .dropdown-content-menu,
.menu-div .dropdown-content-menu a {
    pointer-events: auto !important;
}

.logotipo-div {
    position: absolute;
    top: 192px;
    left: 0px;
    z-index: 3;
    width: 100%;
    justify-content: center;
    display: flex;
    align-items: center;
}

.logotipo-div img {
    width: 494px;
    cursor: pointer;
    transition: transform 0.3s ease-in-out;
}

.logotipo-div img:hover {
    transform: scale(1.03);
    transition: transform 0.3s ease-in-out;
}

.logotipo-rodape-div img {
    width: 366px;
    cursor: pointer;
    transition: transform 0.3s ease-in-out;
}

@media screen and (max-width: 1023px) {
    .logotipo-div {
        display: none;
    }

    .logotipo-rodape-div img {
        width: 250px;
    }
}

@media screen and (min-width: 1024px) and (max-width: 1279px) {

    /* PARA DISPOSITIVOS PEQUENOS*/
    .logotipo-div {
        top: 120px;
    }

    .logotipo-div img {
        width: 320px;
    }

    .logotipo-rodape-div img {
        width: 250px;
    }
}

@media screen and (min-width: 1280px) and (max-width: 1365px) {

    /* PARA DISPOSITIVOS MÉDIOS*/
    .logotipo-div {
        top: 150px;
    }

    .logotipo-div img {
        width: 380px;
    }

    .logotipo-rodape-div img {
        width: 290px;
    }
}

@media screen and (min-width: 1366px) and (max-width: 1911px) {

    /* PARA DISPOSITIVOS MÉDIOS*/
    .logotipo-div {
        top: 150px;
    }

    .logotipo-div img {
        width: 380px;
    }

    .logotipo-rodape-div img {
        width: 330px;
    }
}

/*-------------------------------------------------------------------
CALENDÁRIO EFETUAR RESERVAS
--------------------------------------------------------------------*/
.daterangepicker td.active,
.daterangepicker td.focused,
.daterangepicker td.selected {
    background-color: #afd5fc;
    color: #fff;
}

.daterangepicker td.disabled {
    background-color: #fa7d7d;
    color: #000 !important;
}

.daterangepicker td {
    background-color: #adf2ae;
}

.daterangepicker td.weekend {}

/*-------------------------------------------------------------------
FORMULÁRIO EFETUAR RESERVA - HOME E MOBILE
--------------------------------------------------------------------*/

.reservas-div {
    width: 100%;
    position: relative;
    float: left;
    justify-content: center;
    display: flex;
    align-items: center;
    margin-top: -200px;
    z-index: 2
}

.reservas-box {
    width: 60%;
    padding: 20px 30px 20px 30px;
    display: inline-block;
    background-color: rgba(255, 255, 255, 1);
    border-radius: 90px;
    -webkit-box-shadow: 0px 0px 17px 0px rgba(0, 0, 0, 0.03);
    -moz-box-shadow: 0px 0px 17px 0px rgba(0, 0, 0, 0.03);
    box-shadow: 0px 0px 17px 0px rgba(0, 0, 0, 0.03);
}

.reservas-cell,
.reservas-cell2 {
    width: 20%;
    min-height: 100px;
    position: relative;
    float: left;
    padding: 0px 20px 0px 20px;
    justify-content: center;
    display: flex;
    align-items: center;
}

.reservas-cell2 {
    width: 40%;
}

.reservas-cell.separador,
.reservas-cell2.separador {
    border-right: 1px solid #d1d1d1;
}

.reservas-cell-titulo {
    font-size: 1.1em;
    color: #333;
    text-transform: uppercase
}

.reservas-cell-titulo i {
    font-size: 1.2em;
    color: #333;
    padding-right: 15px;
}

.reservasform input {
    box-sizing: border-box;
    border: none;
    cursor: pointer;
    color: #333;
    text-align: center;
    background-color: transparent;
    font-weight: 500;
    padding: 15px;
    width: 100%;
    font-size: 1.1em;
    padding: 15px 35px 15px 10px !important;
    background: url("https://4al.app/websites/resources/images/selectbox.svg") no-repeat;
    background-size: 20px;
    background-position: right center;
    background-color: transparent;
}

.reservasform input:focus,
.reservasform select:focus {
    outline: none;
}

.reservasform select {
    font-size: 1.1em;
    width: 100%;
    color: #333;
    font-weight: 500;
    padding: 15px 35px 15px 10px !important;
    background: url("https://4al.app/websites/resources/images/selectbox.svg") no-repeat;
    background-size: 20px;
    background-position: right 15px center;
    background-color: transparent;
    border: none;
    border-right: 10px solid rgba(0, 0, 0, 0);
    text-align: center;
    cursor: pointer;
}

.reservas-buttom {
    width: 100%;
    position: relative;
    float: left;
    cursor: pointer;
    border-radius: 50px;
    text-transform: uppercase;
    padding: 25px;
    height: 100%;
    background-color: var(--m2-primary);
    color: #fff;
    font-weight: 500;
    justify-content: center;
    display: flex;
    align-items: center;
    font-size: 1.2em;
    transition: all 0.2s ease-in-out;
}

.reservas-buttom:hover {
    opacity: 0.9;
    transition: all 0.2s ease-in-out;
}

/*--------------------------------------------------------------------
RESERVAS — modo "link externo" (Booking.com / Airbnb / outro)
Renderiza apenas um botão CTA que abre o URL configurado em
$config['reservas_link']. Mantém o overlay sobre o banner.

NOTA sobre especificidade: o reset legado da plataforma força
  a:link,a:visited,a:hover,a:active { color:#333; }
na linha 17 deste mesmo ficheiro. Como `.reservas-buttom-externo` é
aplicado a um `<a>` (e não a `<button>` como o original), a regra
de `a:link` ganha em especificidade (0,1,1 vs 0,1,0) e o texto fica
cinza escuro sobre o fundo verde → invisível. Precisamos de usar
selectores `a.reservas-buttom-externo:link, :visited, ...` para
forçar `color:#fff`.
--------------------------------------------------------------------*/
.reservasform-externo .reservas-box-externo {
    width: auto;
    min-width: 320px;
    max-width: 560px;
    padding: 18px 32px;
}

.reservasform-externo .reservas-cell-externo {
    width: 100%;
    min-height: 0;
    padding: 0;
    border-right: none;
}

.reservas-buttom-externo {
    text-decoration: none;
    gap: 14px;
    padding: 20px 28px;
    font-size: 1.1em;
}

/* Defensive: o reset legado tem regras agressivas em a:hover
     a:link,a:visited,a:hover,a:active { color:#333; }      (0,1,1)
     a:hover { text-decoration:underline; background-color: transparent; }   (0,1,1)
   Usamos `a.reservas-buttom-externo:<state>` (especificidade 0,2,1) + !important
   nas 3 propriedades críticas (color, background-color, text-decoration) para
   blindar contra QUALQUER override futuro de outros plugins/resets que possam
   ser carregados depois. É uma das poucas situações em que !important é
   justificado — estamos a defender o componente do environment hostil. */
a.reservas-buttom-externo,
a.reservas-buttom-externo:link,
a.reservas-buttom-externo:visited,
a.reservas-buttom-externo:hover,
a.reservas-buttom-externo:active,
a.reservas-buttom-externo:focus {
    color: #fff !important;
    background-color: var(--m2-primary) !important;
    text-decoration: none !important;
}

.reservas-buttom-externo i,
a.reservas-buttom-externo:hover i,
a.reservas-buttom-externo:focus i {
    font-size: 1em;
    color: #fff !important;
    padding: 0;
    line-height: 1;
}

.reservas-buttom-externo i.icon-setadireita3 {
    font-size: 0.9em;
}

a.reservas-buttom-externo:hover,
a.reservas-buttom-externo:focus {
    opacity: 0.92;
    background-color: var(--m2-primary-hover) !important;
    /* tom ligeiramente mais escuro no hover para feedback visual */
}

@media screen and (max-width: 1023px) {
    .reservas-div {
        display: none;
    }

    /* ---------------------------------------------------------------
       Form de pesquisa de reservas em mobile: VISÍVEL em todas as páginas
       EXCEPTO a home (onde o form é overlay sobre o banner e é substituído
       pelo botão sticky "RESERVAR" no header — comportamento legacy).

       Cobre:
        - /propriedade (catálogo / disponibilidade / detalhe)
        - /reservar e qualquer página CMS com o widget reservas-form
        - /evento/{id} e quaisquer outras páginas dedicadas
       Não cobre: home (data-pagina="home"), onde o display:none legado
       continua a aplicar-se.
       --------------------------------------------------------------- */
    body:not([data-pagina="home"]) .reservas-div {
        display: block !important;
        margin-top: 20px !important;
        padding: 0 16px;
        box-sizing: border-box;
    }
    body:not([data-pagina="home"]) .reservas-box {
        width: 100%;
        padding: 16px;
        border-radius: 16px;
        display: flex;
        flex-direction: column;
        gap: 14px;
        box-sizing: border-box;
    }
    body:not([data-pagina="home"]) .reservas-cell,
    body:not([data-pagina="home"]) .reservas-cell2 {
        width: 100%;
        min-height: 0;
        padding: 0;
        float: none;
    }
    body:not([data-pagina="home"]) .reservas-cell.separador,
    body:not([data-pagina="home"]) .reservas-cell2.separador {
        border-right: none;
        border-bottom: 1px solid #e5e7eb;
        padding-bottom: 14px;
    }
    body:not([data-pagina="home"]) .reservas-cell-titulo {
        text-align: left;
        margin-top: 0;
        margin-bottom: 6px;
        font-size: 0.78em;
        color: #666;
        text-transform: uppercase;
        letter-spacing: 0.6px;
        font-weight: 600;
    }
    body:not([data-pagina="home"]) .reservas-cell-titulo i {
        font-size: 1em;
        padding-right: 8px;
        color: var(--m2-primary);
    }
    body:not([data-pagina="home"]) .reservas-cell-field input,
    body:not([data-pagina="home"]) .reservas-cell-field select {
        text-align: left !important;
        padding: 10px 14px !important;
        font-size: 1em !important;
        border: 1px solid #ccc !important;
        border-radius: 10px !important;
        background-color: #fff !important;
        width: 100% !important;
    }
    body:not([data-pagina="home"]) .reservas-buttom {
        width: 100%;
        padding: 14px;
        font-size: 1em;
        border-radius: 10px;
    }

    .reservas-cell-titulo {
        font-size: 1.1em;
        color: #333;
        text-align: center;
        margin-top: 30px;
        margin-bottom: 10px
    }

    .reservas-cell-titulo i {
        font-size: 1.2em;
        color: #333;
        padding-right: 15px;
    }

    .reservasform input {
        border: 1px solid #ccc;
        border-radius: 10px;
        background-position: right 15px center;
    }

    .reservasform select {
        font-size: 1.1em;
        border: 1px solid #ccc;
        background-position: right 15px center;
        border-radius: 10px;
    }

    .reservas-button-close {
        position: absolute;
        top: 10px;
        right: 10px;
        z-index: 1;
        cursor: pointer;
    }

    .reservas-button-close i {
        font-size: 2em;
        color: #000;
    }

    .reservas-buttom {
        border-radius: 50px;
        text-transform: uppercase;
        padding: 14px 10px 14px 10px;
        font-size: 1em;
    }
}

@media screen and (min-width: 1024px) {
    .reservas-cell-titulo {
        display: flex;
        align-items: center;
        justify-content: center;
    }


}

@media screen and (min-width: 1024px) and (max-width: 1365px) {
    .reservas-div {
        margin-top: -150px;
    }

    .reservas-box {
        width: 80%;
        padding: 10px 15px 10px 15px;
        border-radius: 50px;
    }

    .reservas-cell,
    .reservas-cell2 {
        min-height: 80px;
        padding: 0px 15px 0px 15px;
    }

    .reservas-cell-titulo {
        font-size: 0.8em;
    }

    .reservas-cell-titulo i {
        font-size: 0.9em;
    }

    .reservasform input {
        padding: 10px;
        font-size: 0.8em;
        padding: 10px 25px 10px 10px !important;
        background-size: 15px;
    }

    .reservasform select {
        font-size: 0.9em;
        padding: 10px 25px 10px 10px !important;
        background-size: 15px;
    }

    .reservas-buttom {
        border-radius: 50px;
        padding: 15px;
        font-size: 1em;
    }
}

@media screen and (min-width: 1280px) and (max-width: 1911px) {
    .reservas-div {
        margin-top: -150px;
    }

    .reservas-box {
        width: 70%;
        padding: 10px 15px 10px 15px;
        border-radius: 50px;
    }

    .reservas-cell,
    .reservas-cell2 {
        min-height: 80px;
        padding: 0px 15px 0px 15px;
    }

    .reservas-cell-titulo {
        font-size: 0.8em;
    }

    .reservas-cell-titulo i {
        font-size: 0.9em;
    }

    .reservasform input {
        padding: 10px;
        font-size: 0.8em;
        padding: 10px 25px 10px 10px !important;
        background-size: 15px;
    }

    .reservasform select {
        font-size: 0.9em;
        padding: 10px 25px 10px 10px !important;
        background-size: 15px;
    }

    .reservas-buttom {
        border-radius: 50px;
        padding: 15px;
        font-size: 1em;
    }
}

@media screen and (min-width: 1366px) and (max-width: 1911px) {}

/*-------------------------------------------------------------------
EFETUAR RESERVA - PÁGINA RESERVAS
--------------------------------------------------------------------*/
.reservas-tituloprincipal {
    font-size: 1.3em;
    text-align: center;
    color: #000;
    font-weight: 500;
    margin-bottom: 30px;
    margin-top: -100px
}

.reservas-bloco {
    border-radius: 30px;
    background-color: #fff;
    padding: 30px;
    -webkit-box-shadow: 0px 0px 17px 0px rgba(0, 0, 0, 0.06);
    -moz-box-shadow: 0px 0px 17px 0px rgba(0, 0, 0, 0.06);
    box-shadow: 0px 0px 17px 0px rgba(0, 0, 0, 0.06);
}

.reserva-bloco-body {
    display: none;
}

.reservas-titulo {
    font-size: 1.3em;
    color: #000;
    font-weight: 500;
}

.reservas-subtitulos {
    font-size: 1em;
    color: #000;
}

.reservas-box-titulo {
    font-size: 1.1em;
    color: #000;
    font-weight: 500;
}

.reservas-box-titulo i {
    font-size: 1.2em;
    color: #c9c9c9;
    position: absolute;
    top: 0px;
    right: 0px;
}

.reservas-box-info {
    font-size: 0.8em;
    color: #333;
    font-weight: 400;
}

.loading {
    width: 100%;
    height: 100px;
    position: relative;
    float: left;
    background: 50% 50% no-repeat;
    background-size: 100px;
    background-image: url(https://4al.app/websites/resources/images/loader.svg);
}

.reservas-botoes,
.reservas-botoes-anterior {
    position: relative;
    float: left;
    padding: 15px 30px 15px 30px;
    margin: 0px 5px 0px 5px;
    justify-content: center;
    display: flex;
    align-items: center;
    background-color: #063;
    font-size: 1em;
    color: #fff;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}

.reservas-botoes:hover,
.reservas-botoes-anterior:hover {
    opacity: 0.9;
    transition: all 0.2s ease-in-out;
}

.reservas-botoes-anterior {
    background-color: #b5b5b5;
}

.reservas-botoes-anterior i {
    padding-right: 10px;
}

.icon-setadireita {
    padding-left: 10px;
}

.reservas-page-div {
    width: 100%;
    position: relative;
    float: left;
    justify-content: center;
    display: flex;
    align-items: center;
    margin-top: 0px;
}

.reservas-page-box {
    width: 80%;
    padding: 20px 30px 20px 30px;
    display: inline-block;
    background-color: rgba(255, 255, 255, 1);
    border-radius: 90px;
    -webkit-box-shadow: 0px 0px 17px 0px rgba(0, 0, 0, 0.06);
    -moz-box-shadow: 0px 0px 17px 0px rgba(0, 0, 0, 0.06);
    box-shadow: 0px 0px 17px 0px rgba(0, 0, 0, 0.06);
}

.reservas-page-cell1,
.reservas-page-cell2 {
    width: 20%;
    min-height: 100px;
    position: relative;
    float: left;
    padding: 0px 20px 0px 20px;
    justify-content: center;
    display: flex;
    align-items: center;
}

.reservas-page-cell1.separador,
.reservas-page-cell2.separador {
    border-right: 1px solid #d1d1d1;
}

.reservas-page-cell1 {
    width: 40%;
}

.reservas-page-cell-titulo {
    font-size: 1.1em;
    color: #a0a0a0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase
}

.reservas-page-cell-titulo i {
    font-size: 1.2em;
    color: #a0a0a0;
    padding-right: 15px;
}

.reservasform-page input {
    box-sizing: border-box;
    border: none;
    cursor: pointer;
    color: #333;
    text-align: center;
    background-color: transparent;
    font-weight: 500;
    padding: 15px;
    width: 100%;
    font-size: 1.1em;
    padding: 15px 35px 15px 10px !important;
    background: url("https://4al.app/websites/resources/images/selectbox.svg") no-repeat;
    background-size: 20px;
    background-position: right center;
    background-color: transparent;
}

.reservasform-page input:focus,
.reservasform-page select:focus {
    outline: none;
}

.reservasform-page select {
    font-size: 1.1em;
    width: 100%;
    color: #333;
    font-weight: 500;
    padding: 15px 35px 15px 10px !important;
    background: url("https://4al.app/websites/resources/images/selectbox.svg") no-repeat;
    background-size: 20px;
    background-position: right center;
    background-color: transparent;
    border: none;
    border-right: 10px solid rgba(0, 0, 0, 0);
    text-align: center;
    cursor: pointer;
}

.reservas-page-buttom {
    width: 100%;
    position: relative;
    float: left;
    cursor: pointer;
    border-radius: 50px;
    text-align: center;
    text-transform: uppercase;
    padding: 25px;
    height: 100%;
    background-color: var(--m2-primary);
    color: #fff;
    font-weight: 500;
    font-size: 1.2em;
    transition: all 0.2s ease-in-out;
}

.reservas-page-buttom:hover {
    opacity: 0.9;
    transition: all 0.2s ease-in-out;
}

.reservas-disponiveis-item {
    border-radius: 30px;
    background-color: #fff;
    padding: 20px;
    margin-bottom: 20px;
    -webkit-box-shadow: 0px 0px 17px 0px rgba(0, 0, 0, 0.06);
    -moz-box-shadow: 0px 0px 17px 0px rgba(0, 0, 0, 0.06);
    box-shadow: 0px 0px 17px 0px rgba(0, 0, 0, 0.06);
}

.reservas-disponiveis-foto {
    width: 20%;
    min-height: 200px;
    border-radius: 30px;
    position: relative;
    float: left;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.reservas-disponiveis-info,
.reservas-disponiveis-info2 {
    width: 40%;
    min-height: 200px;
    position: relative;
    float: left;
    padding: 0px 20px 0px 20px;
}

.reservas-disponiveis-info2 {
    width: 45%;
}

.reservas-disponiveis-carateristicas {
    width: 10%;
    min-height: 200px;
    position: relative;
    float: left;
    padding: 0px 20px 0px 20px;
    text-align: center;
    justify-content: center;
    display: flex;
    align-items: center;
}

.reservas-disponiveis-preco {
    width: 20%;
    min-height: 200px;
    position: relative;
    float: left;
    padding: 0px 20px 0px 20px;
    text-align: center;
    justify-content: center;
    display: flex;
    align-items: center;
}

.reservas-disponiveis-preco span {
    font-size: 2em;
    color: #093;
    font-weight: 500;
}

.reservas-disponiveis-reservar {
    width: 10%;
    min-height: 200px;
    position: relative;
    float: left;
    padding: 0px 20px 0px 20px;
    justify-content: center;
    display: flex;
    align-items: center;
}

.reservas-disponiveis-titulo {
    font-size: 1.1em;
    color: #000;
    font-weight: 500;
}

.reservas-disponiveis-comodidades {
    font-size: 0.9em;
    color: #ababab;
    margin-top: 15px
}



.reservas-form label {
    font-size: 0.9em;
    padding-left: 10px;
    line-height: 2em;
    font-family: "Poppins", sans-serif;
}

.reservas-form select {
    font-family: "Poppins", sans-serif;
    font-size: 0.9em;
    width: 100%;
    font-weight: 400;
    background-color: #f0f0f0 !important;
    padding: 12px 35px 12px 12px !important;
    border-radius: 30px;
    background: url("https://omeustand.pt/websites/resources/images/navigation-menu.svg") no-repeat;
    background-size: 20px;
    background-position: right center;
    border: none;
    border-right: 10px solid rgba(0, 0, 0, 0);
}

.reservas-form input,
.reservas-form textarea {
    border-radius: 30px;
    box-sizing: border-box;
    background-color: #f0f0f0;
    font-family: "Poppins", sans-serif;
    border: none;
    font-weight: 500;
    padding: 14px;
    width: 100%;
    font-size: 0.9em;
}

.reservas-form input::placeholder,
.reservas-form textarea::placeholder {
    font-weight: 500;
    font-size: 0.9em;
}

.reservas-pagamento-cell {
    background-color: #fdfdfd;
    transition: all 0.2s ease-in-out;
}

.reservas-pagamento-cell:hover,
.reservas-pagamento-cell.active {
    cursor: pointer;
    background-color: #f9f9f9;
    transition: all 0.2s ease-in-out;
}

@media screen and (min-width: 1024px) {
    .reservas-tituloprincipal {
        margin-top: -50px
    }

    .reservas-pagamento-img {
        width: 10%;
        position: relative;
        float: left;
        display: flex;
        align-items: center;
    }

    .reservas-pagamento-cell {
        padding: 30px;
        border-radius: 30px;
        margin-bottom: 5px;
        transition: all 0.2s ease-in-out;
        justify-content: center;
        display: flex;
        align-items: center;
    }
}

.reservas-pagamento-img img {
    width: 120px;
}

.reservas-pagamento-info {
    width: 80%;
    position: relative;
    float: left;
    font-size: 0.9em;
    color: #000;
    padding: 0px 50px 0px 20px;
}

.reservas-pagamento-info span {
    color: #9f9f9f;
    font-weight: 400;
    font-size: 0.85em;
}

.reservas-pagamento-select {
    width: 10%;
    position: relative;
    float: left;
    text-align: right;
}

.reservas-pagamento-select i {
    font-size: 2em;
    color: #868686;
}

.reservas-pagamento-select .icon-task {
    color: #16bc1a;
}

#reservaFinaliza img {
    width: 20px;
    padding-right: 15px;
}

@media screen and (max-width: 1023px) {
    #showwidgetreservas {
        margin-top: -50px;
    }

    .reservas-tituloprincipal {
        margin-top: -80px
    }

    .reservas-page-div {
        display: none;
    }

    .reservas-titulo {
        font-size: 1.2em;
        ;
    }

    .reservas-subtitulos {
        font-size: 0.9em;
    }

    .reservas-bloco {
        border-radius: 20px;
        padding: 20px;
    }

    .reservas-disponiveis-item {
        border-radius: 20px;
        padding: 15px;
    }

    .reservas-disponiveis-foto {
        width: 100%;
        min-height: 180px;
        border-radius: 20px;
    }

    .reservas-disponiveis-info,
    .reservas-disponiveis-info2 {
        width: 100%;
        min-height: 0px;
        padding: 20px;
    }

    .reservas-disponiveis-info2 {
        width: 100%;
    }

    .reservas-disponiveis-carateristicas {
        width: 100%;
        min-height: 0px;
        padding: 20px;
    }

    .reservas-disponiveis-preco {
        width: 100%;
        min-height: 0px;
        padding: 20px;
    }

    .reservas-disponiveis-reservar {
        width: 100%;
        min-height: 0px;
        padding: 20px;
    }

    .reservas-botoes,
    .reservas-botoes-anterior {
        width: 100%;
        padding: 15px 30px 15px 30px;
        margin: 0px 0px 20px 0px;
        border-radius: 20px
    }

    .reservas-pagamento-cell {
        padding: 20px;
        border-radius: 20px;
        margin-bottom: 15px;
    }

    .reservas-pagamento-img {
        width: 100%;
        position: relative;
        float: left;
        justify-content: center;
        display: flex;
        align-items: center;
    }

    .reservas-pagamento-img img {
        width: 130px;
    }

    .reservas-pagamento-info {
        width: 100%;
        position: relative;
        float: left;
        font-size: 0.8em;
        padding: 20px;
        text-align: center
    }

    .reservas-pagamento-info span {
        color: #9f9f9f;
        font-weight: 400;
        font-size: 0.85em;
    }

    .reservas-pagamento-select {
        width: 100%;
        position: relative;
        float: left;
        text-align: center;
    }

    .reservas-box-titulo2 {
        text-align: center;
    }
}

@media screen and (min-width: 1024px) and (max-width: 1365px) {
    .reservas-page-box {
        width: 80%;
        padding: 10px 15px 10px 15px;
        border-radius: 50px;
    }

    .reservas-page-cell1,
    .reservas-page-cell2 {
        min-height: 80px;
        padding: 0px 15px 0px 15px;
    }

    .reservas-page-cell-titulo {
        font-size: 0.8em;
    }

    .reservas-page-cell-titulo i {
        font-size: 0.9em;
    }

    .reservas-titulo {
        font-size: 1.05em;
    }

    .reservas-subtitulos {
        font-size: 0.9em;
    }

    .reservas-disponiveis-item {
        border-radius: 20px;
        padding: 10px;
    }

    .reservas-disponiveis-foto {
        height: 150px;
        border-radius: 20px;
    }

    .reservas-disponiveis-info,
    .reservas-disponiveis-info2 {
        width: 35%;
        height: 150px;
        padding: 0px 10px 0px 10px;
    }

    .reservas-disponiveis-carateristicas {
        height: 150px;
        padding: 0px 10px 0px 10px;
        font-size: 0.85em
    }

    .reservas-disponiveis-preco {
        height: 150px;
        padding: 0px 10px 0px 10px;
        font-size: 0.85em
    }

    .reservas-disponiveis-preco span {
        font-size: 1.2em;
    }

    .reservas-disponiveis-reservar {
        width: 15%;
        height: 150px;
        padding: 0px 10px 0px 10px;
    }

    .reservas-disponiveis-titulo {
        font-size: 0.9em;
    }

    .reservas-disponiveis-comodidades {
        font-size: 0.7em;
        margin-top: 10px
    }

    .reservas-botoes,
    .reservas-botoes-anterior {
        padding: 10px 15px 10px 15px;
        font-size: 0.75em;
        border-radius: 12px;
    }


    .reservas-box-titulo {
        font-size: 1em;
    }

    .reservas-box-titulo i {
        font-size: 1.1em;
    }


    .reservas-form label {
        font-size: 0.8em;
        padding-left: 5px;
    }

    .reservas-form select {
        font-size: 0.8em;
        padding: 10px 25px 10px 10px !important;
        border-radius: 20px;
        background-size: 15px;
    }

    .reservas-form input,
    .reservas-form textarea {
        border-radius: 20px;
        padding: 10px;
        font-size: 0.8em;
    }

    .reservas-form input::placeholder,
    .reservas-form textarea::placeholder {
        font-size: 0.8em;
    }



    .reservas-pagamento-cell {
        padding: 15px;
        border-radius: 20px;
        margin-bottom: 5px;
    }

    .reservas-pagamento-img {
        width: 15%;
    }

    .reservas-pagamento-img img {
        width: 100px;
    }

    .reservas-pagamento-info {
        width: 75%;
        font-size: 0.9em;
        padding: 0px 30px 0px 20px;
    }

    .reservas-pagamento-info span {
        font-size: 0.75em;
    }

    .reservas-pagamento-select {
        width: 10%;
    }

    .reservas-pagamento-select i {
        font-size: 1.5em;
    }



    .reservasform-page input {
        padding: 10px;
        font-size: 0.8em;
        padding: 10px 25px 10px 10px !important;
        background-size: 15px;
    }

    .reservasform-page select {
        font-size: 0.9em;
        padding: 10px 25px 10px 10px !important;
        background-size: 15px;
    }

    .reservas-page-buttom {
        border-radius: 50px;
        padding: 15px;
        font-size: 0.8em;
    }
}



@media screen and (min-width: 1366px) and (max-width: 1911px) {
    .reservas-page-box {
        width: 70%;
        padding: 10px 15px 10px 15px;
        border-radius: 50px;
    }

    .reservas-page-cell1,
    .reservas-page-cell2 {
        min-height: 80px;
        padding: 0px 15px 0px 15px;
    }

    .reservas-page-cell-titulo {
        font-size: 0.8em;
    }

    .reservas-page-cell-titulo i {
        font-size: 0.9em;
    }

    .reservas-titulo {
        font-size: 1.2em;
    }

    .reservas-subtitulos {
        font-size: 0.9em;
    }

    .reservas-disponiveis-item {
        border-radius: 20px;
        padding: 15px;
    }

    .reservas-disponiveis-foto {
        height: 150px;
        border-radius: 20px;
    }

    .reservas-disponiveis-info,
    .reservas-disponiveis-info2 {
        width: 35%;
        height: 150px;
        padding: 0px 10px 0px 10px;
    }

    .reservas-disponiveis-carateristicas {
        height: 150px;
        padding: 0px 10px 0px 10px;
        font-size: 0.8em
    }

    .reservas-disponiveis-preco {
        height: 150px;
        padding: 0px 10px 0px 10px;
        font-size: 0.85em
    }

    .reservas-disponiveis-preco span {
        font-size: 1.2em;
    }

    .reservas-disponiveis-reservar {
        width: 15%;
        height: 150px;
        padding: 0px 10px 0px 10px;
    }

    .reservas-disponiveis-titulo {
        font-size: 1em;
    }

    .reservas-disponiveis-comodidades {
        font-size: 0.8em;
        margin-top: 10px
    }

    .reservas-botoes,
    .reservas-botoes-anterior {
        padding: 13px 20px 13px 20px;
        font-size: 0.82em;
        border-radius: 15px;
    }

    .reservas-form label {
        font-size: 0.85em;
        padding-left: 5px;
    }

    .reservas-form select {
        font-size: 0.85em;
        padding: 12px 25px 12px 12px !important;
        border-radius: 20px;
        background-size: 17px;
    }

    .reservas-form input,
    .reservas-form textarea {
        border-radius: 20px;
        padding: 12px;
        font-size: 0.85em;
    }

    .reservas-form input::placeholder,
    .reservas-form textarea::placeholder {
        font-size: 0.85em;
    }


    .reservas-pagamento-img {
        width: 15%;
    }

    .reservas-pagamento-img img {
        width: 100px;
    }

    .reservas-pagamento-info {
        width: 75%;
        font-size: 0.9em;
        padding: 0px 30px 0px 20px;
    }

    .reservas-pagamento-info span {
        font-size: 0.8em;
    }

    .reservas-pagamento-select {
        width: 10%;
    }

    .reservas-pagamento-select i {
        font-size: 1.5em;
    }


    .reservasform-page input {
        padding: 10px;
        font-size: 0.8em;
        padding: 10px 25px 10px 10px !important;
        background-size: 15px;
    }

    .reservasform-page select {
        font-size: 0.9em;
        padding: 10px 25px 10px 10px !important;
        background-size: 15px;
    }

    .reservas-page-buttom {
        border-radius: 50px;
        padding: 15px;
        font-size: 1em;
    }
}

/*-------------------------------------------------------------------
EFETUAR RESERVA - PASSO 3
--------------------------------------------------------------------*/
.reservas-3step-foto {
    width: 20%;
    min-height: 200px;
    border-radius: 30px;
    position: relative;
    float: left;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.reservas-3step-info {
    width: 80%;
    min-height: 200px;
    position: relative;
    float: left;
    padding: 0px 20px 0px 20px;
}

.reservas-3step-titulo {
    font-size: 1.1em;
    color: #000;
    font-weight: 500;
}

.reservas-3step-comodidades {
    font-size: 0.9em;
    color: #ababab;
    margin-top: 15px
}

.reservas-3step-preco span {
    font-size: 2em;
    color: #29c02d;
    font-weight: 500;
}

@media screen and (max-width: 1023px) {
    .reservas-3step-foto {
        width: 100%;
        min-height: 160px;
        border-radius: 20px;
    }

    .reservas-3step-info {
        width: 100%;
        min-height: 160px;
        padding: 20px;
        text-align: center
    }

    .reservas-3step-comodidades {
        font-size: 0.8em;
    }

    .reservas-3step-texto {
        font-size: 0.85em;
        margin-top: 30px;
        text-align: center
    }

    .reservas-3step-preco span {
        font-size: 1.8em;
        color: #29c02d;
        font-weight: 500;
    }
}

@media screen and (min-width: 1024px) and (max-width: 1365px) {
    .reservas-3step-foto {
        width: 25%;
        min-height: 140px;
        border-radius: 20px;
    }

    .reservas-3step-info {
        width: 75%;
        min-height: 140px;
        padding: 0px 20px 0px 20px;
    }

    .reservas-3step-comodidades {
        font-size: 0.8em;
    }

    .reservas-3step-texto {
        font-size: 0.8em;
    }

    .reservas-3step-preco span {
        font-size: 1.5em;
        color: #29c02d;
        font-weight: 500;
    }
}

@media screen and (min-width: 1280px) and (max-width: 1911px) {
    .reservas-3step-foto {
        width: 25%;
        min-height: 160px;
        border-radius: 20px;
    }

    .reservas-3step-info {
        width: 75%;
        min-height: 160px;
        padding: 0px 20px 0px 20px;
    }
}

@media screen and (min-width: 1366px) and (max-width: 1911px) {
    .reservas-3step-comodidades {
        font-size: 0.9em;
    }

    .reservas-3step-texto {
        font-size: 0.9em;
    }

    .reservas-3step-preco span {
        font-size: 1.5em;
    }
}

/*-------------------------------------------------------------------
ESPAÇOS DO ALOJAMENTO
--------------------------------------------------------------------*/
.espacos-div {
    background-color: #f9f9f9;
}

.espacos-carroucel {
    padding: 0px 200px 0px 200px;
    margin-top: 20px
}

.espacos-iten {
    padding: 30px;
}

.espacos-box {
    width: 100%;
    position: relative;
    float: left;
    padding: 15px;
    background-color: #fff;
    margin: 0px;
    -webkit-box-shadow: 0px 0px 19px 0px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0px 0px 19px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 0px 19px 0px rgba(0, 0, 0, 0.1);
}

.espaco-fotos-div,
.espacos-box {
    border-radius: 70px;
}

.espaco-fotos-div {
    width: 60%;
    position: relative;
    float: left;
    background-position: center center;
    background-size: cover;
}

.espaco-info-div {
    width: 40%;
    position: relative;
    float: left;
    padding: 30px;
}

.espaco-fotos-div,
.espacos-info-div {
    height: 408px;
    overflow: scroll;
}

.espaco-info-div .titulo {
    font-weight: 400;
    font-size: 1.2em;
    color: #000;
    text-align: center;
    margin-top: 30px;
}

.espaco-info-div .espaco-comodidades-div {
    margin-top: 30px;
}

.espaco-comodidade-iten {
    position: relative;
    float: left;
    font-size: 0.9em;
    margin: 10px;
}

.espaco-comodidade-iten i {
    font-size: 1.5em;
    padding-right: 15px;
}

.owl-theme .owl-dots,
.owl-theme .owl-nav {
    text-align: center;
    -webkit-tap-highlight-color: transparent
}

.owl-theme .owl-nav {
    margin-top: 10px
}

.owl-theme .owl-nav .disabled {
    opacity: .5;
    cursor: default
}

.owl-theme .owl-nav.disabled+.owl-dots {
    margin-top: 10px
}

.owl-theme .owl-dots .owl-dot {
    display: inline-block;
    zoom: 1
}

.owl-left-cell i,
.owl-right-cell i {
    font-size: 7em;
    color: #e2e2e2;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.owl-left-cell i:hover,
.owl-right-cell i:hover {
    color: var(--m2-primary);
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.owl-left-cell {
    position: absolute;
    left: -200px;
    top: 32%;
}

.owl-right-cell {
    position: absolute;
    right: -200px;
    top: 32%;
}

#espacoscaroucel.owl-theme .owl-dots .owl-dot span {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    margin: 5px 7px;
    display: block;
    -webkit-backface-visibility: visible;
    transition: opacity .2s ease;
    margin-top: 30px;
}

#espacoscaroucel.owl-theme .owl-dots .owl-dot span {
    background: #eaeaea;
}

#espacoscaroucel.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
    background: var(--m2-primary)
}

@media screen and (max-width: 1023px) {
    .espacos-carroucel {
        padding: 0px;
        margin-top: 20px
    }

    .espacos-iten {
        padding: 20px;
    }

    .espacos-box {
        padding: 10px;
    }

    .espaco-fotos-div,
    .espacos-box {
        border-radius: 40px;
    }

    .espaco-fotos-div {
        width: 100%;
    }

    .espaco-info-div {
        width: 100%;
        padding: 20px;
    }

    .espaco-fotos-div,
    .espacos-info-div {
        height: 280px;
    }

    .owl-left-cell {
        left: 10px;
        top: 92%;
    }

    .owl-right-cell {
        right: 10px;
        top: 92%;
    }

    .owl-left-cell i,
    .owl-right-cell i {
        font-size: 3em;
    }
}

@media screen and (min-width: 1024px) and (max-width: 1365px) {
    .espacos-carroucel {
        padding: 0px 80px 0px 80px;
    }

    .espaco-fotos-div,
    .espacos-info-div {
        height: 280px;
    }

    .espaco-info-div .titulo {
        font-size: 1em;
        color: #000;
        margin-top: 0px;
    }

    .owl-left-cell i,
    .owl-right-cell i {
        font-size: 5em;
    }

    .owl-left-cell {
        left: -70px;
        top: 32%;
    }

    .owl-right-cell {
        right: -70px;
        top: 32%;
    }

    .espacos-carroucel .owl-theme .owl-dots {
        margin-top: -50px !important;
    }
}

@media screen and (min-width: 1280px) and (max-width: 1911px) {
    .espacos-carroucel {
        padding: 0px 80px 0px 80px;
    }

    .espaco-fotos-div,
    .espacos-info-div {
        height: 280px;
    }

    .espaco-info-div .titulo {
        font-size: 1em;
        color: #000;
        margin-top: 0px;
    }

    .owl-left-cell i,
    .owl-right-cell i {
        font-size: 5em;
    }

    .owl-left-cell {
        left: -70px;
        top: 32%;
    }

    .owl-right-cell {
        right: -70px;
        top: 32%;
    }

    .espacos-carroucel .owl-theme .owl-dots {
        margin-top: -50px !important;
    }
}

@media screen and (min-width: 1366px) and (max-width: 1911px) {

    .espaco-fotos-div,
    .espacos-info-div {
        height: 320px;
    }
}

/*-------------------------------------------------------------------
MÓDULO APRESENTAÇÃO QUEM SOMOS
--------------------------------------------------------------------*/
.sobre-left-div {
    width: 55%;
    position: relative;
    float: left;
    padding-right: 80px;
}

.sobre-right-div {
    width: 45%;
    position: relative;
    float: left;
}

.sobre-titulo {
    font-size: 1.9em;
    color: #000;
    font-weight: 300;
    text-transform: uppercase;
}

.sobre-texto {
    font-size: 0.9em;
    color: #000;
    font-weight: 300;
    margin-top: 50px;
    text-align: justify;
    line-height: 2em;
}

.sobre-image-box {
    width: 100%;
    position: relative;
    float: left;
    border-radius: 80px;
    height: 450px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

@media screen and (max-width: 1023px) {
    .sobre-left-div {
        width: 100%;
        padding: 0px;
    }

    .sobre-right-div {
        width: 100%;
        margin-top: 20px
    }

    .sobre-titulo {
        font-size: 1.5em;
        text-align: center
    }

    .sobre-texto {
        font-size: 0.85em;
        margin-top: 30px;
    }

    .sobre-image-box {
        border-radius: 40px;
        height: 280px;
    }

}

@media screen and (min-width: 1024px) and (max-width: 1365px) {
    .sobre-left-div {
        padding-right: 50px;
    }

    .sobre-titulo {
        font-size: 1.5em;
    }

    .sobre-texto {
        font-size: 0.8em;
        margin-top: 30px;
    }

    .sobre-image-box {
        border-radius: 50px;
        height: 300px;
        margin-top: 50px
    }

}

@media screen and (min-width: 1280px) and (max-width: 1911px) {
    .sobre-left-div {
        padding-right: 50px;
    }

    .sobre-titulo {
        font-size: 1.5em;
    }

    .sobre-texto {
        font-size: 0.8em;
        margin-top: 30px;
    }

    .sobre-image-box {
        border-radius: 50px;
        height: 300px;
        margin-top: 50px
    }
}

/*-------------------------------------------------------------------
CONTEÚDO DIMÂMICO / PÁGINAS
--------------------------------------------------------------------*/
.conteudodinamico {
    padding: 130px 0px 100px 0px;
}

.pagina-titulo {
    color: var(--m2-primary);
    font-size: 1.4em;
    font-weight: 500;
    text-transform: uppercase
}

.pagina-conteudo {
    color: #333;
    font-size: 0.95em;
    font-weight: 400;
    margin-top: 50px;
    line-height: 2em;
}


.pagina-fotos-centro {
    text-align: center;
}

.pagina-fotos {
    width: 200px;
    display: inline-block;
    height: 140px;
    margin: 0px 10px 20px 10px;
    border-radius: 10px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    transition: all 0.3s ease-in-out;
}

.pagina-fotos:hover {
    opacity: 0.8;
    transition: all 0.3s ease-in-out;
}

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

    /* PARA SMARTPHONE E TABLET*/
    .conteudodinamico {
        padding: 80px 20px 50px 20px;
    }

    .pagina-titulo {
        font-size: 1.4em;
        text-align: center
    }

    .pagina-conteudo {
        font-size: 0.8em;
        text-align: justify
    }
}

@media screen and (max-width: 360px) {
    .pagina-titulo {
        font-size: 1.2em;
    }
}

@media screen and (min-width: 361px) and (max-width: 447px) {

    /* PARA DISPOSITIVOS PEQUENOS*/
    .pagina-titulo {
        font-size: 1.2em;
    }
}

@media screen and (min-width: 1024px) and (max-width: 1279px) {

    /* PARA DISPOSITIVOS PEQUENOS*/
    .conteudodinamico {
        padding: 80px 0px 50px 0px;
    }

    .pagina-titulo {
        font-size: 1.1em;
    }

    .pagina-conteudo {
        font-size: 0.8em;
    }
}

@media screen and (min-width: 1280px) and (max-width: 1365px) {

    /* PARA DISPOSITIVOS MÉDIOS*/
    .conteudodinamico {
        padding: 80px 0px 50px 0px;
    }

    .pagina-titulo {
        font-size: 1.2em;
    }

    .pagina-conteudo {
        font-size: 0.8em;
    }
}

@media screen and (min-width: 1366px) and (max-width: 1911px) {

    /* PARA DISPOSITIVOS MÉDIOS*/
    .pagina-titulo {
        font-size: 1.2em;
    }

    .pagina-conteudo {
        font-size: 0.8em;
    }
}

/*-------------------------------------------------------------------
REVIEWS - WIDGET - MODAL
--------------------------------------------------------------------*/
.reviews-modal-backdrop {
    width: 100vw;
    height: 100vh;
    position: absolute;
    display: flex;
    justify-content: center;
    z-index: 999999;
    background-color: rgba(0, 0, 0, 0.9)
}

.reviews-modal {
    background-color: #fff;
    width: 40%;
    min-height: 100px;
    padding: 20px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 10px;
    opacity: 0;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}

.reviews-modal-content {
    width: 100%;
    height: 300px;
    overflow: auto;
    position: relative;
    float: left;
    padding: 20px 0px 30px 0px;
}

.reviews-button-close {
    background-color: #fff;
    color: #000;
    position: absolute;
    right: -15px;
    top: -15px;
    width: 30px;
    height: 30px;
    z-index: 2;
    font-size: 1.3em;
    text-align: center;
    border-radius: 50%;
    cursor: pointer;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.reviews-button-close:hover {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}


.reviews-modal-img-div,
.reviews-modal-nome,
.reviews-modal-stars,
.reviews-modal-data,
.reviews-modal-texto,
.reviews-modal-origem,
.reviews-modal-fotografias {
    width: 100%;
    position: relative;
    float: left;
}

.reviews-modal-img {
    background-color: #fff;
    width: 80px;
    height: 80px;
    position: relative;
    margin-left: auto;
    margin-right: auto;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;
    border-radius: 50%;
}

.reviews-modal-data {
    margin-top: 10px;
    font-size: 0.9em;
    text-align: center
}

.reviews-modal-nome {
    margin-top: 0px;
    font-size: 1.1em;
    font-weight: 700;
    text-align: center;
}

.reviews-modal-texto {
    margin-top: 20px;
    color: #333;
    font-size: 1em;
    text-align: justify;
}

.reviews-modal-origem {
    margin-top: 30px;
}

.reviews-modal-stars {
    margin-top: 20px;
    text-align: center;
    height: 20px;
    overflow: hidden
}

.reviews-modal-foto {
    position: relative;
    float: left;
    margin: 20px;
    width: 25%;
    height: 120px;
    background-position: center center;
    background-size: contain;
    background-repeat: no-repeat;
}

.reviews-modal-stars img {
    width: 20px;
    height: auto;
    position: relative;
    float: left;
    margin: 0px 3px 0px 3px;
}

.reviews-modal-origem img {
    max-width: 100%;
    width: 30px;
    height: auto;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

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

    /* PARA DISPOSITIVOS PEQUENOS*/
    .reviews-modal {
        width: 90%;
        min-height: 100px;
        max-height: 70vh;
    }

    .reviews-modal-content {
        height: 300px;
    }
}

/* width */
.reviews-modal-content::-webkit-scrollbar {
    width: 2px;
}

/*----------------------------------------------------------------------
CENTRO-IMAGEM + TESTEMUNHOS HOME — overlap visual estilo legacy modelo2w
-----------------------------------------------------------------------*/
/* .centro-imagem: faixa full-width com foto background (centro.webp do
   cliente, ou 1º banner como fallback). Altura responsiva. Os testemunhos
   por baixo têm `margin-top: -300px` que cria o overlap visual onde o card
   rosa sobe sobre a imagem. */
.centro-imagem {
    width: 100%;
    height: 972px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    margin: 0;
}
.centro-imagem-fallback {
    background: linear-gradient(135deg, var(--m2-primary) 0%, var(--m2-primary-hover) 100%);
}

/* Wrapper exterior: ocupa o body width. Quando há centro-imagem em cima,
   aplicamos margin-top negativo para o card rosa sobrepor a imagem. */
.testemunhos-home-wrap {
    position: relative;
    z-index: 2;
}
.testemunhos-home-wrap.has-centro-img {
    margin-top: -300px;
}

/* Card rosa — pill arredondado, padding generoso, sombra subtle.
   Inside: título + agregado + carrossel + CTA. */
.testemunhos-home-div {
    background-color: #fde4e7;
    border-radius: 30px;
    padding: 50px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

/* Título "O que dizem <strong>sobre nós</strong>" — Poppins, vinho,
   pesos mistos (regular + extra-bold no <strong>). */
.testemunhos-home-titulo {
    font-family: "Poppins", sans-serif;
    font-size: 2.2em;
    color: var(--m2-primary);
    font-weight: 400;
    letter-spacing: 0.3px;
    line-height: 1.2;
    margin-bottom: 26px;
    text-transform: none;
}
.testemunhos-home-titulo strong {
    font-family: "Poppins", sans-serif;
    font-weight: 800;
    color: var(--m2-primary);
    margin-left: 0.2em;
}

/* CTA "VER MAIS REVIEWS" — outline pill vinho, igual padrão do widget
   espacos-home (defensive !important contra reset legacy a:hover). */
.testemunhos-home-cta-wrap {
    margin-top: 30px;
}
a.testemunhos-home-cta,
a.testemunhos-home-cta:link,
a.testemunhos-home-cta:visited {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    padding: 16px 28px 16px 38px;
    background: #fff !important;
    color: var(--m2-primary) !important;
    border: 1.5px solid var(--m2-primary) !important;
    font-family: "Poppins", sans-serif;
    font-size: 0.95em;
    font-weight: 600;
    letter-spacing: 1.5px;
    border-radius: 999px;
    text-decoration: none !important;
    box-shadow: 0 4px 14px rgba(103, 6, 18, 0.08);
    transition: background .25s ease, color .25s ease, transform .2s ease, box-shadow .25s ease;
    line-height: 1;
}
a.testemunhos-home-cta:hover,
a.testemunhos-home-cta:focus,
a.testemunhos-home-cta:active {
    background: var(--m2-primary) !important;
    color: #fff !important;
    border-color: var(--m2-primary) !important;
    text-decoration: none !important;
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(103, 6, 18, 0.25);
}
.testemunhos-home-cta i {
    font-size: 1em;
    color: inherit;
    line-height: 1;
}

@media screen and (min-width: 1366px) and (max-width: 1911px) {
    .centro-imagem { height: 700px; }
}
@media screen and (min-width: 1024px) and (max-width: 1365px) {
    .centro-imagem { height: 550px; }
    .testemunhos-home-wrap.has-centro-img { margin-top: -240px; }
    .testemunhos-home-div { padding: 36px; }
    .testemunhos-home-titulo { font-size: 1.7em; margin-bottom: 20px; }
}
@media screen and (max-width: 1023px) {
    .centro-imagem { height: 350px; }
    .testemunhos-home-wrap.has-centro-img { margin-top: -180px; }
    .testemunhos-home-div { padding: 26px 20px; border-radius: 22px; }
    .testemunhos-home-titulo { font-size: 1.4em; margin-bottom: 18px; }
    a.testemunhos-home-cta,
    a.testemunhos-home-cta:link,
    a.testemunhos-home-cta:visited {
        padding: 14px 22px 14px 28px;
        font-size: 0.85em;
        gap: 14px;
    }
}

/*----------------------------------------------------------------------
REVIEWS - WIDGET
-----------------------------------------------------------------------*/
.testemunhos-div {
    background-color: #f9f9f9;
}

#reviews-widget.owl-theme .owl-dots,
.owl-theme .owl-nav {
    text-align: center;
    -webkit-tap-highlight-color: transparent
}

.owl-theme .owl-nav {
    margin-top: 10px
}

.owl-theme .owl-nav .disabled {
    opacity: .5;
    cursor: default
}

.owl-theme .owl-nav.disabled+.owl-dots {
    margin-top: 10px
}

.owl-theme .owl-dots .owl-dot {
    display: inline-block;
    zoom: 1
}

#reviews-widget.owl-theme .owl-dots .owl-dot span {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    margin: 5px 7px;
    display: block;
    -webkit-backface-visibility: visible;
    transition: opacity .2s ease;
    margin-top: 30px;
    color: #000;
}

#reviews-widget.owl-theme .owl-dots .owl-dot span {
    background: #eaeaea;
}

#reviews-widget.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
    background: var(--m2-primary)
}

#reviews-widget {
    width: 100%;
    position: relative;
    float: left;
}

.reviews-cell {
    width: 25%;
    position: relative;
    float: left;
}

.reviews-vermais {
    background-color: var(--m2-primary);
    color: #fff;
    border-radius: 50px;
    font-weight: 500;
    position: relative;
    width: 250px;
    cursor: pointer;
    padding: 8px 30px 8px 30px;
    margin-left: auto;
    margin-right: auto;
    font-size: 1em;
    text-align: center;
    margin-top: 80px;
}

.reviews-vermais:hover {
    opacity: 0.8;
}

.reviews-avaliacao,
.reviews-stage,
.reviews-iten,
.reviews-img-div,
.reviews-nome,
.reviews-stars,
.reviews-data,
.reviews-texto,
.reviews-origem {
    width: 100%;
    position: relative;
    float: left;
}

.reviews-avaliacao {
    font-size: 1.5em;
    text-align: center;
    margin-bottom: 30px;
    margin-top: 35px;
}

.reviews-avaliacao span {
    font-weight: 500;
    font-size: 1.4em;
    padding: 0px 5px 0px 5px;
}

.reviews-stage {
    padding: 10px;
    cursor: pointer
}

.reviews-iten {
    background-color: #fff;
    border-radius: 20px;
    padding: 20px;
    text-align: center;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    -webkit-box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.03);
    -moz-box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.03);
    box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.03);
}

.reviews-iten:hover {
    background-color: #f9f5f5;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.reviews-img {
    width: 80px;
    height: 80px;
    position: relative;
    margin-left: auto;
    margin-right: auto;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;
    border-radius: 50%;
}

.reviews-stars {
    margin-top: 20px;
    text-align: center;
    height: 20px;
    overflow: hidden
}

.reviews-stars img {
    width: 20px !important;
    height: auto;
    position: relative;
    float: left;
    margin: 0px 3px 0px 3px;
}

.reviews-data {
    color: #000;
    margin-top: 10px;
    font-size: 0.9em;
}

.reviews-nome {
    color: #000;
    margin-top: 20px;
    font-size: 1em;
    font-weight: 500;
    height: 20px;
    overflow: hidden
}

.reviews-texto {
    color: #000;
    font-weight: 300;
    margin-top: 20px;
    font-size: 0.85em;
    height: 100px;
    overflow: hidden;
    text-align: justify
}

.reviews-origem {
    margin-top: 30px;
}

.reviews-origem img {
    max-width: 100%;
    width: 30px !important;
    height: auto;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

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

    /* PARA DISPOSITIVOS PEQUENOS (SMARTPHONES E TABLETS)*/
    .reviews-avaliacao {
        font-size: 1.4em;
    }

    .reviews-avaliacao span {
        font-size: 1.3em;
    }

    .reviews-img {
        width: 80px;
        height: 80px;
    }

    .reviews-vermais {
        width: 200px;
        font-size: 0.9em;
        margin-top: 50px;
    }
}

@media screen and (min-width: 1024px) and (max-width: 1279px) {

    /* PARA DISPOSITIVOS GRANDES (PCS COM BAIXA RESOLUÇÃO)*/
    .reviews-avaliacao {
        font-size: 1.3em;
    }

    .reviews-data {
        font-size: 0.7em;
    }

    .reviews-nome {
        font-size: 0.9em;
    }

    .reviews-texto {
        margin-top: 20px;
        font-size: 0.8em;
        height: 80px;
    }
}

@media screen and (min-width: 1280px) and (max-width: 1911px) {

    /* PARA DISPOSITIVOS GRANDES (PCS COM BAIXA RESOLUÇÃO)*/
    .reviews-stage {
        padding: 5px;
    }
}

/* width */
.reviews-content::-webkit-scrollbar {
    width: 2px;
}

/*-------------------------------------------------------------------
MÓDULO COMODIDADES
--------------------------------------------------------------------*/
.comodidades-listadestaque-div {
    justify-content: center;
    display: flex;
    align-items: center;
    margin-top: 100px;
}

.comodidades-categoriasdestaque-cell {
    padding: 0px 25px 50px 25px;
    display: inline-block;
}

.comodidades-lista-div {
    margin-top: 100px;
}

.comodidades-categorias-cell {
    width: 310px;
    padding: 0px 25px 50px 25px;
    display: inline-block;
    vertical-align: text-top
}


.comodidades-categorias-titulo-head {
    display: flex;
    align-items: center;
}

.comodidades-categorias-titulo {
    position: relative;
    float: left;
    font-size: 1.05em;
    color: #000;
    font-weight: 500;
    padding-left: 15px
}

.comodidades-categorias-icon {
    position: relative;
    float: left;
    font-size: 1.7em;
    color: #000;
}

.comodidades-itens-div {
    font-size: 0.85em;
    color: #333;
    font-weight: 400;
    padding-left: 5px;
    margin-top: 10px;
}

.comodidades-itens-div ul {
    list-style-type: none;
    padding: 0px;
    margin: 0px;
}

.comodidades-itens-div li {
    padding: 5px 0px 5px 0px;
}

.comodidades-itens-div i {
    font-size: 1.1em;
    color: #000;
    padding-right: 15px;
}

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

    /* PARA DISPOSITIVOS PEQUENOS (SMARTPHONES E TABLETS)*/
    .comodidades-categorias-cell {
        width: 100%;
        padding: 0px 25px 50px 25px;
        display: inline-block;
        vertical-align: text-top
    }

    .comodidades-categoriasdestaque-cell {
        width: 100%;
        padding: 0px 25px 50px 25px;
        display: inline-block;
    }
}

@media screen and (min-width: 1024px) and (max-width: 1279px) {

    /* PARA DISPOSITIVOS PEQUENOS*/
    .comodidades-lista-div {
        margin-top: 70px;
    }

    .comodidades-categorias-titulo {
        font-size: 0.9em;
    }

    .comodidades-categorias-icon {
        font-size: 1.5em
    }

    .comodidades-itens-div {
        font-size: 0.75em;
    }

    .comodidades-itens-div i {
        font-size: 1em;
    }
}

@media screen and (min-width: 1280px) and (max-width: 1365px) {

    /* PARA DISPOSITIVOS MÉDIOS*/
    .comodidades-lista-div {
        margin-top: 70px;
    }

    .comodidades-categorias-titulo {
        font-size: 0.9em;
    }

    .comodidades-categorias-icon {
        font-size: 1.5em
    }

    .comodidades-itens-div {
        font-size: 0.75em;
    }

    .comodidades-itens-div i {
        font-size: 1em;
    }
}

@media screen and (min-width: 1366px) and (max-width: 1911px) {

    /* PARA DISPOSITIVOS MÉDIOS*/
    .comodidades-lista-div {
        margin-top: 70px;
    }

    .comodidades-categorias-titulo {
        font-size: 0.9em;
    }

    .comodidades-categorias-icon {
        font-size: 1.5em
    }

    .comodidades-itens-div {
        font-size: 0.75em;
    }

    .comodidades-itens-div i {
        font-size: 1em;
    }
}

/*-------------------------------------------------------------------
PLUGIN - ESPAÇOS
--------------------------------------------------------------------*/
.espacos-titulo {
    font-size: 1em;
    font-weight: 400;
}

.espacos-item-box {
    width: 100%;
    position: relative;
    float: left;
    padding: 50px;
    border-radius: 30px;
    margin-bottom: 50px;
    -webkit-box-shadow: 0px 0px 21px 0px rgba(0, 0, 0, 0.06);
    -moz-box-shadow: 0px 0px 21px 0px rgba(0, 0, 0, 0.06);
    box-shadow: 0px 0px 21px 0px rgba(0, 0, 0, 0.06);
}

.espacos-item-titulo {
    font-size: 1.3em;
    font-weight: 500;
    margin-bottom: 20px;
    color: var(--m2-primary);
    display: flex;
    align-items: center;
}

.espacos-item-titulo i {
    font-size: 2em;
    padding-right: 15px;
}

.espacos-item-foto {
    width: 100%;
    position: relative;
    float: left;
    height: 300px;
    border-radius: 30px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.espacos-item-info {
    padding-right: 50px;
    font-size: 0.95em;
    font-weight: 400;
}

.espacos-item-comodidades {
    font-size: 1.1em;
    font-weight: 500;
    margin: 30px 0px 10px 0px;
    color: var(--m2-primary)
}

.espacos-item-comodidades-item {
    font-size: 0.9em;
    min-height: 30px;
    font-weight: 400;
    margin-bottom: 20px;
    position: relative;
    float: left;
    margin-right: 30px;
    display: flex;
    align-items: center;
}

.espacos-item-comodidades-item i {
    font-size: 1.1em;
    padding-right: 5px;
    color: var(--m2-primary)
}

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

    /* PARA DISPOSITIVOS PEQUENOS (SMARTPHONES E TABLETS)*/
    .espacos-item-titulo {
        text-align: center;
    }

}

@media screen and (min-width: 1024px) and (max-width: 1279px) {
    /* PARA DISPOSITIVOS PEQUENOS*/

}

@media screen and (min-width: 1280px) and (max-width: 1365px) {
    /* PARA DISPOSITIVOS MÉDIOS*/

}

@media screen and (min-width: 1366px) and (max-width: 1911px) {
    /* PARA DISPOSITIVOS MÉDIOS*/

}

/*-------------------------------------------------------------------
PLUGIN - REGIÃO
--------------------------------------------------------------------*/
.regiao-titulo {
    font-size: 1em;
    font-weight: 400;
}

.regiao-pontoint-box {
    width: 100%;
    position: relative;
    float: left;
    padding: 50px;
    border-radius: 30px;
    margin-bottom: 50px;
    -webkit-box-shadow: 0px 0px 21px 0px rgba(0, 0, 0, 0.03);
    -moz-box-shadow: 0px 0px 21px 0px rgba(0, 0, 0, 0.03);
    box-shadow: 0px 0px 21px 0px rgba(0, 0, 0, 0.03);
}

.regiao-pontoint-titulo {
    font-size: 1.3em;
    font-weight: 500;
    padding-left: 25px
}

.regiao-pontoint-foto {
    width: 100%;
    position: relative;
    float: left;
    height: 300px;
    border-radius: 30px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    transition: all 0.3s ease-in-out;
}

.regiao-pontoint-fotos {
    width: 140px;
    position: relative;
    float: left;
    height: 100px;
    margin: 0px 20px 0px 20px;
    border-radius: 10px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    transition: all 0.3s ease-in-out;
}

.regiao-pontoint-fotos:hover,
.regiao-pontoint-foto:hover {
    opacity: 0.8;
    transition: all 0.3s ease-in-out;
}

.regiao-pontoint-info {
    padding-left: 50px;
    font-size: 0.95em;
    font-weight: 400;
}

.regiao-pontoint-bottom {
    margin-top: 20px;
    margin-bottom: 20px;
    font-size: 0.95em;
    padding-left: 25px
}

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

    /* PARA DISPOSITIVOS PEQUENOS (SMARTPHONES E TABLETS)*/
    .regiao-pontoint-box {
        padding: 20px;
        border-radius: 30px;
    }

    .regiao-pontoint-titulo {
        text-align: center;
    }

    .regiao-pontoint-foto {
        height: 220px;
    }

    .regiao-pontoint-info {
        padding: 0px;
    }

    .regiao-pontoint-fotos {
        width: 120px;
        margin: 0px 5px 10px 5px;
    }

    .regiao-pontoint-bottom {
        text-align: center
    }
}

@media screen and (min-width: 1024px) and (max-width: 1279px) {

    /* PARA DISPOSITIVOS PEQUENOS*/
    .regiao-pontoint-titulo {
        font-size: 1.1em;
    }

    .regiao-pontoint-foto {
        height: 200px;
    }

    .regiao-pontoint-info {
        font-size: 0.8em;
    }

    .regiao-pontoint-fotos {
        width: 120px;
        margin: 0px 5px 10px 5px;
    }
}

/*-------------------------------------------------------------------
MÓDULO RODAPE
--------------------------------------------------------------------*/
.rodape-div {
    min-height: 1282px;
    padding: 80px 0px 0px 0px;
    background-color: #f9f9f9;
    background-size: cover;
    background-position: bottom center;
    background-repeat: no-repeat
}

.logotipo-rodape-div {
    width: 100%;
    position: relative;
    float: left;
    justify-content: center;
    display: flex;
    align-items: center;
}

.logotipo-rodape-div img:hover {
    transform: scale(1.03);
    transition: transform 0.3s ease-in-out;
}

.rodape-redessociais-div {
    margin-top: 20px;
    display: flex;
    justify-content: center;
}

.redes-div {
    position: relative;
    display: inline-block;
    margin: 0px 20px 50px 20px;
}

.redes-titulos {
    font-size: 1em;
    color: #000;
    text-align: center
}

.rodape-redes-align {
    margin-top: 10px;
    display: flex;
    justify-content: center;
}

.redesocial-bottom {
    background-color: #fff;
    margin: 0px 6px 0px 6px;
    padding: 6px 6px 0px 6px;
    border-radius: 20%;
    text-align: center;
    cursor: pointer;
    position: relative;
    display: inline-block;
    -webkit-transition: all 0.5s;
    /* Safari */
    transition: all 0.5s;
}

.redesocial-bottom:hover {
    transform: scale(1.05);
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.redesocial-bottom img {
    width: 43px;
    height: auto;
}


.rodape-morada-cell {
    width: 33.33%;
    position: relative;
    text-align: center;
    display: inline-block;
    padding: 0px 30px 0px 30px;
    margin-bottom: 50px;
}

.rodape-morada-icon {
    font-size: 1.6em;
    color: var(--m2-primary);
}

.rodape-morada-titulo {
    font-size: 1.1em;
    color: var(--m2-primary);
    font-weight: 600;
    margin-top: 3px
}

.rodape-morada-texto {
    font-size: 0.95em;
    color: #000;
    font-weight: 400;
    margin-top: 20px;
}

.rodape-googlemaps-div {
    margin-top: 50px;
    display: flex;
    justify-content: center;
}

.rodape-googlemaps-size {
    width: 800px;
    position: relative;
    float: left;
}

.googlemaps {
    width: 100%;
    position: relative;
    float: left
}

.googlemaps iframe {
    border-radius: 50px;
    width: 100%;
    height: 300px;
    float: left;
    overflow: hidden;
    box-shadow: 0px 0px 15px -3px rgba(0, 0, 0, 0.1);
}

.venha-visitar-div {
    margin-top: -50px;
    z-index: 1;
    display: flex;
    justify-content: center;
}

.venha-visitar-buttom {
    position: relative;
    float: left;
    width: 220px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.venha-visitar {
    width: 80%;
    padding: 10px 10px 24px 10px;
    border-radius: 15px;
    background-color: #fff;
    font-size: 0.8em;
    color: #000;
    text-align: center;
    text-transform: uppercase;
    position: relative;
    margin: 0 auto
}

.venha-visitar-direcoes {
    width: 100%;
    padding: 15px 25px 15px 25px;
    margin-top: -15px;
    z-index: 3;
    border-radius: 40px;
    font-weight: 500;
    background-color: var(--m2-primary);
    font-size: 0.9em;
    text-transform: uppercase;
    color: #fff;
    text-align: center;
    position: relative;
    float: left;
}

.venha-visitar-buttom:hover {
    opacity: 0.9;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}





/*--------------------------------------------------------------------
RODAPÉ — bloco de conteúdo editável pelo tenant.
Renderizado a partir de páginas com posicao_menu = RODAPÉ - CONTEÚDO
(reusa o sistema de páginas CMS — parágrafos, widgets, fotos).
Estilo neutro/discreto — o conteúdo do tenant define a sua própria estética
via CKEditor sem competir com o resto do rodapé.
--------------------------------------------------------------------*/
.rodape-conteudo-extra {
    width: 100%;
    position: relative;
    float: left;
    margin-top: 60px;
    padding-top: 40px;
    /* border-top removido (2026-05): a linha competia visualmente com o
       border-top da .rodape-bottom-bar logo abaixo. O conteúdo do tenant
       já define a sua própria separação visual via CKEditor. */
    text-align: center;
    box-sizing: border-box;
}

.rodape-conteudo-bloco {
    width: 100%;
    position: relative;
    float: left;
    margin-bottom: 30px;
}

.rodape-conteudo-bloco:last-child {
    margin-bottom: 0;
}

.rodape-conteudo-paragrafo {
    width: 100%;
    position: relative;
    float: left;
    margin-bottom: 20px;
}

.rodape-conteudo-paragrafo:last-child {
    margin-bottom: 0;
}

.rodape-conteudo-paragrafo img {
    max-width: 100%;
    height: auto;
}

@media screen and (max-width: 1023px) {
    .rodape-conteudo-extra {
        margin-top: 40px;
        padding-top: 30px;
    }
}

.termos-div {
    padding-top: 100px;
    text-align: center;
}

.termos-menu {
    text-align: center
}

.termos-page {
    position: relative;
    float: left;
    font-size: 0.8em;
    font-weight: 400;
    padding: 0px 5px 0px 5px;
    color: #000
}

a.termos-page:link,
a.termos-page:visited,
a.termos-page:active {
    text-decoration: none;
    color: #000;
}

a.termos-page:hover {
    text-decoration: underline;
    color: var(--m2-primary)
}

.direitos-proprietario {
    font-size: 1.2em;
}

.direitos-proprietario .anoatual {
    font-size: 0.9em;
}

.direitos-proprietario .proprietario {
    font-weight: 600;
    color: var(--m2-primary);
}

.direitos-texto {
    font-size: 0.8em;
    font-weight: 400;
    margin-top: 5px;
}

.direitos-al-number {
    font-size: 1.4em;
    font-weight: 500;
    margin-top: 15px;
    color: var(--m2-primary);
}


/*---------DEVELOPED--------------------------------------------*/
.developed-div {
    margin: 50px 0px 50px 0px;
}

.developed-titulo {
    /* Era "Russo One" — agora Poppins (mesma família do body) para
       consistência tipográfica em todo o modelo02. */
    font-family: "Poppins", sans-serif;
    font-size: 0.9em;
    font-weight: 500;
}

.developed-titulo,
.developed-slogan {
    text-align: center;
    font-weight: 500;
}

.developed-logo {
    display: flex;
    justify-content: center;
}

.developed-logo img {
    width: 120px;
    margin-top: 9px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.developed-logo img:hover {
    transform: scale(1.1);
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.developed-slogan {
    margin-top: 9px;
    font-size: 0.8em;
}


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

    /* PARA SMARTPHONE E TABLET*/
    .rodape-morada-div {
        margin-top: 50px;
        padding: 0px;
    }

    .rodape-morada-cell {
        width: 100%;
        padding: 0px 20px 0px 20px;
        margin-bottom: 50px;
    }

    .rodape-morada-icon {
        font-size: 1.5em;
    }

    .rodape-morada-titulo {
        font-size: 1em;
    }

    .rodape-morada-texto {
        font-size: 0.9em;
    }


    .rodape-googlemaps-size {
        width: 90%;
    }

    .googlemaps iframe {
        border-radius: 50px;
        height: 250px;
    }

    .termos-page {
        width: 100%;
        margin-bottom: 15px;
    }

    a.termos-page:link,
    a.termos-page:visited,
    a.termos-page:active {
        font-size: 1.1em;
    }

    .developed-div {
        margin-bottom: 100px
    }
}

@media screen and (max-width: 360px) {
    /* PARA SMARTPHONE E TABLET*/

}

@media screen and (min-width: 447px) and (max-width: 1023px) {
    /* PARA DISPOSITIVOS PEQUENOS*/

}

@media screen and (min-width: 1024px) {
    .rodape-morada-div {
        margin-top: 80px;
        padding: 0px 200px 0px 200px;
        display: flex;
        justify-content: center;
    }
}

@media screen and (min-width: 1024px) and (max-width: 1279px) {

    /* PARA DISPOSITIVOS PEQUENOS*/
    .rodape-morada-div {
        padding: 0px
    }

    .rodape-morada-icon {
        font-size: 1.3em;
    }

    .rodape-morada-titulo {
        font-size: 0.9em;
    }

    .rodape-morada-texto {
        font-size: 0.8em;
    }

    .rodape-googlemaps-size {
        width: 600px;
    }

    .googlemaps iframe {
        border-radius: 50px;
        height: 250px;
    }

    .venha-visitar-div {
        margin-top: -35px;
    }

    .venha-visitar-buttom {
        width: 180px;
    }

    .venha-visitar {
        width: 80%;
        padding: 10px 10px 20px 10px;
        border-radius: 15px;
        font-size: 0.7em;
    }

    .venha-visitar-direcoes {
        padding: 10px 20px 10px 20px;
        margin-top: -15px;
        border-radius: 40px;
        font-weight: 500;
        background-color: var(--m2-primary);
        font-size: 0.8em;
    }

    .direitos-proprietario {
        font-size: 1em;
    }

    .direitos-proprietario .anoatual {
        font-size: 0.8em;
    }

    .direitos-texto {
        font-size: 0.8em;
    }

    .direitos-al-number {
        font-size: 1.2em;
    }

    .developed-titulo,
    .developed-slogan {
        font-size: 0.8em;
    }

    .developed-logo img {
        width: 60px;
    }
}

@media screen and (min-width: 1280px) and (max-width: 1365px) {

    /* PARA DISPOSITIVOS PEQUENOS*/
    .rodape-morada-div {
        padding: 0px
    }

    .rodape-morada-icon {
        font-size: 1.3em;
    }

    .rodape-morada-titulo {
        font-size: 0.9em;
    }

    .rodape-morada-texto {
        font-size: 0.8em;
    }

    .rodape-googlemaps-size {
        width: 600px;
    }

    .googlemaps iframe {
        border-radius: 50px;
        height: 250px;
    }

    .venha-visitar-div {
        margin-top: -35px;
    }

    .venha-visitar-buttom {
        width: 180px;
    }

    .venha-visitar {
        width: 80%;
        padding: 10px 10px 20px 10px;
        border-radius: 15px;
        font-size: 0.7em;
    }

    .venha-visitar-direcoes {
        padding: 10px 20px 10px 20px;
        margin-top: -15px;
        border-radius: 40px;
        font-weight: 500;
        background-color: var(--m2-primary);
        font-size: 0.8em;
    }

    .direitos-proprietario {
        font-size: 1em;
    }

    .direitos-proprietario .anoatual {
        font-size: 0.8em;
    }

    .direitos-texto {
        font-size: 0.8em;
    }

    .direitos-al-number {
        font-size: 1.2em;
    }



    .developed-titulo,
    .developed-slogan {
        font-size: 0.75em;
    }

    .developed-logo img {
        width: 60px;
    }
}

@media screen and (min-width: 1366px) and (max-width: 1911px) {

    /* PARA DISPOSITIVOS PEQUENOS*/
    .rodape-morada-div {
        padding: 0px
    }

    .rodape-morada-icon {
        font-size: 1.3em;
    }

    .rodape-morada-titulo {
        font-size: 0.9em;
    }

    .rodape-morada-texto {
        font-size: 0.8em;
    }

    .rodape-googlemaps-size {
        width: 600px;
    }

    .googlemaps iframe {
        border-radius: 50px;
        height: 250px;
    }

    .venha-visitar-div {
        margin-top: -35px;
    }

    .venha-visitar-buttom {
        width: 180px;
    }

    .venha-visitar {
        width: 80%;
        padding: 10px 10px 20px 10px;
        border-radius: 15px;
        font-size: 0.7em;
    }

    .venha-visitar-direcoes {
        padding: 10px 20px 10px 20px;
        margin-top: -15px;
        border-radius: 40px;
        font-weight: 500;
        background-color: var(--m2-primary);
        font-size: 0.8em;
    }

    .direitos-proprietario {
        font-size: 1em;
    }

    .direitos-proprietario .anoatual {
        font-size: 0.8em;
    }

    .direitos-texto {
        font-size: 0.8em;
    }

    .direitos-al-number {
        font-size: 1.2em;
    }

}

@media screen and (min-width: 2021px) {
    /* PARA DISPOSITIVOS PEQUENOS*/


}

/*-------------------------------------------------------------------
CONTACTOS
--------------------------------------------------------------------*/
.contactos-texto {
    color: #333;
    font-size: 1em;
}

.contactos-morada-titulo {
    padding: 20px 0px 0px 0px;
    font-size: 1.2em;
    font-weight: 600;
}

.contactos-info img {
    width: 30px;
    padding-right: 20px;
}

.contactos-info span {
    font-size: 0.95em;
    position: absolute;
    top: 7px;
}

.contactos-info i {
    font-size: 0.8em;
}


.contactos-form label {
    font-size: 0.9em;
    padding-left: 10px;
    line-height: 2em;
    font-family: "Poppins", sans-serif;
}

.contactos-form select {
    font-family: "Poppins", sans-serif;
    font-size: 0.9em;
    width: 100%;
    font-weight: 500;
    padding: 12px 35px 12px 12px !important;
    background: url("https://omeustand.pt/websites/resources/images/navigation-menu.svg") no-repeat;
    background-size: 20px;
    background-position: right center;
    border: none;
    border-right: 10px solid rgba(0, 0, 0, 0);
}


.contactos-form input,
.contactos-form textarea {
    border-radius: 30px;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
    border: none;
    font-weight: 500;
    padding: 14px;
    width: 100%;
    font-size: 0.9em;
}

.contactos-form input::placeholder,
.contactos-form textarea::placeholder {
    font-weight: 500;
    font-size: 0.9em;
}

input[type="checkbox"] {
    width: 20px;
    height: 20px;
    border-radius: 10px !important;
    color: white;
    font-size: 12px;
    padding: 5px;
    margin-bottom: 10px;
    cursor: pointer;
}

.contactos-form span {
    position: absolute;
    top: 12px;
    left: 50px
}

a.contactos:link,
a.contactos:visited,
a.contactos:hover,
a.contactos:active {
    font-size: 0.9em;
    text-decoration: none;
    font-weight: 500;
}

a.contactos:hover {
    opacity: 0.9;
}

.contactos-button-align {
    display: flex;
    justify-content: center;
}

@media screen and (min-width: 1024px) and (max-width: 1919px) {

    /* PARA DISPOSITIVOS PEQUENOS*/
    .contactos-texto {
        font-size: 0.7em;
    }

    .contactos-morada-titulo {
        font-size: 1.1em;
    }

    .contactos-info img {
        width: 25px;
    }

    .contactos-info span {
        font-size: 0.85em;
        top: 7px;
    }

    .contactos-info i {
        font-size: 0.7em;
    }

    .contactos-form label {
        font-size: 0.8em;
        padding-left: 10px;
    }

}

@media screen and (min-width: 1280px) and (max-width: 1365px) {

    /* PARA DISPOSITIVOS MÉDIOS*/
    .contactos-texto {
        font-size: 0.8em;
    }

    .contactos-morada-titulo {
        font-size: 1.2em;
    }
}

@media screen and (min-width: 1366px) and (max-width: 1911px) {

    /* PARA DISPOSITIVOS MÉDIOS*/
    .contactos-texto {
        font-size: 0.8em;
    }

    .contactos-morada-titulo {
        font-size: 1.2em;
    }
}

.contactos-texto {
    color: #333;
}

.contactos-morada-titulo {
    color: #002c0e;
}

.contactos-info img {
    filter: invert(10%) sepia(41%) saturate(3172%) hue-rotate(126deg) brightness(101%) contrast(103%);
}

.contactos-info span {
    color: #333;
}

.contactos-form label {
    color: #333;
}

.contactos-form select {
    color: #000;
    background: url("https://4al.app/websites/resources/images/navigation-menu.svg") no-repeat;
    background-color: #ceced0;
}

.contactos-form select>option {
    color: #000;
}

.contactos-form input,
.contactos-form textarea {
    background-color: #ceced0;
    color: #000;
}

.contactos-form input::placeholder,
.contactos-form textarea::placeholder {
    color: #000;
}


a.contactos:link,
a.contactos:visited,
a.contactos:hover,
a.contactos:active {
    color: #333;
}

.is-invalid {
    border-color: #002c0e !important;
}

/*-------------------------------------------------------------------
MENU MOBILE
--------------------------------------------------------------------*/
.mobile-top-bar {
    width: 100%;
    height: 120px;
    color: #fff;
    background-color: #fff;
    overflow: hidden;
    position: fixed;
    top: 0px;
    left: 0px;
    text-align: right;
    z-index: 1003;
    -webkit-transition: all 0.7s;
    transition: all 0.7s;
}

.mobile-top-bar-up {
    top: -130px;
}

.mobile-top-bar-down {
    top: 0px;
}

.mobile-bar-left {
    width: 60%;
    height: 120px;
    position: relative;
    float: left;
}

.mobile-bar-right {
    width: 40%;
    height: 120px;
    position: relative;
    float: left;
    display: flex;
    align-items: center;
}

.logotipo-box {
    width: 100%;
    position: relative;
    float: left;
    height: 100px;
}

.mobile-logotipo-bar {
    width: 200px;
    height: 100px;
    margin: 10px 0px 10px 20px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    position: relative;
}


#mobile-bars {
    position: absolute;
    right: 25px;
    top: 45px;
    z-index: 1004
}

.mobilebar1,
.mobilebar3,
.mobilebar2 {
    width: 25px;
    height: 4px;
    margin: 6px 0;
    transition: 0.4s;
    background-color: #000;
    border-radius: 2px;
    cursor: pointer;
}

.mobilebar1 {
    width: 28px;
    margin: 6px 0px 0px -3px;
}

.mobilebar2 {
    width: 17px;
    margin: 6px 0px 0px 8px;
}

.mobilechange .mobilebar1 {
    width: 25px;
    margin: 6px 0;
    -webkit-transform: rotate(-45deg) translate(-9px, 6px);
    transform: rotate(-45deg) translate(-9px, 6px);
}

.mobilechange .mobilebar2 {
    opacity: 0;
}

.mobilechange .mobilebar3 {
    -webkit-transform: rotate(45deg) translate(-8px, -5px);
    transform: rotate(45deg) translate(-8px, -5px);
}

.mobile-botao-reservas {
    position: relative;
    float: left;
    margin: 0px 50px 0px 0px;
    padding: 12px;
    border-radius: 18px;
    background-color: var(--m2-primary);
    color: #fff;
    text-transform: uppercase;
    font-size: 0.65em;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
}

.mobile-botao-reservas i {
    font-size: 3.1em;
    color: #fff;
}

/* O #openReserva é agora um <a> (navega para /propriedade). Específico para
   vencer a regra global a:link/visited/hover que punha color:#333 e
   text-decoration:underline. */
a.mobile-botao-reservas:link,
a.mobile-botao-reservas:visited,
a.mobile-botao-reservas:hover,
a.mobile-botao-reservas:active {
    color: #fff;
    text-decoration: none;
    font-family: "Poppins", sans-serif;
    font-size: 0.65em;
}

a.mobile-botao-reservas:hover {
    background-color: var(--m2-primary);
    opacity: .92;
}

@keyframes mobilebotao {
    0% {
        opacity: 0.2;
        color: #fff;
    }

    20% {
        opacity: 1;
        color: #ff0000;
    }

    90% {
        opacity: 1;
        color: #ff0000;
    }

    100% {
        opacity: 0.2;
        color: #fff;
    }
}

.mobile-animate {
    animation-name: mobilebotao;
    animation-duration: 5s;
    animation-iteration-count: infinite;
}

.mobile-menu-close,
.mobile-menu-open {
    height: 100vh;
    position: fixed;
    overflow: auto;
    text-align: left;
    z-index: 1003;
    -webkit-transition: all 0.7s;
    transition: all 0.7s;
    -webkit-box-shadow: -3px 0px 5px 0px rgba(0, 0, 0, 0.3);
    -moz-box-shadow: -3px 0px 5px 0px rgba(0, 0, 0, 0.3);
    box-shadow: -3px 0px 5px 0px rgba(0, 0, 0, 0.3);
}

.mobile-menu-close,
.mobile-menu-open,
.menu-mobile-paginas {
    background-color: #fff;
}

.mobile-logotipo-menu-div {
    width: 80%;
    position: relative;
    float: left;
}

.mobile-logotipo-menu {
    width: 100%;
    height: 100px;
    margin: 10px 0px 10px 0px;
    background-position: left center;
    background-repeat: no-repeat;
    background-size: contain;
    position: relative;
}

.mobile-paginas {
    width: 100%;
    position: relative;
    float: left;
    margin-top: 50px;
}

.menu-mobile-paginas {
    width: 100%;
    position: relative;
    float: left;
    padding: 14px 20px;
    font-family: "Poppins", sans-serif;
    font-size: 1em;
    font-weight: 500;
    color: #000;
    border-bottom: 1px solid #f0f0f0;
    box-sizing: border-box;
    cursor: pointer;
    user-select: none;
    transition: background 0.18s ease, color 0.18s ease;
}

/* Item com filhos: flex para ter texto à esquerda + caret à direita */
.menu-mobile-paginas.arrow {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.menu-mobile-paginas-label {
    flex: 1 1 auto;
    line-height: 1.3;
}

.menu-mobile-paginas-caret {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    font-size: 0.7em;
    line-height: 1;
    color: inherit;
    opacity: 0.7;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

/* Estado expandido — caret roda 180° */
.menu-mobile-paginas.arrow.arrow-up .menu-mobile-paginas-caret {
    transform: rotate(180deg);
    opacity: 1;
}

.menu-mobile-paginas.active,
.menu-mobile-paginas:hover,
.menu-mobile-paginas.arrow-up {
    color: #fff;
    background-color: var(--m2-primary);
}

.menu-mobile-nivel1content {
    width: 100%;
    /* Fundo cinza muito claro — destaca o submenu visualmente sem competir
       com o destaque vinho do pai expandido (.arrow-up). Texto dos sub-items
       passa a ser escuro para legibilidade. */
    background-color: #f5f5f5;
    position: relative;
    float: left;
    padding: 4px 0 10px 12px;
    box-sizing: border-box;
    display: none;
    overflow: hidden;
    animation: m2-submenu-slide-down 0.25s ease;
}

@keyframes m2-submenu-slide-down {
    from { opacity: 0; transform: translateY(-6px); }
    to   { opacity: 1; transform: translateY(0); }
}

.menu-mobile-subpaginas {
    width: 100%;
    position: relative;
    float: left;
    font-family: "Poppins", sans-serif;
    font-size: 0.88em;
    font-weight: 500;
    padding: 11px 14px;
    color: #333;
    border-radius: 8px;
    box-sizing: border-box;
    transition: background 0.15s ease, color 0.15s ease, padding-left 0.15s ease;
}

.menu-mobile-subpaginas.active,
.menu-mobile-subpaginas:hover {
    color: #fff;
    background: var(--m2-primary);
    padding-left: 20px;
}

/* As classes legacy .arrow-down/.arrow-up usavam background-image de URLs
   externos (omeustand.pt/...) que já não existem. Mantemos as classes como
   "marker states" mas todo o styling visual está agora no .menu-mobile-paginas-caret
   (rotação) e no .menu-mobile-paginas.arrow-up (fundo vinho quando expandido). */

/*--------------------SELECTOR DE IDIOMA NO MENU MOBILE-------------------------------------------
Aparece no fim da lista de páginas. Pills horizontais com a opção activa
destacada. Usa o mesmo verde-floresta da paleta do tema. */
.mobile-idiomas {
    width: 100%;
    position: relative;
    float: left;
    margin-top: 30px;
    padding: 20px 18px 30px;
    border-top: 1px solid #f0f0f0;
    box-sizing: border-box;
}

.mobile-idiomas-label {
    font-size: 0.7em;
    font-weight: 600;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 14px;
}

.mobile-idiomas-list {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

a.mobile-idioma,
a.mobile-idioma:link,
a.mobile-idioma:visited {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 54px;
    padding: 10px 16px;
    background: #f6f6f6;
    color: #333 !important;
    border-radius: 999px;
    font-size: 0.85em;
    font-weight: 600;
    text-decoration: none !important;
    letter-spacing: 0.5px;
    transition: background .15s ease, color .15s ease;
}

a.mobile-idioma:hover {
    background: #e8e8e8;
    color: #000 !important;
}

a.mobile-idioma.active,
a.mobile-idioma.active:link,
a.mobile-idioma.active:visited {
    background: var(--m2-primary) !important;
    color: #fff !important;
}

.mobile-menu-bottom {
    width: 100%;
    position: relative;
    float: left;
    padding: 0px 20px 0px 20px;
    margin-top: 40px;
}

.mobile-ligamos {
    width: 100%;
    position: relative;
    float: left;
    text-align: center;
    font-weight: 600;
    padding: 12px 10px 12px 10px;
    border-radius: 30px;
    font-size: 0.85em;
    background-color: #ff0000;
    color: #fff;
}

/*--------------------APRESENTA OS MESSENGER E O WHATSAPP NO FIM DA TELA-------------------------------------------*/
.mobile-redes-bottom-div {
    width: 100%;
    position: fixed;
    bottom: 0px;
    z-index: 1002;
    display: flex;
    justify-content: center;
    align-items: center;
    -webkit-transition: all 0.7s;
    transition: all 0.7s;
}

.mobile-redes-bottom-div.up {
    bottom: -100px;
}

.mobile-redes-bottom-div.down {
    bottom: 0px;
}

.mobile-redes-bottom {
    position: relative;
    float: left;
    padding: 10px 20px 6px 20px;
    border-radius: 30px;
    margin: 0px 5px 5px 5px;
    text-align: center;
    transition: all 0.2s ease-in-out;
    cursor: pointer;
}

.mobile-redes-bottom.whatsapp {
    background-color: #4caf50;
}

.mobile-redes-bottom.messenger {
    background-color: #0081fd;
}

.mobile-redes-bottom img {
    width: 20px;
    height: 20px;
    filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(130deg) brightness(112%) contrast(101%);
}

.mobile-redes-bottom div {
    font-size: 0.9em;
    color: #fff;
    font-weight: 500;
    padding-left: 15px;
    position: relative;
    float: right;
}


.mobile-menu-close {
    right: -480px
}

.mobile-menu-open {
    right: 0px
}

@media screen and (max-width: 447px) {
    .mobile-bar-left {
        width: 50%;
    }

    .mobile-bar-right {
        width: 50%;
    }

    .mobile-logotipo-bar {
        width: 180px;
        height: 100px;
        margin: 10px 0px 10px 10px;
    }

    .mobile-logotipo-menu-div {
        width: 70%;
    }

    .mobile-menu-close {
        right: -480px
    }

    .menu-mobile-paginas {
        font-size: 0.9em;
    }

    .menu-mobile-subpaginas {
        font-size: 0.7em;
    }

    .mobile-redes-bottom {
        padding: 8px 15px 3px 15px;
        border-radius: 20px;
    }

    .mobile-redes-bottom div {
        font-size: 0.8em;
        padding-left: 10px;
        margin-top: 1px;
    }
}

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

@media screen and (min-width: 448px) and (max-width: 1023px) {
    .mobile-menu-close {
        right: -1023px
    }

    .menu-mobile-paginas {
        font-size: 1.2em;
    }

    .menu-mobile-subpaginas {
        font-size: 0.9em;
    }
}

/*-------------------------------------------------------------------
MODALS
--------------------------------------------------------------------*/
.modalbackdrop {
    width: 100%;
    height: 100vh;
    position: absolute;
    display: flex;
    justify-content: center;
    z-index: 10050;
    background-color: rgba(0, 0, 0, 0.7);
}

.modal-body {
    background-color: #fff;
    color: #000;
    width: 40%;
    min-height: 300px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 10px;
    opacity: 0;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}

.modal-titulo {
    color: #000;
    width: 100%;
    position: relative;
    float: left;
    font-size: 1.1em;
    font-weight: 500;
    text-align: left;
    padding: 20px
}

.modal-content {
    color: #333;
    width: 100%;
    max-height: 70vh;
    overflow: auto;
    position: relative;
    float: left;
    font-size: 0.9em;
    margin-bottom: 80px;
    border: none;
    text-align: left;
    padding: 0px 20px 20px 20px;
}

.modal-bottom {
    min-height: 40px;
    font-size: 0.9em;
    position: absolute;
    bottom: 0px;
    text-align: right;
    padding: 20px
}

.modal-button-sucesso,
.modal-button-close {
    position: relative;
    float: right;
    padding: 12px 30px 12px 55px;
    margin: 0px 2px 0px 2px;
    font-size: 0.9em;
    text-align: center;
    border-radius: 30px;
    cursor: pointer;
    -webkit-box-shadow: 0px 0px 13px -3px rgba(0, 0, 0, 0.38);
    -moz-box-shadow: 0px 0px 13px -3px rgba(0, 0, 0, 0.38);
    box-shadow: 0px 0px 13px -3px rgba(0, 0, 0, 0.38);
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.modal-button-close {
    float: right;
}

.modal-button-close:hover,
.modal-button-sucesso:hover {
    opacity: 0.8;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.modal-button-sucesso img,
.modal-button-close img {
    width: 18px;
    position: absolute;
    top: 12px;
    left: 25px;
}

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

    /* PARA DISPOSITIVOS PEQUENOS*/
    .modal-body {
        width: 90%;
    }
}

.modal-result-info {
    color: #F00
}

.modal-button-sucesso {
    background-color: #409d17;
    color: #fff;
}

.modal-button-close {
    background-color: #e3e3e3;
    color: #000;
}

.modal-button-sucesso img {
    filter: invert(100%) sepia(0%) saturate(7500%) hue-rotate(155deg) brightness(100%) contrast(103%);
}

.modal-button-close img {
    filter: invert(0%) sepia(90%) saturate(7460%) hue-rotate(347deg) brightness(105%) contrast(111%);
}

/*-------------------------------------------------------------------
PRELOADING
--------------------------------------------------------------------*/
.se-pre-con {
    background-color: #fff;
}

/*-------------------------------------------------------------------
SCROLL UP
--------------------------------------------------------------------*/
.scrolltop {
    position: fixed;
    right: 15px;
    bottom: 50px;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 0 15px -3px rgba(0, 0, 0, 0.15);
    z-index: 2;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    /* Fallback caso o JS antigo aplique display:block — text-align centra
       horizontal, line-height alinha vertical o ícone inline. */
    text-align: center;
    line-height: 40px;
}

.scrolltop.is-visible {
    display: flex;
}

.scrolltop i {
    font-size: 1em;
    line-height: 1;
    color: #333;
}

/* Escondido em mobile/tablet (≤1023px) — redundante com o scroll natural
   do browser e ocupa espaço útil sobre o conteúdo em ecrãs pequenos. */
@media (max-width: 1023px) {
    .scrolltop,
    .scrolltop.is-visible {
        display: none !important;
    }
}

/*-------------------------------------------------------------------
FORMULÁRIOS
--------------------------------------------------------------------*/
select {
    -webkit-appearance: none;
    -moz-appearance: none;
    text-indent: 1px;
    text-overflow: '';
}

/*-------------------------------------------------------------------
SCROLL VERTICAL - V.1
-------------------------------------------------------------------*/
/* width */
::-webkit-scrollbar {
    width: 6px;
}

/* Track */
::-webkit-scrollbar-track {
    background: #fff;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: var(--m2-primary);
    border-radius: 5px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/*-------------------------------------------------------------------
TESTEMUNHOS — HOME (index.php)
Cards do carrossel + modal de detalhe.
-------------------------------------------------------------------*/
.testemunhos-subtitulo {
    font-size: 15px;
    color: #666;
    margin-bottom: 18px;
}

.testemunhos-agregado {
    font-size: 16px;
    margin-bottom: 40px;
    color: #333;
}

/*-------------------------------------------------------------------
BLOCOS DA HOME — espaçamento uniforme
Padding vertical único para todos os blocos de conteúdo da home,
quer venham da renderização legacy (.espacos-div etc.) quer da nova
home dinâmica via parágrafos CMS (.home-bloco-secao).
-------------------------------------------------------------------*/
.espacos-div,
.sobre-div,
.testemunhos-div,
.comodidades-div,
.home-bloco-secao {
    padding: 120px 0 100px;
}

/* Regra `+ .home-bloco-secao { padding-top:0 }` removida em 2026-05 — quando
   cada bloco tem cor de fundo própria (via custom.css), precisamos do
   padding-top completo para o background renderizar acima do conteúdo. */
.home-bloco-secao.paragrafo-banner-home,
.home-bloco-secao.paragrafo-reservas-form {
    padding: 0;
}

/* paragrafo-testemunhos-home: zera o padding-top porque a centro-imagem
   do widget é full-bleed (100vw × 972px) e dá o "respiro" visual em cima
   por si só. Sem este override, o `.home-bloco-secao` aplicava
   padding-top:120px e criava um gap branco entre o widget acima
   (ex.: comodidades-home) e a centro-imagem. Mantemos padding-bottom
   intacto para a respiração natural do pink card. */
.home-bloco-secao.paragrafo-testemunhos-home {
    padding-top: 0;
}

/* Banner e formulário de reservas: zero margens (mesmo quando estão fora
   de .home-bloco-secao). Sobrepõe o .margin-bottom-30 utility do framework. */
.paragrafo-banner-home,
.paragrafo-reservas-form {
    margin: 0 !important;
    padding: 0 !important;
    line-height: 0;
    /* elimina o gap fantasma de inline-block */
}

.espacos-div .titulos,
.sobre-div .titulos,
.testemunhos-div .titulos,
.comodidades-div .titulos {
    margin-bottom: 30px;
}

@media (max-width:1023px) {

    .espacos-div,
    .sobre-div,
    .testemunhos-div,
    .comodidades-div,
    .home-bloco-secao {
        padding: 80px 0 60px;
    }

    .espacos-div .titulos,
    .sobre-div .titulos,
    .testemunhos-div .titulos,
    .comodidades-div .titulos {
        margin-bottom: 24px;
    }
}

/* PCs com baixa resolução (1024-1279): .site-width=950 — paddings verticais
   da home muito grandes esticam o scroll sem necessidade. */
@media screen and (min-width:1024px) and (max-width:1279px) {

    .espacos-div,
    .sobre-div,
    .testemunhos-div,
    .comodidades-div,
    .home-bloco-secao {
        padding: 90px 0 70px;
    }

    .espacos-div .titulos,
    .sobre-div .titulos,
    .testemunhos-div .titulos,
    .comodidades-div .titulos {
        margin-bottom: 25px;
    }
}

/*-------------------------------------------------------------------
TÍTULOS DOS WIDGETS DA HOME — tamanho uniforme por resolução
Aplica-se a TODOS os títulos H2 dos widgets renderizados na home:
.cms-espacos-home-titulo, .cms-sobre-home-titulo,
.cms-testemunhos-home-titulo, .cms-comodidades-home-titulo.

Específicos do widget têm specificity 0 (seletor :where(#id)), por
isso uma regra com classe simples ganha SEM precisar de !important.
-------------------------------------------------------------------*/
.cms-espacos-home-titulo,
.cms-sobre-home-titulo,
.cms-testemunhos-home-titulo,
.cms-comodidades-home-titulo {
    font-size: 1.6em;
}

/* PC com baixa resolução (1024-1279): site-width=950, títulos mais compactos */
@media screen and (min-width:1024px) and (max-width:1279px) {

    .cms-espacos-home-titulo,
    .cms-sobre-home-titulo,
    .cms-testemunhos-home-titulo,
    .cms-comodidades-home-titulo {
        font-size: 1.35em;
    }
}

/* PC médio (1280-1365): tamanho intermédio */
@media screen and (min-width:1280px) and (max-width:1365px) {

    .cms-espacos-home-titulo,
    .cms-sobre-home-titulo,
    .cms-testemunhos-home-titulo,
    .cms-comodidades-home-titulo {
        font-size: 1.5em;
    }
}

/* Tablet/mobile (<1024) */
@media (max-width:1023px) {

    .cms-espacos-home-titulo,
    .cms-sobre-home-titulo,
    .cms-testemunhos-home-titulo,
    .cms-comodidades-home-titulo {
        font-size: 1.4em;
    }
}

/* Desktop grande (≥1920) */
@media (min-width:1920px) {

    .cms-espacos-home-titulo,
    .cms-sobre-home-titulo,
    .cms-testemunhos-home-titulo,
    .cms-comodidades-home-titulo {
        font-size: 1.8em;
    }
}

.testemunhos-agregado b {
    font-size: 22px;
    padding: 0 4px;
}

.testemunhos-agregado .icon-star {
    color: #f5b800;
    margin: 0 4px 0 0;
}

.testemunho-card {
    background: #fff;
    border: 1px solid #e8eef0;
    border-radius: 14px;
    padding: 30px 22px 20px;
    position: relative;
    text-align: center;
    overflow: hidden;
    cursor: pointer;
    transition: transform .25s ease, box-shadow .25s ease;
}

.testemunho-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 22px rgba(0, 0, 0, .07);
}

.testemunho-card-foto {
    width: 78px;
    height: 78px;
    border-radius: 50%;
    margin: 0 auto 14px;
    background-color: #e8eef0;
    background-position: center;
    background-size: cover;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 600;
    font-size: 24px;
    letter-spacing: 1px;
}

.testemunho-card-foto.is-image {
    background-image: var(--foto);
}

.testemunho-card-foto .testemunho-card-badge {
    position: absolute;
    bottom: -2px;
    right: -2px;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 1px 4px rgba(0, 0, 0, .18);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.testemunho-card-badge img {
    width: 18px;
    height: 18px;
}

.testemunho-card-nome {
    font-weight: 600;
    font-size: 15px;
    margin-bottom: 6px;
    color: #222;
}

.testemunho-card-stars {
    color: #f5b800;
    font-size: 14px;
    margin-bottom: 4px;
    letter-spacing: 1px;
}

.testemunho-card-stars i {
    margin: 0 1px;
}

.testemunho-card-data {
    font-size: 12px;
    color: #999;
    margin-bottom: 16px;
}

.testemunho-card-texto {
    font-size: 13px;
    line-height: 1.6;
    color: #555;
    text-align: left;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 104px;
    margin-bottom: 18px;
}

.testemunho-card-logo {
    display: flex;
    justify-content: center;
    padding-top: 8px;
    border-top: 1px solid #f0f3f5;
}

.testemunho-card-logo img {
    height: 26px;
    width: auto;
}

/* Dots do carrossel — herdam estilo igual ao #espacoscaroucel
   (que tem regras específicas) mas para .testemunhos-carroucel. */
.testemunhos-carroucel.owl-theme .owl-dots {
    margin-top: 30px;
    text-align: center;
}

.testemunhos-carroucel.owl-theme .owl-dots .owl-dot {
    display: inline-block;
    margin: 0;
}

.testemunhos-carroucel.owl-theme .owl-dots .owl-dot span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin: 5px 6px;
    display: block;
    background: #dcdcdc;
    transition: background .25s ease, transform .25s ease;
}

.testemunhos-carroucel.owl-theme .owl-dots .owl-dot:hover span {
    background: var(--m2-primary);
}

.testemunhos-carroucel.owl-theme .owl-dots .owl-dot.active span {
    background: var(--m2-primary);
    transform: scale(1.15);
}

/* Modal de detalhe */
.testemunho-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, .7);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.testemunho-modal.is-open {
    display: flex;
}

.testemunho-modal-content {
    background: #fff;
    border-radius: 14px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 36px 32px 28px;
    position: relative;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, .4);
}

.testemunho-modal-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #f0f3f5;
    border: 0;
    cursor: pointer;
    font-size: 18px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #444;
    transition: background .2s ease;
}

.testemunho-modal-close:hover {
    background: #e0e6e9;
}

.testemunho-modal-foto {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    margin: 0 auto 16px;
    background-color: #e8eef0;
    background-position: center;
    background-size: cover;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 600;
    font-size: 30px;
    letter-spacing: 1px;
}

.testemunho-modal-foto .testemunho-card-badge {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 1px 4px rgba(0, 0, 0, .2);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.testemunho-modal-foto .testemunho-card-badge img {
    width: 20px;
    height: 20px;
}

.testemunho-modal-nome {
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 8px;
    color: #222;
}

.testemunho-modal-stars {
    color: #f5b800;
    font-size: 18px;
    margin-bottom: 6px;
    letter-spacing: 1px;
}

.testemunho-modal-stars i {
    margin: 0 1px;
}

.testemunho-modal-data {
    font-size: 13px;
    color: #999;
    margin-bottom: 24px;
}

.testemunho-modal-texto {
    font-size: 14px;
    line-height: 1.7;
    color: #444;
    text-align: left;
    margin-bottom: 24px;
    white-space: pre-line;
}

.testemunho-modal-logo {
    display: flex;
    justify-content: center;
    padding-top: 14px;
    border-top: 1px solid #f0f3f5;
}

.testemunho-modal-logo img {
    height: 30px;
    width: auto;
}

@media (max-width:640px) {
    .testemunho-modal-content {
        padding: 50px 22px 22px;
    }

    .testemunho-modal-foto {
        width: 80px;
        height: 80px;
    }
}


/*-------------------------------------------------------------------
CMS — SUBPÁGINAS (pagina.php)
Discriminador: .banner-page só é aplicada ao #banner em subpáginas
(o index.php do home não a tem). Por isso #banner.banner-page é seguro.

Espaçamento abaixo do banner via margin-bottom do próprio banner —
não depende do <div class="pagina-cms-spacer">, que pode estar fora
do sítio em deployments antigos.
-------------------------------------------------------------------*/
#banner.banner-page {
    margin-top: 0 !important;
    margin-bottom: 80px !important;
}

/* 1024-1279: banner-page com margem inferior mais discreta para encaixar
   melhor no scroll de PCs pequenos. */
@media screen and (min-width:1024px) and (max-width:1279px) {
    #banner.banner-page {
        margin-bottom: 50px !important;
    }
}

/* Spacer redundante mas mantido para limpar floats anteriores se aparecerem. */
.pagina-cms-spacer {
    display: block;
    width: 100%;
    height: 0;
    clear: both;
}

.pagina-cms {
    padding-top: 0 !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

/* Spacer físico no fim de cada subpágina CMS (existe sempre, mesmo quando
   a página não tem widget no fim). Garante respiro consistente entre o
   conteúdo e o rodapé independentemente de CSS externo. */
.pagina-cms-fim {
    display: block !important;
    width: 100% !important;
    height: 150px !important;
    clear: both !important;
}

@media (max-width:1023px) {
    .pagina-cms-fim {
        height: 80px !important;
    }
}

/* Título da página — mais pequeno e elegante que o .titulos legacy
   (que é 1.6em/1.8em). Override com !important para vencer media
   queries do .titulos em /assets/css/style.source.css linhas 39-54. */
.cms-titulo-pagina {
    /* Poppins (var(--m2-font-body)) em vez de Russo One herdado de .titulos —
       title de cada subpágina com look mais clean e moderno. !important
       defensivo para vencer o .titulos { font-family: var(--m2-font-title) }
       que tem mesma especificidade. */
    font-family: var(--m2-font-body, "Poppins", sans-serif) !important;
    font-size: 1.6em !important;
    margin-bottom: 25px !important;
    letter-spacing: 0.5px;
    text-align: left;
    font-weight: 700;
}

/* Conteúdo dos parágrafos — mais leve que o body default.
   Apanha todos os blocos renderizados em pagina.php (HTML ou widgets). */
.pagina-cms .paragrafo {
    font-size: 0.88em;
    line-height: 1.75;
    color: #333;
}

.pagina-cms .paragrafo p {
    margin: 0 0 14px 0;
}

.pagina-cms .paragrafo p:last-child {
    margin-bottom: 0;
}

/* Mobile / tablet pequeno (<1024px) */
@media (max-width:1023px) {
    #banner.banner-page {
        margin-bottom: 30px !important;
    }

    .pagina-cms {
        padding-bottom: 100px !important;
    }

    .cms-titulo-pagina {
        font-size: 1.1em !important;
        margin-bottom: 15px !important;
        text-align: center;
    }

    .pagina-cms .paragrafo {
        font-size: 0.85em;
        line-height: 1.6;
    }
}

/* Galeria de fotos da página (paginas_fotos). Aparece depois dos
   parágrafos quando o admin adiciona fotos em /site/fotografias/<id>.
   !important + reset defensivo de float/position porque o legacy aplica
   float:left em <a> dentro de alguns containers e empurraria as fotos
   para fora do grid. */
.pagina-cms-fotos {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)) !important;
    gap: 18px !important;
    margin-top: 40px !important;
    width: 100% !important;
    clear: both !important;
    float: none !important;
    position: relative !important;
}

.pagina-cms-fotos-item {
    display: block !important;
    aspect-ratio: 4/3;
    overflow: hidden;
    border-radius: 14px;
    background: #eee;
    cursor: zoom-in;
    float: none !important;
    position: static !important;
    width: auto !important;
}

.pagina-cms-fotos-item img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
    transition: transform .35s ease;
    max-width: none !important;
    float: none !important;
    position: static !important;
}

.pagina-cms-fotos-item:hover img {
    transform: scale(1.06);
}

/* Lightbox da galeria da página */
.pagina-cms-fotos-lb {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, .92);
    display: none;
    align-items: center;
    justify-content: center;
}

.pagina-cms-fotos-lb.is-open {
    display: flex;
}

.pagina-cms-fotos-lb-figure {
    margin: 0;
    max-width: 92vw;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.pagina-cms-fotos-lb-figure img {
    max-width: 92vw;
    max-height: 82vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, .5);
}

.pagina-cms-fotos-lb figcaption {
    color: #eee;
    font-size: .95em;
    text-align: center;
    padding: 0 20px;
}

.pagina-cms-fotos-lb .pagina-cms-fotos-lb-close,
.pagina-cms-fotos-lb .pagina-cms-fotos-lb-prev,
.pagina-cms-fotos-lb .pagina-cms-fotos-lb-next {
    position: absolute;
    background: rgba(255, 255, 255, .12);
    color: #fff;
    border: 0;
    cursor: pointer;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    font-size: 22px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s ease;
}

.pagina-cms-fotos-lb .pagina-cms-fotos-lb-close:hover,
.pagina-cms-fotos-lb .pagina-cms-fotos-lb-prev:hover,
.pagina-cms-fotos-lb .pagina-cms-fotos-lb-next:hover {
    background: rgba(255, 255, 255, .25);
}

.pagina-cms-fotos-lb .pagina-cms-fotos-lb-close {
    top: 18px;
    right: 18px;
    font-size: 28px;
}

.pagina-cms-fotos-lb .pagina-cms-fotos-lb-prev {
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
}

.pagina-cms-fotos-lb .pagina-cms-fotos-lb-next {
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
}

.pagina-cms-fotos-lb .pagina-cms-fotos-lb-counter {
    position: absolute;
    bottom: 18px;
    left: 50%;
    transform: translateX(-50%);
    color: #bbb;
    font-size: .85em;
}

@media (max-width:640px) {
    .pagina-cms-fotos-lb .pagina-cms-fotos-lb-prev {
        left: 8px;
    }

    .pagina-cms-fotos-lb .pagina-cms-fotos-lb-next {
        right: 8px;
    }

    .pagina-cms-fotos {
        gap: 12px;
        margin-top: 30px;
    }
}

/* Desktop grande (>=1366px) — sobe ligeiramente os tamanhos. */
@media (min-width:1366px) {
    .cms-titulo-pagina {
        font-size: 1.35em !important;
        margin-bottom: 30px !important;
    }

    .pagina-cms .paragrafo {
        font-size: 0.92em;
    }
}

/* Desktop XL (>=1920px) */
@media (min-width:1920px) {
    .cms-titulo-pagina {
        font-size: 1.45em !important;
        margin-bottom: 35px !important;
    }

    .pagina-cms .paragrafo {
        font-size: 0.95em;
    }
}