/* ==============================================
   SKY GURUME – CSS PRINCIPAL
   Organização: Base → Layout → Componentes → Seções
   ============================================== */

/* --- RESET & BASE --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  /* Cores */
  --color-bg:          #0a0a0a;
  --color-surface:     #111111;
  --color-surface-2:   #1a1a1a;
  --color-gold:        #e8cd1e;
  --color-gold-light:  #e0c06a;
  --color-gold-dark:   #a07830;
  --color-text:        #f0ede6;
  --color-text-muted:  #999080;
  --color-white:       #ffffff;
  --color-border:      rgba(201, 168, 76, 0.2);

  /* Tipografia */
  --font-display: 'Playfair Display', serif;
  --font-body:    'Montserrat', sans-serif;

  /* Espaçamentos */
  --space-xs:  0.5rem;
  --space-sm:  1rem;
  --space-md:  2rem;
  --space-lg:  4rem;
  --space-xl:  6rem;
  --space-2xl: 8rem;

  /* Outros */
  --border-radius: 6px;
  --transition: 0.3s ease;
  --max-width: 1200px;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 20px;
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}
.img-casal {
  object-position: center 20% !important; /* ajusta a posição */
}
a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

/* --- CONTAINER --- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

/* --- SECTION TITLE --- */
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 600;
  color: var(--color-white);
  text-align: center;
  margin-bottom: var(--space-lg);
  line-height: 1.25;
}
/* 🔥 Linha dourada acima do título */
.section-title::before {
  content: '';
  display: block;
  width: 80px;
  height: 2px;
  background: var(--color-gold);
  margin: 0 auto 1.5rem;
}

/* --- BUTTONS --- */
.btn {
  display: inline-block;
  padding: 0.75rem 1.75rem;
  border-radius: var(--border-radius);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn--primary {
  background-color: var(--color-gold);
  color: var(--color-bg);
  border-color: var(--color-gold);
}
.btn--primary:hover {
  background-color: var(--color-gold-light);
  border-color: var(--color-gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201, 168, 76, 0.35);
}

.btn--outline {
  background-color: transparent;
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.6);
}
.btn--outline:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: var(--color-white);
}

.btn--sm {
  padding: 0.6rem 1.2rem;
  font-size: 0.78rem;
}

/* ============================================
   HEADER / NAVIGATION
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 2rem 0;
  transition: background var(--transition), padding var(--transition), box-shadow var(--transition);
}

/* Scrolled state – added by JS */
.header.is-scrolled {
  background-color: rgba(10, 10, 10, 0.308);
  backdrop-filter: blur(10px);
  padding: 0.75rem 0;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding-left: -10rem;
  overflow-x: visible;
}

.header__logo img {
  height: 120px;
  width: auto;
  margin-left: -0rem;
  position: relative;
  left: -80px;
  max-width: 100%;
  
  /* Fallback logo text if image not loaded */
}

/* Fallback logo – shows "sky GURUME" text if image missing */
.header__logo::after {
  content: '';
}

.header__nav-list {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.header__nav-link {
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.85);
  transition: color var(--transition);
  position: relative;
}

.header__nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-gold);
  transition: width var(--transition);
}

.header__nav-link:hover {
  color: var(--color-gold);
}
.header__nav-link:hover::after {
  width: 100%;
}

/* CTA nav button */
.header__nav-link--cta {
  background: transparent;
  border: 1.5px solid var(--color-gold);
  border-radius: var(--border-radius);
  color: var(--color-gold);
  padding: 0.45rem 1.1rem;
  font-size: 1.5rem;
}
.header__nav-link--cta:hover {
  background: var(--color-gold);
  color: var(--color-bg);
}
.header__nav-link--cta::after { display: none; }

/* Hamburger */
.header__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.header__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-white);
  transition: all var(--transition);
}
.header__hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.header__hamburger.is-open span:nth-child(2) { opacity: 0; }
.header__hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  left: 10%;
}

.hero__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 70% center !important;
}



.hero__content {
  position: relative;
  z-index: 1;
  padding-top: 10rem;
  padding-bottom: 4rem;
  max-width: 600px;
  text-align: left;
  margin-left: 0;
  margin-right: auto;
}

.hero__eyebrow {
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: var(--color-text-muted);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 8vw, 6rem);
  font-weight: 700;
  line-height: 1;
  color: var(--color-white);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 0.25rem;
  display: block;        /* ← adiciona */
  white-space: nowrap;   /* ← impede quebra de linha */
}

