/* =========================================================
   Hospedagem Rancho Fundo — style.css (REFEITO DO ZERO)
   Direção: elegante + minimalista + moderno (premium clean)
   Observações:
   - Topbar aparece APENAS quando o scroll está no topo (body.at-top)
   - Header sempre fixo
   - Hero com background web/mobile:
       /img/plano-de-funo-web.png
       /img/plano-de-fundo-mobile.png
   - Botões:
       * .btn--primary = laranja (principal)
       * .btn--secondary = claro (secundário)
========================================================= */

/* ================================
   Variáveis (paleta + tipografia)
================================ */
:root {

  /* ================================
     🎨 PALETA PRINCIPAL
  ================================ */

  --bg: #E8DFD2;               /* Fundo geral */
  --bg-2: #F4EFE8;             /* Fundo alternativo / blocos */

  --surface: #F4EFE8;          /* Cards / superfícies */
  --surface-2: #ffffff;        /* Branco suave */
  --surface-3: #EDE5DA;        /* Variação de bloco */

  --ink: #3A2F2A;              /* Texto principal */
  --muted: #6f5e56;            /* Texto secundário */
  --line: #CBB49A;             /* Bordas / divisórias */

  --primary: #B46A3C;          /* CTA principal (laranja) */
  --primary-hover: #9c5830;

  --accent: #2F5D73;           /* Links / detalhes */
  --accent-hover: #254a5c;

  /* ================================
     ✍ TIPOGRAFIA
  ================================ */

  --serif: "Playfair Display", serif;
  --sans: "Source Sans 3", sans-serif;

  /* ================================
     📐 LAYOUT
  ================================ */

  --container: 1120px;
  --header-h: 72px;
  --topbar-h: 38px;

  --radius: 14px;
  --radius-sm: 6px;

  --shadow: 0 18px 55px rgba(58, 47, 42, .12);
  --shadow-soft: 0 10px 28px rgba(58, 47, 42, .08);

  --ease: cubic-bezier(.2,.9,.2,1);

  --float-size: 56px;
  --float-gap: 12px;
  --float-right: 16px;
  --float-bottom: 16px;
}

/* ================================
   Reset + base
================================ */
*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }

body{
  margin:0;
  font-family: var(--sans);
  color: var(--ink);
  line-height: 1.6;
  overflow-x:hidden;

  /* fundo papel clean */
  background-color: var(--bg);

background-image:
  radial-gradient(120% 160% at 50% 45%, rgba(255,255,255,.55) 0%, rgba(0,0,0,.05) 86%),
  linear-gradient(to right,
    rgba(180,106,60,.10) 0%,
    rgba(232,223,210,0) 18%,
    rgba(232,223,210,0) 82%,
    rgba(180,106,60,.10) 100%
  ),
  url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='240' height='240' filter='url(%23n)' opacity='.07'/%3E%3C/svg%3E");

background-size: auto, auto, 240px 240px;
background-repeat: no-repeat, no-repeat, repeat;

  /* header fixo */
  padding-top: var(--header-h);
}

img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
button, input, textarea{ font: inherit; }

::selection{ background: rgba(47,93,115,.16); }

/* foco visível */
:focus-visible{
  outline: 3px solid rgba(47,93,115,.35);
  outline-offset: 3px;
  border-radius: var(--radius);
}

/* Skip link */
.skip-link{
  position:absolute;
  left:-9999px;
  top:8px;
  background: var(--surface-2);
  color: var(--ink);
  padding:10px 14px;
  border-radius: var(--radius);
  border:1px solid var(--line);
  box-shadow: var(--shadow-soft);
  z-index: 99999;
}
.skip-link:focus{ left: 12px; }

/* ================================
   Container + utilitários
================================ */
.container{
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

.muted{ color: var(--muted); }

/* ================================
   Scrollbar (discreta)
================================ */
*{
  scrollbar-width: thin;
  scrollbar-color: rgba(58, 47, 42,.35) rgba(58, 47, 42,.08);
}
*::-webkit-scrollbar{ width: 10px; height: 10px; }
*::-webkit-scrollbar-track{
  background: rgba(58, 47, 42,.08);
  border-radius: var(--radius);
}
*::-webkit-scrollbar-thumb{
  background: rgba(58, 47, 42,.32);
  border-radius: var(--radius);
  border: 2px solid rgba(58, 47, 42,.08);
}
*::-webkit-scrollbar-thumb:hover{
  background: rgba(58, 47, 42,.42);
}

/* ================================
   Topbar (apenas no topo)
================================ */
.topbar{
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--topbar-h);
  z-index: 1001;

  background-color: rgba(240, 232, 221, 0.86);
  border-bottom: 1px solid rgba(203,180,154,.55);
  backdrop-filter: blur(12px);

  /* textura (noise) sutil + leve degradê */
  background-image:
    linear-gradient(to bottom, rgba(255,255,255,.50), rgba(255,255,255,.00)),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)' opacity='.10'/%3E%3C/svg%3E");
  background-size: auto, 180px 180px;
  background-repeat: no-repeat, repeat;

  /* escondida por padrão (quando rola) */
  transform: translateY(-110%);
  opacity: 0;
  pointer-events: none;
  transition: transform .22s var(--ease), opacity .22s var(--ease);
}

body.at-top .topbar{
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.topbar__inner{
  height: 100%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
}

.topbar__phone{
  display:inline-flex;
  align-items:center;
  gap:10px;
  font-weight: 650;
  color: rgba(58, 47, 42,.90);
  margin-top: 5px;
}
.topbar__phoneText{ font-size:.92rem; }

.topbar__right{
  display:flex;
  align-items:center;
  gap: 10px;
  margin-top: 5px;
}

.icon-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width: 15px;
  height: 15px;
  transition: transform .18s var(--ease), opacity .18s var(--ease);
}
.icon-btn:hover{
  opacity: 0.75;
  transform: translateY(-1px);
}

/* ================================
   Header (fixo)
================================ */
.header{
  position: fixed;
  top: 0;
  left: 0; right: 0;
  height: var(--header-h);
  z-index: 1000;

  /* Base clara */
  background-color: #F4EFE8;

  /* Camadas */
  background-image:

    /* vinheta lateral (laterais mais escuras) */
    linear-gradient(
      to right,
      rgba(180,106,60,.12) 0%,
      rgba(244,239,232,0) 18%,
      rgba(244,239,232,0) 82%,
      rgba(180,106,60,.12) 100%
    ),

    /* leve degradê vertical */
    linear-gradient(
      to bottom,
      rgba(255,255,255,.6),
      rgba(0,0,0,.03)
    ),

    /* textura noise sutil */
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='240' height='240' filter='url(%23n)' opacity='.08'/%3E%3C/svg%3E");

  background-size: auto, auto, 240px 240px;
  background-repeat: no-repeat, no-repeat, repeat;

  border-bottom: 1px solid rgba(203,180,154,.6);
  box-shadow: 0 12px 30px rgba(58, 47, 42,.08);

  backdrop-filter: blur(6px);

  transition: top .22s var(--ease);
}

