.div_1 {
}

.section_home {
  position: relative;
}

.section_home img {
  width: 100%;
}

.section_home::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: linear-gradient(180deg, transparent 0%, rgba(248, 249, 250, 0.3) 50%, rgba(248, 249, 250, 0.8) 100%);
  pointer-events: none;
}

body {
  background-color: #e6dedc;
  margin: 0px;
}

.botao {
  position: absolute;
  left: 22%;
  bottom: 22%;
  color: white;
  background: linear-gradient(135deg, #006dff 0%, #0056cc 100%);
  padding: 15px 25px;
  width: 280px;
  height: auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  font-size: 18px;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  box-shadow: 0 8px 25px rgba(0, 109, 255, 0.4);
  transition: all 0.3s ease;
  text-decoration: none;
  border: none;
  cursor: pointer;
}

.botao:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(0, 109, 255, 0.6);
  background: linear-gradient(135deg, #0056cc 0%, #004499 100%);
}

/* Header e Navegação Fixa */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  transition: all 0.3s ease;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.15);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
}

.logo {
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 24px;
  color: #2c3e50;
  text-decoration: none;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 40px;
}

.nav-link {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: #2c3e50;
  text-decoration: none;
  transition: all 0.3s ease;
  padding: 8px 16px;
  border-radius: 8px;
}

.nav-link:hover {
  color: #667eea;
  background: rgba(102, 126, 234, 0.1);
  transform: translateY(-2px);
}

/* Menu Hambúrguer */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: #2c3e50;
  margin: 3px 0;
  transition: 0.3s;
  border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -6px);
}

/* Ajuste para o conteúdo não ficar atrás do header */
.section_home {
  margin-top: 0;
}

body {
  padding-top: 0;
}

/* Responsivo do Menu */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 27px rgba(0, 0, 0, 0.1);
    padding: 20px 0;
    gap: 20px;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-link {
    padding: 15px 20px;
    display: block;
    font-size: 18px;
  }
  
  .section_home {
    margin-top: 70px;
  }
}

/* Otimização Geral de Imagens */
img {
  max-width: 100%;
  height: auto;
  display: block;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}

/* Lazy Loading para imagens não críticas */
.lazy-load {
  opacity: 0;
  transition: opacity 0.3s;
}

.lazy-load.loaded {
  opacity: 1;
}

/* Otimização específica das imagens principais */
.img-desktop, 
.img-mobile {
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center;
  max-height: 100vh;
  will-change: transform;
}

/* Otimização para o logo do Save the Date */
.date-logo {
  width: 200px;
  height: auto;
  object-fit: contain;
  max-width: 200px;
}

/* Otimização imagens dos ingressos antigas (se ainda existirem) */
.ingresso img {
  max-width: 200px;
  height: auto;
  object-fit: contain;
  image-rendering: optimizeQuality;
}

/* Otimização imagem de fundo das seções */
.convidados__img,
.div_rodape img {
  max-width: 100%;
  height: auto;
  object-fit: cover;
  image-rendering: optimizeQuality;
}

/* FAQ logo otimizado */
.faq-logo {
  max-width: 200px;
  height: auto;
  object-fit: contain;
  image-rendering: optimizeQuality;
}

/* Otimização para imagens de produtos */
.product-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  object-position: center;
  border-radius: 12px 12px 0 0;
  transition: transform 0.3s ease;
}

/* Removido efeito hover genérico - apenas produtos com vídeo devem ter efeitos especiais */

/* Otimização responsiva adicional */
@media (max-width: 768px) {
  .img-desktop {
    display: none;
  }
  
  .img-mobile {
    display: block;
    max-height: 70vh;
  }
  
  .faq-logo {
    max-width: 150px;
  }
  
  .product-image img {
    height: 180px;
  }
}

@media (min-width: 769px) {
  .img-desktop {
    display: block;
  }
  
  .img-mobile {
    display: none;
  }
}

/* Seção Combinada: Save the Date + Ingressos (Tabela) */
.section_date_tickets {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

.section_date_tickets::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 25% 25%, rgba(99, 102, 241, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 75% 75%, rgba(249, 115, 22, 0.06) 0%, transparent 50%);
  z-index: 1;
}

.table-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

.date-tickets-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 
    0 20px 60px rgba(0, 0, 0, 0.08),
    0 8px 25px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(226, 232, 240, 0.8);
}

.date-column,
.tickets-column {
  width: 50%;
  padding: 50px 40px;
  vertical-align: top;
  border: none;
}

.date-column {
  border-right: 1px solid rgba(226, 232, 240, 0.5);
  background: linear-gradient(135deg, rgba(248, 250, 252, 0.8) 0%, rgba(241, 245, 249, 0.8) 100%);
  overflow: hidden;
  box-sizing: border-box;
}

.tickets-column {
  background: white;
  overflow: hidden;
  box-sizing: border-box;
}

/* Coluna de Data */
.date-info-section {
  text-align: center;
}

.date-header h2 {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 28px;
  color: #1e293b;
  margin: 0 0 30px 0;
  letter-spacing: 1px;
}