.hero__title--accent {
  color: var(--color-gold);
  display: inline !important;  /* ← força inline */
}

.hero__subtitle {
  font-size: 1.5rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.75);
  margin-top: 1.2rem;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: flex-start;
}

/* ============================================
   PHOTO GALLERY STRIP
   ============================================ */
.gallery {
  background: var(--color-surface);
  padding: 0;
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: 160px 160px;
  gap: 3px;
}

.gallery__item {
  overflow: hidden;
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery__item:hover img {
  transform: scale(1.06);
}

/* Tall item spans 2 rows */
.gallery__item--tall {
  grid-row: span 2;
}

/* Wide item spans 2 columns */
.gallery__item--wide {
  grid-column: span 2;
}

/* ============================================
   FEATURES SECTION
   ============================================ */
.features {
  background: var(--color-bg);
  padding: var(--space-xl) 0;
  position: relative;
}

/* Subtle gold accent line at top */
.features::before {
  content: '';
  display: block;
  width: 60px;
  height: 2px;
  background: var(--color-gold);
  margin: 0 auto 3rem;
}

.features__title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 5rem);
  font-weight: 400;
  text-align: center;
  color: var(--color-white);
  line-height: 1.3;
  margin-bottom: var(--space-lg);
}

.features__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.features__item {
  text-align: center;
  padding: 1.5rem 1rem;
}

.features__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-border);
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.05);
}

.features__item-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: 0.6rem;
}

.features__item-text {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  line-height: 1.65;
}

/* ============================================
   FESTIVAL PREMIUM
   ============================================ */
.festival {
  background: #0d0d0d;
  overflow: hidden;
}

.festival__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 620px;
  max-width: 100%;
}

/* Imagem lado esquerdo */
.festival__image {
  overflow: hidden;
  position: relative;
}

.festival__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Conteúdo lado direito */
.festival__content {
  background: #0d0d0d;
  padding: 5rem 4.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Linha dourada + label "FESTIVAL" */
.festival__header {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.festival__gold-line {
  display: block;
  width: 36px;
  height: 2px;
  background: var(--color-gold);
}

.festival__label {
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-gold);
}

/* Título "Premium" */
.festival__title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5.5vw, 5rem);
  font-weight: 400;
  font-style: normal;
  color: var(--color-white);
  line-height: 1;
  margin-bottom: 1.25rem;
}

/* Descrição */
.festival__desc {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

/* Lista de itens */
.festival__list {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  margin-bottom: 3rem;
}

.festival__list-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.festival__list-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--color-gold);
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.06);
}

.festival__list-item strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-gold);
  margin-bottom: 0.3rem;
}

.festival__list-item p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.55;
  margin: 0;
}

/* Botão Reservar Mesa */
.btn--festival {
  display: inline-block;
  background: var(--color-gold);
  color: #000;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  align-self: flex-start;
  letter-spacing: 0.02em;
}

.btn--festival:hover {
  background: var(--color-gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201, 168, 76, 0.4);
}

/* --- Responsivo --- */
@media (max-width: 768px) {
  .festival__inner {
    grid-template-columns: 1fr;
  }

  .festival__image {
    height: 320px;
  }

  .festival__content {
    padding: 2.5rem 1.5rem;
  }

  .btn--festival {
    width: 100%;
    text-align: center;
  }
}

/* ============================================
   BIRTHDAY / ANIVERSÁRIOS
   ============================================ */
.birthday {
  position: relative;
  min-height: 580px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Imagem de fundo ocupando tudo */
.birthday__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.birthday__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  display: block;
}

/* Overlay: preto sólido à esquerda, transparente à direita */
.birthday__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.97) 0%,
    rgba(0, 0, 0, 0.92) 25%,
    rgba(0, 0, 0, 0.75) 45%,
    rgba(0, 0, 0, 0.3)  65%,
    rgba(0, 0, 0, 0.1)  100%
  );
}

/* Conteúdo sobre o overlay */
.birthday__content {
  position: relative;
  z-index: 1;
  max-width: 520px;
  padding-top: 5rem;
  padding-bottom: 5rem;
  padding-left: 4rem;
  padding-right: 2rem;
  text-align: left;
  margin-left: 0;
  margin-right: auto;
}

.birthday__label {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 0.75rem;
}

/* Linha dourada acima do label */
.birthday__label::before {
  content: '';
  display: block;
  width: 32px;
  height: 2px;
  background: var(--color-gold);
  margin-bottom: 0.6rem;
}