.header::after{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  box-shadow: inset 0 0 40px rgba(180,106,60,.08);
}


/* quando topbar aparece, header desce */
body.at-top .header{ top: var(--topbar-h); }

.header__inner{
  height:100%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 18px;
}

/* Brand */
.brand{
  display:flex;
  align-items:center;
  gap: 12px;
  min-width: 240px;
  text-decoration: none;
}
.brand__text{ display:flex; flex-direction:column; line-height:1.05; }
.brand__name{
  font-family: var(--sans);
  font-weight: 700;
  letter-spacing:.01em;
  color: var(--ink);
}
.brand__city{
  font-size:.85rem;
  color: rgba(58, 47, 42,.68);
}
.brand__logo{
  height: 42px;
  width: auto;
  display: block;
}

/* Nav */
.nav{
  display:flex;
  align-items:center;
  gap: 10px;
}
.nav__link{
  font-size: .95rem;
  color: rgba(58, 47, 42, .82);
  padding: 10px 8px;
  border-radius: 0;
  transition: color .18s var(--ease);
}

.nav__link:hover{
  color: var(--primary); 
}

.nav__link--page{
  color: var(--accent);
  font-weight: 700;
}


.header__actions{
  display:flex;
  align-items:center;
  gap: 10px;
}

/* ================================
   Botões — padrão do projeto
   (PRIMARY = laranja / SECONDARY = claro)
================================ */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 14px;
  border: 1px solid rgba(58, 47, 42,.14);
  cursor:pointer;
  user-select:none;
  text-align:center;
  font-weight: 650;
  letter-spacing: .01em;
  transition: transform .18s var(--ease), background .18s var(--ease), border-color .18s var(--ease), color .18s var(--ease), box-shadow .18s var(--ease);
}

.btn--lg{ padding: 14px 20px; }
.btn--sm{ padding: 10px 14px; font-size:.92rem; }
.btn--block{ width:100%; }

/* PRIMARY (laranja) */
.btn--primary{
  background: var(--primary);
  color: #fff;
  border-color: rgba(0,0,0,0);
  box-shadow: 0 10px 24px rgba(180,106,60,.22);
}
.btn--primary:hover{
  transform: translateY(-1px);
  background: var(--primary-hover);
}

/* SECONDARY (claro) — igual o botão “Planejar minha estadia” */
.btn--secondary{
  background: rgba(244,239,232,.92);
  color: rgba(58, 47, 42,.92);
  border-color: rgba(203,180,154,.70);
  box-shadow: 0 10px 24px rgba(58, 47, 42,.08);
}
.btn--secondary:hover{
  transform: translateY(-1px);
  background: rgba(255,255,255,.92);
  border-color: rgba(203,180,154,.85);
}

/* OUTLINE (se precisar em algum hero escuro) */
.btn--outline{
  background: transparent;
  color: rgba(255,255,255,.92);
  border-color: rgba(255,255,255,.55);
}
.btn--outline:hover{
  transform: translateY(-1px);
  background: rgba(255,255,255,.10);
  border-color: rgba(255,255,255,.75);
}

/* Botão WhatsApp com ícone */
.btn--whats{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
}

.btn__icon{
  width: 30px;
  height: 30px;
  object-fit: contain;
}

/* ================================
   Hamburger + Mobile menu
================================ */
.hamburger{
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(58, 47, 42,.14);
  background: rgba(244,239,232,.75);
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  transition: background .18s var(--ease), transform .18s var(--ease);
}
.hamburger:hover{ background: rgba(255,255,255,.86); transform: translateY(-1px); }

.hamburger__lines{
  position: relative;
  width: 18px;
  height: 12px;
  display: block;
}

/* 3 linhas */
.hamburger__lines::before,
.hamburger__lines::after,
.hamburger__lines span{
  content:"";
  position:absolute;
  left:0;
  right:0;
  height:2px;
  background: rgba(58, 47, 42,.78);
  border-radius: 999px;
  transition: transform .18s var(--ease), opacity .18s var(--ease), top .18s var(--ease);
}

.hamburger__lines::before{ top:0; }
.hamburger__lines span{ top:5px; }
.hamburger__lines::after{ top:10px; }

/* ABERTO -> vira X */
.hamburger.is-open .hamburger__lines::before{
  top:5px;
  transform: rotate(45deg);
}
.hamburger.is-open .hamburger__lines::after{
  top:5px;
  transform: rotate(-45deg);
}
.hamburger.is-open .hamburger__lines span{
  opacity:0;
}

.mobile-menu{
  position:absolute;
  left:0;
  right:0;
  top: 100%;

  background-color: rgba(244,239,232,.96);
  border-bottom: 1px solid rgba(203,180,154,.55);
  box-shadow: 0 18px 40px rgba(58, 47, 42,.10);
  backdrop-filter: blur(12px);

  /* textura (noise) sutil + leve degradê */
  background-image:
    linear-gradient(to bottom, rgba(255,255,255,.55), rgba(255,255,255,.00)),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)' opacity='.10'/%3E%3C/svg%3E");
  background-size: auto, 180px 180px;
  background-repeat: no-repeat, repeat;
}

.mobile-menu__inner{ padding: 14px 0 18px; }

.nav--mobile{
  display:flex;
  flex-direction:column;
  gap: 6px;
}

.mobile-menu__divider{
  height:1px;
  background: rgba(203,180,154,.55);
  margin: 10px 0;
}

.mobile-menu__phone{
  margin-top: 10px;
  display:flex;
  gap:10px;
  align-items:center;
  color: rgba(58, 47, 42,.90);
  font-weight: 650;
}


/* ================================
   Seções (base)
================================ */
.section{ padding: 76px 0; }
.section--alt{
  background: transparent;
  border: 0;
}


.section__header{ margin-bottom: 22px; }
.section__header--row{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap: 16px;
}
.section__kicker{
  margin:0 0 10px;
  letter-spacing:.14em;
  text-transform:uppercase;
  font-size:.78rem;
  color: rgba(26, 17, 4,.68);
}
.section__title{
  margin:0 0 10px;
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3.4vw, 2.3rem);
  letter-spacing:.015em;
  line-height: 1.25;
  color: rgba(26, 17, 4,.68);
}
.section__subtitle{
  margin:0;
  max-width: 68ch;
  color: rgba(26, 17, 4,.68);
}
.section__headerActions{
  display:flex;
  align-items:center;
  gap: 10px;
}
.section__ctaRow{
  margin-top: 18px;
  display:flex;
  flex-wrap:wrap;
  gap: 10px;
}
.section--about .container{
  max-width: 1040px;
}


