/* =========================
   FAQ HERO
========================= */

.faq-hero{
  padding: 92px 0 70px;
  background:
    radial-gradient(900px 520px at 50% 25%, rgba(80,110,80,0.10), transparent 60%),
    linear-gradient(180deg, rgba(245,247,243,0.35), rgba(245,247,243,0.55));
}

.faq-hero-inner{
  text-align: center;
  max-width: 980px;
  margin: 0 auto;
}

.faq-title{
  margin: 0 0 14px;
  font-size: clamp(40px, 6vw, 74px);
  letter-spacing: -0.8px;
  color: rgba(45,65,45,0.95);
}

.faq-sub{
  margin: 0 auto;
  max-width: 760px;
  font-size: 18px;
  line-height: 1.7;
  color: rgba(42,47,42,0.62);
}

/* =========================
   FAQ INTRO
========================= */

.faq-intro{
  padding: 20px 0 20px;
}

.faq-intro-box{
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
  border-radius: 30px;
  border: 1px solid rgba(35,45,35,0.08);
  background: rgba(255,255,255,0.95);
  box-shadow: 0 24px 60px rgba(20,30,20,0.08);
  padding: 34px 32px;
}

.faq-intro-box h2{
  margin: 0 0 14px;
  font-size: clamp(28px, 3vw, 40px);
  color: rgba(45,65,45,0.92);
}

.faq-intro-box p{
  margin: 0 auto;
  max-width: 720px;
  font-size: 17px;
  line-height: 1.75;
  color: rgba(42,47,42,0.64);
}

/* =========================
   FAQ SECTION
========================= */

.faq-section{
  padding: 35px 0 90px;
}

.faq-grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  align-items: start;
}