.birthday__title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.05;
  margin-bottom: 1.25rem;
}

.birthday__desc {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
  margin-bottom: 2rem;
}

/* Lista com ícones */
.birthday__list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.birthday__list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.85);
}

.birthday__check {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* --- Responsivo --- */
@media (max-width: 768px) {
  .birthday {
    min-height: auto;
  }

  .birthday__bg-img {
    object-position: center center;
  }

  .birthday__overlay {
    background: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.92) 0%,
      rgba(0, 0, 0, 0.80) 60%,
      rgba(0, 0, 0, 0.65) 100%
    );
  }

  .birthday__content {
    max-width: 100%;
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
    
  }

  .btn--festival {
    width: 100%;
    text-align:left;
  }
}

/* ============================================
   MENU HIGHLIGHTS
   ============================================ */
.menu-highlights {
  background: var(--color-surface);
  padding: var(--space-xl) 0;
  
}

.menu-highlights__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.1rem;
  margin-bottom: var(--space-md);
}

.menu-highlights__item {
  text-align: center;
  max-width: 300px;
  align-items: center;
}

.menu-highlights__image {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  margin-bottom: 1.2rem;
  border-radius: 12px;                  /* borda um pouco mais arredondada */
  padding: 0px;                         /* espaço entre borda e imagem */
  background: var(--color-gold);        /* fundo dourado */
  animation: golden-glow 2s infinite;   /* brilho pulsando infinito */
  transition: all 0.3s ease;
}
.menu-highlights__image:hover {
  animation: golden-glow 1s infinite;
  transform: scale(1.02);
}

.menu-highlights__image img {
  width: 100%;
  height: 100%;
  
  object-fit: cover;
  transition: transform 0.4s ease;
}

.menu-highlights__item:hover .menu-highlights__image img {
  transform: scale(1.05);
}

.menu-highlights__name {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: 0.4rem;
  text-align: center;
}

.menu-highlights__desc {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

.menu-highlights__cta {
  text-align: center;
  margin-top: var(--space-md);
  margin-left: -5rem;
  font-size: 1.2rem;
}

/* ============================================
   REVIEWS / TESTIMONIALS
   ============================================ */
/* ============================================
   REVIEWS / DEPOIMENTOS
   ============================================ */
.reviews {
  background: var(--color-bg);
  padding: var(--space-xl) 0;
  overflow: hidden;
}

/* Título com palavra dourada */
.reviews__title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 400;
  color: var(--color-white);
  text-align: center;
  margin-bottom: 3rem;
  line-height: 1.3;
}

.reviews__title-accent {
  color: var(--color-gold);
 
}

/* Carrossel container */
.reviews-carousel {
  overflow-x: auto !important;
  overflow-y: visible;
  scrollbar-width: none;
  cursor: grab;
  padding: 0 2rem 1rem;
  display: block;
  width: 100%;
}

.reviews-carousel:active {
  cursor: grabbing;
}

/* Track deslizante */
.reviews-carousel__track {
  display: flex;
  gap: 1.25rem;
  transition: transform 0.4s ease;
  will-change: transform;
  padding: 1rem 0.5rem 1.5rem;
}

/* Card individual */
.reviews__card {
  flex: 0 0 280px;
  background: #1a1a1a;
  border-radius: 20px;
  padding: 1.75rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 200px;
  position: relative;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
  user-select: none;
}

/* Estrelas */
.reviews__stars {
  color: var(--color-gold);
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

/* Texto do depoimento */
.reviews__text {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 1.25rem;
  font-style: normal;
}
/* Cor dourada para palavras específicas */
.text-gold {
  color: var(--color-gold);
}


/* Footer do card: nome + aspas */
.reviews__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Tag do autor */
.reviews__author {
  display: inline-block;
  background: #2a2a2a;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.8rem !important;
  font-weight: 500;
  padding: 0.2rem 0.4rem;
  border-radius: 50px;
}

/* Aspas decorativas */
.reviews__quote {
  font-family: 'Times New Roman', Times, serif;
  font-size: 8rem !important;
  color: rgba(255, 255, 255, 0.12);
  line-height: 1;
  margin-top: 0.5rem;
  font-weight: 900;
}

/* Botão CTA */
.reviews__cta {
  text-align: center;
  margin-top: 2.5rem;
}

/* --- Responsivo --- */
@media (max-width: 768px) {
  .reviews-carousel {
    margin: 0 -1.25rem;
    padding: 0 1.25rem;
  }

  .reviews__card {
    flex: 0 0 260px;
  }
}
/* ============================================
   CTA FINAL
   ============================================ */
.cta-final {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #000;
}

/* Container das duas imagens lado a lado como fundo */
.cta-final__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: flex;
}

