/* ============================================================
   AMÉRICAS BENIDORM V2 — ORGANIC MODERN
   ============================================================
   Paleta: preto · verde escuro · branco · creme
   Fontes: Playfair Display (títulos) · DM Sans (corpo)
   Estética: orgânica, cartões arredondados, blobs, assimétrico
   ============================================================ */

/* ============ VARIÁVEIS ============ */
:root {
  --black:       #0c0f0d;
  --ink:         #181f1b;
  --green:       #09411e;
  --green-mid:   #0c5232;
  --green-light: #1f6b46;
  --sage:        #c5aa67;
  --cream:       #f5f0e8;
  --paper:       #faf8f3;
  --white:       #ffffff;
  /* Dourado da marca (#c5aa67); --gold-light = tom mais claro para texto em fundo escuro */
  --accent:      #c5aa67;
  --gold:        var(--accent);
  --gold-light:  #e0d4b8;

  --footer-col-gap: 10px;

  --radius-sm:   12px;
  --radius-md:   24px;
  --radius-lg:   40px;
  --radius-xl:   60px;

  --display: 'Playfair Display', Georgia, serif;
  --display-alt: 'DM Serif Display', Georgia, serif;
  --body:    'DM Sans', system-ui, sans-serif;

  --shadow-sm: 0 2px 12px rgba(12,15,13,.06);
  --shadow-md: 0 8px 40px rgba(12,15,13,.1);
  --shadow-lg: 0 24px 80px rgba(12,15,13,.14);
}

/* ============ RESET ============ */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; }
body {
  font-family: var(--body);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
::selection { background: var(--green); color: var(--cream); }
img { display:block; max-width:100%; }
a { text-decoration:none; }

/* ============ CONTAINER ============ */
.container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ============ TIPOGRAFIA BASE ============ */
.section-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
  position: relative;
  padding-left: 28px;
}
.section-tag::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 18px; height: 1.5px;
  background: var(--accent);
}
.section-tag-light { color: var(--gold-light); }
.section-tag-light::before { background: var(--gold-light); }

.section-title {
  font-family: var(--display);
  font-size: clamp(28px, 4vw, 50px);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -.02em;
  color: var(--ink);
  margin-bottom: 24px;
}
.section-title em { font-style: italic; color: var(--green); }

.section-sub {
  font-size: 17px;
  color: #556060;
  max-width: 520px;
  font-weight: 300;
  line-height: 1.65;
}

.section-header {
  margin-bottom: 64px;
}

/* ============ BOTÕES ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: var(--radius-lg);
  font-family: var(--body);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .04em;
  cursor: pointer;
  transition: all .3s ease;
  border: 1.5px solid transparent;
}
.btn-dark {
  background: var(--green);
  color: var(--cream);
  border-color: var(--green);
}
.btn-dark:hover {
  background: var(--ink);
  border-color: var(--ink);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-outline {
  background: transparent;
  color: var(--cream);
  border-color: rgba(245,240,232,.35);
}
.btn-outline:hover {
  background: rgba(245,240,232,.08);
  border-color: var(--cream);
}
.btn-sm { padding: 12px 24px; font-size: 13px; }
.btn-full { width: 100%; justify-content: center; }
.btn-ghost-sm {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--body);
  font-size: 13px;
  color: var(--cream);
  border: 1px solid rgba(245,240,232,.35);
  border-radius: var(--radius-lg);
  padding: 10px 20px;
  transition: all .3s;
}
.btn-ghost-sm:hover {
  background: rgba(245,240,232,.1);
  border-color: var(--cream);
}

/* ============ ANIMAÇÕES ENTRADA ============ */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity .85s cubic-bezier(.2,.9,.3,1), transform .85s cubic-bezier(.2,.9,.3,1);
}
.reveal.visible { opacity:1; transform:translateY(0); }
.delay-1 { transition-delay: .12s; }
.delay-2 { transition-delay: .24s; }
.delay-3 { transition-delay: .36s; }