.faq-card{
  background: rgba(255,255,255,0.95);
  border: 1px solid rgba(35,45,35,0.06);
  border-radius: 26px;
  box-shadow: 0 26px 60px rgba(20,30,20,0.08);
  overflow: hidden;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.faq-card:hover{
  transform: translateY(-2px);
  box-shadow: 0 34px 70px rgba(20,30,20,0.11);
}

.faq-question{
  width: 100%;
  border: 0;
  background: transparent;
  padding: 24px 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  text-align: left;
  font: inherit;
  font-size: 18px;
  font-weight: 650;
  color: rgba(45,65,45,0.92);
}

.faq-icon{
  width: 36px;
  height: 36px;
  min-width: 36px;
  border-radius: 999px;
  border: 1px solid rgba(35,45,35,0.12);
  background: rgba(238,242,236,0.95);
  display: grid;
  place-items: center;
  font-size: 24px;
  line-height: 1;
  color: rgba(70,95,70,0.92);
  transition: transform 220ms ease, background 220ms ease;
}

.faq-card.is-open .faq-icon{
  transform: rotate(45deg);
  background: rgba(225,235,228,1);
}

.faq-answer{
  max-height: 0;
  overflow: hidden;
  transition: max-height 280ms ease;
}

.faq-answer p{
  margin: 0;
  padding: 0 24px 24px;
  color: rgba(42,47,42,0.66);
  line-height: 1.75;
  font-size: 15.8px;
}

/* =========================
   FAQ CTA
========================= */

.faq-cta{
  padding: 10px 0 95px;
  background:
    radial-gradient(900px 520px at 50% 25%, rgba(80,110,80,0.10), transparent 60%),
    linear-gradient(180deg, rgba(245,247,243,0.35), rgba(245,247,243,0.55));
}

.faq-cta-box{
  max-width: 1100px;
  margin: 0 auto;
  padding: 66px 40px;
  border-radius: 30px;
  border: 1px solid rgba(35,45,35,0.10);
  background: rgba(240,243,238,0.75);
  box-shadow: 0 28px 60px rgba(20,30,20,0.12);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.faq-cta-box::before{
  content: "";
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle at 50% 40%, rgba(80,110,80,0.14), transparent 55%);
  transform: rotate(8deg);
  pointer-events: none;
}

.faq-cta-icon{
  width: 58px;
  height: 58px;
  border-radius: 16px;
  border: 1px solid rgba(35,45,35,0.12);
  background: rgba(235,239,233,0.95);
  display: grid;
  place-items: center;
  margin: 0 auto 22px;
  position: relative;
  z-index: 1;
}

.faq-cta-icon img{
  width: 24px;
  height: 24px;
  filter: invert(32%) sepia(12%) saturate(620%) hue-rotate(70deg);
}

.faq-cta-box h2{
  position: relative;
  z-index: 1;
  margin: 0 0 16px;
  font-size: clamp(28px, 3.4vw, 44px);
  color: rgba(45,65,45,0.95);
  letter-spacing: -0.6px;
}

.faq-cta-box p{
  position: relative;
  z-index: 1;
  margin: 0 auto;
  max-width: 720px;
  font-size: 18px;
  line-height: 1.7;
  color: rgba(42,47,42,0.62);
}

.cta-actions{
  position: relative;
  z-index: 1;
  margin-top: 34px;
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* =========================
   REVEAL
========================= */

.reveal{
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 650ms ease, transform 650ms ease;
  will-change: opacity, transform;
}

.reveal.is-visible{
  opacity: 1;
  transform: translateY(0);
}

/* =========================
   BACK TO TOP
========================= */

.back-to-top{
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 54px;
  height: 54px;
  border-radius: 999px;
  background: rgba(240,243,238,0.95);
  border: 1px solid rgba(35,45,35,0.15);
  display: grid;
  place-items: center;
  cursor: pointer;
  z-index: 1200;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 220ms ease, transform 220ms ease, box-shadow 220ms ease;
}

.back-to-top img{
  width: 20px;
  height: 20px;
  filter: invert(32%) sepia(12%) saturate(620%) hue-rotate(70deg);
}

.back-to-top.is-visible{
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.back-to-top:hover{
  box-shadow: 0 16px 30px rgba(20,30,20,0.14);
  transform: translateY(-2px);
}

/* =========================
   BOOKING MODAL
========================= */

.booking-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
}

.booking-overlay {
  position: absolute;
  inset: 0;
  background: rgba(17, 24, 18, 0.52);
  backdrop-filter: blur(3px);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.booking-panel {
  position: absolute;
  top: 0;
  right: 0;
  height: 100dvh;
  width: min(720px, 100%);
  background: linear-gradient(180deg, #466346 0%, #3f5640 100%);
  color: #f8f7f2;
  box-shadow: -24px 0 60px rgba(18, 28, 20, 0.28);
  transform: translateX(100%);
  transition: transform 0.42s cubic-bezier(.22,1,.36,1);
  overflow-y: auto;
  padding: 34px 32px 40px;
  font-family: inherit;
}

.booking-modal.is-open {
  pointer-events: auto;
}

.booking-modal.is-open .booking-overlay {
  opacity: 1;
}

.booking-modal.is-open .booking-panel {
  transform: translateX(0);
}

.booking-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.booking-close:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-1px);
}

.booking-head {
  padding-right: 64px;
  margin-bottom: 28px;
}

.booking-pill {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.booking-head h2 {
  margin: 0 0 12px;
  font-size: clamp(2.1rem, 5vw, 3.5rem);
  line-height: 1.02;
  color: #ffffff;
}

.booking-head p {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.86);
  max-width: 560px;
}

.booking-form {
  display: block;
}

.booking-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  margin-bottom: 9px;
  font-size: 0.98rem;
  font-weight: 600;
  color: #ffffff;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  border-radius: 16px;
  padding: 16px 18px;
  font: inherit;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  backdrop-filter: blur(3px);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.62);
}

.form-group select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.form-group option {
  color: #3f5640;
  background: #ffffff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(255, 255, 255, 0.36);
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.11);
}

.booking-consent {
  margin-top: 6px;
  margin-bottom: 22px;
}

.booking-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  color: #ffffff;
  font-size: 0.98rem;
  line-height: 1.6;
}

.booking-checkbox input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.booking-checkbox .checkmark {
  width: 20px;
  height: 20px;
  min-width: 20px;
  border: 1.5px solid rgba(255, 255, 255, 0.7);
  border-radius: 4px;
  margin-top: 2px;
  position: relative;
  background: transparent;
  transition: all 0.2s ease;
}

.booking-checkbox input:checked + .checkmark {
  background: #c9c06e;
  border-color: #c9c06e;
}

