/* ==========================================================================
   ESTILO PRINCIPAL — Hotel / Reservas
   Estrutura:
     1. Fonte customizada
     2. Reset e base
     3. Header e navegação
     4. Hero (seção principal)
        4a. Background e layout
        4b. Container de texto
        4c. Lateral de reserva
     5. Seção de localização
     6. Utilitários
     7. Responsivo
        7a. Tablet (≤ 1024px)
        7b. Mobile  (≤ 768px)
   ========================================================================== */

/* ==========================================================================
   1. FONTE CUSTOMIZADA
   ========================================================================== */

* {
  --libre: "Libre Caslon Display";
}

@font-face {
  font-family: "Noah";
  src: url(../fonts/Noah-Regular.ttf);
}

/* ==========================================================================
   2. RESET E BASE
   ========================================================================== */

* {
  font-family: "Noah";
  margin: 0;
  box-sizing: border-box;
}

body {
  overflow-x: hidden;
}

img {
  width: 165px;
}

/* ==========================================================================
   3. HEADER E NAVEGAÇÃO
   ========================================================================== */

/* Barra de topo — posicionada de forma absoluta sobre o hero */
header {
  display: flex;
  background-color: transparent;
  flex-direction: row;
  justify-content: space-between;
  padding: 32px 200px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

header a:hover {
  color: #c19d60;
}

/* Links de navegação alinhados à direita */
.navigation {
  display: flex;
  flex-direction: row;
  gap: 24px;
  margin-left: auto;
}

.navigation a {
  text-decoration: none;
  font-size: 13px;
  font-weight: 400;
  color: white;
}

/* Link ativo destacado em dourado */
.navigation .active {
  color: #c19d60;
}

/* ==========================================================================
   4. HERO (SEÇÃO PRINCIPAL)
   ========================================================================== */

.hero {
  width: 100%;
}

/* --- 4a. Background e layout --- */

/* Fundo com overlay escuro sobre a imagem de capa */
.hero .bg {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 800px;
  position: relative;
  background:
    linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url("../img/hero.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  overflow: hidden;
}

/* --- 4b. Container de texto central --- */

.hero .container {
  color: white;
  text-align: center;
}

/* Subtítulo superior em caixa-alta com espaçamento de letras */
.container h6 {
  text-transform: uppercase;
  margin: 0;
  letter-spacing: 7px;
  font-size: 12px;
  font-weight: 50px;
}

/* Título principal — usa fonte serifada */
.container h1 {
  margin: 0;
  font-size: 70px;
  margin-bottom: 15px;
  font-family: "Libre Caslon Display";
  font-weight: 400;
}

/* Subtítulo secundário */
.container h2 {
  margin: 0;
  margin-bottom: 20px;
  letter-spacing: 7px;
  font-weight: 400;
}

/* Botão de chamada para ação */
.container .button {
  display: inline-block;
  background-color: #00afdf;
  font-size: 17px;
  cursor: pointer;
  padding: 12px 25px;
  text-transform: uppercase;
  letter-spacing: 3px;
  border: 1px solid #ffffff;
}

/* Hover: muda para dourado */
.container .button:hover {
  border: 1px solid #c19d60;
  background-color: #c19d60;
}

/* --- 4c. Lateral de reserva (texto vertical no lado esquerdo) --- */

/* Faixa lateral com texto rotacionado */
.hero .bg .reservation {
  writing-mode: vertical-lr;
  text-orientation: sideways;
  transform: rotate(180deg);
  margin: 0;
  position: absolute;
  top: 0;
  left: 40px;
  position: absolute;
  height: 60%;
  z-index: 9;
}

/* Bloco de chamada com número de telefone / cidade */
.hero .bg .reservation .call {
  color: #00afdf;
  text-transform: uppercase;
  font-family: "Noah", sans-serif;
  font-weight: 400;
  letter-spacing: 3px;
  font-size: 12px;
  line-height: 1.75em;
  margin-top: 15px;
}

/* Cada item da chamada em bloco separado */
.call span {
  display: block;
}

/* Nome da cidade em destaque com fonte serifada */
.call .city {
  color: white;
  font-size: 27px;
  font-family: "Libre Caslon Display";
}

/* ==========================================================================
   5. SEÇÃO DE LOCALIZAÇÃO
   ========================================================================== */

/* Layout flex: informações à esquerda, imagem à direita */
.location {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #00afdf;
  padding: 60px 80px;
}

/* Wrapper interno: limita largura máxima e distribui texto e imagem lado a lado */
.container2 {
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Bloco de texto com endereço */
.container2 .informacoes {
  color: white;
  flex: 1;
  text-align: center;
}

/* Título da localização */
.container2 .informacoes h2:first-child {
  font-family: "Adamina";
  font-size: 30px;
  font-weight: 300;
  margin-bottom: 20px;
}

/* Detalhes do endereço */
.container2 .informacoes h2:last-child {
  font-family: "Inter";
  font-size: 16px;
  font-weight: 300;
  line-height: 2;
  letter-spacing: 1px;
}

/* Keyframes de saída */
@keyframes exitLeft {
  from {
    opacity: 1;
    transform: translateX(0);
  }
  to {
    opacity: 0;
    transform: translateX(-60px);
  }
}
@keyframes exitRight {
  from {
    opacity: 1;
    transform: translateX(0);
  }
  to {
    opacity: 0;
    transform: translateX(60px);
  }
}

/* Keyframes de entrada */
@keyframes enterFromRight {
  from {
    opacity: 0;
    transform: translateX(60px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes enterFromLeft {
  from {
    opacity: 0;
    transform: translateX(-60px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Classes aplicadas via JavaScript */
.slide-exit-left {
  animation: exitLeft 0.3s ease forwards;
}
.slide-exit-right {
  animation: exitRight 0.3s ease forwards;
}
.slide-enter-right {
  animation: enterFromRight 0.3s ease forwards;
}
.slide-enter-left {
  animation: enterFromLeft 0.3s ease forwards;
}

/* Slider de imagens: botão | imagem | botão em linha */
.slide {
  flex: 2;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.slide img {
  flex: 1;
  height: 400px;
  object-fit: cover;
  display: block;
  cursor: pointer;
  will-change: transform;
  /* transition só para o reset suave ao tirar o mouse */
  transition: box-shadow 0.3s ease;
}

/* Botões de navegação do slider */
.slider-btn {
  background: none;
  border: none;
  color: white;
  font-size: 48px;
  cursor: pointer;
  line-height: 1;
  padding: 0;
  flex-shrink: 0;
  opacity: 0.8;
  transition: opacity 0.2s ease;
}

.slider-btn:hover {
  opacity: 1;
}

/* ==========================================================================
   6. SEÇÃO DE JANTAR
   ========================================================================== */

/* Layout principal: texto à esquerda, imagens à direita */
.jantar {
  background-color: #ffffff;
}

.container3 {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 60px;
  padding: 100px 80px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Coluna de texto */
.jantar-texto {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Subtítulo em teal, caixa-alta */
.jantar-texto h6 {
  color: #c19d60;
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 12px;
  font-weight: 400;
}

/* Título principal em fonte serifada */
.jantar-texto h5 {
  font-family: "Libre Caslon Display";
  font-size: 50px;
  font-weight: 400;
  line-height: 1.2;
  color: #1a1a1a;
  margin: 0;
  width: 400px;
}

/* Parágrafos de descrição */
.jantar-texto p {
  font-size: 14px;
  line-height: 1.8;
  color: #555;
  max-width: 440px;
  width: 350px;
}

/* Bloco inferior: logo + local + botão */
.jantar-cta {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 10px;
}

/* Logo pequena no CTA */
.jantar-logo {
  width: 48px;
  height: auto;
}

/* Nome do local em teal, caixa-alta */
.jantar-local {
  display: block;
  color: #00afdf;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 4px;
}

/* Link de compra */
.jantar-btn {
  font-size: 30px;
  color: #000000;
  text-decoration: none;
  letter-spacing: 1px;
  font-weight: 400;
  font-family: var(--libre);
}

.jantar-btn:hover {
  color: #c19d60;
}

/* Coluna de imagens: duas fotos lado a lado */
.imgjantar {
  flex: 1;
  display: flex;
  flex-direction: row;
  gap: 12px;
  align-items: flex-start;
}

/* Primeira imagem — deslocada para baixo */
.imgjantar img:first-child {
  width: 330px;
  height: 330px;
  object-fit: cover;
  margin-top: 60px;
}

/* Segunda imagem — mesmo tamanho, posição normal */
.imgjantar img:last-child {
  width: 330px;
  height: 330px;
  object-fit: cover;
}

/* ==========================================================================
   7. SEÇÃO DE CARDS
   ========================================================================== */

/* Container da seção com padding lateral */
.cards {
  display: flex;
  flex-direction: row;
  gap: 16px;
  justify-content: center;
  align-items: stretch;
  padding: 80px 60px;
  background-color: #ffffff;
}

/* Card individual */
.cards .card {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #f3f2ed;
  flex: 1;
  max-width: 220px;
  text-align: center;
  padding: 40px 20px 32px;
  gap: 10px;
}

/* Ícone teal no topo */
.card-icon {
  font-size: 34px;
  color: #00AFDF;
  margin-bottom: 8px;
  transition: transform 0.5s ease, color 0.4s ease;
  display: inline-block;
}

.card:hover .card-icon {
  transform: rotate(360deg);
  color: #C19D60;
}

/* Título do card em fonte serifada */
.cards .card h5 {
  font-family: var(--libre);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.3;
}

/* Textos de duração e itens inclusos */
.cards .card p {
  font-size: 13px;
  line-height: 1.7;
  color: #444;
}


/* ==========================================================================
   8. BUY SECTION
   ========================================================================== */

.container5 {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 40px;
  padding: 40px 60px;
}

.buy-info {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 0;
}

.buy-video {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: none;
  display: block;
}

.buy-date {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 0;
  border: 1px solid #c8c4bc;
}

/* Accordion */
.accordion-item {
  border-bottom: 1px solid #e0ddd6;
}

.accordion-header {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  user-select: none;
}

.accordion-header:hover {
  background-color: #fafaf8;
}

.step-left {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
}

.step-info h4 {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}

.step-subtitle {
  font-size: 13px;
  color: #777;
  display: block;
  margin-top: 2px;
}

.step {
  background-color: green;
  color: white;
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
}

.step.step-inactive {
  background-color: #c8c4bc;
}

.chevron-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 16px;
  color: #555;
  padding: 4px;
  line-height: 1;
}

.accordion-body {
  overflow: hidden;
  max-height: 1400px;
  transition: max-height 0.4s ease;
  padding: 0 24px 24px;
}

.accordion-body.collapsed {
  max-height: 0;
  padding-bottom: 0;
}

.step2-placeholder {
  color: #999;
  font-size: 14px;
  padding-top: 8px;
}

/* Navegação de meses */
.calendar-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 16px;
}

.cal-nav-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 14px;
  color: #555;
  padding: 6px 10px;
  border-radius: 50%;
  transition: background-color 0.2s;
  line-height: 1;
}

.cal-nav-btn:hover:not(:disabled) {
  background-color: #e0ddd6;
}

.cal-nav-btn.cal-nav-disabled {
  opacity: 0.25;
  cursor: default;
}

.active_month {
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  min-width: 160px;
}

/* Horários */
.timeslot-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  padding-top: 8px;
}

.timeslot {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  border: 1px solid #e0ddd6;
  border-radius: 8px;
  padding: 12px 8px;
  cursor: pointer;
  transition: border-color 0.2s, background-color 0.2s;
  min-height: 56px;
}

.timeslot:not(.sold-out):hover {
  border-color: #00afdf;
}

.timeslot.selected {
  border-color: #00afdf;
  background-color: #f0f9fd;
}

.timeslot.sold-out {
  cursor: default;
  opacity: 0.4;
}

.timeslot-hour {
  font-size: 15px;
  font-weight: 600;
  color: #1a1a1a;
  font-family: Arial, Helvetica, sans-serif;
  letter-spacing: 0.3px;
}

.timeslot-count {
  font-size: 11px;
  color: #e05c00;
  font-weight: 500;
}

.calendar-grid {
  display: grid;
  font-family: Arial, Helvetica, sans-serif;
  gap: 15px;
  margin: 0 auto;
  align-items: center;
  justify-content: center;
  grid-template-columns: repeat(7, 1fr);
}

.calendar-grid .col-day {
  font-weight: 700;
  font-size: 10px;
  font-family: Arial, Helvetica, sans-serif;
  text-align: center;
}

.calendar-grid .col-cel {
  font-weight: 600;
  height: 30px;
  line-height: 30px;
  text-align: center;
}

.calendar-grid .col-cel[data-day]:not(.disabled):hover {
  background-color: #e0ddd6;
  cursor: pointer;
  border-radius: 8px;
}

.calendar-grid .col-cel.selected {
  background-color: #c8c4bc;
  border-radius: 8px;
}

.calendar-grid .col-cel.disabled {
  color: #ccc;
  cursor: default;
}


/* ==========================================================================
   Passo 3 — Ticket, Preço e PIX
   ========================================================================== */

.ticket-card {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  border: 1px solid #e0ddd6;
  border-radius: 10px;
  padding: 16px;
  margin-bottom: 16px;
}

.ticket-left {
  display: flex;
  flex-direction: row;
  gap: 14px;
  flex: 1;
}

.ticket-icon {
  font-size: 28px;
  color: #aaa;
  flex-shrink: 0;
  margin-top: 2px;
}

.ticket-details {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.ticket-name {
  font-weight: 700;
  font-size: 15px;
  color: #1a1a1a;
}

.ticket-desc {
  font-size: 13px;
  color: #1a1a1a;
  line-height: 1.7;
  max-width: 100%;
  background-color: #f5f4f0;
  border-left: 3px solid #00afdf;
  border-radius: 4px;
  padding: 8px 10px;
}

.promo-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  border: 1.5px solid #1a1a1a;
  border-radius: 6px;
  padding: 4px 10px;
  font-size: 12px;
  font-weight: 700;
  color: #1a1a1a;
  width: fit-content;
}

.ticket-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.ticket-availability {
  font-size: 11px;
  font-weight: 700;
  color: #555;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.ticket-counter {
  display: flex;
  align-items: center;
  gap: 14px;
}

.counter-btn {
  background: none;
  border: 1.5px solid #1a1a1a;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1a1a1a;
  transition: background-color 0.15s;
}

.counter-btn:hover {
  background-color: #f0f0f0;
}

.counter-value {
  font-size: 20px;
  font-weight: 700;
  min-width: 20px;
  text-align: center;
}

.ticket-pricing {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 4px;
}

.price-original {
  font-size: 18px;
  color: #e74c3c;
  text-decoration: line-through;
}

.price-arrow {
  font-size: 18px;
  color: #555;
}

.price-final {
  font-size: 22px;
  font-weight: 700;
  color: #1a1a1a;
}

.ticket-taxes {
  font-size: 13px;
  color: #888;
  margin-bottom: 20px;
}

.btn-comprar {
  display: block;
  width: 100%;
  padding: 14px;
  background-color: #00afdf;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 1px;
  cursor: pointer;
  text-transform: uppercase;
  transition: background-color 0.2s;
  margin-bottom: 20px;
}

.btn-comprar:hover {
  background-color: #0090b8;
}

/* PIX dentro do modal */
.pix-loading {
  font-size: 15px;
  color: #555;
  padding: 40px 0;
  text-align: center;
}

.pix-loading .fa-spinner {
  color: #00afdf;
  margin-right: 6px;
}

#modal-pix-view {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.pix-qr {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  width: 100%;
}

.pix-instrucao {
  font-size: 14px;
  color: #333;
  font-weight: 600;
  text-align: center;
}

.pix-qr img {
  width: 220px;
  height: 220px;
  border: 1px solid #e0ddd6;
  border-radius: 8px;
  padding: 8px;
}

.pix-copy-wrap {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.pix-copy-label {
  font-size: 12px;
  font-weight: 700;
  color: #555;
}

.pix-copy-row {
  position: relative;
}

.pix-copy-input {
  width: 100%;
  border: 1.5px solid #00afdf;
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 12px;
  font-family: monospace;
  color: #333;
  background: #f0f9fd;
  cursor: pointer;
  outline: none;
  box-sizing: border-box;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.pix-copy-input:hover {
  background: #e0f4fb;
}

/* Toast de cópia */
.toast {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background-color: #1a1a1a;
  color: #fff;
  padding: 12px 22px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
  z-index: 2000;
  white-space: nowrap;
}

.toast.toast-show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.pix-chave {
  font-size: 13px;
  color: #666;
}

.pix-validade {
  font-size: 13px;
  color: #555;
}

.pix-validade span {
  font-weight: 700;
  color: #00afdf;
}

.hidden {
  display: none !important;
}

/* ==========================================================================
   Modal de dados do cliente
   ========================================================================== */

.modal-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.55);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.modal {
  background: #fff;
  border-radius: 14px;
  padding: 36px 32px 32px;
  width: 100%;
  max-width: 420px;
  position: relative;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  font-size: 18px;
  color: #888;
  cursor: pointer;
  line-height: 1;
  padding: 4px;
}

.modal-close:hover {
  color: #1a1a1a;
}

.modal-titulo {
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 6px;
  color: #1a1a1a;
}

.modal-subtitulo {
  font-size: 14px;
  color: #777;
  margin: 0 0 24px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 18px;
}

.form-group label {
  font-size: 13px;
  font-weight: 700;
  color: #333;
}

.form-group input {
  border: 1.5px solid #ddd;
  border-radius: 8px;
  padding: 11px 14px;
  font-size: 14px;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s;
}

.form-group input:focus {
  border-color: #00afdf;
}

.form-erro {
  font-size: 12px;
  color: #e74c3c;
  min-height: 16px;
}

.btn-confirmar {
  width: 100%;
  padding: 14px;
  background-color: #00afdf;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.5px;
  cursor: pointer;
  text-transform: uppercase;
  margin-top: 6px;
  transition: background-color 0.2s;
}

.btn-confirmar:hover {
  background-color: #0090b8;
}

/* ==========================================================================
   8. FOOTER
   ========================================================================== */

footer {
  background-color: #1b1b1b;
}

/* Wrapper interno centralizado com duas colunas */
.container4 {
  display: flex;
  flex-direction: row;
  gap: 80px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 60px;
}

/* Título dourado em fonte serifada — compartilhado pelas duas colunas */
.footer-sobre h3,
.footer-info h3 {
  color: #C19D60;
  font-family: var(--libre);
  font-size: 38px;
  font-weight: 400;
  margin-bottom: 24px;
}

/* Coluna esquerda — texto longo */
.footer-sobre {
  flex: 1.2;
  color: #c8c4bc;
  line-height: 1.9;
  font-size: 14px;
}

/* Coluna direita — localização, email e redes sociais */
.footer-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
  color: #c8c4bc;
  font-size: 14px;
  line-height: 1.7;
}

/* Email com sublinhado estilo borda inferior */
.footer-email {
  display: inline-block;
  color: #c8c4bc;
  text-decoration: none;
  border-bottom: 1px solid #c8c4bc;
  padding-bottom: 2px;
  font-size: 14px;
}

.footer-email:hover {
  color: #C19D60;
  border-bottom-color: #C19D60;
}

/* Ícone do Instagram em círculo */
.footer-instagram {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: 1px solid #c8c4bc;
  border-radius: 50%;
  color: #c8c4bc;
  font-size: 16px;
  text-decoration: none;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.footer-instagram:hover {
  color: #C19D60;
  border-color: #C19D60;
}

.footer-info .contact-info{
  font-size: 16px;
}

.footer-info .social-info {
  display: flex;

  flex-direction: row;
  gap: 16px;
}




/* ==========================================================================
   8. UTILITÁRIOS
   ========================================================================== */

.centralizado {
  text-align: center;
}

/* Fundo preto para o campo CPF */
#cpf {
  background-color: black;
}

/* ==========================================================================
   9. RESPONSIVO
   ========================================================================== */

/* --- 7a. Tablet (≤ 1024px) --- */
@media (max-width: 1024px) {
  header {
    padding: 24px 40px;
  }

  .container h1 {
    font-size: 52px;
  }

  .container h2 {
    font-size: 14px;
    letter-spacing: 4px;
  }

  .location {
    padding: 50px 40px;
    gap: 40px;
  }

  .imgjantar img:first-child,
  .imgjantar img:last-child {
    width: 100%;
    height: 220px;
  }
}

/* --- 7b. Mobile (≤ 768px) --- */
@media (max-width: 768px) {
  header {
    padding: 20px 24px;
    align-items: center;
  }

  header img {
    width: 120px;
  }

  .navigation {
    gap: 16px;
  }

  /* Hero ocupa a altura total da viewport em mobile */
  .hero .bg {
    height: 100svh;
    padding: 0 24px;
    box-sizing: border-box;
  }

  /* Faixa lateral oculta em telas pequenas */
  .hero .bg .reservation {
    display: none;
  }

  .container h6 {
    font-size: 10px;
    letter-spacing: 3px;
  }

  .container h1 {
    font-size: 65px;
    margin-bottom: 10px;
  }

  .container h2 {
    font-size: 20px;
    letter-spacing: 3px;
  }

  .container .button {
    font-size: 20px;
    padding: 20px 25px;
    letter-spacing: 2px;
  }

  /* Localização em coluna única */
  .location {
    padding: 40px 24px;
  }

  .container2 {
    flex-direction: column;
    gap: 32px;
  }

  .slide img {
    width: 100%;
    height: 260px;
  }

  /* SEÇÃO DE JANTAR MOBILE */

  .container3 {
    flex-direction: column;
    padding: 60px 24px;
  }

  /* Remove larguras fixas que causam overflow */
  .jantar-texto {
    width: 100%;
    min-width: 0;
  }

  .jantar-texto h5,
  .jantar-texto p {
    width: 100%;
    max-width: 100%;
  }

  /* Imagens empilhadas em coluna, sem larguras fixas */
  .imgjantar {
    flex-direction: column;
    width: 100%;
  }

  .imgjantar img:first-child,
  .imgjantar img:last-child {
    width: 100%;
    height: 220px;
    margin-top: 0;
  }

  /* Cards em coluna no mobile */
  .cards {
    flex-direction: column;
    align-items: center;
    padding: 40px 24px;
  }

  .cards .card {
    width: 100%;
    max-width: 100%;
  }

  /* Desabilita hover no mobile — toque dispara :hover e conflita com a animação por scroll */
  .card:hover .card-icon {
    transform: none;
    color: #00AFDF;
    transition: none;
  }

  /* Ícone ativado quando o card está no centro da tela */
  @keyframes cardSpin {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
  }

  .card.card-active .card-icon {
    animation: cardSpin 0.5s ease forwards;
    color: #C19D60;
    transition: color 0.4s ease;
  }

  /* BUY SECTION em coluna no mobile */
  .container5 {
    flex-direction: column;
    padding: 32px 24px;
    gap: 24px;
  }

  .buy-info,
  .buy-date {
    width: 100%;
    flex: unset;
  }

  /* Ticket card em coluna no mobile */
  .ticket-card {
    flex-direction: column;
    gap: 12px;
  }

  .ticket-left {
    width: 100%;
  }

  .ticket-right {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }

  .ticket-availability {
    white-space: normal;
  }

  .ticket-desc {
    max-width: 100%;
  }

  /* Footer em coluna no mobile */
  .container4 {
    flex-direction: column;
    gap: 40px;
    padding: 60px 24px;
  }
}