/* ================================
   HERO — refinado (alvo do print)
================================ */
.hero{
  position: relative;
  min-height: calc(100vh - (var(--topbar-h) + var(--header-h)));
  display: grid;
  align-items: center;
  padding: 0;
  overflow: hidden;
}

/* Fundo do Hero */
.hero__bg{
  position: absolute;
  inset: 0;

  background-image:
    radial-gradient(900px 520px at 36% 44%, rgba(0,0,0,.44), rgba(0,0,0,.14) 60%, rgba(0,0,0,0) 78%),
    linear-gradient(180deg, rgba(0,0,0,.45) 0%, rgba(0,0,0,.18) 45%, rgba(0,0,0,0) 78%),
    url("../img/faixada.png");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.02);
  z-index: -2;
}

/* ================================
   🔥 HERO — CENTRALIZADO (desktop + mobile)
================================ */

/* Coluna central do layout */
.hero__inner{
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;

  /* top / laterais / bottom */
  padding: calc(var(--header-h) + 22px) 24px 150px;
}

/* ✅ Centraliza o bloco do hero sobre a imagem */
.hero__inner--center{
  display: flex;
  align-items: center;
  justify-content: center;   /* centro horizontal */
  text-align: center;        /* texto central */
}

/* Conteúdo */
.hero__content--center{
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  color: rgba(255,255,255,.92);
}

/* Tipografia */
.hero__title{
  margin: 0 0 12px;
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: .01em;
  font-size: clamp(2.1rem, 4vw, 3.1rem);
  line-height: 1.05;
  text-shadow: 0 16px 40px rgba(0,0,0,.35);
}

.hero__subtitle{
  margin: 0 0 22px;
  max-width: 60ch;
  margin-left: auto;
  margin-right: auto;

  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.02rem;
  line-height: 1.7;
  color: rgba(255,255,255,.82);
  text-shadow: 0 10px 26px rgba(0,0,0,.22);
}

/* Ações */
.hero__actions{
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero__actions--center{
  justify-content: center;
}

/* ================================
   ABA ARQUEADA
================================ */

.hero__tab{
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  min-height: 190px;

  background-color: var(--bg);
  border-top: 1px solid rgba(203,180,154,.75);

  background-image:
    radial-gradient(120% 160% at 50% 45%, rgba(255,255,255,.55) 0%, rgba(0,0,0,.05) 86%),
    linear-gradient(to right,
      rgba(180,106,60,.10) 0%,
      rgba(232,223,210,0) 18%,
      rgba(232,223,210,0) 82%,
      rgba(180,106,60,.10) 100%
    ),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='240' height='240' filter='url(%23n)' opacity='.07'/%3E%3C/svg%3E");

  background-size: auto, auto, 240px 240px;
  background-repeat: no-repeat, no-repeat, repeat;

  box-shadow: 0 -18px 40px rgba(58,47,42,.08);
  clip-path: ellipse(72% 100% at 50% 100%);
  transform: translateY(26px);
  padding: 30px 0 26px;
}

.hero__tabInner{
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
  padding: 0 24px;
}

.hero__tabTitle{
  margin: 0 0 10px;
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(1.35rem, 2.1vw, 1.8rem);
  color: rgba(58,47,42,.90);
}

.hero__tabText{
  margin: 0 auto;
  max-width: 92ch;
  font-size: .98rem;
  line-height: 1.65;
  color: rgba(58,47,42,.70);
}

/* transição suave */
.hero::after{
  content:"";
  position:absolute;
  left:0; right:0; bottom:0;
  height: 240px;
  pointer-events:none;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,0) 0%,
    rgba(232,223,210,.20) 52%,
    rgba(232,223,210,.55) 74%,
    rgba(232,223,210,.95) 100%
  );
  z-index: -1;
}

/* ================================
   Mobile
================================ */
@media (max-width: 980px){

  /* ✅ deixa a hero crescer (pode passar da tela e rolar) */
  .hero{
    min-height: auto;
    padding-top: 0;
    padding-bottom: 0;
  }

  .hero__bg{
    background-image:
      radial-gradient(760px 520px at 44% 40%, rgba(0,0,0,.48), rgba(0,0,0,.18) 62%, rgba(0,0,0,0) 80%),
      linear-gradient(180deg, rgba(0,0,0,.52) 0%, rgba(0,0,0,.24) 55%, rgba(0,0,0,0) 84%),
      url("../img/faixada-mobile.png");
  }

  /* ✅ conteúdo do topo centralizado e com respiro do header */
  .hero__inner{
    padding-top: calc(var(--header-h) + 26px);
    padding-left: 18px;
    padding-right: 18px;

    /* espaço REAL para a aba arqueada não “comer” o botão/texto */
    padding-bottom: 320px;
  }

  /* garante que o bloco fique centralizado no mobile */
  .hero__inner--center{
    display: flex;
    justify-content: center;
    text-align: center;
  }

  .hero__content--center{
    max-width: 520px;
    text-align: center;
  }

  .hero__actions--center{
    justify-content: center;
  }

  .hero__title{
    font-size: clamp(2rem, 8vw, 2.6rem);
  }

  .hero__subtitle{
    font-size: 1rem;
    max-width: 34ch;
    margin-left: auto;
    margin-right: auto;
  }

  /* ✅ aba menos agressiva pra não subir demais */
  .hero__tab{
    min-height: 200px;
    transform: translateY(18px);
    clip-path: ellipse(92% 100% at 50% 100%);
    padding: 28px 0 26px;
  }

  .hero__tabInner{
    text-align: center;
    padding: 0 18px;
  }

  .hero__tabText{
    margin: 0 auto;
    font-size: .95rem;
    line-height: 1.6;
  }
}

/* viewport dinâmico (melhor no iPhone)
   ✅ aqui a gente garante um “mínimo” de tela, mas deixando crescer */
@supports (min-height: 100svh){
  @media (max-width: 980px){
    .hero{ min-height: 100svh; }
  }
}

@supports (min-height: 100dvh){
  @media (max-width: 980px){
    .hero{ min-height: 100dvh; }
  }
}

.section-divider{
  width: 1060px;
  height: 1px;
  margin: 32px auto;
  background: linear-gradient(
    to right,
    transparent,
    rgba(203,180,154,.55),
    transparent
  );
}


/* ================================
   APRESENTAÇÃO (layout editorial)
================================ */
.about{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px; /* mais respiro */
  align-items: center;
}