.booking-checkbox input:checked + .checkmark::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 2px;
  width: 5px;
  height: 10px;
  border: solid #2f4632;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.booking-checkbox a {
  color: #e7dd93;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.booking-checkbox a:hover {
  color: #fff1a8;
}

.booking-actions {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 8px;
}

.booking-submit {
  width: 100%;
  justify-content: center;
  border-radius: 999px;
  padding: 18px 24px;
  font-size: 1.08rem;
  font-weight: 700;
  background: #c9c06e !important;
  color: #ffffff !important;
  border: 1px solid #c9c06e !important;
  box-shadow: 0 10px 24px rgba(201, 192, 110, 0.22);
}

.booking-submit:hover {
  background: #d6cc79 !important;
  border-color: #d6cc79 !important;
  color: #ffffff !important;
}

body.booking-open {
  overflow: hidden;
}

/* =========================
   FOOTER LEGAL LINKS
========================= */

.footer-bottom{
  margin-top:40px;
  padding-top:20px;
  border-top:1px solid rgba(0,0,0,0.08);
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:10px;
}

.footer-legal{
  font-size:0.95rem;
  color:#6a736a;
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  justify-content:center;
}

.footer-legal a{
  color:#6a736a;
  text-decoration:none;
  transition:color .2s ease;
}

.footer-legal a:hover{
  color:#466346;
  text-decoration:underline;
}

.footer-copy{
  font-size:0.9rem;
  color:#7c857c;
}
/* =========================================================
   RESPONSIVO LIMPO — FAQ / MOBILE / TABLET
========================================================= */

*,
*::before,
*::after{
  box-sizing: border-box;
}