.cta-final__bg-left,
.cta-final__bg-right {
  width: 50%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  filter: brightness(0.55);
}

.cta-final__bg-left {
  object-position: left top;
}

.cta-final__bg-right {
  object-position: right top;
}

.cta-final {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.cta-final__bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  z-index: 0;
}

.cta-final__content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 5rem 2rem;
  max-width: 620px;
}

.cta-final__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

.cta-final__text {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: #0a0a0a;
  border-top: 1px solid rgba(201, 168, 76, 0.15);
}

/* Grid principal */
.footer__main {
  display: flex;
  align-items: flex-start;
  gap: 0;
  padding-top: 4rem;
  padding-bottom: 4rem;
}

/* Logo */
.footer__brand {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-right: 3.5rem;
  min-width: 180px;
}

.footer__logo {
  height: 150px;
  width: auto;
}

/* Separador vertical dourado */
.footer__divider {
  width: 1px;
  align-self: stretch;
  background: rgba(201, 168, 76, 0.4);
  margin: 0 3rem;
  flex-shrink: 0;
}

/* Colunas */
.footer__col {
  flex: 1;
  min-width: 140px;
}

.footer__heading {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--color-gold);
  margin-bottom: 1.5rem;
}

.footer__list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer__list li,
.footer__list a {
  font-size: 0.97rem;
  color: rgba(255, 255, 255, 0.75);
  transition: color var(--transition);
  line-height: 1.5;
}

.footer__list a:hover {
  color: var(--color-gold);
}

/* Linha CTA */
.footer__cta {
  border-top: 1px solid rgba(201, 168, 76, 0.15);
  border-bottom: 1px solid rgba(201, 168, 76, 0.15);
  padding: 1.75rem 0;
}

.footer__cta-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.footer__cta-text {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 400;
}

/* Copyright */
.footer__bottom {
  text-align: center;
  padding: 1.5rem 0;
}

.footer__bottom p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.35);
}

/* --- Responsivo --- */
@media (max-width: 768px) {
  .footer__main {
    flex-direction: column;
    gap: 2rem;
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .footer__brand {
    padding-right: 0;
    justify-content: flex-start;
  }

  .footer__divider {
    display: none;
  }

  .footer__cta-inner {
    flex-direction: column;
    text-align: center;
  }

  .btn--festival {
    width: 100%;
    text-align: center;
  }
}

/* ============================================
   GOLD DIVIDER / DECORATIVE LINE
   ============================================ */
.gold-line {
  display: block;
  width: 50px;
  height: 2px;
  background: linear-gradient(to right, var(--color-gold), transparent);
  margin: 1rem 0;
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.7s ease forwards;
}

.fade-in-up--delay-1 { animation-delay: 0.15s; }
.fade-in-up--delay-2 { animation-delay: 0.3s; }
.fade-in-up--delay-3 { animation-delay: 0.45s; }

/* Observe-based animation class */
.anim-hidden {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.anim-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   RESPONSIVE BREAKPOINTS
   ============================================ */

/* --- Tablet (≤1024px) --- */
@media (max-width: 1024px) {

  .features__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .gallery__grid {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 150px 150px 150px;
  }

  .gallery__item--tall {
    grid-row: span 1;
  }

  .gallery__item--wide {
    grid-column: span 1;
  }

  .festival__content {
    padding: 3rem 2.5rem;
  }

  .birthday__content {
    padding: 3rem 2.5rem;
  }

  .footer__inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

/* --- Mobile (≤768px) --- */
@media (max-width: 768px) {

  /* Nav */
  .header__nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 75%;
    max-width: 300px;
    height: 100vh;
    background: var(--color-surface);
    padding: 5rem 2rem 2rem;
    transition: right 0.35s ease;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.5);
    z-index: 999;
  }

  .header__nav.is-open {
    right: 0;
  }

  .header__nav-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.75rem;
  }

  .header__nav-link {
    font-size: 1rem;
  }

  .header__hamburger {
    display: flex;
    z-index: 1001;
  }

  /* Nav overlay */
  .nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 998;
  }

  .nav-overlay.is-visible {
    display: block;
  }

  /* Hero */
  .hero__content {
    max-width: 100%;
    padding-top: 7rem;
  }

  .hero__overlay {
    background: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.6) 0%,
      rgba(0, 0, 0, 0.75) 100%
    );
  }

  /* Gallery */
  .gallery__grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(4, 130px);
  }

  /* Features */
  .features__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  /* Festival */
  .festival__inner {
    grid-template-columns: 1fr;
  }

  .festival__image {
    height: 280px;
  }

  .festival__content {
    padding: 2.5rem 1.5rem;
  }

  /* Birthday */
  .birthday__inner {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .birthday__image {
    order: -1;
    height: 260px;
  }

  .birthday__content {
    padding: 2.5rem 1.5rem;
  }

  /* Menu */
  .menu-highlights__grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }

  /* Reviews */
  .reviews__grid {
    grid-template-columns: 1fr;
    max-width: 450px;
    margin-left: auto;
    margin-right: auto;
  }

  /* Footer */
  .footer__inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* --- Small mobile (≤480px) --- */