.about__media{
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(26,17,4,.08);
  background: rgba(255,255,255,.55);
  box-shadow: var(--shadow-soft);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* vídeo */
.about__media video{
  width: 100%;
  height: clamp(320px, 40vw, 520px);
  object-fit: cover;
  pointer-events: none; /* impede clique */
}

/* conteúdo */
.about__content{
  padding: 6px 0;
}

.about__chips{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.chip{
  padding: 6px 12px;
  font-size: .78rem;
  font-weight: 500;
  border-radius: 12px;
  background: rgba(255,255,255,.65);
  border: 1px solid rgba(26,17,4,.08);
}

.about__title{
  margin: 8px 0 16px;
  font-family: var(--serif);
  font-size: clamp(1.2rem, 1.6vw, 1.5rem);
  font-weight: 600;
  color: rgba(26,17,4,.78);
}

/* lista com check */
.about__list{
  list-style: none;
  padding: 0;
  margin: 0;
  color: rgba(26,17,4,.75);
}

.about__list li{
  position: relative;
  padding-left: 28px;
  margin: 14px 0;
  line-height: 1.6;
}

.about__list li::before{
  content: "✔";
  position: absolute;
  left: 0;
  top: 2px;
  font-size: .9rem;
  color: var(--primary); /* cor do botão */
}

.about__actions{
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* Responsivo */
@media (max-width: 980px){
  .about{
    grid-template-columns: 1fr;
  }

  .about__media video{
    height: 380px;
  }
}

/* ================================
   Cards / Grid (base para as seções)
================================ */
.grid{ display:grid; gap: 16px; }
.grid--2{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid--3{ grid-template-columns: repeat(3, minmax(0, 1fr)); }

.card{
  background: rgba(255,255,255,.70);
  border: 1px solid rgba(26, 17, 4,.4);
  border-radius: var(--radius);
  box-shadow: 0 10px 28px rgba(26, 17, 4,.06);
  padding: 18px;
}
.card--soft{
  background: rgba(255,255,255,.55);
  box-shadow: 0 8px 22px rgba(26, 17, 4,.05);
}
.card__title{
  margin:0 0 10px;
  font-family: var(--serif);
  font-size: 1.18rem;
  color: rgba(26, 17, 4,.72); 

}
.card__text{ 
  margin:0 0 10px; 
  color: rgba(26, 17, 4,.72); 
}
.card__actions{
  display:flex;
  flex-wrap:wrap;
  gap: 10px;
  margin-top: 12px;
}

/* Listas */
.list{
  margin: 0;
  padding-left: 18px;
  color: rgba(26, 17, 4,.72);
}
.list li{ margin: 8px 0; }
.list--cols{ columns: 2; column-gap: 24px; }

/* Media frame */
.media--frame{
  border-radius: var(--radius);
  overflow:hidden;
  border: 1px solid rgba(26, 17, 4,.10);
  box-shadow: var(--shadow-soft);
  background: rgba(255,255,255,.40);
}
.media--frame img{
  width:100%;
  height: 340px;
  object-fit: cover;
}
.media__caption{
  padding: 10px 12px;
  font-size:.86rem;
  color: rgba(26, 17, 4,.62);
  border-top: 1px solid rgba(26, 17, 4,.10);
  background: rgba(255,255,255,.55);
}

/* ================================
   Acomodações – Lista
================================ */
.rooms{
  margin-top: 18px;
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(255,255,255,.65);
  border: 1px solid rgba(26,17,4,.08);
}

.room{
  display: grid;
  grid-template-columns: 180px 1fr auto;
  gap: 18px;
  padding: 16px 18px;
  align-items: center;
  background: rgba(255,255,255,.55);
  border-bottom: 1px solid rgba(26,17,4,.10);
}

.room:last-child{
  border-bottom: 0;
}

.room__thumb{
  position: relative;
  border: 0;
  padding: 0;
  border-radius: calc(var(--radius) - 2px);
  overflow: hidden;
  cursor: pointer;
  background: transparent;
  box-shadow: var(--shadow-soft);
}

.room__thumb img{
  width: 100%;
  height: 110px;
  object-fit: cover;
  display: block;
  transform: scale(1);
  transition: transform 250ms ease;
}

.room__thumbHint{
  position: absolute;
  left: 10px;
  bottom: 10px;
  font-size: .82rem;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(0,0,0,.35);
  color: rgba(255,255,255,.92);
  backdrop-filter: blur(4px);
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 200ms ease, transform 200ms ease;
}

.room__thumb:hover img{
  transform: scale(1.04);
}
.room__thumb:hover .room__thumbHint{
  opacity: 1;
  transform: translateY(0);
}

.room__main{
  min-width: 0;
}

.room__title{
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;

  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 650;
  color: rgba(26,17,4,.88);
}

.room__amenities{
  margin-top: 8px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;              /* mais respiro */
}

.amenity{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0;             /* tira “balão” */
  border: 0;
  background: transparent;
  font-size: .92rem;
  color: rgba(26,17,4,.70);
  line-height: 1.2;
  white-space: nowrap;
}

.amenity__icon{
  width: 16px;
  height: 16px;
  display: inline-block;
  object-fit: contain;
}

.room__desc{
  margin: 10px 0 0;
  font-size: .95rem;
  line-height: 1.55;
  color: rgba(26,17,4,.66);
  max-width: 70ch;
}

.room__cta{
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

/* ================================
   Acomodações – Lista (Mobile)
   - imagem em cima
   - conteúdo em coluna
   - botão embaixo centralizado
================================ */
@media (max-width: 980px){

  .room{
    /* vira card em coluna */
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 14px;
    align-items: start;
  }

  /* imagem no topo ocupando tudo */
  .room__thumb{
    width: 100%;
    border-radius: 14px;
  }
  .room__thumb img{
    height: 200px; /* ajuste fino: 180–240 */
  }

  /* título + infos */
  .room__title{
    font-size: 1.18rem;
  }

  /* comodidades em “grid” 2 colunas para não ficar gigante */
  .room__amenities{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 14px;
    margin-top: 10px;
  }

  /* deixa o texto quebrar se precisar (evita estouro) */
  .amenity{
    white-space: normal;
  }

  .room__desc{
    margin-top: 8px;
    max-width: none;
  }

  /* CTA embaixo e centralizado */
  .room__cta{
    justify-content: center;
    width: 100%;
    margin-top: 6px;
  }

  /* botão com boa área de toque no mobile */
  .room__cta .btn{
    width: min(360px, 100%);
    justify-content: center;
  }
}

@media (max-width: 520px){
  .room__thumb img{
    height: 180px;
  }

  /* se ficar apertado demais, cai para 1 coluna */
  .room__amenities{
    grid-template-columns: 1fr;
  }
}

/* ================================
   Modal – Acomodações (vídeo clean)
================================ */

/* painel em 2 colunas (mídia + conteúdo) */
.modal__panel{
  width: min(1000px, calc(100vw - 28px));
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,.22);
  background: rgba(255,255,255,.96);

  display: grid;
  grid-template-columns: 1.1fr .9fr;
}

.modal__media{
  position: relative;
  border-right: 1px solid rgba(26,17,4,.08);
  background: #000; /* evita flash branco enquanto carrega vídeo */
}

/* Galeria (agora só 1 vídeo, mas mantém estrutura limpa) */
.room-gallery{
  width: 100%;
}

.room-gallery__item{
  width: 100%;
}

/* Vídeo principal */
.room-gallery__item video{
  width: 100%;
  height: 460px;
  object-fit: cover;
  display: block;

  /* vídeo clean (sem controles/sem pause) */
  pointer-events: none;
}

/* Conteúdo lateral */
.modal__content{
  padding: 24px 28px 30px;
  display: flex;
  flex-direction: column;
}

.modal__title{
  margin: 0 0 10px;
  font-family: var(--serif);
  font-size: 1.6rem;
  color: rgba(26,17,4,.88);
}

.modal__text{
  margin: 0 0 16px;
  line-height: 1.6;
  color: rgba(26,17,4,.70);
}

/* Amenities */
.room-modal__amenities{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 10px 0 22px;
}

/* CTA do modal: embaixo e centralizado (sem afetar o resto do site) */
.modal__content .botao__cta{
  margin-top: auto;
  display: flex;
  justify-content: center;
  padding-top: 24px;
}

/* Responsivo */
@media (max-width: 980px){
  .modal__panel{
    width: calc(100vw - 20px);
    grid-template-columns: 1fr;
  }

  .modal__media{
    border-right: 0;
    border-bottom: 1px solid rgba(26,17,4,.08);
  }

  .room-gallery__item video{
    height: 340px;
  }

  .modal__content{
    padding: 20px 18px 24px;
  }

  .modal__content .botao__cta{
    padding-top: 18px;
  }
}


/* ================================
   Eventos e experiências (cards)
================================ */
.section--events .section__header{
  margin-bottom: 22px;
}

.events-grid{
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

/* card clean */
.event-card2{
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(255,255,255,.70);
  border: 1px solid rgba(26,17,4,.12);
  box-shadow: 0 12px 30px rgba(16,12,8,.06);
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.event-card2__media{
  background: rgba(255,255,255,.55);
}

.event-card2__media img{
  width: 100%;
  height: 170px;
  object-fit: cover;
  display: block;
}

.event-card2__body{
  padding: 14px 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.event-card2__title{
  margin: 0;
  font-family: var(--serif);
  font-size: 1.05rem;
}

.event-card2__text{
  margin: 0;
  color: rgba(20,18,15,.70);
  font-size: .95rem;
  line-height: 1.55;
  flex: 1;
}

/* ================================
   Modal
================================ */
.modal{
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: none;
}

.modal.is-open{
  display: block;
}

.modal__backdrop{
  position: absolute;
  inset: 0;
  background: rgba(16,12,8,.55);
  backdrop-filter: blur(4px);
}

.modal__panel{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);

  width: min(920px, calc(100% - 24px));
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(255,255,255,.95);
  border: 1px solid rgba(172, 167, 161, 0.25);
  box-shadow: 0 24px 70px rgba(16,12,8,.28);

  display: grid;
  grid-template-columns: 1.15fr .85fr;
}

.modal__close{
  position: absolute;
  top: 14px;
  right: 14px;

  border: 0;
  background: transparent;
  padding: 0;
  width: 36px;
  height: 36px;

  cursor: pointer;
  font-size: 28px;
  line-height: 1;

  color: rgba(20,18,15,.55);
  transition: color .18s var(--ease), transform .18s var(--ease);
}

.modal__close:hover{
  color: rgba(20,18,15,.90);
  transform: scale(1.06);
}


.modal__media{
  background: rgba(20,18,15,.06);
}

.modal__media img{
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  display: block;
}

.modal__content{
  padding: 18px 18px 16px;
}

.modal__title{
  margin: 0 0 6px;
  font-family: var(--serif);
  font-size: 1.25rem;
}

.modal__subtitle{
  margin: 0 0 12px;
  color: rgba(20,18,15,.68);
}

.modal__text{
  margin: 0 0 12px;
  color: rgba(20,18,15,.76);
}

.modal__list{
  margin: 0 0 14px;
  padding-left: 18px;
  color: rgba(20,18,15,.72);
}

.modal__actions{
  margin-top: 14px;
  display: flex;
  justify-content: center;
}


/* responsivo */
@media (max-width: 980px){
  .events-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .modal__panel{
    grid-template-columns: 1fr;
  }
  .modal__media img{
    min-height: 260px;
  }
}

@media (max-width: 520px){
  .events-grid{
    grid-template-columns: 1fr;
  }
}

/* ================================
   Modal — MELHORIA MOBILE
================================ */
@media (max-width: 980px){
  .modal__panel{
    top: 56px;
    left: 50%;
    transform: translateX(-50%); /* tira o -50% vertical */
    width: min(640px, calc(100% - 24px));
    max-height: calc(100dvh - 112px); /* cabe na tela */
    overflow: hidden; /* evita vazar borda */
    border-radius: var(--radius);
  }

  .modal__media img{
    min-height: unset;   /* remove o min-height que quebra no mobile */
    height: 220px;       /* altura controlada */
    width: 100%;
    object-fit: cover;
  }

  .modal__content{
    overflow: auto;      /* scroll só no conteúdo */
    -webkit-overflow-scrolling: touch;
    max-height: calc(100dvh - 112px - 220px); /* sobra pra texto */
  }

  .modal__actions{
    position: sticky;    /* CTA sempre visível */
    bottom: 0;
    padding: 12px 0 0;
    background: rgba(255,255,255,.95);
  }

  .modal__close{
  color: rgba(255,255,255,.9); /* X escuro */
}

.modal__close:hover{
  color: rgba(255,255,255,1);
  transform: scale(1.08);
}

}

@media (max-width: 520px){
  .modal__panel{
    top: 48px;
    max-height: calc(100dvh - 96px);
    border-radius: var(--radius);
  }

  .modal__media img{
    height: 180px;
  }

  .modal__close{
    top: 10px;
    right: 10px;
    width: 34px;
    height: 34px;
    font-size: 26px;
  }
}


.infohub{
  display: flex;
  justify-content: center;
}

/* ✅ mais respiro geral do bloco (pra não grudar no conteúdo de cima/baixo) */
.infohub__block{
  display: grid;
  gap: 14px;
  padding: clamp(44px, 6vw, 80px) 0; /* ↑↑ mais espaço vertical */
}

.infohub__title{
  margin: 0 0 6px;
  font-family: var(--serif);
  font-size: 1.18rem;
  color: rgba(26, 17, 4,.72); 
}

.infohub__subtitle{
  margin: 0 0 10px;
  color: rgba(26, 17, 4,.72);
}

.infohub__cta{
  margin-top: 10px;
  display: flex;
  justify-content: flex-start;
}

/* ================================
   Regras — clean (ícone + título + descrição)
================================ */

/* ✅ mais espaço do título até a grade + gaps maiores */
.rules-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 44px 60px;          /* ↑↑ mais espaço entre itens (vertical e horizontal) */
  margin-top: 34px;        /* ↑↑ mais respiro do header para os ícones */
  align-items: start;
}

.rule{
  text-align: center;
}

/* ✅ mais respiro entre ícone e textos */
.rule__icon{
  width: 46px;
  height: 46px;
  object-fit: contain;
  display: block;
  margin: 0 auto 18px;     /* ↑↑ antes era 12px */
  opacity: .95;
  transition: transform .18s var(--ease), opacity .18s var(--ease);
}

.rule__title{
  margin: 0 0 12px;        /* ↑↑ antes era 8px */
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.05rem;
  color: rgba(58,47,42,.90);
}

.rule__text{
  margin: 0;
  font-size: .95rem;
  line-height: 1.6;        /* leve aumento pra respirar melhor */
  color: rgba(58,47,42,.68);
}

.rule__text + .rule__text{
  margin-top: 8px;         /* ↑↑ mais espaço entre linhas */
}

/* hover discreto (sem “container/badge”) */
.rule:hover .rule__icon{
  transform: translateY(-2px);
  opacity: 1;
}

/* Mobile: 2 colunas (3 linhas) */
@media (max-width: 980px){
  .infohub__block{
    padding: clamp(36px, 7vw, 64px) 0; /* mantém respiro no mobile */
  }

  .rules-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 34px 22px;
    margin-top: 26px;
    align-items: start;
  }

  /* ✅ mantém centralizado no mobile também */
  .rule{
    text-align: center;
  }

  .rule__icon{
    margin: 0 auto 14px; /* ✅ centraliza o ícone */
  }

  .rule__title{
    margin-bottom: 10px;
  }

  .rule__text + .rule__text{
    margin-top: 6px;
  }
}



/* ================================
   Como funciona — estilo LISTA (igual acomodações)
================================ */
.timeline-box{
  width: 100%;
  
  margin-top: 18px;
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(255,255,255,.65);
  border: 1px solid rgba(26,17,4,.08);
}

.timeline{
  list-style: none;
  padding: 0;
  margin: 0;
}

.timeline__item{
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 14px;
  align-items: center;

  padding: 16px 18px;
  background: rgba(255,255,255,.55);
  border-bottom: 1px solid rgba(26,17,4,.10);
}

.timeline__item:last-child{
  border-bottom: 0;
}

.timeline__icon{
  width: 42px;
  height: 42px;
  object-fit: contain;
  opacity: .95;
}

.timeline__title{
  margin: 0 0 4px;
  font-family: var(--serif);
  font-size: 1.05rem;
  color: rgba(26,17,4,.88); /* sem azul */
}

.timeline__text{
  margin: 0;
  color: rgba(26,17,4,.68);
  line-height: 1.55;
}

.timeline-box .botao__cta{
  margin: 0;
  padding: 16px 18px;
  border-top: 1px solid rgba(26,17,4,.10);
  display: flex;
  justify-content: center; /* se quiser central, troco pra center */
}

/* mobile */
@media (max-width: 520px){
  .timeline__item{
    grid-template-columns: 46px 1fr;
    padding: 14px 14px;
  }
  .timeline__icon{
    width: 36px;
    height: 36px;
  }
}

/* ================================
   Galeria Full Width (2x4 sem gap)
================================ */
.gallery-strip{
  width: 100%;
  margin: 0;
}

.gallery-grid{
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;              /* sem gaps */
  line-height: 0;      /* remove “micro-gap” de imagens */
}

/* Itens clicáveis da grade (a ou button) */
.gallery-grid a,
.gallery-grid button{
  border-radius: 0;          /* sem cantos arredondados */
  outline: none;             /* remove o contorno azul padrão */
  box-shadow: none;
}

/* Quando o foco vem por teclado (Tab), você pode manter um destaque bonito */
.gallery-grid a:focus-visible,
.gallery-grid button:focus-visible{
  outline: 2px solid rgba(184, 120, 74, .55); /* marrom suave (ou var(--primary)) */
  outline-offset: -2px;
}

.gallery-item{
  border: 0;
  padding: 0;
  margin: 0;
  background: transparent;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.gallery-item img{
  width: 100%;
  height: 240px;       /* ajuste se quiser mais alto */
  object-fit: cover;
  display: block;

  transform: scale(1);
  transition: transform 260ms ease, filter 260ms ease;
}

.gallery-item::after{
  content:"";
  position:absolute;
  inset:0;
  background: rgba(0,0,0,.18);
  opacity: 0;
  transition: opacity 260ms ease;
}

.gallery-item:hover img{
  transform: scale(1.015);
}



/* Responsivo */
@media (max-width: 980px){
  .gallery-grid{
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-item img{
    height: 200px;
  }
}

@media (max-width: 520px){
  .gallery-item img{
    height: 170px;
  }
}

/* ================================
   Lightbox (padrão eventos)
================================ */
.lightbox{
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none; /* fechado */
}

.lightbox.is-open{
  display: block;
}

.lightbox__backdrop{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.62);
}

.lightbox__panel{
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 18px;
}

.lightbox__img{
  max-width: min(1100px, calc(100vw - 70px));
  max-height: min(78vh, 820px);
  width: auto;
  height: auto;
  border-radius: 14px;
  box-shadow: 0 24px 80px rgba(0,0,0,.35);
  background: rgba(255,255,255,.04);
}

/* X */
.lightbox__close{
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 6px 10px;
  border: 0;
  background: transparent;
  color: rgba(255,255,255,.75);
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
  transition: color 200ms ease, transform 200ms ease, text-shadow 200ms ease;
}

.lightbox__close:hover{
  color: #ffffff;
  transform: scale(1.08);
  text-shadow: 0 0 12px rgba(255,255,255,.6);
}


/* Setas */
.lightbox__nav{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  padding: 10px 12px;
  border: 0;
  background: transparent;
  color: rgba(255,255,255,.65);
  font-size: 54px;
  line-height: 1;
  cursor: pointer;
  transition: color 200ms ease, transform 200ms ease, text-shadow 200ms ease;
  user-select: none;
}

.lightbox__nav:hover{
  color: #ffffff;
  transform: translateY(-50%) scale(1.08);
  text-shadow: 0 0 14px rgba(255,255,255,.6);
}

.lightbox__nav--prev{ left: 18px; }
.lightbox__nav--next{ right: 18px; }


/* ================================
   FAQ — Accordion
================================ */
.faq{
  max-width: 980px;
}

.faq__box{
  margin-top: 16px;
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(26,17,4,.10);
  border-radius: 14px;
  box-shadow: 0 14px 34px rgba(26,17,4,.06);
  overflow: hidden; /* deixa as divisórias retinhas */
}

/* item */
.faq-item{
  border-top: 1px solid rgba(26,17,4,.10);
}
.faq-item:first-child{
  border-top: 0;
}

/* botão */
.faq-item__btn{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;

  padding: 16px 18px;
  cursor: pointer;

  background: rgba(255,255,255,.88);
  border: 0;
  text-align: left;

  transition: background .18s var(--ease), transform .18s var(--ease);
}

.faq-item__btn:hover{
  background: #f5f3f1;
}

.faq-item__q{
  color: rgba(58,47,42,.78);
  font-size: .98rem;
  line-height: 1.35;
}

.faq-item__icon{
  flex: 0 0 auto;
  font-size: 22px;
  line-height: 1;
  color: rgba(58,47,42,.65);
  transform: rotate(0deg);
  transition: transform .18s var(--ease), color .18s var(--ease);
}

/* painel (resposta) */
.faq-item__panel{
  max-height: 0;
  overflow: hidden;
  background: rgba(255,255,255,.72);
  transition: max-height .24s var(--ease);
}

.faq-item__a{
  padding: 0 18px 16px;
  color: rgba(58,47,42,.68);
  font-size: .95rem;
  line-height: 1.65;
}

/* estado aberto */
.faq-item.is-open .faq-item__btn{
  background: rgba(255,255,255,.96);
}

.faq-item.is-open .faq-item__icon{
  transform: rotate(90deg);
  color: rgba(58,47,42,.80);
}

/* mobile */
@media (max-width: 520px){
  .faq-item__btn{
    padding: 14px 14px;
  }
  .faq-item__a{
    padding: 0 14px 14px;
  }
}

/* ================================
   Avaliações — visual estilo Google
================================ */
.ratings{
  display: grid;
  grid-template-columns: 290px 1fr; /* largura fixa elegante */
  gap: 24px;
  align-items: start;
}

/* ====================
   CARD PRINCIPAL
==================== */
.g-summary{
  position: sticky;
  top: calc(var(--header-h) + 18px);

  padding: 22px;
  border-radius: 18px;

  background: rgba(248, 248, 248, .96); /* um pouco mais claro */
  border: 1px solid rgba(26,17,4,.12);
  box-shadow: 0 14px 30px rgba(26,17,4,.06);

  display: flex;
  flex-direction: column;
  gap: 12px;
}

.g-summary__logo{
  width: 110px;
  height: auto;
  opacity: .95;
  display: block;
}

.g-summary__score{
  display: flex;
  align-items: center;
  gap: 14px;
}

.g-summary__value{
  font-size: 2.6rem;
  font-weight: 700;
  color: rgba(26,17,4,.92);
  line-height: 1;
}

.g-summary__stars{
  display: flex;
  gap: 3px;
  margin-top: 4px;
}

.g-summary__stars .g-star{
  font-size: 1.5rem;
}

.g-summary__count{
  margin: 0;
  color: rgba(26,17,4,.65);
  font-size: .95rem;
}

/* ====================
   FAIXA DE REVIEWS
==================== */
.ratings__quotes{
  display: flex;
  gap: 14px;
  align-items: stretch;


  /* remove qualquer faixa/escurecimento herdado */
  background: transparent;
  box-shadow: none;
  position: relative;
}

/* se em algum momento você colocou overlay/máscara para “fade”,
   isso garante que não exista faixa escura */
.ratings__quotes::before,
.ratings__quotes::after{
  content: none !important;
}

/* ====================
   CARDS MENORES
==================== */
.g-review{
  flex: 0 0 260px;
  border-radius: 16px;
  padding: 14px;

  background: rgba(240,240,240,.92);
  border: 1px solid rgba(26,17,4,.12);
  box-shadow: 0 12px 26px rgba(26,17,4,.06);
}

.g-review__head{
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 8px;
}

.g-review__name{
  margin: 0;
  font-weight: 600;
  font-size: .95rem;
  color: rgba(26,17,4,.86);
}

.g-review__date{
  margin: 2px 0 0;
  font-size: .75rem;
  color: rgba(26,17,4,.45);
}

.g-review__logo{
  width: 18px;
  height: 18px;
  object-fit: contain;
  opacity: .95;
}

/* estrelas amarelas padrão google */
.g-review__stars,
.g-summary__stars{
  display: flex;
  gap: 3px;
}

.g-star{
  font-size: .95rem;
  opacity: .35;
  color: #f4b400;
}

.g-star.is-on{
  opacity: 1;
}

.g-review__text{
  margin: 8px 0 0;
  font-size: .92rem;
  line-height: 1.45;
  color: rgba(26,17,4,.72);
}

/* ====================
   RESPONSIVO
==================== */
@media (max-width: 980px){
  .ratings{
    grid-template-columns: 1fr;
  }

  .g-summary{
    position: static;
    max-width: 100%;
  }

  .ratings__quotes{
    overflow-x: auto;
    overflow-y: visible;
    scroll-snap-type: x mandatory;
    padding-bottom: 6px;
    padding-right: 10px; /* mantém respiro no mobile também */
    -webkit-overflow-scrolling: touch;
  }

  .g-review{
    scroll-snap-align: start;
  }
}


/* ================================
   Localização — fundo mais claro + mapa colado no footer
================================ */

/* ✅ aplique esta classe na section de localização:
   <section id="localizacao" class="section section--loc" ...>
*/
.section--loc{
  /* fundo mais claro que o restante */
  background: rgba(241, 238, 232, 0.92);

  /* zera o respiro padrão embaixo pra colar no footer */
  padding-bottom: 0;
  margin-bottom: 0;
}

/* mantém o header no alinhamento padrão, mas sem “empurrar” demais */
.section--loc .section__header{
  margin-bottom: 18px; /* ajuste fino: diminui a distância pro mapa */
}

/* ✅ mapa full width sem borda arredondada */
.map--bleed{
  width: 100%;
  margin: 0;
  padding: 0;
  border-radius: 0;
  overflow: hidden;

  /* garante que não exista espaço embaixo */
  display: block;
}

.map--bleed iframe{
  width: 100%;
  height: clamp(360px, 45vw, 560px);
  border: 0;
  display: block;
}

/* ✅ se o footer tiver margin-top, isso remove quando ele vier logo depois */
.section--loc + footer,
.section--loc + .footer{
  margin-top: 0;
}



/* ================================
   Social row (seção/rodapé)
================================ */
.social-row{
  display:flex;
  gap: 10px;
  flex-wrap:wrap;
}
.social-pill{
  display:inline-flex;
  align-items:center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: var(--radius);
  border: 1px solid rgba(26, 17, 4,.14);
  background: rgba(255,255,255,.62);
  font-weight: 650;
  transition: transform .18s var(--ease), background .18s var(--ease);
}
.social-pill:hover{
  transform: translateY(-1px);
  background: rgba(255,255,255,.86);
}


/* ================================
   Footer
================================ */
.footer{
  border-top: 1px solid rgba(203,180,154,.6);
  padding: 48px 0 18px;

  /* Base clara (igual header) */
  background-color: #F4EFE8;

  /* Camadas (iguais header) */
  background-image:
    linear-gradient(
      to right,
      rgba(180,106,60,.12) 0%,
      rgba(244,239,232,0) 18%,
      rgba(244,239,232,0) 82%,
      rgba(180,106,60,.12) 100%
    ),
    linear-gradient(
      to bottom,
      rgba(255,255,255,.6),
      rgba(0,0,0,.03)
    ),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='240' height='240' filter='url(%23n)' opacity='.08'/%3E%3C/svg%3E");

  background-size: auto, auto, 240px 240px;
  background-repeat: no-repeat, no-repeat, repeat;
  box-shadow: 0 -12px 30px rgba(58, 47, 42,.06);
}
.footer__grid{
  display:grid;
  grid-template-columns: 1.1fr .8fr .9fr;
  gap: 18px;
  align-items:start;
}
.brand--footer .brand__mark{
  width: 46px;
  height: 46px;
}

.footer__text{
  margin: 10px 0 0;
  color: rgba(26, 17, 4,.68);
}
.footer__title{
  margin: 0 0 10px;
  color: rgba(26, 17, 4,.68);
  font-family: var(--serif);
  font-size: 1.06rem;
}
.footer__links{
  list-style:none;
  margin:0;
  padding:0;
  display:grid;
  gap: 8px;
}
.footer__links a{
  color: rgba(26, 17, 4,.72);
  padding: 6px 8px;
  border-radius: var(--radius);
  transition: background .18s var(--ease), color .18s var(--ease);
}
.footer__links a:hover{
  color: rgba(26, 17, 4, 0.438);
}
.footer__cta{
  margin-top: 12px;
  display:grid;
  gap: 10px;
}
.footer__bottom{
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid rgba(26, 17, 4,.10);
  display:flex;
  align-items:center;
  justify-content:space-between;
  flex-wrap:wrap;
  gap: 12px;
  color: rgba(26, 17, 4,.62);
}

/* Footer: linha com ícone + texto (mantém layout original) */
.footer__line{
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

/* Ícones dentro dos botões sociais (mantém tamanho do .icon-btn) */
.icon-btn__img{
  width: 16px;
  height: 16px;
  display: block;
}

.footer__social{
  margin-top: 14px; /* ajuste fino: 12–20px */
  display: flex;
  gap: 10px;        /* espaçamento entre os ícones */
}


/* Footer – ícones sociais SEM fundo */
.footer__social .icon-btn{
  background: transparent;
  border: 0;
  box-shadow: none;
  width: auto;
  height: auto;
  padding: 0;
  border-radius: 0;
}

/* tamanho real do ícone */
.footer__social .icon-btn__img{
  width: 18px;
  height: 18px;
  opacity: 1;
  transition: opacity .18s ease, transform .18s ease;
}

/* hover clean */
.footer__social .icon-btn:hover .icon-btn__img{
  opacity: 0.75;
  transform: translateY(-1px);
}

/* Linha ícone + texto (usando a classe que você realmente usa: footer__item) */
.footer__item{
  display: flex;
  align-items: center;     /* ícone e texto na mesma linha */
  gap: 10px;
  margin: 10px 0 0;        /* mantém seu espaçamento */
}

/* Deixa o texto quebrar sem empurrar o ícone pra cima */
.footer__item span,
.footer__item a{
  display: inline-block;
  min-width: 0;
  line-height: 1.35;
}

/* Endereço pode quebrar em 2 linhas, ícone continua alinhado com a 1ª linha */
.footer__item span{
  flex: 1;
}

/* Ícone do endereço/telefone */
.footer__icon{
  width: 16px;             /* pode ajustar 14–18 */
  height: 16px;
  flex: 0 0 16px;
  margin: 0;               /* remove aquele "empurra pra cima" */
  display: block;
  opacity: .9;
}

/* Se ainda ficar apertado, reduza um pouco a fonte só nesses itens */
.footer__text.footer__item{
  font-size: .92rem;       /* ajuste fino: .88 a .95 */
}

/* CTA do footer mais compacto */
.footer__cta .social-pill{
  width: 230px;
  max-width: 100%;
  padding: 10px 14px; /* levemente menor */
}

.footer .social-pill .icon-btn__img{
  width: 30px;
  height: 30px;
}




/* ================================
   WhatsApp flutuante + Voltar ao topo
================================ */

/* base comum */
.whatsapp-float,
.to-top{
  position: fixed;
  right: var(--float-right);
  z-index: 9999;

  width: var(--float-size);
  height: var(--float-size);
  padding: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  background: transparent;
  border: 0;
  box-shadow: none;
}

/* WhatsApp fica embaixo */
.whatsapp-float{
  bottom: var(--float-bottom);
}

.whatsapp-float__img{
  width: var(--float-size);
  height: var(--float-size);
  display: block;
  transition: transform .18s ease;
}

.whatsapp-float:hover .whatsapp-float__img{
  transform: scale(1.06);
}

/* Subir fica acima (mesmo container 56px, imagem menor) */
.to-top{
  bottom: calc(var(--float-bottom) + var(--float-size) + var(--float-gap));
  cursor: pointer;
}

.to-top__img{
  width: 44px;
  height: 44px;
  display: block;
  transition: transform .18s ease, opacity .18s ease;
}

.to-top:hover .to-top__img{
  transform: translateY(-2px);
  opacity: .85;
}

/* esconde o botão quando estiver no hero */
.to-top.is-hidden{
  opacity: 0;
  pointer-events: none;
  transform: translateY(6px);
}



/* ================================
   Responsividade
================================ */
@media (max-width: 980px){
  /* sug.: topbar some no mobile (mantém clean) */
  .topbar{ display:none; }
  body.at-top .header{ top: 0; }

  .nav--desktop{ display:none; }
  .hamburger{ display:inline-flex; align-items:center; justify-content:center; }
  .header__cta{ display:none; }

  .ratings{ grid-template-columns: 1fr; }
  .ratings__summary{ position: static; }
  .ratings__quotes{ grid-template-columns: 1fr; }

  .grid--3{ grid-template-columns: 1fr; }
  .grid--2{ grid-template-columns: 1fr; }

  .footer__grid{ grid-template-columns: 1fr; }
  .list--cols{ columns: 1; }
  .form__grid{ grid-template-columns: 1fr; }
}

@media (max-width: 520px){
  :root{ --header-h: 66px; }
  body{ padding-top: var(--header-h); }

  .hero{ padding: 34px 0 44px; }
  .hero__subtitle{ font-size: 1.02rem; }
  .whatsapp-float__text{ display:none; }
}

/* ================================
   Menos movimento (acessibilidade)
================================ */
@media (prefers-reduced-motion: reduce){
  *{
    scroll-behavior:auto !important;
    transition:none !important;
    animation:none !important;
  }
}