/* ============ NAVEGAÇÃO ============ */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  padding: 18px 40px;
  transition: all .4s ease;
}
nav.scrolled {
  background: rgba(12,15,13,.88);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  padding: 12px 40px;
  box-shadow: 0 1px 0 rgba(255,255,255,.06);
}
.nav-inner {
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
}
.logo .brand-logo-img {
  width: 188px;
  height: auto;
}
.brand-logo-img {
  width: 145px;
  height: auto;
}
.nav-links {
  display: flex;
  list-style: none;
  gap: 22px;
  flex-wrap: wrap;
  justify-content: flex-end;
  row-gap: 8px;
}
.nav-links a {
  font-size: 13px;
  color: var(--cream);
  opacity: .75;
  letter-spacing: .05em;
  transition: opacity .3s;
  font-weight: 400;
}
.nav-links a:hover { opacity: 1; }
.nav-cta {
  background: var(--cream);
  color: var(--ink);
  padding: 10px 22px;
  border-radius: var(--radius-lg);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .04em;
  transition: all .3s;
}
.nav-cta:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}
.nav-trailing {
  display: flex;
  align-items: center;
  gap: 20px;
}
.nav-lang {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-lang-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 26px;
  border-radius: 0;
  overflow: hidden;
  border: 2px solid transparent;
  opacity: 0.75;
  transition: opacity 0.2s ease, border-color 0.2s ease;
  flex-shrink: 0;
}
.nav-lang-btn:hover {
  opacity: 1;
  border-color: rgba(245, 240, 232, 0.35);
}
.nav-lang-btn.is-active {
  opacity: 1;
  border-color: var(--green);
  box-shadow: none;
}
.nav-lang-btn img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* Hamburger */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.menu-toggle span {
  display: block;
  width: 24px; height: 1.5px;
  background: var(--cream);
  transition: all .3s;
}
/* Mobile menu */
.mobile-menu {
  display: none;
  position: absolute;
  top: 100%; left: 0; right: 0;
  background: rgba(12,15,13,.96);
  backdrop-filter: blur(20px);
  padding: 24px 40px 32px;
}
.mobile-menu.open { display: block; }
.mobile-menu ul { list-style: none; }
.mobile-menu li { border-bottom: 1px solid rgba(255,255,255,.08); }
.mobile-link {
  display: block;
  padding: 16px 0;
  color: var(--cream);
  font-size: 15px;
  opacity: .85;
}
.mobile-cta {
  color: var(--gold-light) !important;
  opacity: 1 !important;
  font-weight: 500;
}

/* ============ HERO ============ */
.hero {
  min-height: 100vh;
  background-image:
    linear-gradient(
      to right,
      rgba(12, 15, 13, 0.9) 0%,
      rgba(12, 15, 13, 0.68) 32%,
      rgba(12, 15, 13, 0.28) 58%,
      rgba(12, 15, 13, 0.06) 78%,
      transparent 100%
    ),
    url("../assets/ALTA RESOLUÇÃO/Fotos sobre/pordosolbannerbarra.jpg");
  background-size: cover;
  background-position: center 40%;
  background-repeat: no-repeat;
  color: var(--cream);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 140px 40px 80px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-left {
  max-width: 720px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 32px;
  opacity: .9;
}
.badge-dot {
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .5; transform: scale(1.4); }
}