html,
body{
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

body{
  -webkit-text-size-adjust: 100%;
}

img,
video,
iframe{
  max-width: 100%;
}

h1, h2, h3, p, a, span, div, li, button{
  overflow-wrap: break-word;
}

.container{
  width: min(1180px, calc(100% - 32px));
  margin-inline: auto;
}

/* =========================================================
   HEADER + HAMBURGUER
========================================================= */

.site-header{
  position: sticky;
  top: 0;
  z-index: 3000;
}

.header-inner{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand{
  min-width: 0;
  flex: 1;
}

.brand-text{
  min-width: 0;
}

.brand-title,
.brand-subtitle{
  display: block;
}

.brand-title{
  white-space: nowrap;
}

.brand-subtitle{
  line-height: 1.2;
}

.nav-toggle{
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 1px solid rgba(35,45,35,0.12);
  background: rgba(255,255,255,0.88);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  box-shadow: 0 12px 26px rgba(20,30,20,0.08);
  z-index: 5001;
  pointer-events: auto !important;
}

.nav-toggle span{
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: #3f5640;
  transition: transform .25s ease, opacity .25s ease;
  pointer-events: none;
}

body.nav-open .nav-toggle span:nth-child(1){
  transform: translateY(7px) rotate(45deg);
}

body.nav-open .nav-toggle span:nth-child(2){
  opacity: 0;
}

body.nav-open .nav-toggle span:nth-child(3){
  transform: translateY(-7px) rotate(-45deg);
}

.nav-mobile-overlay{
  display: none;
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1024px){

  .container{
    width: min(100% - 36px, 960px);
  }

  .header-inner{
    min-height: 78px;
  }

  .header-cta{
    display: none !important;
  }

  .nav-toggle{
    display: inline-flex !important;
    flex: 0 0 auto;
  }

  .nav-mobile-overlay{
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(18, 24, 19, 0.42);
    backdrop-filter: blur(3px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .25s ease;
    z-index: 4998;
  }

  body.nav-open .nav-mobile-overlay{
    opacity: 1;
    pointer-events: auto;
  }

  .nav{
    position: fixed !important;
    top: 86px;
    left: 18px;
    right: 18px;
    width: auto !important;
    max-width: none !important;

    display: flex !important;
    flex-direction: column;
    gap: 8px;

    padding: 18px;
    border-radius: 26px;
    background: rgba(255,255,255,0.96);
    border: 1px solid rgba(35,45,35,0.10);
    box-shadow: 0 24px 70px rgba(20,30,20,0.18);
    backdrop-filter: blur(16px);

    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity .25s ease, transform .25s ease, visibility .25s ease;
    z-index: 4999;
  }

  body.nav-open .nav{
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-link{
    width: 100%;
    display: block;
    padding: 14px 16px;
    border-radius: 18px;
    font-size: 1rem;
    color: #3f5640;
    background: rgba(245,247,243,0.75);
  }

  .nav-link.is-active,
  .nav-link:hover{
    background: rgba(70,99,70,0.12);
  }

  body.nav-open{
    overflow: hidden;
  }
}

/* =========================================================
   MOBILE — FAQ
========================================================= */

@media (max-width: 768px){

  html,
  body{
    width: 100%;
    max-width: 100%;
    overflow-x: hidden !important;
  }

  .container{
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 18px !important;
    padding-right: 18px !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .site-header{
    width: 100%;
    max-width: 100%;
    overflow: visible;
  }

  .header-inner{
    width: 100%;
    max-width: 100%;
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    overflow: visible;
  }

  .brand{
    flex: 1 1 auto;
    min-width: 0;
    max-width: calc(100% - 58px);
    display: flex;
    align-items: center;
    gap: 12px;
    overflow: hidden;
  }

  .brand-mark{
    flex: 0 0 48px;
    width: 48px;
    height: 48px;
  }

  .brand-text{
    min-width: 0;
    max-width: 100%;
    overflow: hidden;
  }

  .brand-title{
    display: block;
    font-size: 1.05rem;
    line-height: 1.15;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .brand-subtitle{
    display: block;
    font-size: .82rem;
    line-height: 1.25;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .nav-toggle{
    display: inline-flex !important;
    flex: 0 0 46px;
    width: 46px;
    height: 46px;
    min-width: 46px;
  }

  /* FAQ HERO */
  .faq-hero{
    padding: 68px 0 44px;
  }

  .faq-title{
    font-size: clamp(2.35rem, 11vw, 3.3rem);
    line-height: 1.08;
    letter-spacing: -0.04em;
  }

  .faq-sub{
    font-size: 1rem;
    line-height: 1.65;
  }

  /* INTRO */
  .faq-intro{
    padding: 14px 0 20px;
  }

  .faq-intro-box{
    padding: 28px 20px;
    border-radius: 24px;
  }

  .faq-intro-box h2{
    font-size: clamp(1.75rem, 8vw, 2.25rem);
    line-height: 1.15;
  }

  .faq-intro-box p{
    font-size: .98rem;
    line-height: 1.7;
  }

  /* FAQ GRID */
  .faq-section{
    padding: 28px 0 68px;
  }

  .faq-grid{
    grid-template-columns: 1fr !important;
    gap: 16px;
  }

  .faq-card{
    border-radius: 22px;
  }

  .faq-question{
    padding: 20px 18px;
    font-size: 1rem;
    gap: 12px;
  }

  .faq-icon{
    width: 34px;
    height: 34px;
    min-width: 34px;
    font-size: 22px;
  }

  .faq-answer p{
    padding: 0 18px 20px;
    font-size: .94rem;
    line-height: 1.7;
  }

  /* CTA */
  .faq-cta{
    padding: 8px 0 72px;
  }

  .faq-cta-box{
    padding: 44px 20px;
    border-radius: 26px;
  }

  .faq-cta-box h2{
    font-size: clamp(1.8rem, 8vw, 2.35rem);
  }

  .faq-cta-box p{
    font-size: 1rem;
  }

  .cta-actions{
    width: 100%;
    flex-direction: column;
    gap: 12px;
  }

  .cta-actions .btn{
    width: 100%;
    justify-content: center;
  }

  .btn,
  .btn-lg{
    max-width: 100%;
    white-space: nowrap;
  }

  /* FOOTER */
  .footer-card{
    grid-template-columns: 1fr !important;
    gap: 30px;
  }

  .footer-col{
    text-align: center;
    align-items: center;
  }

  .brand-line{
    justify-content: center;
  }

  .footer-desc{
    margin-inline: auto;
  }

  .social{
    justify-content: center;
  }

  .footer-bottom{
    gap: 16px;
  }

  .footer-legal{
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }

  .footer-legal span{
    display: none;
  }

  .footer-copy{
    text-align: center;
    line-height: 1.5;
  }

  .complaints-book-link{
    left: 14px;
    bottom: 14px;
  }

  .complaints-book-link img{
    width: 105px;
    max-width: 38vw;
    height: auto;
  }

  /* BOTÃO TOPO */
  .back-to-top{
    width: 46px;
    height: 46px;
    right: 16px;
    bottom: 18px;
  }

  /* ANIMAÇÕES */
  .reveal{
    transform: translateY(18px);
  }

  .reveal.is-visible{
    transform: translateY(0);
  }
}

/* =========================================================
   POPUP MARCAR CONSULTA — MOBILE
========================================================= */

@media (max-width: 768px){

  .booking-panel{
    inset: auto 0 0 0;
    top: auto;
    right: auto;

    width: 100%;
    height: min(92dvh, 760px);
    border-radius: 28px 28px 0 0;

    padding: 26px 18px 28px;
    transform: translateY(105%);
    box-shadow: 0 -22px 60px rgba(18,28,20,0.28);
  }

  .booking-modal.is-open .booking-panel{
    transform: translateY(0);
  }

  .booking-overlay{
    background: rgba(17,24,18,0.56);
  }

  .booking-close{
    top: 14px;
    right: 14px;
    width: 42px;
    height: 42px;
    border-radius: 14px;
    font-size: 1.7rem;
    display: grid;
    place-items: center;
  }

  .booking-head{
    padding-right: 50px;
    margin-bottom: 22px;
  }

  .booking-pill{
    padding: 7px 12px;
    font-size: .82rem;
  }

  .booking-head h2{
    font-size: clamp(1.9rem, 9vw, 2.45rem);
  }

  .booking-head p{
    font-size: .94rem;
    line-height: 1.65;
  }

  .booking-grid{
    grid-template-columns: 1fr;
    gap: 0;
  }

  .form-group{
    margin-bottom: 14px;
  }

  .form-group label{
    font-size: .92rem;
  }

  .form-group input,
  .form-group select,
  .form-group textarea{
    min-height: 48px;
    border-radius: 15px;
    padding: 13px 14px;
    font-size: .95rem;
  }

  .form-group textarea{
    min-height: 96px;
  }

  .booking-checkbox{
    font-size: .88rem;
    line-height: 1.55;
  }

  .booking-submit{
    padding: 15px 20px;
    font-size: 1rem;
  }
}

/* =========================================================
   COOKIE BANNER — MOBILE
========================================================= */

.cookie-banner{
  z-index: 9500;
}

@media (max-width: 768px){

  .cookie-banner{
    position: fixed;
    inset: auto 12px 12px 12px;
    width: auto;
    max-width: none;
  }

  .cookie-card{
    width: 100%;
    max-height: 78dvh;
    overflow-y: auto;

    border-radius: 24px;
    padding: 20px;
    display: grid;
    gap: 16px;

    background: rgba(255,255,255,0.96);
    box-shadow: 0 22px 65px rgba(20,30,20,0.18);
  }

  .cookie-content h2{
    font-size: 1.25rem;
    line-height: 1.2;
    margin-bottom: 8px;
  }

  .cookie-content p{
    font-size: .92rem;
    line-height: 1.55;
  }

  .cookie-link{
    font-size: .92rem;
  }

  .cookie-actions{
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .cookie-btn{
    width: 100%;
    min-height: 46px;
    justify-content: center;
    border-radius: 999px;
    font-size: .95rem;
  }
}

/* =========================================================
   COOKIE PREFERENCES — MOBILE
========================================================= */

@media (max-width: 768px){

  .cookie-preferences{
    position: fixed !important;
    inset: 0 !important;
    z-index: 10000 !important;
    width: 100vw !important;
    height: 100dvh !important;
    overflow: hidden !important;
  }

  .cookie-preferences-overlay{
    position: fixed !important;
    inset: 0 !important;
    width: 100vw !important;
    height: 100dvh !important;
    background: rgba(17, 24, 18, 0.56) !important;
    backdrop-filter: blur(5px);
  }

  .cookie-preferences-panel{
    position: fixed !important;

    left: 50% !important;
    right: auto !important;
    top: 50% !important;
    bottom: auto !important;

    transform: translate(-50%, -50%) !important;

    width: calc(100vw - 28px) !important;
    max-width: 440px !important;
    min-width: 0 !important;

    max-height: calc(100dvh - 28px) !important;
    overflow-y: auto !important;
    overflow-x: hidden !important;

    margin: 0 !important;
    padding: 22px 18px 20px !important;

    border-radius: 26px !important;
    box-sizing: border-box !important;
  }

  .cookie-preferences-panel *{
    max-width: 100%;
    box-sizing: border-box;
  }

  .cookie-preferences-close{
    position: absolute !important;
    top: 12px !important;
    right: 12px !important;
    width: 40px !important;
    height: 40px !important;
    border-radius: 14px !important;
    z-index: 2;
  }

  .cookie-preferences-panel h2{
    font-size: 1.45rem !important;
    line-height: 1.18 !important;
    padding-right: 48px !important;
    margin-bottom: 10px !important;
  }

  .cookie-preferences-panel p{
    font-size: .92rem !important;
    line-height: 1.55 !important;
  }

  .cookie-options{
    display: grid !important;
    gap: 12px !important;
    margin-top: 16px !important;
  }

  .cookie-option{
    width: 100% !important;
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 12px !important;

    padding: 15px !important;
    border-radius: 18px !important;
    min-width: 0 !important;
  }

  .cookie-option h3{
    font-size: 1rem !important;
    line-height: 1.25 !important;
  }

  .cookie-option p{
    font-size: .86rem !important;
    line-height: 1.5 !important;
  }

  .cookie-required{
    width: fit-content !important;
    max-width: 100% !important;
    white-space: normal !important;
  }

  .cookie-switch{
    justify-self: start !important;
  }

  .cookie-preferences-actions{
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 10px !important;
    margin-top: 16px !important;
  }

  .cookie-preferences-actions .cookie-btn,
  .cookie-btn{
    width: 100% !important;
    min-height: 46px !important;
    justify-content: center !important;
    text-align: center !important;
    white-space: normal !important;
    border-radius: 999px !important;
  }
}

/* =========================================================
   ECRÃS PEQUENOS
========================================================= */

@media (max-width: 420px){

  .container{
    padding-left: 16px !important;
    padding-right: 16px !important;
  }

  .header-inner{
    min-height: 76px;
  }

  .brand{
    max-width: calc(100% - 54px);
    gap: 10px;
  }

  .brand-mark{
    flex-basis: 44px;
    width: 44px;
    height: 44px;
  }

  .brand-title{
    font-size: 1rem;
  }

  .brand-subtitle{
    font-size: .78rem;
  }

  .nav-toggle{
    width: 44px;
    height: 44px;
    min-width: 44px;
  }

  .faq-hero{
    padding: 54px 0 36px;
  }

  .faq-title{
    font-size: clamp(2.05rem, 12vw, 2.75rem);
  }

  .faq-intro-box{
    padding: 24px 18px;
  }

  .faq-question{
    font-size: .96rem;
  }

  .faq-cta-box{
    padding: 38px 18px;
  }

  .booking-panel{
    height: 94dvh;
    padding-inline: 15px;
  }

  .booking-head h2{
    font-size: 1.85rem;
  }

  .booking-head p{
    font-size: .9rem;
  }
}

@media (max-width: 390px){

  .cookie-preferences-panel{
    width: calc(100vw - 20px) !important;
    max-height: calc(100dvh - 20px) !important;
    padding: 20px 14px 16px !important;
    border-radius: 22px !important;
  }

  .cookie-preferences-panel h2{
    font-size: 1.3rem !important;
  }

  .cookie-option{
    padding: 13px !important;
  }

  .cookie-preferences-actions .cookie-btn{
    font-size: .88rem !important;
    padding-inline: 12px !important;
  }
}

@media (max-width: 380px){

  .brand-mark{
    width: 42px;
    height: 42px;
    min-width: 42px;
  }

  .brand-title{
    font-size: .98rem;
  }

  .brand-subtitle{
    font-size: .76rem;
  }

  .nav-toggle{
    width: 42px;
    height: 42px;
  }

  .btn,
  .btn-lg{
    padding-inline: 18px;
    min-height: 48px;
  }
}