/* CSS COMPLETO (VERSÃO FINAL) */

:root {
  --font-titulo: 'Playfair Display', serif;
  --font-texto: 'Montserrat', sans-serif;

  --color-font: #504747;
  --color-white: #fff;
  --color-white2: #eeeded;
  --color-green1: #28322b;
  --color-green2: #3d4640;
  --color-green3: #016634;
  --color-dark1: rgb(39, 39, 39);
  --color-dark2: #2d2d2d;
  --color-dark3: #414141;
  --color-dark4: #1c1c1c;
  --color-dark5: #343434;
  --color-gold: #daa520;
  --color-gold2: #c59c4d;
  --color-gold3: #fec629;
  --color-orange: #ff6314;
  --color-ice: #adcfff;
  --color-ceu: #87ceeb;
}

/* Blindagem contra cortes laterais */
html {
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-texto);
  color: var(--color-white);
  padding-top: 3.5em;
  background-color: var(--color-green1);
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  position: relative;
}

/* Tipografia */
h1, h2, h3, h4, h5, h6,
.titulo2,
.avulso,
.avulso2,
.logo_texto,
.phrase {
  font-family: var(--font-titulo);
  letter-spacing: 0.5px;
  font-weight: 400;
}

.phrase {
  font-style: italic;
}

/* Header */
.header {
  background-color: #F3EFE0;
  justify-content: space-between;
  padding: 5px 10%;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 3.5em;
  height: auto;
  z-index: 1000;
  border-bottom: 2px solid #28322b;
  display: flex;
  flex-direction: row;
  align-items: center;
}

.logo_header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.img_logo_header {
  height: 60px;
  width: auto;
}

.logo_texto {
  height: 35px;
  width: auto;
}

.navigation_header {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 3em;
  z-index: 2;
}

.navigation_header a {
  text-decoration: none;
  color: var(--color-green3);
  transition: 0.3s;
  font-weight: bolder;
  font-size: 1rem;
}

.navigation_header a:hover {
  color: var(--color-ceu);
}

.active {
  background: var(--color-gold3);
  padding: 10px;
  border-radius: 10px;
}

.social-menu {
  display: flex;
  align-items: center;
  gap: 15px;
}

.social-menu img {
  width: 28px;
  height: 28px;
  transition: transform 0.2s;
  vertical-align: middle;
}

.social-menu img:hover {
  transform: scale(1.1);
}

.btn_icon_header {
  display: none;
}

.link-reserva {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  line-height: 1;
}

.logo-assinatura {
  width: 25px;
  height: auto;
  margin-top: 3px;
  display: block;
}