.hero-title {
  font-family: var(--display);
  font-size: clamp(40px, 6vw, 82px);
  font-weight: 500;
  line-height: 1.0;
  letter-spacing: -.03em;
  margin-bottom: 28px;
  color: var(--cream);
}
.hero-title em {
  font-style: italic;
  color: var(--gold);
}
.hero-desc {
  font-size: 17px;
  line-height: 1.65;
  opacity: .75;
  max-width: 440px;
  margin-bottom: 44px;
  font-weight: 300;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-actions .btn-dark {
  background: #1b3d2e;
  color: var(--cream);
  border-color: #1b3d2e;
}
.hero-actions .btn-dark:hover {
  background: #254d3d;
  border-color: #254d3d;
  color: var(--cream);
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 36px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: .4;
  z-index: 2;
}
.scroll-track {
  width: 1.5px; height: 48px;
  background: rgba(245,240,232,.2);
  border-radius: 99px;
  overflow: hidden;
}
.scroll-thumb {
  width: 100%; height: 50%;
  background: var(--gold);
  border-radius: 99px;
  animation: scrollDown 2s infinite ease-in-out;
}
@keyframes scrollDown {
  0%   { transform: translateY(-100%); }
  100% { transform: translateY(200%); }
}

/* ============ ABOUT ============ */
.about {
  padding: 140px 0;
  background: var(--paper);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: stretch;
}

/* Visual col — carrossel cresce até alinhar com o fim da coluna de texto (botão) */
.about-visual-col {
  display: flex;
  flex-direction: column;
  gap: 24px;
  min-width: 0;
  min-height: 100%;
  height: 100%;
}

.about-carousel-wrap {
  position: relative;
  flex: 1 1 0;
  min-height: 320px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.about-carousel-viewport {
  flex: 1 1 auto;
  min-height: 240px;
  overflow: hidden;
  position: relative;
}
.about-carousel-track {
  display: flex;
  height: 100%;
  transition: transform 0.45s ease;
  will-change: transform;
}
.about-carousel-slide {
  flex-shrink: 0;
  height: 100%;
  min-height: 220px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.about-carousel-slide-1 {
  background-image: url("../assets/ALTA RESOLUÇÃO/Fotos sobre/1.Image by Emerson from Pixabay-hat.jpg");
}
.about-carousel-slide-2 {
  background-image: url("../assets/ALTA RESOLUÇÃO/Fotos sobre/2.Benidorm-hotel-copacabana-foto-andre-tedesco.jpg");
}
.about-carousel-slide-3 {
  background-image: url("../assets/ALTA RESOLUÇÃO/Fotos sobre/3.Benidorm-hotel-copacabana-cafe-foto-jorge-jardim.jpg.jpg");
}
.about-carousel-slide-4 {
  background-image: url("../assets/ALTA RESOLUÇÃO/Fotos sobre/4.copacabana-por-do-sol-foto-livia-bravin - Copia.png");
}
.about-carousel-slide-5 {
  background-image: url("../assets/ALTA RESOLUÇÃO/Fotos sobre/5.Benidorm-hotel-copacabana-foto-jorge-jardim.jpg");
}
.about-carousel-slide-6 {
  background-image: url("../assets/ALTA RESOLUÇÃO/Fotos sobre/6.Benidorm-hotel-copacabana-foto-andre-tedesco.jpg");
}
.about-carousel-slide-7 {
  background-image: url("../assets/ALTA RESOLUÇÃO/Fotos sobre/7.Benidorm-hotel-copacabana-foto-jorge-jardim.jpg");
}
.about-carousel-slide-8 {
  background-image: url("../assets/ALTA RESOLUÇÃO/Fotos sobre/8.Benidorm-hotel-copacabana-foto-andre-tedesco.jpg");
}
.about-carousel-slide-9 {
  background-image: url("../assets/ALTA RESOLUÇÃO/Fotos sobre/9.Benidorm-hotel-copacabana-foto-jorge-jardim.jpg");
}
.about-carousel-slide-10 {
  background-image: url("../assets/ALTA RESOLUÇÃO/Fotos sobre/10.Benidorm-hotel-copacabana-foto-jorge-jardim.jpg");
}

.about-carousel-ui {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 4;
  display: flex;
  gap: 10px;
}
.about-carousel-btn {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(245,240,232,.35);
  border-radius: 50%;
  background: rgba(12,15,13,.35);
  color: var(--cream);
  font-size: 16px;
  cursor: pointer;
  transition: all 0.25s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(6px);
}
.about-carousel-btn:hover {
  border-color: var(--gold-light);
  color: var(--gold-light);
  background: rgba(12,15,13,.5);
}
.about-carousel-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.about-carousel-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  gap: 8px;
  align-items: center;
}
.about-carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  padding: 0;
  background: rgba(245,240,232,.35);
  cursor: pointer;
  transition: all 0.25s ease;
}
.about-carousel-dot.active {
  width: 22px;
  border-radius: 999px;
  background: var(--gold-light);
}

.about-stats-row {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 2px;
  background: var(--cream);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(12,15,13,.08);
}
.about-stat {
  background: var(--white);
  padding: 28px 20px;
  text-align: center;
  transition: background .3s;
}
.about-stat:hover { background: var(--cream); }
.about-stat strong {
  display: block;
  font-family: var(--display);
  font-size: 35px;
  font-weight: 500;
  color: var(--green);
  line-height: 1;
  letter-spacing: -.02em;
}
.about-stat span {
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #8a9990;
  margin-top: 8px;
  display: block;
}

/* Text col */
.about-text-col {
  display: flex;
  flex-direction: column;
  gap: 0;
  justify-content: flex-start;
}
.about-text-col > .section-tag,
.rooms .section-header > .section-tag,
.experiences .section-header > .section-tag,
.testimonials .section-header > .section-tag,
.location-header > .section-tag {
  color: #1b3d2e;
}
.about-text-col > .section-tag::before,
.rooms .section-header > .section-tag::before,
.experiences .section-header > .section-tag::before,
.testimonials .section-header > .section-tag::before,
.location-header > .section-tag::before {
  background: #1b3d2e;
}
.about-text-col p {
  font-size: 17px;
  line-height: 1.7;
  color: #4a5550;
  margin-bottom: 20px;
  font-weight: 300;
}

/* ============ ROOMS ============ */
.rooms {
  padding: 120px 0;
  background: var(--cream);
}
.rooms-carousel {
  width: 100%;
}
.rooms-carousel-stage {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
}
.rooms-control {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(12,15,13,.18);
  border-radius: 50%;
  background: var(--white);
  color: var(--ink);
  font-size: 18px;
  cursor: pointer;
  transition: all .25s ease;
}
.rooms-control:hover {
  border-color: var(--green);
  color: var(--green);
}
.rooms-control:disabled {
  opacity: .35;
  cursor: not-allowed;
}
.rooms-viewport {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  width: 100%;
}
.rooms-track {
  display: flex;
  gap: 20px;
  transition: transform .45s ease;
  will-change: transform;
}
.room-slide {
  flex-shrink: 0;
  min-width: 0;
  box-sizing: border-box;
}
.rooms-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 22px;
}
.rooms-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(12,15,13,.25);
  cursor: pointer;
  transition: all .25s ease;
}
.rooms-dot.active {
  width: 24px;
  border-radius: 999px;
  background: var(--green);
}
.rooms-child-policy-row {
  display: flex;
  align-items: stretch;
  gap: 14px;
  width: 100%;
  margin-top: 14px;
}
.rooms-control-spacer {
  flex-shrink: 0;
  width: 42px;
}
.rooms-child-policy {
  flex: 1;
  min-width: 0;
}
.rooms-child-policy p {
  box-sizing: border-box;
  width: 100%;
  margin: 0;
  padding: 8px 0 0;
  text-align: center;
  font-size: 15px;
  line-height: 1.65;
  color: rgba(12, 15, 13, 0.62);
  font-style: italic;
}
.room-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid rgba(12,15,13,.07);
  transition: transform .4s ease, box-shadow .4s ease;
}
.room-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.room-card-featured {
  background: var(--green);
}
.room-card-featured .room-body h3,
.room-card-featured .room-body p,
.room-card-featured .room-body { color: var(--cream); }
.room-card-featured .room-amenities li {
  background: rgba(245,240,232,.1);
  color: var(--cream);
  border-color: rgba(245,240,232,.15);
}
.room-card-featured .room-amenity-txt {
  color: rgba(245, 240, 232, 0.92);
}
.room-card-featured .room-link { color: var(--gold-light); border-color: var(--gold-light); }