.date-details {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.date-main,
.location-main {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.date-range,
.venue {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: #0f172a;
}

.year,
.city {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: #64748b;
}

/* Coluna de Data */
.date-header h2 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 24px;
  color: #2c3e50;
  margin: 0 0 30px 0;
  text-align: center;
}

.date-info {
  text-align: center;
}

.event-date {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: #2c3e50;
  margin-bottom: 8px;
  letter-spacing: 1px;
}

.event-year {
  font-family: "Montserrat", sans-serif;
  font-weight: 300;
  font-size: 32px;
  color: #6366f1;
  margin-bottom: 30px;
  letter-spacing: 2px;
}

.event-location {
  text-align: center;
}

.location-name {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: #2c3e50;
  margin-bottom: 8px;
}

.location-city {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #64748b;
  line-height: 1.4;
}

/* Coluna de Ingressos */
.tickets-header h2 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 24px;
  color: #2c3e50;
  margin: 0 0 30px 0;
  text-align: center;
}

.tickets-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.ticket-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 20px;
  border-radius: 10px;
  border: 1px solid rgba(226, 232, 240, 0.8);
  background: white;
  transition: all 0.3s ease;
}

.ticket-item.disponivel {
  border-color: rgba(34, 197, 94, 0.3);
  background: rgba(34, 197, 94, 0.02);
}

.ticket-item.esgotado {
  background: rgba(248, 113, 113, 0.02);
  border-color: rgba(248, 113, 113, 0.2);
  opacity: 0.7;
}

.lote-name {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: #2c3e50;
  flex: 0 0 auto;
}

.status {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 11px;
  padding: 4px 8px;
  border-radius: 4px;
  letter-spacing: 0.5px;
  flex: 0 0 auto;
}

.ticket-item.disponivel .status {
  background: rgba(34, 197, 94, 0.1);
  color: #15803d;
}

.ticket-item.esgotado .status {
  background: rgba(248, 113, 113, 0.1);
  color: #dc2626;
}

.price {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #2c3e50;
  flex: 0 0 auto;
}

.buy-btn {
  background: #3b82f6;
  color: white;
  padding: 8px 16px;
  border-radius: 6px;
  text-decoration: none;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 12px;
  transition: all 0.3s ease;
  flex: 0 0 auto;
}

.buy-btn:hover {
  background: #2563eb;
  transform: translateY(-1px);
}

.tickets-header h2 {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 28px;
  color: #1e293b;
  margin: 0 0 30px 0;
  text-align: center;
  letter-spacing: 1px;
}

.tickets-options {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.ticket-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 25px;
  border-radius: 12px;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  background: rgba(248, 250, 252, 0.5);
}

.ticket-option.disponivel {
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.05) 0%, rgba(22, 163, 74, 0.05) 100%);
  border-color: rgba(34, 197, 94, 0.2);
}

.ticket-option.disponivel:hover {
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.1) 0%, rgba(22, 163, 74, 0.1) 100%);
  border-color: rgba(34, 197, 94, 0.4);
  transform: translateY(-2px);
}

.ticket-option.esgotado {
  background: rgba(248, 113, 113, 0.05);
  border-color: rgba(248, 113, 113, 0.2);
  opacity: 0.7;
}

.lote-name {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #1e293b;
}