@media (max-width: 480px) {
  .hero__actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .btn {
    width: auto;
  }

  .gallery__grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(3, 110px);
  }

  .features__grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   UTILITY
   ============================================ */
.br-desktop {
  display: inline;
}

@media (max-width: 640px) {
  .br-desktop {
    display: none;
  }
}

/* Placeholder image style */
.img-placeholder {
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.imagem-secao {
  width: 100%;
}

.imagem-secao img {
  width: 100%;
  height: auto;
  display: block;
}
/* ============================================
   GALERIA GRID – Seção de fotos estilo colagem
   ============================================ */
.galeria-grid {
  background-color: #000;
  padding: 2rem;
}

.galeria-grid__inner {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 12px;
  max-width: 1400px;
  margin: 0 auto;
}

/* Todas as imagens com borda arredondada e borda dourada */
.galeria-grid__item {
  overflow: hidden;
  border-radius: 18px;
  border: 1.5px solid var(--color-gold);
  position: relative;
}

.galeria-grid__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.4s ease;
  position: absolute;
  top: 0;
  left: 0;
}

.galeria-grid__item:hover img {
  transform: scale(1.04);
}

/* Coluna esquerda – 2 fotos empilhadas */
.galeria-grid__col--left {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.galeria-grid__col--left .galeria-grid__item--tall {
  flex: 1.4;
  min-height: 0;
}

.galeria-grid__col--left .galeria-grid__item:not(.galeria-grid__item--tall) {
  flex: 1;
  min-height: 0;
}

/* Coluna centro – 1 grande em cima + 2 lado a lado embaixo */
.galeria-grid__col--center {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.galeria-grid__item--wide {
  flex: 1.2;
  min-height: 0;
}

.galeria-grid__col--center-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  flex: 1;
}

.galeria-grid__col--center-bottom .galeria-grid__item {
  height: 100%;
}

/* Coluna direita – 1 foto alta ocupando tudo */
.galeria-grid__col--right {
  display: flex;
}

.galeria-grid__item--full {
  flex: 1;
  min-height: 300px;
}

/* Altura total do grid */
.galeria-grid__inner {
  height: 680px;
}

/* --- Responsivo --- */
@media (max-width: 768px) {
  .galeria-grid__inner {
    grid-template-columns: 1fr 1fr;
    height: auto;
  }

  .galeria-grid__col--right {
    display: none; /* oculta coluna direita no mobile */
  }

  .galeria-grid__item--full,
  .galeria-grid__item--tall,
  .galeria-grid__item--wide {
    min-height: 180px;
  }
}

@media (max-width: 480px) {
  .galeria-grid__inner {
    grid-template-columns: 1fr;
    height: auto;
  }

  .galeria-grid__col--center-bottom {
    grid-template-columns: 1fr 1fr;
  }
}
/* ============================================
   CARROSSEL DE REVIEWS
   ============================================ */

.reviews-carousel {
  position: relative;
  overflow: hidden;
  margin: 2rem 0;
}

.reviews-carousel__track {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.5s ease;
  will-change: transform;
}

.reviews-carousel__track .reviews__card {
  flex: 0 0 calc(25% - 1.125rem);  /* 4 cards por padrão */
  min-width: 0;
  margin: 0;
}

/* Botões de navegação */
.carousel__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  color: var(--color-gold);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  z-index: 10;
}

.carousel__btn:hover {
  background: var(--color-gold);
  color: var(--color-bg);
  border-color: var(--color-gold);
}