.room-visual {
  aspect-ratio: 4 / 3;
  position: relative;
  overflow: hidden;
  background: #1a2420;
}
.room-visual--gallery .room-photo-carousel {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.room-photo-slides {
  position: absolute;
  inset: 0;
}
.room-photo-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.1s ease;
  will-change: opacity;
}
.room-photo-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.room-photo-slide.is-active {
  opacity: 1;
  z-index: 1;
}
@media (prefers-reduced-motion: reduce) {
  .room-photo-slide {
    transition: none;
  }
}
.room-photo-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 36px;
  height: 36px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(250, 248, 243, 0.9);
  color: var(--ink);
  font-size: 16px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.18);
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.room-photo-nav:hover {
  background: var(--white);
  color: var(--green);
  transform: translateY(-50%) scale(1.06);
}
.room-photo-nav:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}
.room-photo-nav-prev { left: 12px; }
.room-photo-nav-next { right: 12px; }
.room-badge {
  display: none;
  position: absolute;
  top: 18px; left: 22px;
  z-index: 2;
  background: rgba(9, 65, 30, 0.52);
  border: 1px solid rgba(31, 107, 70, 0.55);
  backdrop-filter: blur(8px);
  color: var(--cream);
  font-size: 11px;
  letter-spacing: .15em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.35);
}
.room-badge-light {
  background: rgba(9, 65, 30, 0.58);
  border-color: rgba(197, 170, 103, 0.45);
  color: var(--cream);
}
.room-number-big {
  position: absolute;
  bottom: 18px; left: 22px;
  z-index: 2;
  font-family: var(--display);
  font-size: 40px;
  font-weight: 500;
  color: var(--cream);
  line-height: .9;
  letter-spacing: -.04em;
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.45);
}
.room-number-big em { font-style: italic; color: var(--gold); font-size: 20px; }
.room-floors {
  position: absolute;
  bottom: 20px; right: 22px;
  z-index: 2;
  font-size: 11px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(245,240,232,.6);
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.45);
}
.room-body { padding: 22px 24px 26px; }
.room-body h3 {
  font-family: var(--display);
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -.01em;
  color: var(--ink);
  margin-bottom: 8px;
}
.room-body h3 em { font-style: italic; color: var(--green); }
.room-card-featured .room-body h3 em { color: var(--gold); }
.room-body p { font-size: 13px; color: #556060; margin-bottom: 16px; font-weight: 300; }

.room-amenities {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 22px;
}
.room-amenities li {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0;
  padding: 4px 9px 4px 6px;
  border: 1px solid rgba(12,15,13,.1);
  border-radius: var(--radius-sm);
  color: #6a7570;
  letter-spacing: .04em;
}
.room-amenity-ic {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  line-height: 0;
  color: inherit;
}
.room-amenity-ic svg {
  width: 13px;
  height: 13px;
  display: block;
}
.room-amenity-txt {
  font-size: 9px;
  letter-spacing: .04em;
  line-height: 1.25;
}
.room-card-featured .room-amenity-ic {
  opacity: 0.95;
}
.room-link {
  font-size: 12px;
  font-weight: 500;
  color: var(--green);
  border-bottom: 1px solid var(--green);
  padding-bottom: 4px;
  letter-spacing: .04em;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap .3s;
}
.room-link:hover { gap: 16px; }

/* ============ EXPERIENCES ============ */
.experiences {
  padding: 120px 0;
  background-color: var(--paper);
  background-image:
    linear-gradient(180deg, rgba(247, 244, 238, 0.93) 0%, rgba(244, 240, 232, 0.91) 100%),
    url("../assets/ALTA RESOLUÇÃO/Gemini_Generated_Image_esbghpesbghpesbg (1).webp");
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
}
.exp-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 20px;
}
.exp-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1px solid rgba(12,15,13,.07);
  transition: transform .3s, box-shadow .3s;
  position: relative;
  overflow: hidden;
}
.exp-card-soon {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 3;
  font-family: var(--body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 7px 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--green-mid) 0%, var(--green) 55%, #05170b 100%);
  color: var(--cream);
  box-shadow: 0 4px 14px rgba(9, 65, 30, 0.28);
  line-height: 1;
}
.exp-card-dark .exp-card-soon {
  background: linear-gradient(135deg, var(--green-light) 0%, #0f4a32 100%);
  color: var(--cream);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}
.exp-card-soon[hidden] {
  display: none !important;
}
.exp-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.exp-card-big {
  grid-column: 1;
  grid-row: 1;
  background-image:
    linear-gradient(135deg, rgba(9, 65, 30, 0.78) 0%, rgba(12, 22, 18, 0.88) 100%),
    url("../assets/fotos di buffet/BUFFET_30 copiar.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-color: rgba(12,15,13,.1);
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #fff;
}
.exp-card-big .exp-card-icon-wrap {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
}
.exp-card-big .exp-card-orb {
  background: radial-gradient(circle, rgba(255, 255, 255, 0.12) 0%, transparent 70%);
}
.exp-card-dark {
  background-image:
    linear-gradient(135deg, rgba(9, 65, 30, 0.78) 0%, rgba(12, 22, 18, 0.88) 100%),
    url("../assets/WhatsApp Image 2026-05-14 at 13.02.11.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-color: transparent;
  color: var(--cream);
  grid-column: 3;
  grid-row: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.exp-card-orb {
  position: absolute;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(232,184,32,.15) 0%, transparent 70%);
  border-radius: 50%;
  top: -60px; right: -60px;
  pointer-events: none;
}
.exp-card-icon-wrap {
  width: 52px; height: 52px;
  background: rgba(9,65,30,.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--green);
  flex-shrink: 0;
}
.exp-card-dark .exp-card-icon-wrap {
  background: rgba(245,240,232,.12);
  color: var(--cream);
}
.exp-card h3 {
  font-family: var(--display);
  font-size: 20px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 12px;
  line-height: 1.2;
  letter-spacing: -.01em;
}
.exp-card p {
  font-size: 14px;
  color: #556060;
  line-height: 1.6;
  font-weight: 300;
}
.exp-card-dark h3 { color: var(--cream); }
.exp-card-dark p { color: rgba(245,240,232,.82); margin-bottom: 24px; }
.exp-card-dark em { color: var(--gold-light); font-style: italic; }
.exp-card.exp-card-big h3 {
  font-size: 22px;
  color: #fff;
}
.exp-card.exp-card-big p {
  color: rgba(255, 255, 255, 0.9);
}
.exp-card.exp-card-big em {
  color: #fff;
  font-style: italic;
}

/* ============ BOOKING ============ */
.booking {
  padding: 120px 0;
  background-image:
    linear-gradient(135deg, rgba(16,31,24,.88) 0%, rgba(12,15,13,.78) 100%),
    url("../assets/ALTA RESOLUÇÃO/_DSC6970.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
}
.booking::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(232,184,32,.12) 0%, transparent 70%);
  border-radius: 50%;
  top: -200px; left: -100px;
  pointer-events: none;
}
.booking-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
  position: relative;
  z-index: 2;
  min-width: 0;
}
.booking-title {
  font-family: var(--display);
  font-size: clamp(30px, 4vw, 50px);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -.02em;
  color: var(--cream);
  margin-bottom: 40px;
}
.booking-title em { font-style: italic; color: var(--gold); }

.booking-benefits {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.booking-benefits li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  color: rgba(245,240,232,.85);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.5;
}
.check {
  width: 28px; height: 28px;
  background: rgba(232,184,32,.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  font-size: 13px;
  flex-shrink: 0;
  margin-top: 2px;
}
.booking-benefits strong {
  display: block;
  color: var(--cream);
  font-weight: 500;
  margin-bottom: 2px;
}

/* Form card */
.booking-form-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 48px;
  box-shadow: var(--shadow-lg);
  min-width: 0;
}
.booking-form-card h3 {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 32px;
  letter-spacing: -.01em;
}
.booking-form { display: flex; flex-direction: column; gap: 16px; min-width: 0; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; min-width: 0; }
.form-group { display: flex; flex-direction: column; gap: 6px; min-width: 0; }
.form-group label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #8a9990;
}
.form-input {
  background: var(--paper);
  border: 1.5px solid rgba(12,15,13,.1);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  font-family: var(--body);
  font-size: 15px;
  color: var(--ink);
  outline: none;
  transition: border-color .3s;
  width: 100%;
  max-width: 100%;
  min-width: 0;
}
/* Data no mobile: largura mínima intrínseca do controle estoura o card sem isto */
.booking-form input[type="date"].form-input {
  flex: 1 1 auto;
  min-width: 0;
}
.form-input:focus { border-color: var(--green); }
.form-note {
  text-align: center;
  font-size: 12px;
  color: #8a9990;
  margin-top: 4px;
  max-width: 100%;
  overflow-wrap: break-word;
}