.status {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 12px;
  padding: 4px 12px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.ticket-option.disponivel .status {
  background: rgba(34, 197, 94, 0.1);
  color: #15803d;
}

.ticket-option.esgotado .status {
  background: rgba(248, 113, 113, 0.1);
  color: #dc2626;
}

.price {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: #0f172a;
}

.buy-btn {
  background: linear-gradient(135deg, #006dff 0%, #0056cc 100%);
  color: white;
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 109, 255, 0.3);
}

.buy-btn:hover {
  background: linear-gradient(135deg, #0056cc 0%, #004499 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 109, 255, 0.4);
}

/* Desktop - Botão maior */
@media (min-width: 769px) {
  .buy-btn {
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 700;
  }
}

/* Responsivo */
@media (max-width: 768px) {
  .section_date_tickets {
    padding: 40px 0;
  }
  
  .table-container {
    padding: 0 15px;
  }
  
  .date-tickets-table,
  .date-tickets-table tbody,
  .date-tickets-table tr {
    display: block;
    width: 100%;
  }
  
  .date-column,
  .tickets-column {
    display: block;
    width: 100%;
    padding: 25px 20px;
    border-right: none;
    border-bottom: none;
  }
  
  .tickets-column {
    padding: 25px 15px;
    overflow: hidden;
  }
  
  .tickets-info-section {
    width: 100%;
    overflow: hidden;
  }
  
  .date-column {
    border-bottom: 1px solid rgba(226, 232, 240, 0.5);
    margin-bottom: 0;
  }
  
  .tickets-column {
    padding-top: 30px;
  }

  /* Responsivo para seção de ingressos */
  .date-header h2,
  .tickets-header h2 {
    font-size: 20px;
    margin-bottom: 20px;
  }

  .event-date {
    font-size: 16px;
  }

  .event-year {
    font-size: 24px;
    margin-bottom: 20px;
  }

  .location-name {
    font-size: 14px;
  }

  .location-city {
    font-size: 12px;
  }

  .tickets-list {
    gap: 12px;
  }

  .ticket-item {
    padding: 12px 15px;
    flex-wrap: wrap;
    gap: 8px;
  }

  .ticket-item.disponivel {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto;
    gap: 8px;
    align-items: center;
  }

  .ticket-item.disponivel .lote-name {
    grid-column: 1;
    grid-row: 1;
  }

  .ticket-item.disponivel .status {
    grid-column: 2;
    grid-row: 1;
  }

  .ticket-item.disponivel .price {
    grid-column: 1;
    grid-row: 2;
  }

  .ticket-item.disponivel .buy-btn {
    grid-column: 2;
    grid-row: 2;
  }

  .lote-name {
    font-size: 12px;
  }

  .status {
    font-size: 10px;
    padding: 3px 6px;
  }

  .price {
    font-size: 14px;
  }

  .buy-btn {
    font-size: 11px;
    padding: 6px 12px;
  }
  
  .date-header h2,
  .tickets-header h2 {
    font-size: 22px;
    margin-bottom: 20px;
  }
  
  .date-range,
  .venue {
    font-size: 16px;
  }
  
  .year,
  .city {
    font-size: 14px;
  }
  
  .tickets-options {
    gap: 10px;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  
  .ticket-option {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 10px 15px;
    border-radius: 8px;
    margin: 0 auto;
    width: calc(100% - 40px);
    max-width: 350px;
    box-sizing: border-box;
  }
  
  .ticket-option.disponivel {
    border: 1px solid rgba(34, 197, 94, 0.2);
  }
  
  .ticket-option.esgotado {
    border: 1px solid transparent;
  }
  
  /* Primeira linha: Lote, Status, Preço */
  .ticket-option .ticket-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }
  
  .ticket-option .lote-name {
    font-size: 14px;
    font-weight: 700;
    flex: 0 0 auto;
  }
  
  .ticket-option .status {
    font-size: 10px;
    padding: 3px 8px;
    flex: 0 0 auto;
    text-align: center;
  }
  
  .ticket-option .price {
    font-size: 14px;
    font-weight: 700;
    flex: 0 0 auto;
    text-align: right;
  }
  
  .ticket-option .buy-btn {
    width: 100%;
    padding: 10px 12px;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    box-sizing: border-box;
    margin: 8px 0 0 0;
    border-radius: 8px;
  }
  
  /* Para os lotes esgotados, não mostrar linha de botão */
  .ticket-option.esgotado {
    grid-template-rows: auto;
  }
  
  .ticket-option.esgotado .buy-btn {
    display: none;
  }
}\n\n/* Save the Date - Clean & Minimal */
.save_date_clean {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.save_date_clean::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 25% 25%, rgba(99, 102, 241, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 75% 75%, rgba(249, 115, 22, 0.06) 0%, transparent 50%);
  z-index: 1;
}

.save_date_clean .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
}

.date_card {
  background: white;
  border-radius: 24px;
  padding: 60px 50px;
  text-align: center;
  box-shadow: 
    0 20px 60px rgba(0, 0, 0, 0.08),
    0 8px 25px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(226, 232, 240, 0.8);
  max-width: 500px;
  width: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.date_card:hover {
  transform: translateY(-8px);
  box-shadow: 
    0 32px 80px rgba(0, 0, 0, 0.12),
    0 12px 40px rgba(0, 0, 0, 0.08);
}

.date_icon {
  font-size: 48px;
  margin-bottom: 24px;
  filter: grayscale(20%);
}

.date_card h2 {
  font-family: "Montserrat", sans-serif;
  font-weight: 300;
  font-size: 28px;
  color: #64748b;
  margin: 0 0 40px 0;
  letter-spacing: 2px;
  text-transform: uppercase;
}

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

.date_info {
  border-bottom: 1px solid #e2e8f0;
  padding-bottom: 24px;
}

.date_number {
  display: block;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 36px;
  color: #1e293b;
  margin-bottom: 8px;
  letter-spacing: 1px;
}

.year {
  display: block;
  font-family: "Montserrat", sans-serif;
  font-weight: 300;
  font-size: 24px;
  color: #6366f1;
  letter-spacing: 4px;
}

.location_info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.location {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 22px;
  color: #1e293b;
  letter-spacing: 0.5px;
}

.city {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #64748b;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* Seção de Ingressos Separada */
.section_tickets {
  background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.section_tickets::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(180deg, rgba(248, 250, 252, 0.1) 0%, transparent 100%);
}

.section_tickets::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(180deg, transparent 0%, rgba(248, 250, 252, 0.1) 100%);
}

.tickets-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 2;
}

/* Cards de Ingressos Modernos */
.tickets-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  width: 100%;
  max-width: 1000px;
  margin-top: 30px;
}