.carousel__btn--prev {
  left: -20px;
}

.carousel__btn--next {
  right: -20px;
}

/* Indicadores (dots) */
.carousel__dots {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 2rem;
}

.carousel__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-text-muted);
  cursor: pointer;
  transition: all var(--transition);
  border: none;
  padding: 0;
}

.carousel__dot.active {
  width: 24px;
  border-radius: 5px;
  background: var(--color-gold);
}

.carousel__dot:hover {
  background: var(--color-gold-light);
}

/* Responsivo */
@media (max-width: 1024px) {
  .reviews-carousel__track .reviews__card {
    flex: 0 0 calc(33.333% - 1rem); /* 3 cards no tablet */
  }
  
  .carousel__btn--prev { left: -10px; }
  .carousel__btn--next { right: -10px; }
}

@media (max-width: 768px) {
  .reviews-carousel__track .reviews__card {
    flex: 0 0 calc(50% - 0.75rem); /* 2 cards no mobile */
  }
  
  .carousel__btn {
    width: 32px;
    height: 32px;
  }
}

@media (max-width: 480px) {
  .reviews-carousel__track .reviews__card {
    flex: 0 0 100%; /* 1 card no mobile pequeno */
  }
  
  .carousel__btn--prev { left: 0; }
  .carousel__btn--next { right: 0; }
}
/* ============================================
   AUMENTO GLOBAL DE TEXTOS (menos títulos)
   ============================================ */
p:not(.hero__eyebrow):not(.hero__subtitle),
li:not(.header__nav-list li),
span:not(.hero__title--accent):not(.festival__label):not(.birthday__label),
.reviews__text,

.festival__desc,
.festival__list-item p,
.birthday__desc,
.birthday__list li,
.features__item-text,
.menu-highlights__desc,
.footer__list li,
.footer__tagline,
.footer__bottom p,
.cta-final__text {
  font-size: 1.1rem;  /* Aumenta 10% */
}
/* Efeito de brilho dourado pulsante */
@keyframes golden-glow {
  0% {
    box-shadow: 0 0 0 0 rgba(201, 168, 76, 0.3);
  }
  50% {
    box-shadow: 0 0 20px 8px rgba(201, 168, 76, 0.6);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(201, 168, 76, 0.3);
  }
}
/* Scroll horizontal no track */
.reviews-carousel__track {
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.reviews-carousel__track::-webkit-scrollbar {
  display: none;
}

.reviews__card {
  scroll-snap-align: start;
}
.features__images {
  display: none;
}
.cta-final__mobile-img {
  display: none;
}
/* Animação galeria */
.galeria-grid {
  position: relative;
}

.galeria-grid__inner {
  transition: opacity 1s ease;
}

.galeria-grid__inner--grupo-2 {
  position: absolute;
  top: 30px;
  left: 60px;
  width: 100%;
  height: 100%;
  opacity: 0;
}

.galeria-grid__inner--grupo-1.fade-out {
  opacity: 0;
}

.galeria-grid__inner--grupo-2.fade-in {
  opacity: 1;
}
/* ============================================
   CARROSSEL DE REVIEWS - ESTILOS
   ============================================ */

.reviews-carousel {
  position: relative;
  overflow: hidden;
  margin: 2rem 0;
  cursor: grab;
}

.reviews-carousel:active {
  cursor: grabbing;
}

.reviews-carousel__track {
  display: flex;
  gap: 1.25rem;
  transition: transform 0.5s ease;
  will-change: transform;
  padding: 0.5rem 0;
}

.reviews__card {
  flex: 0 0 auto;
  width: 280px;
  background: #1a1a1a;
  border-radius: 20px;
  padding: 1.75rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 220px;
  position: relative;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
  user-select: none;
  scroll-snap-align: start;
}

/* Responsivo - quantidade de cards visíveis */
@media (max-width: 1024px) {
  .reviews__card {
    width: calc(33.333% - 0.85rem);
    min-width: 260px;
  }
}

@media (max-width: 768px) {
  .reviews__card {
    width: calc(50% - 0.65rem);
    min-width: 240px;
  }
}

@media (max-width: 480px) {
  .reviews__card {
    width: calc(100% - 0rem);
    min-width: auto;
  }
}

/* Esconder scrollbar */
.reviews-carousel__track {
  overflow-x: visible;
  scrollbar-width: none;
}

.reviews-carousel__track::-webkit-scrollbar {
  display: none;
}
.hero__bg-img--mobile {
  display: none;
}