/* ============ TESTIMONIALS ============ */
.testimonials {
  padding: 120px 0;
  background-color: var(--paper);
  background-image:
    linear-gradient(180deg, rgba(247, 244, 238, 0.93) 0%, rgba(244, 240, 232, 0.91) 100%),
    url("../assets/ALTA RESOLUÇÃO/Gemini_Generated_Image_esbghpesbghpesbg (1).webp");
  background-size: cover;
  background-position: center 45%;
  background-repeat: no-repeat;
}
.testimonials-carousel-header {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-bottom: 22px;
}
.testimonials-control {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(12,15,13,.18);
  border-radius: 50%;
  background: var(--white);
  color: var(--ink);
  font-size: 18px;
  cursor: pointer;
  transition: all .25s ease;
}
.testimonials-control:hover {
  border-color: var(--green);
  color: var(--green);
}
.testimonials-control:disabled {
  opacity: .35;
  cursor: not-allowed;
}
.testimonials-viewport {
  overflow: hidden;
}
.testimonials-track {
  display: flex;
  gap: 24px;
  transition: transform .45s ease;
  will-change: transform;
}
.testimonial-slide {
  flex: 0 0 calc((100% - 48px) / 3);
}
.testimonials-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 22px;
}
.testimonials-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(12,15,13,.25);
  cursor: pointer;
  transition: all .25s ease;
}
.testimonials-dot.active {
  width: 24px;
  border-radius: 999px;
  background: var(--green);
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1px solid rgba(12,15,13,.07);
  display: flex;
  flex-direction: column;
  gap: 24px;
  transition: transform .3s, box-shadow .3s;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.tcard-stars { color: var(--gold); font-size: 16px; letter-spacing: 3px; }
.testimonial-card p {
  font-family: var(--display);
  font-size: 17px;
  font-style: italic;
  line-height: 1.55;
  color: var(--ink);
  font-weight: 400;
  flex: 1;
}
.tcard-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid rgba(12,15,13,.08);
}
.tcard-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--green);
  color: var(--cream);
  font-weight: 600;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.tcard-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}