/* Slider mobile */
@media screen and (max-width: 768px) {
  .slider {
    background-color: #000;
    width: 100% !important;

    height: 65vh;
    min-height: 420px;
    max-height: 620px;

    overflow: hidden;
    position: relative;
  }

  .slider .list {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    display: flex;
    width: max-content;
    transition: transform 0.5s ease-in-out;
  }

  .slider .list .item {
    position: relative;
    flex: 0 0 auto;
    width: 100vw;
    height: 100%;
  }

  .slider .list .item img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center center;
    display: block;
  }

  .slider .list .item .phrase {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 40px !important;
    width: 90%;
    text-align: center;
    color: #fff;
    font-size: 18px;
    z-index: 200;
    opacity: 1;
    pointer-events: none;
    text-shadow: 2px 2px 5px rgba(0,0,0,0.9);
    font-family: var(--font-titulo);
    font-style: italic;
  }

  .slider .buttons {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 10px;
    pointer-events: none;
    z-index: 100;
  }

  .slider .buttons button {
    pointer-events: auto;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .slider .dots {
    position: absolute;
    bottom: 15px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 8px;
    z-index: 100;
    margin: 0;
    padding: 0;
  }

  .slider .dots li {
    list-style: none;
    width: 8px;
    height: 8px;
    background-color: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    transition: all 0.3s ease;
  }

  .slider .dots li.active {
    background-color: #fff;
    width: 12px;
    height: 12px;
    transform: scale(1.1);
  }

  h1, h2 {
    font-size: 1.5rem !important;
    line-height: 1.2;
    margin: 30px 20px 10px 20px;
    text-align: center;
  }

  .conteudoPrincipal {
    padding: 10px 30px !important;
    text-align: left !important;
    font-size: 0.95rem;
    line-height: 1.6;
    word-wrap: break-word;
    max-width: 100%;
  }

  .title {
    justify-content: center !important;
    text-align: center;
    margin-top: 20px;
    font-size: 1.4rem;
  }

  .title::before {
    left: 50% !important;
    transform: translateX(-50%);
  }

  .sobre {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding-bottom: 30px;
  }

  .celular {
    width: 100% !important;
    height: auto;
    margin: 0 auto;
    display: block;
  }

  .navigation_header {
    position: fixed;
    top: 0;
    left: 0;
    width: 80vw;
    height: 100vh;
    background-color: rgba(243, 239, 224, 0.90);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column !important;
    align-items: center;
    justify-content: center;
    padding: 0;
    gap: 0;
    z-index: 2000;
    box-shadow: 4px 0 20px rgba(0, 0, 0, 0.2);
    margin-left: -100vw;
    transition: 0.4s ease-in-out;
  }

  .navigation_header a:not(.social-menu a) {
    font-size: 1.3rem;
    color: #28322b !important;
    font-weight: 700;
    text-decoration: none;
    width: 100%;
    text-align: center;
    border-bottom: 1px solid rgba(40, 50, 43, 0.1);
    padding: 18px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .navigation_header a.link-reserva {
    border-bottom: none;
  }

  .navigation_header a.active {
    background: transparent !important;
    border-radius: 0;
    color: #28322b !important;
  }

  .social-menu {
    margin-top: 20px;
    padding-bottom: 20px;
    justify-content: center;
    width: 100%;
    gap: 25px;
  }

  .social-menu img {
    width: 35px;
    height: 35px;
  }

  .navigation_header .btn_icon_header {
    background: transparent !important;
    color: var(--color-green1) !important;
    border: none;
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 32px;
    padding: 0;
    display: block !important;
    box-shadow: none;
  }

  .header > .btn_icon_header {
    display: block !important;
    position: static;
    margin-left: auto;
    background-color: var(--color-gold3);
    color: var(--color-green1);
    border: none;
    padding: 8px 15px;
    border-radius: 5px;
    font-weight: bold;
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    text-transform: uppercase;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
  }
}

/* Slider desktop */
@media screen and (min-width: 769px) {
  .slider {
    height: 600px;
    width: 100%;
    position: relative;
    overflow: hidden;
    background-color: var(--color-green1);
    margin: 0;
  }

  .slider .list {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    display: flex;
    width: max-content;
    transition: transform 0.5s ease-in-out;
    will-change: transform;
  }

  .slider .list .item {
    position: relative;
    flex: 0 0 auto;
    width: auto;
    height: 100%;
  }

  .slider .list .item img {
    height: 100%;
    width: auto;
    object-fit: contain;
    display: block;
  }

  .slider .buttons {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    box-sizing: border-box;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 60px;
    pointer-events: none;
    z-index: 100;
  }

  .slider .buttons button {
    pointer-events: auto;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: #fff;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  }

  .slider .buttons button:hover {
    background-color: var(--color-gold3);
    border-color: var(--color-gold3);
    color: var(--color-green1);
    transform: scale(1.1);
  }

  .slider .dots {
    position: absolute;
    bottom: 20px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 12px;
    margin: 0;
    padding: 0;
    z-index: 100;
  }

  .slider .dots li {
    list-style: none;
    width: 10px;
    height: 10px;
    background-color: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .slider .dots li.active {
    background-color: rgba(255, 255, 255, 0.9);
    border-color: #fff;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    transform: scale(1.1);
  }

  .slider .list .item .phrase {
    position: absolute;
    top: auto;
    bottom: 25%;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    font-size: 24px;
    text-align: center;
    width: 90%;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    z-index: 10;
    pointer-events: none;
    animation: typing 1.5s ease-out forwards;
  }
}

@keyframes typing {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

/* Cards e areas */
.sobre {
  display: grid;
  grid-template-columns: 1fr 1fr;
  justify-items: center;
  width: 100%;
}

/* Configuração mockup calibrado */
.imagem {
  display: flex;
  align-items: center;
  justify-content: flex-end !important;
  padding-right: 25% !important;
  width: 100%;
}

.mockup-container {
  position: relative;
  width: 100%;
  max-width: 350px;
  margin-top: 30px;
  margin-bottom: 30px;
}

.celular {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 20;
  pointer-events: none;
  display: block;
  filter: drop-shadow(0 20px 30px rgba(0,0,0,0.5));
}

.tela-slider {
  position: absolute;
  z-index: 10;
  background-color: #fff;

  top: 2.2%;
  left: 6.3%;
  width: 87.4%;
  height: 95.6%;
  border-radius: 35px;
  overflow: hidden;
}

/* Slides dentro da tela do iPhone */
.slide {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  transform: translateX(100%);
  animation: slideRightToLeft 25s infinite linear;
}

.slide:nth-of-type(1) { animation-delay: 0s; }
.slide:nth-of-type(2) { animation-delay: 5s; }
.slide:nth-of-type(3) { animation-delay: 10s; }
.slide:nth-of-type(4) { animation-delay: 15s; }
.slide:nth-of-type(5) { animation-delay: 20s; }

@keyframes slideRightToLeft {
  0% { transform: translateX(100%); opacity: 1; }
  4% { transform: translateX(0); opacity: 1; }
  20% { transform: translateX(0); opacity: 1; }
  24% { transform: translateX(-100%); opacity: 1; }
  100% { transform: translateX(-100%); opacity: 1; }
}

/* Responsividade do mockup */
@media (max-width: 1024px) {
  .imagem {
    justify-content: center !important;
    padding-right: 0 !important;
  }

  .mockup-container {
    max-width: 380px;
    width: 92vw;
    margin: 24px auto;
  }

  .tela-slider {
    width: 87.4%;
    height: 95.6%;
    top: 2.2%;
    left: 6.3%;
  }
}

.title {
  display: flex;
  justify-content: start;
  align-items: start;
  font-size: xx-large;
  margin-bottom: 15px;
  position: relative;
  padding: 20px;
}

.title::before {
  content: "";
  position: absolute;
  top: 50px;
  height: 2px;
  width: 70px;
  background-color: var(--color-gold);
  border-radius: 100px;
}

.conteudoPrincipal {
  text-align: justify;
  padding: 20px;
}

.areas {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  justify-items: center;
  align-items: baseline;
}

.card {
  background-color: #F9F7F0;
  border: 1px solid var(--color-gold);
  padding: 10px;
  margin: 20px;
  border-radius: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  max-width: 30vw;
  box-shadow: 5px 5px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 5px 10px 20px rgba(0,0,0,0.15);
}

.conteudo {
  text-align: justify;
  height: 100px;
  width: 170px;
  overflow: hidden;
  position: relative;
}

.conteudo h2, .conteudo h3, .conteudo h4, .conteudo h5 {
  text-align: center;
  color: var(--color-dark4);
}

.title2 {
  display: flex;
  justify-content: center;
  margin-bottom: 15px;
}

.icon {
  width: 45px;
  height: 45px;
}

@media (max-width: 1024px) {
  .areas {
    grid-template-columns: 1fr 1fr 1fr;
  }
  .card {
    max-width: 100%;
  }
}

@media (max-width: 650px) {
  .areas {
    grid-template-columns: 1fr 1fr;
    margin-top: 10px;
    gap: 8px;
    padding: 0 5px;
    align-items: stretch;
  }

  .card {
    margin: 0 !important;
    width: 100%;
    padding: 8px 4px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    height: 100%;
  }

  .title2 {
    margin-bottom: 5px !important;
  }

  .conteudo .title2 img {
    width: 30px;
    height: 30px;
  }

  .conteudo {
    width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    text-align: center !important;
  }

  .conteudo h5, .conteudo h2, .conteudo h3, .conteudo h4 {
    font-size: 0.8rem;
    line-height: 1.2;
    margin-bottom: 0;
  }

  .sap {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .sobre {
    grid-template-columns: 1fr;
  }
}

/* SAP e pontos turisticos */
.avulso, .avulso2 {
  width: auto;
  display: flex;
  justify-content: center;
  text-align: center;
  padding: 20px 0;
  margin-left: 0;
  margin-right: 0;
  max-width: 100%;
}

.sap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 20px auto;
  padding: 0 20px;
  align-items: stretch;
}

.pontoTuristico {
  width: 100%;
  height: 100%;
  background-color: var(--color-green2);
  border-radius: 20px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  text-align: center;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
}

.titulo2 {
  color: var(--color-white);
  text-align: center;
  margin-bottom: 15px;
  min-height: 3rem;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.premiacao {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  flex-grow: 1;
}

.premiacao img {
  border-radius: 20px;
  width: 100%;
  height: 300px;
  object-fit: cover;
  margin-bottom: 15px;
}

.premiacao p {
  margin: 0;
  padding: 0;
  text-align: justify;
  font-size: 0.9rem;
  min-height: 80px;
}

@media (max-width: 940px) {
  .sap {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 650px) {
  .sap {
    grid-template-columns: 1fr;
  }
}

/* Rodape */
.rodape {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: 100%;
  background-color: #1c1c1c;
  justify-items: center;
  align-items: start;
  padding-top: 50px;
  padding-bottom: 50px;
}

.contato h1, .mapa h1 {
  margin: 20px 0;
}

.redeSocial {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.redeSocial a {
  text-decoration: none;
}

.ordem {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.ordem a {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  text-decoration: none;
}

.whats p {
  margin-left: 0.5rem;
  color: var(--color-white);
  text-decoration: underline;
}

.mapa {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.mapa iframe {
  max-width: 90%;
}

@media (max-width: 1200px) {
  .rodape {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
  .mapa {
    grid-column: span 2;
  }
}

@media (max-width: 700px) {
  .rodape {
    grid-template-columns: 1fr;
  }
  .mapa {
    grid-column: span 1;
  }
}

/* Botoes flutuantes */
.floating-container {
  position: fixed;
  bottom: 80px;
  right: 35px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 3000;
}

.btn-float {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #fff;
  font-size: 28px;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s;
}

.btn-float:hover {
  transform: scale(1.1);
}

.whatsapp-float {
  background-color: #25d366;
}

.home-float {
  background-color: #F3EFE0;
  color: #28322b;
  font-size: 24px;
  border: 2px solid #28322b;
}

/* Mini galeria */
.mini-galeria {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  margin-top: 25px;
  width: 100%;
  padding: 0 20px;
  box-sizing: border-box;
}

.mini-galeria img {
  width: 28%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid var(--color-gold);
  box-shadow: 3px 3px 10px rgba(0,0,0,0.2);
  transition: transform 0.3s ease;
  cursor: pointer;
}

.mini-galeria img:hover {
  transform: scale(1.05);
}

@media (max-width: 1024px) {
  .mini-galeria {
    display: none !important;
  }
}

/* Interface iOS iPhone */
.ios-status-bar {
  position: absolute;
  top: 12px;
  left: 0;
  width: 100%;
  padding: 0 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 50;
  font-family: sans-serif;
  color: #000;
  box-sizing: border-box;
}

.ios-time {
  font-weight: 600;
  font-size: 13px;
}

.ios-icons {
  display: flex;
  align-items: center;
  gap: 6px;
}

.icon-signal, .icon-wifi {
  width: 14px;
  height: 14px;
  fill: #000;
}

.ios-battery {
  width: 20px;
  height: 10px;
  border: 1px solid rgba(0,0,0,0.4);
  border-radius: 3px;
  position: relative;
  padding: 1px;
  margin-left: 2px;
}

.ios-battery::after {
  content: '';
  position: absolute;
  right: -3px;
  top: 3px;
  width: 2px;
  height: 4px;
  background: rgba(0,0,0,0.4);
  border-radius: 0 2px 2px 0;
}

.ios-battery-level {
  width: 100%;
  height: 100%;
  background-color: #000;
  border-radius: 1px;
}

.ios-home-indicator {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 35%;
  height: 4px;
  background-color: #000;
  border-radius: 10px;
  z-index: 50;
  opacity: 0.8;
}

/* Botao estilo Airbnb fixo no celular */
.airbnb-btn-container {
  position: absolute;
  bottom: 45px;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  z-index: 60;
  pointer-events: auto;
}

.btn-airbnb {
  background: linear-gradient(to right, #E61E4D 0%, #E31C5F 50%, #D70466 100%);
  color: white;
  text-decoration: none;
  font-family: sans-serif;
  font-weight: 600;
  font-size: 14px;
  padding: 10px 24px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(230, 30, 77, 0.25);
  transition: transform 0.2s, box-shadow 0.2s;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-airbnb:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 15px rgba(230, 30, 77, 0.4);
}

.btn-airbnb:active {
  transform: scale(0.95);
}

@media (max-width: 768px) {

  .navigation_header {
    width: min(380px, 86vw);
    height: 100vh;
    padding: 22px 18px;
    justify-content: flex-start;
    gap: 12px;
    background-color: rgba(243, 239, 224, 0.92);
    border-right: 1px solid rgba(0,0,0,0.08);
  }

  .menu-brand {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 6px 6px 16px 6px;
    margin-top: 10px;
  }

  .menu-brand-logo {
    width: 64px;
    height: 64px;
    object-fit: contain;
    border-radius: 14px;
    background: rgba(255,255,255,0.65);
    box-shadow: 0 8px 18px rgba(0,0,0,0.10);
    padding: 8px;
  }

  .menu-brand-text {
    display: flex;
    flex-direction: column;
    gap: 3px;
  }

  .menu-brand-title {
    font-family: var(--font-titulo);
    font-size: 1.15rem;
    color: #28322b;
    letter-spacing: 0.4px;
  }

  .menu-brand-sub {
    font-family: var(--font-texto);
    font-size: 0.9rem;
    color: rgba(40, 50, 43, 0.8);
  }

  .navigation_header a:not(.social-menu a) {
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
    padding: 14px 12px;
    border-radius: 14px;
    background: rgba(255,255,255,0.70);
    border: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 10px 20px rgba(0,0,0,0.10);
    font-weight: 700;
  }

  .navigation_header a:not(.social-menu a):active {
    transform: scale(0.98);
  }

  .navigation_header a.active {
    background: var(--color-gold3) !important;
    color: var(--color-green1) !important;
    box-shadow: 0 12px 24px rgba(0,0,0,0.16);
  }

  .navigation_header a.link-reserva {
    background: var(--color-gold3) !important;
    color: var(--color-green1) !important;
    border: none;
  }

  .navigation_header a.link-reserva .logo-assinatura {
    margin-top: 6px;
    width: 22px;
    opacity: 0.85;
  }

  .social-menu {
    width: 100%;
    max-width: 320px;
    margin: 14px auto 0 auto;
    padding-top: 16px;
    border-top: 1px solid rgba(0,0,0,0.12);
    justify-content: center;
    gap: 18px;
  }

  .social-menu img {
    width: 38px;
    height: 38px;
  }

  .navigation_header .btn_icon_header {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255,255,255,0.85) !important;
    box-shadow: 0 10px 20px rgba(0,0,0,0.14);
  }
}
/* Esconde a marca do menu no desktop por padrão */
.menu-brand {
  display: none;
}

/* Mostra e estiliza apenas no mobile */
@media (max-width: 768px) {
  .menu-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 6px 6px 16px 6px;
    margin-top: 10px;
    width: 100%;
  }

  .menu-brand-logo {
    width: 64px;
    height: 64px;
    object-fit: contain;
    border-radius: 14px;
    background: rgba(255,255,255,0.65);
    box-shadow: 0 8px 18px rgba(0,0,0,0.10);
    padding: 8px;
  }

  .menu-brand-text {
    display: flex;
    flex-direction: column;
    gap: 3px;
  }

  .menu-brand-title {
    font-family: var(--font-titulo);
    font-size: 1.15rem;
    color: #28322b;
    letter-spacing: 0.4px;
  }

  .menu-brand-sub {
    font-family: var(--font-texto);
    font-size: 0.9rem;
    color: rgba(40, 50, 43, 0.8);
  }
}