.ticket-card-modern {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 20px;
  padding: 35px 25px;
  text-align: center;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.ticket-card-modern::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.ticket-card-modern.esgotado::before {
  background: linear-gradient(135deg, #9ca3af 0%, #6b7280 100%);
}

.ticket-card-modern:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.ticket-card-modern.esgotado {
  opacity: 0.7;
}

.ticket-card-modern.esgotado:hover {
  transform: translateY(-4px);
}

.ticket-header {
  margin-bottom: 25px;
}

.ticket-header h3 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 24px;
  color: #2c3e50;
  margin: 0 0 10px 0;
}

.ticket-status {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 20px;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.disponivel .ticket-status {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: white;
}

.esgotado .ticket-status {
  background: linear-gradient(135deg, #9ca3af 0%, #6b7280 100%);
  color: white;
}

.ticket-price {
  margin: 30px 0;
  font-family: "Montserrat", sans-serif;
}

.ticket-price .currency {
  font-size: 20px;
  font-weight: 600;
  color: #64748b;
  vertical-align: top;
}

.ticket-price .value {
  font-size: 48px;
  font-weight: 800;
  color: #2c3e50;
  line-height: 1;
}

.ticket-price .cents {
  font-size: 24px;
  font-weight: 600;
  color: #64748b;
}

.ticket-info {
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #64748b;
  margin-bottom: 30px;
}

.ticket-btn {
  display: inline-block;
  background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
  color: white;
  text-decoration: none;
  padding: 15px 30px;
  border-radius: 12px;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 16px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  width: 100%;
  box-shadow: 0 8px 25px rgba(249, 115, 22, 0.3);
}

.ticket-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(249, 115, 22, 0.4);
}

.ticket-btn.disabled {
  background: linear-gradient(135deg, #9ca3af 0%, #6b7280 100%);
  cursor: not-allowed;
  opacity: 0.6;
  box-shadow: none;
}

.ticket-btn.disabled:hover {
  transform: none;
  box-shadow: none;
}

.texto_info {
  padding: 10px;
  font-size: 30px;
}

.ingresso {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 10;
}

.ingresso1 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

.ingresso2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

.ingresso img {
  width: 100%;
  max-width: 230px;
  height: auto;
  border-radius: 15px;
  box-shadow: 
    0 15px 40px rgba(0,0,0,0.4),
    0 0 0 3px rgba(59, 130, 246, 0.3),
    0 0 20px rgba(249, 115, 22, 0.2);
  transition: all 0.4s ease;
  filter: brightness(1.1) saturate(1.2);
}

.ingresso img:hover {
  transform: translateY(-15px) scale(1.05) rotate(2deg);
  box-shadow: 
    0 25px 60px rgba(0,0,0,0.5),
    0 0 0 5px rgba(59, 130, 246, 0.5),
    0 0 30px rgba(249, 115, 22, 0.4);
  filter: brightness(1.3) saturate(1.4);
}

.elemento {
  display: flex;
  justify-content: center;
  align-items: center;
}

.elemento-continuo {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Seção de Produtos */
.section_products {
  background: #6b73e6;
  padding: 20px 0;
  position: relative;
  overflow: hidden;
}



.products-container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 5px;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.products-header {
  text-align: center;
  margin-bottom: 60px;
}

.products-subtitle {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 10px;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
  background: orange;
  width: 100%;
}

/* Responsividade Mobile para Produtos */
@media (max-width: 768px) {
  .products-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 20px;
  }
  
  .product-card {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    height: auto;
  }
  
  .product-image {
    height: 280px;
  }
  
  .product-info {
    min-height: 180px;
    padding: 15px;
    gap: 8px;
  }
  
  .product-info h3 {
    font-size: 13px;
  }
  
  .product-price {
    font-size: 16px;
  }
  
  .size-label {
    font-size: 11px;
  }
  
  .size-btn {
    width: 30px;
    height: 30px;
    font-size: 10px;
  }
  
  .product-btn {
    font-size: 11px;
    padding: 6px 12px;
  }
}

@media (max-width: 480px) {
  .products-container {
    padding: 15px;
    gap: 25px;
  }
  
  .product-card {
    max-width: 350px;
  }
  
  .product-image {
    height: 250px;
  }
}

.product-card {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 0;
}

.product-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.product-image {
  height: 380px;
  background: #f8f9fa;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
  position: relative;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.product-image video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Seletor de pagamento */
.payment-selector {
    margin: 10px 0 15px;
    text-align: left;
}

.payment-selector label {
    display: block;
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 8px;
    font-weight: 500;
    font-family: "Montserrat", sans-serif;
}

.payment-method {
    width: 100%;
    padding: 8px 12px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 0.9rem;
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    background-color: #f8f8f8;
    cursor: pointer;
    transition: all 0.3s ease;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 18px;
    padding-right: 40px;
}

.payment-method:hover {
    border-color: #667eea;
    background-color: #fff;
}

.payment-method:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

/* Sistema de galeria unificado (imagens + vídeo) */
.product-image.has-gallery .product-img,
.product-image.has-gallery .product-video {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.product-image.has-gallery .product-img.active,
.product-image.has-gallery .product-video.active {
  opacity: 1;
  z-index: 2;
}

/* Dots/Indicadores - Desktop */
.image-dots {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 3;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.2);
}

.dot.active {
  background: #ff7a00;
  transform: scale(1.2);
}

.dot:hover {
  background: rgba(255, 122, 0, 0.7);
}

/* Dot de vídeo com ícone play */
.dot[data-is-video="true"] {
  background: rgba(255, 255, 255, 0.8);
  color: #333;
  font-size: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 10px;
  height: 10px;
}

.dot[data-is-video="true"].active {
  background: #ff7a00;
  color: white;
}

/* Dots laterais no mobile */
@media (max-width: 768px) {
  .image-dots {
    bottom: auto;
    left: auto;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    flex-direction: column;
    gap: 8px;
  }
  
  .dot {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.8);
    border: 2px solid rgba(0, 0, 0, 0.3);
  }
  
  .dot.active {
    background: #ff7a00;
    transform: scale(1.1);
    border-color: white;
  }
  
  .dot[data-is-video="true"] {
    width: 14px;
    height: 14px;
    font-size: 8px;
    background: rgba(255, 255, 255, 0.9);
  }
  
  .dot[data-is-video="true"].active {
    background: #ff7a00;
    color: white;
  }
}

.product-info {
  padding: 20px;
  text-align: left;
  display: flex;
  flex-direction: column;
  height: auto;
  min-height: 200px;
  flex-shrink: 0;
  gap: 10px;
}

.product-info h3 {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: #4a5568;
  margin: 0 0 8px 0;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.product-description {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #7f8c8d;
  margin-bottom: 20px;
  line-height: 1.5;
}

.product-price {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: #1a202c;
  margin-bottom: 8px;
}

.pix-price {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: #00a650;
  margin-bottom: 12px;
}

.discount-label {
  font-size: 11px;
  font-weight: 700;
  background: #ff6b35;
  color: white;
  padding: 2px 6px;
  border-radius: 8px;
  margin-left: 6px;
}

.product-btn {
  background: #ff7a00;
  color: white;
  border: none;
  padding: 12px 16px;
  border-radius: 4px;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  margin-top: auto;
}

.product-btn:hover {
  background: #e66a00;
  transform: translateY(-1px);
}

.product-btn.disabled {
  background: #a0a0a0;
  color: #666;
  cursor: not-allowed;
  opacity: 0.6;
}

.product-btn.disabled:hover {
  background: #a0a0a0;
  transform: none;
}

.size-selector {
  margin: 10px 0;
}

.size-label {
  display: block;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 12px;
  color: #718096;
  margin-bottom: 4px;
}

.size-options {
  display: flex;
  gap: 8px;
  justify-content: center;
}

.size-btn {
  width: 35px;
  height: 35px;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  background: white;
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: #4a5568;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.size-btn:hover {
  border-color: #ff7a00;
  background: #fff5eb;
}

.size-btn.active {
  background: #ff7a00;
  color: white;
  border-color: #ff7a00;
}

.size-btn:disabled {
  background: #f5f5f5;
  color: #999;
  border-color: #ddd;
  cursor: not-allowed;
  opacity: 0.5;
}

.size-btn:disabled:hover {
  background: #f5f5f5;
  border-color: #ddd;
  transform: none;
}

    font-size: 15px;
  }

  .titulo {
    font-size: 40px;
  }

  .class_garanta {
    height: 180px;
  }

  .ingresso {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
  }

  .ingresso img {
    width: 150px;
  }

  .elemento {
    padding: 0px;
    padding-top: 20px;
  }

  .elemento-continuo {
    padding: 0px;
    padding-top: 20px;
  }

  .saq {
    min-height: auto !important;
    padding: 40px 0 !important;
  }

  .div_cel_sobre {
    display: flex !important;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .div_cel_sobre img {
    width: 100% !important;
    height: auto  !important;
    display: block  !important;
    margin-top: -1px;
  }

  .div_note_sobre {
    display: none;
  }

  .div_sobre {
    /* bottom: 21%; */
    bottom: none !important;
    position: absolute;
    right: 8% !important;
    width: 374px;
    text-align: center;
  }

  .texto_info p {
    padding: 0px !important;
  }
}

.div_sobre {
  bottom: 21%;
  position: absolute;
  right: 11%;
  width: 374px;
}

.div_sobre p {
  font-size: 15px;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  color: white;
}
.div_sobre h1 {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  color: white;
}

.saq {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  font-family: "Montserrat", sans-serif;
  color: #fff;
  margin: 0;
  padding: 60px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.faq-container {
  width: 95%;
  max-width: 1200px;
  padding: 20px;
  text-align: center;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.faq-logo {
  display: block;
  margin: 0 auto 40px;
  width: 250px;
}

.faq-item {
  margin-bottom: 8px;
  text-align: left;
}

.faq-question {
  width: 100%;
  background: rgba(255, 255, 255, 0.9);
  border: 2px solid rgba(255, 255, 255, 0.3);
  padding: 12px 15px;
  text-align: left;
  cursor: pointer;
  border-radius: 8px;
  font-size: 14px;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  color: #2c3e50;
  transition: all 0.3s ease;
  margin-bottom: 2px;
}

.faq-question:hover {
  background: rgba(255, 255, 255, 1);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.faq-answer {
  background: rgba(255, 255, 255, 0.95);
  padding: 15px;
  display: none;
  font-size: 13px;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  color: #2c3e50;
  border-radius: 0 0 8px 8px;
  line-height: 1.5;
  margin-top: -2px;
}

.faq-answer.show {
  display: block;
}

.saq p {
  font-size: 17px;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  color: white;
}

.div_rodape {
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 30px 0;
  box-shadow: 0 -5px 20px rgba(0,0,0,0.1);
}

.div_rodape img {
  width: 140px;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3));
  transition: transform 0.3s ease;
}

.div_rodape img:hover {
  transform: scale(1.05);
}

.div_cel_sobre {
  display: none;
}

/* Seção Convidados - Layout Unificado e Responsivo */
.convidados {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 50%, #dee2e6 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.convidados::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url(../img/PAGINA_ONEWAY.png);
  background-size: cover;
  background-position: center;
  opacity: 0.05;
  z-index: 1;
}

.convidados__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.convidados__content {
  max-width: 500px;
}

.convidados__title {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 48px;
  color: #2c3e50;
  margin-bottom: 30px;
  text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.convidados__text {
  font-family: "Montserrat", sans-serif;
  line-height: 1.7;
}

.convidados__text p {
  font-size: 16px;
  color: #34495e;
  margin-bottom: 20px;
  font-weight: 400;
}

.convidados__image {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.convidados__img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

.convidados__image:hover .convidados__img {
  transform: scale(1.05);
}

/* Responsividade para seção convidados */
@media (max-width: 768px) {
  .convidados {
    padding: 60px 0;
  }
  
  .convidados__container {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .convidados__content {
    max-width: 100%;
    order: 2;
  }
  
  .convidados__title {
    font-size: 36px;
    margin-bottom: 25px;
  }
  
  .convidados__text p {
    font-size: 15px;
    margin-bottom: 18px;
  }
  
  .convidados__image {
    order: 1;
    max-width: 400px;
    margin: 0 auto;
  }
  
  /* FAQ responsivo */
  .saq {
    padding: 40px 0;
  }
  
  .faq-container {
    width: 95%;
    padding: 15px;
  }
  
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 15px;
    margin-top: 25px;
  }
  
  .faq-logo {
    width: 200px;
    margin: 0 auto 30px;
  }
  
  .faq-question {
    font-size: 13px;
    padding: 10px 12px;
  }
  
  .faq-answer {
    font-size: 12px;
    padding: 12px;
  }
  
  /* Ingressos mobile */
  .ingresso, .ingresso1, .ingresso2 {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    padding: 0 15px;
  }
  
  .ingresso img {
    max-width: 150px;
  }
  
  .titulo {
    font-size: 28px;
    margin-bottom: 25px;
  }
}

/* ========================================
   ESTILOS DO CARRINHO DE COMPRAS
======================================== */

/* Ícone flutuante do carrinho */
.cart-icon {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(118, 75, 162, 0.3);
  transition: all 0.3s ease;
  z-index: 1000;
  color: white;
}

.cart-icon:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(118, 75, 162, 0.4);
}

.cart-icon svg {
  width: 28px;
  height: 28px;
}

.cart-count {
  position: absolute;
  top: -5px;
  right: -5px;
  background-color: #FFD700;
  color: #000;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: bold;
}

/* Painel lateral do carrinho */
.cart-panel {
  position: fixed;
  right: -400px;
  top: 0;
  width: 400px;
  height: 100vh;
  background-color: #fff;
  box-shadow: -4px 0 16px rgba(0, 0, 0, 0.1);
  transition: right 0.3s ease;
  z-index: 1001;
  display: flex;
  flex-direction: column;
}

.cart-panel.open {
  right: 0;
}

.cart-header {
  padding: 20px;
  border-bottom: 1px solid #eee;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cart-header h2 {
  margin: 0;
  font-size: 22px;
  color: #333;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
}

.close-cart {
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: #666;
  transition: color 0.3s;
}

.close-cart:hover {
  color: #de4242;
}

/* Items do carrinho */
.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 20px;
}

.cart-item {
  display: flex;
  gap: 15px;
  padding: 15px;
  border: 1px solid #eee;
  border-radius: 8px;
  margin-bottom: 15px;
  transition: all 0.3s ease;
}

.cart-item:hover {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.cart-item-image {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
}

.cart-item-details {
  flex: 1;
}

.cart-item-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #333;
}

.cart-item-info {
  font-size: 14px;
  color: #666;
  margin-bottom: 10px;
}

.cart-item-controls {
  display: flex;
  align-items: center;
  gap: 10px;
}

.quantity-controls {
  display: flex;
  align-items: center;
  gap: 5px;
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 2px;
}

.quantity-btn {
  width: 28px;
  height: 28px;
  border: none;
  background-color: #f5f5f5;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.quantity-btn:hover {
  background-color: #de4242;
  color: white;
}

.quantity-value {
  width: 40px;
  text-align: center;
  font-weight: 600;
}

.remove-item {
  margin-left: auto;
  background: none;
  border: none;
  color: #999;
  cursor: pointer;
  font-size: 20px;
  transition: color 0.3s;
}

.remove-item:hover {
  color: #de4242;
}

.cart-item-price {
  font-size: 20px;
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
  color: #333;
  margin-top: 8px;
}

/* Carrinho vazio */
.empty-cart {
  text-align: center;
  padding: 60px 20px;
  color: #999;
}

.empty-cart svg {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  opacity: 0.3;
}

/* Footer do carrinho */
.cart-footer {
  padding: 20px 20px 30px 20px;
  border-top: 1px solid #eee;
  background-color: #fafafa;
}

/* Aviso de pagamento presencial */
.payment-warning {
  background-color: #fff8dc;
  border: 1px solid #f0b429;
  border-radius: 8px;
  padding: 12px;
  margin: 15px 0;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #7c6200;
}

.payment-warning span {
  font-size: 20px;
  flex-shrink: 0;
}

.payment-warning p {
  margin: 0;
  line-height: 1.4;
}

.cart-total, .cart-pix-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  font-size: 18px;
}

.cart-total {
  font-weight: 600;
  color: #333;
}

.cart-pix-total {
  color: #28a745;
  font-size: 16px;
}

.checkout-btn {
  width: 100%;
  padding: 15px;
  background: linear-gradient(135deg, #ff7a00 0%, #e6690a 100%);
  color: white;
  border: none;
  border-radius: 12px;
  font-size: 18px;
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 15px;
  box-shadow: 0 8px 25px rgba(255, 122, 0, 0.4);
}

.checkout-btn:hover {
  background: linear-gradient(135deg, #e6690a 0%, #cc5c09 100%);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(255, 122, 0, 0.6);
}

.checkout-btn:disabled {
  background-color: #ccc;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

/* Link para continuar comprando */
.continue-shopping-link {
  display: block;
  text-align: center;
  margin-top: 15px;
  color: #764ba2;
  text-decoration: none;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
  padding: 10px;
  border-radius: 8px;
}

.continue-shopping-link:hover {
  color: #667eea;
  background-color: rgba(118, 75, 162, 0.05);
  text-decoration: underline;
}

/* Overlay */
.cart-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  z-index: 999;
}

.cart-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Responsivo */
@media (max-width: 768px) {
  .cart-panel {
    width: 100%;
    right: -100%;
  }
  
  .cart-icon {
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
  }
  
  .cart-icon svg {
    width: 24px;
    height: 24px;
  }
  
  .cart-item {
    flex-direction: row;
    gap: 10px;
  }
  
  .cart-item-image {
    width: 45px;
    height: 45px;
  }
  
  /* Footer do carrinho no mobile com mais espaçamento */
  .cart-footer {
    padding: 20px 20px 40px 20px;
    padding-bottom: max(40px, env(safe-area-inset-bottom, 20px));
  }
  
  /* Botão maior no mobile */
  .checkout-btn {
    padding: 18px 15px;
    font-size: 18px;
    margin-bottom: 10px;
  }
}

/* Estilos adicionais para consistência com o site */
.cart-item-title, .cart-item-info {
  font-family: "Montserrat", sans-serif;
}

.cart-item-title {
  font-weight: 600;
}

.cart-total, .cart-pix-total {
  font-family: "Montserrat", sans-serif;
}

.cart-payment-method {
  margin: 15px 0;
  padding: 0;
  background: none;
  border-radius: 0;
  border: none;
}

.cart-payment-method label {
  display: block;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  color: #333;
  margin-bottom: 8px;
  font-size: 14px;
  text-align: left;
}

.cart-payment-method select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 500;
  background-color: white;
  cursor: pointer;
  transition: all 0.2s ease;
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
  padding-right: 40px;
}

.cart-payment-method select:focus {
  outline: none;
  border-color: #007bff;
  box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}

.cart-payment-method select:hover {
  border-color: #adb5bd;
}

/* Botões de quantidade no carrinho */
.quantity-btn {
  background: #f8f9fa;
  color: #333;
  border: 1px solid #ddd;
  border-radius: 6px;
  width: 28px;
  height: 28px;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.quantity-btn:hover {
  background: #e9ecef;
  border-color: #adb5bd;
  color: #000;
}

.quantity-value {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  color: #333;
  font-size: 16px;
  min-width: 30px;
  text-align: center;
}

/* Botão de remover item */
.remove-btn {
  background: none;
  color: #6c757d;
  border: none;
  border-radius: 4px;
  padding: 4px 8px;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 12px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.remove-btn:hover {
  background: #f8f9fa;
  color: #dc3545;
}

/* ========================================
   SEÇÃO DE ALIMENTAÇÃO
   ======================================== */

.section_alimentacao {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

.section_alimentacao::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 25% 25%, rgba(99, 102, 241, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 75% 75%, rgba(249, 115, 22, 0.06) 0%, transparent 50%);
  z-index: 1;
}

.alimentacao-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

.alimentacao-header {
  text-align: center;
  margin-bottom: 40px;
}

.alimentacao-title {
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 2.5rem;
  color: #2c3e50;
  margin: 0 0 10px 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.alimentacao-subtitle {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 1.1rem;
  color: #64748b;
  margin: 0;
}

.meals-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  max-width: 800px;
  margin: 0 auto 40px;
}

.meal-card {
  background: white;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid rgba(99, 102, 241, 0.1);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.meal-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  border-color: rgba(99, 102, 241, 0.2);
}

.meal-icon {
  font-size: 3rem;
  text-align: center;
  margin-bottom: 10px;
}

.meal-info {
  flex-grow: 1;
}

.meal-title {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  color: #2c3e50;
  margin: 0 0 10px 0;
  text-align: center;
}

.meal-description {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 1rem;
  color: #64748b;
  margin: 0 0 10px 0;
  text-align: center;
}

.meal-time {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 0.9rem;
  color: #f59e0b;
  text-align: center;
  background: rgba(245, 158, 11, 0.1);
  padding: 8px 12px;
  border-radius: 8px;
  margin-top: 10px;
}

.meal-price-section {
  text-align: center;
}

.meal-price {
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 1.8rem;
  color: #2c3e50;
  margin: 0 0 5px 0;
}

.meal-pix-price {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: #10b981;
  margin: 0 0 20px 0;
}

.meal-pix-price .discount-label {
  background: rgba(16, 185, 129, 0.1);
  color: #10b981;
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-left: 5px;
}

.meal-btn {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border: none;
  padding: 15px 30px;
  border-radius: 12px;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  box-shadow: 0 4px 15px rgba(118, 75, 162, 0.3);
}

.meal-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(118, 75, 162, 0.4);
  background: linear-gradient(135deg, #5a67d8 0%, #6b46c1 100%);
}

.meal-btn.disabled {
  background: #a0a0a0;
  color: #666;
  cursor: not-allowed;
  opacity: 0.6;
}

.meal-btn.disabled:hover {
  background: #a0a0a0;
  transform: none;
  box-shadow: none;
}

.meal-btn:active {
  transform: translateY(0);
}

.meal-btn:disabled {
  background: #e2e8f0;
  color: #94a3b8;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.alimentacao-notice {
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.3);
  border-radius: 12px;
  padding: 20px;
  display: flex;
  align-items: flex-start;
  gap: 15px;
  max-width: 800px;
  margin: 0 auto;
}

.notice-icon {
  font-size: 1.5rem;
  color: #f59e0b;
  flex-shrink: 0;
}

.notice-text {
  font-family: "Montserrat", sans-serif;
  font-size: 0.95rem;
  color: #92400e;
  line-height: 1.5;
}

.notice-text strong {
  font-weight: 600;
}

/* Responsivo - Tablet */
@media (max-width: 768px) {
  .section_alimentacao {
    padding: 40px 0;
  }
  
  .alimentacao-title {
    font-size: 2rem;
  }
  
  .alimentacao-subtitle {
    font-size: 1rem;
  }
  
  .meals-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 500px;
  }
  
  .meal-card {
    padding: 25px;
  }
  
  .meal-title {
    font-size: 1.2rem;
  }
  
  .meal-price {
    font-size: 1.5rem;
  }
  
  .alimentacao-notice {
    padding: 15px;
    gap: 10px;
  }
}

/* Responsivo - Mobile */
@media (max-width: 480px) {
  .alimentacao-container {
    padding: 0 15px;
  }
  
  .alimentacao-title {
    font-size: 1.8rem;
  }
  
  .meals-grid {
    max-width: 100%;
    gap: 15px;
  }
  
  .meal-card {
    padding: 20px;
    gap: 15px;
  }
  
  .meal-icon {
    font-size: 2.5rem;
  }
  
  .meal-title {
    font-size: 1.1rem;
  }
  
  .meal-description {
    font-size: 0.9rem;
  }
  
  .meal-price {
    font-size: 1.4rem;
  }
  
  .meal-btn {
    padding: 12px 20px;
    font-size: 0.9rem;
  }
  
  .notice-text {
    font-size: 0.85rem;
  }
}

/* ===== CARD DE JANTAR CUSTOMIZADO ===== */
.jantar-card {
  max-width: 600px;
  margin: 0 auto;
}

.jantar-options {
  margin-top: 20px;
  padding: 20px;
  background: #f8fafc;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
}

.sabor-section {
  margin-bottom: 20px;
}

.sabor-section label {
  display: block;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 8px;
  font-size: 14px;
  font-family: "Montserrat", sans-serif;
}

.custom-select {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e9ecef;
  border-radius: 12px;
  background: white;
  cursor: pointer;
  appearance: none;
  font-size: 16px;
  color: #2c3e50;
  font-family: "Montserrat", sans-serif;
  transition: all 0.3s ease;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%235a5c69' d='M10.293 3.293L6 7.586 1.707 3.293A1 1 0 00.293 4.707l5 5a1 1 0 001.414 0l5-5a1 1 0 10-1.414-1.414z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 12px;
  padding-right: 40px;
}

.custom-select:hover {
  border-color: #7c4dff;
}

.custom-select:focus {
  outline: none;
  border-color: #7c4dff;
  box-shadow: 0 0 0 3px rgba(124, 77, 255, 0.1);
}

.adicional-section {
  margin-top: 16px;
}

.checkbox-group {
  display: flex;
  align-items: center;
  padding: 16px;
  border: 2px solid #e9ecef;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  background: white;
  gap: 12px;
}

.checkbox-group:hover {
  border-color: #7c4dff;
  background: rgba(124, 77, 255, 0.02);
}

.checkbox {
  width: 22px;
  height: 22px;
  border: 2px solid #ddd;
  border-radius: 4px;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.checkbox.checked {
  background: #7c4dff;
  border-color: #7c4dff;
}

.checkbox .checkmark {
  display: none;
  color: white;
  font-size: 14px;
  font-weight: bold;
}

.checkbox.checked .checkmark {
  display: block;
}

.checkbox-group label {
  margin: 0;
  font-size: 15px;
  color: #2c3e50;
  font-weight: 500;
  user-select: none;
}

.price-breakdown {
  font-size: 14px;
  color: #7f8c8d;
  margin-bottom: 4px;
}

.jantar-card .meal-price {
  font-size: 1.8rem;
  color: #2c3e50;
  font-weight: 700;
}

/* Estilos para descrição do almoço */
.almoco-options {
  margin-top: 20px;
  padding: 20px;
  background: #f8fafc;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
}

.menu-section h4 {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #374151;
  margin: 0 0 12px 0;
}

.menu-items {
  list-style: none;
  padding: 0;
  margin: 0;
}

.menu-items li {
  padding: 6px 0;
  font-size: 14px;
  color: #6b7280;
  font-family: "Open Sans", sans-serif;
}

.menu-items .destaque {
  font-weight: 600;
  color: #8b5cf6;
  font-size: 15px;
}

/* Responsivo para cards de alimentação */
@media (max-width: 768px) {
  .jantar-options,
  .almoco-options {
    padding: 15px;
  }
  
  .menu-section h4 {
    font-size: 15px;
  }
  
  .menu-items li {
    font-size: 13px;
    padding: 5px 0;
  }
  
  .custom-select {
    font-size: 15px;
    padding: 10px 14px;
  }
  
  .checkbox-group {
    padding: 12px;
  }
  
  .checkbox {
    width: 20px;
    height: 20px;
  }
}