.tcard-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.02em;
}
.tcard-verified {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #8a9990;
  font-weight: 500;
}

/* ============ LOCALIZAÇÃO + MAPA ============ */
.location-section {
  padding: 120px 0 0;
  background: var(--paper);
}
.location-header {
  margin-bottom: 64px;
}
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 48px;
  align-items: stretch;
}

/* Distâncias */
.distances {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.dist-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid rgba(12,15,13,.07);
  transition: all .3s;
}
.dist-item:hover {
  border-color: var(--sage);
  transform: translateX(4px);
}
.dist-icon { font-size: 20px; flex-shrink: 0; width: 28px; text-align: center; }
.dist-info { flex: 1; }
.dist-info strong { display: block; font-size: 14px; color: var(--ink); font-weight: 500; }
.dist-info span { font-size: 12px; color: #8a9990; }
.dist-val {
  font-family: var(--display);
  font-size: 15px;
  font-style: italic;
  color: var(--green);
  flex-shrink: 0;
  font-weight: 500;
}

/* Mapa */
.map-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  height: 100%;
}
#map {
  height: 100%;
  min-height: 560px;
  width: 100%;
  border-radius: var(--radius-xl);
  z-index: 1;
}
.map-card {
  position: absolute;
  bottom: 24px; left: 24px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  box-shadow: var(--shadow-md);
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 220px;
}
.map-card strong {
  font-family: var(--display);
  font-size: 16px;
  font-style: italic;
  color: var(--ink);
}
.map-card span {
  font-size: 12px;
  color: #8a9990;
}
.map-directions {
  font-size: 12px;
  font-weight: 500;
  color: var(--green);
  letter-spacing: .04em;
  margin-top: 8px;
  transition: color .3s;
}
.map-directions:hover { color: var(--green-mid); }

/* ============ FOOTER ============ */
footer {
  background: var(--ink);
  color: var(--cream);
  padding: 100px 0 40px;
  margin-top: 80px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(245,240,232,.1);
}
.footer-logo {
  margin-bottom: 16px;
}
.footer-logo .brand-logo-img {
  width: 220px;
}
.footer-brand-col p {
  font-size: 14px;
  opacity: .6;
  line-height: 1.65;
  font-weight: 300;
  margin-bottom: 28px;
}
.footer-social {
  display: flex;
  gap: 12px;
}
.footer-social a {
  width: 36px; height: 36px;
  border: 1px solid rgba(245,240,232,.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream);
  opacity: .65;
  transition: all .3s;
}
.footer-social a:hover {
  opacity: 1;
  border-color: var(--gold);
  color: var(--gold);
}
.footer-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}
.footer-col h4 {
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin: 0 0 20px;
  padding: 0;
  font-weight: 500;
  text-align: left;
  width: 100%;
}
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--footer-col-gap);
  margin: 0;
  padding: 0;
  padding-inline-start: 0;
  width: 100%;
}
.footer-col ul li {
  margin: 0;
  padding: 0;
  width: 100%;
}
.footer-col a {
  display: block;
  font-size: 14px;
  color: var(--cream);
  opacity: .6;
  font-weight: 300;
  line-height: 1.45;
  transition: opacity .3s;
}
.footer-col a:hover { opacity: 1; }
.footer-col address {
  font-style: normal;
  font-size: 14px;
  color: var(--cream);
  opacity: .6;
  font-weight: 300;
  margin: 0;
  padding: 0;
  width: 100%;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: var(--footer-col-gap);
  line-height: 1.45;
}
.footer-addr-line {
  display: block;
  margin: 0;
  padding: 0;
}
.footer-col address a { opacity: 1; display: block; }
.footer-col address a:hover { color: var(--gold-light); }

.footer-bottom {
  padding-top: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px 28px;
  text-align: center;
}
.footer-bottom-main {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  max-width: 100%;
}
.footer-copy {
  margin: 0;
  font-size: 15px;
  color: var(--cream);
  opacity: 0.82;
  line-height: 1.55;
  letter-spacing: 0.02em;
  text-align: center;
  max-width: 56rem;
}
.footer-trace {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-shrink: 0;
}
.footer-trace-label {
  font-size: 15px;
  color: var(--cream);
  opacity: 0.65;
  white-space: nowrap;
  letter-spacing: 0.04em;
}
.footer-trace-link {
  display: flex;
  align-items: center;
  line-height: 0;
  opacity: 0.92;
  transition: opacity 0.25s ease;
}
.footer-trace-link:hover {
  opacity: 1;
}
.footer-trace-logo {
  display: block;
  height: 30px;
  width: auto;
  max-width: min(170px, 42vw);
  object-fit: contain;
}

/* ============ LEAFLET CUSTOM ============ */
.leaflet-container { font-family: var(--body); }
.leaflet-popup-content-wrapper {
  border-radius: var(--radius-md) !important;
  box-shadow: var(--shadow-md) !important;
  font-family: var(--body);
}
.leaflet-popup-content { font-size: 14px; color: var(--ink); }
.leaflet-popup-tip-container { display: none; }

/* ============ RESPONSIVO ============ */
@media (max-width: 1100px) {
  .hero-inner { gap: 40px; }
  .about-grid { grid-template-columns: 1fr; gap: 60px; }
  .about-text-col { order: -1; }
  .exp-grid { grid-template-columns: 1fr 1fr; }
  .exp-card-big { grid-column: 1 / -1; grid-row: auto; }
  .exp-card-dark { grid-column: auto; grid-row: auto; }
  .booking-inner { grid-template-columns: 1fr; gap: 60px; }
  .location-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
  .testimonial-slide { flex: 0 0 calc((100% - 24px) / 2); }
}
@media (max-width: 768px) {
  .container { padding: 0 24px; }
  nav { padding: 14px 24px; }
  nav.scrolled { padding: 10px 24px; }
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-trailing { gap: 12px; }
  .nav-lang { gap: 8px; }
  .nav-lang-btn { width: 40px; height: 30px; }
  .menu-toggle { display: flex; }
  .logo .brand-logo-img { width: 152px; }
  .footer-logo .brand-logo-img { width: 168px; }
  .hero-inner { padding: 120px 24px 60px; }
  .testimonial-slide { flex: 0 0 100%; }
  section { padding: 80px 0; }
  .about, .rooms, .experiences, .booking, .testimonials, .location-section { padding: 80px 0; }
  .exp-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 36px; }
  .rooms-carousel-stage { gap: 8px; }
  .rooms-child-policy-row { gap: 8px; }
  .rooms-control { width: 38px; height: 38px; font-size: 16px; }
  .rooms-control-spacer { width: 38px; }
  .testimonials-carousel-header { margin-bottom: 16px; }
  #map { height: 380px; }
  .booking-form-card { padding: 32px 24px; }
  .about-carousel-wrap { min-height: 260px; }
}
@media (max-width: 480px) {
  .form-row { grid-template-columns: 1fr; }
  .about-stats-row { grid-template-columns: 1fr; gap: 0; }
  .footer-copy { font-size: 13px; }
  .footer-trace-label { font-size: 13px; }
  .footer-trace-logo { height: 26px; max-width: min(150px, calc(100vw - 170px)); }
}
