/*
 * Home Page 3BTOUR - Novo Layout 2025
 * Baseado nas referências fornecidas pelo cliente
 * @version 3.0.0
 */

/* ===== RESET COMPLETO ===== */
body.home,
body.home #primary,
body.home #content,
body.home .entry-content,
body.home main.site-main,
body.home .site-content,
body.home .ast-container,
body.home .ast-separate-container .site-content,
body.home .ast-plain-container .site-content,
body.home .site-content > .ast-container {
  max-width: 100% !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
}

body.home .site-content {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

body.home > #content > article,
body.home .ast-article-single {
  margin: 0 !important;
  padding: 0 !important;
}

.home-editorial {
  margin: 0 !important;
  padding: 0 !important;
}

/* ===== VARIÁVEIS DE COR ===== */
:root {
  --amarelo-3b: #FFEB00;
  --azul-3b: #0051A5;
  --azul-claro: #00A8E1;
  --preto: #000000;
  --branco: #FFFFFF;
  --cinza-claro: #F5F5F5;
}

/* ===== RESET E BASE ===== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}

/* Garantir todos os wrappers full-width */
body.home,
body.home #page.site,
body.home #content.site-content,
body.home main {
  max-width: 100%;
  width: 100%;
  padding: 0;
  margin: 0;
}

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

/* ===== HERO SECTION ===== */
.hero-3b {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin: -100px 0 0 0 !important;
  padding: 100px 0 0 0 !important;
  width: 100%;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background: linear-gradient(135deg, #1a1a2e 0%, #0f3460 100%);
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.5) 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  color: var(--branco);
  max-width: 900px;
  padding: 0 40px;
}

.hero-title-new {
  font-size: 4em;
  font-weight: 700;
  line-height: 1.2;
  margin: 15px 0 50px 0;
  color: var(--branco);
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* Search Bar Amarela */
.hero-search {
  margin-top: 50px;
  position: relative; /* Para posicionar dropdown relativo ao search */
}

.search-form-3b {
  display: flex;
  align-items: stretch;
  background: var(--amarelo-3b);
  border-radius: 50px;
  padding: 8px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.3);
  max-width: 700px;
  margin: 0 auto;
  gap: 10px;
}

.search-box {
  position: relative;
  flex: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 20px;
}

.search-icon {
  color: #333;
  font-size: 1.2em;
  flex-shrink: 0;
}

.search-input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 1.05em;
  color: #000;
  background: transparent;
  font-family: 'Museo Sans Rounded', sans-serif;
  font-weight: 500;
}

.search-input::placeholder {
  color: #333;
  font-weight: 500;
}

.btn-buscar {
  background: var(--azul-3b);
  color: var(--branco);
  border: none;
  padding: 18px 40px;
  border-radius: 50px;
  font-size: 1.1em;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: inherit;
  white-space: nowrap;
}

/* Dropdown de Destinos - Posicionado próximo ao campo */
.destinos-dropdown {
  position: absolute;
  top: calc(100% + 12px); /* 12px abaixo do campo de busca */
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 40px);
  max-width: 700px;
  background: white;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  max-height: 200px;
  overflow-y: auto;
  z-index: 99999;
  display: none;
  transition: all 0.3s ease;
}

.destino-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 24px;
  color: #333;
  text-decoration: none;
  transition: all 0.2s ease;
  border-bottom: 1px solid #f0f0f0;
}

.destino-item:last-child {
  border-bottom: none;
}

.destino-item:hover {
  background: #f8f9fa;
  padding-left: 28px;
}

.destino-item i {
  color: var(--azul-3b);
  font-size: 1em;
  width: 20px;
  text-align: center;
}

.destino-item .destino-name {
  flex: 1;
  font-weight: 600;
  font-size: 0.95em;
  color: #000;
}

.destino-item .destino-count {
  font-size: 0.85em;
  color: #666;
  font-weight: 500;
}

.btn-buscar:hover {
  background: #003d7a;
  transform: scale(1.05);
}

/* CSS do dropdown movido para cima (após .btn-buscar) */

/* ===== PRINCIPAIS DESTINOS ===== */
.destinos-editorial {
  padding: 60px 0;
  background: var(--branco);
}

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

.section-title-editorial {
  font-size: 2.5em;
  font-weight: 700;
  color: var(--preto);
  margin: 0 0 15px 0;
  letter-spacing: -0.5px;
}

.section-subtitle-editorial {
  font-size: 1.15em;
  color: #666;
  font-weight: 400;
  margin: 0;
}

/* Grid Destinos: 1 Grande + Demais Pequenos (Flexível) */
.destinos-grid-5 {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 20px;
  grid-auto-rows: 290px;
  padding-top: 10px;
}

.destino-card {
  position: relative;
  display: block;
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  transition: transform 0.3s ease;
}

/* Primeiro card sempre grande (2 linhas de altura) */
.destinos-grid-5 .destino-card:first-child {
  grid-column: 1 / 2;
  grid-row: 1 / span 2;
}

/* Demais cards pequenos */
.destinos-grid-5 .destino-card:not(:first-child) {
  grid-column: span 1;
  grid-row: span 1;
}

.destino-card:hover {
  transform: translateY(-5px);
}

.destino-bg {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease;
}

.destino-card:hover .destino-bg {
  transform: scale(1.08);
}

.destino-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.7) 100%);
  display: flex;
  align-items: flex-end;
  padding: 30px;
  transition: background 0.3s ease;
}

.destino-card:hover .destino-overlay {
  background: linear-gradient(to bottom, rgba(0, 81, 165, 0.3) 0%, rgba(0, 81, 165, 0.7) 100%);
}

.destino-info {
  color: var(--branco);
  width: 100%;
}

.destino-titulo {
  font-size: 1.8em;
  font-weight: 700;
  margin: 0 0 8px 0;
  color: var(--branco);
}

.destino-card-large .destino-titulo {
  font-size: 2.5em;
}

.destino-contador {
  font-size: 0.95em;
  margin: 0;
  opacity: 0.95;
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 1px;
}

/* ===== PROGRAMAS EM DESTAQUE ===== */
.programas-destaque {
  padding: 60px 0;
  background: var(--branco);
}

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

.section-title {
  font-size: 2.5em;
  font-weight: 700;
  color: var(--preto);
  margin: 0 0 15px 0;
  letter-spacing: -0.5px;
  text-transform: uppercase;
}

.section-subtitle {
  font-size: 1.15em;
  color: #666;
  font-weight: 400;
  margin: 0;
}

.programas-grid-4 {
  display: flex;
  gap: 20px;
  margin-bottom: 50px;
  padding-top: 10px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-snap-type: x mandatory;
}

.programas-grid-4::-webkit-scrollbar {
  display: none;
}

.programas-grid-4 > * {
  flex: 0 0 calc(25% - 15px);
  min-width: 280px;
  scroll-snap-align: start;
}

.programa-card-link {
  text-decoration: none;
  color: inherit;
  display: flex;
  height: 100%;
}

.programa-card-3b {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
  min-height: 420px;
}

.programa-card-featured {
  background: var(--azul-3b);
  color: var(--branco);
  border: 2px solid var(--azul-3b);
}

.programa-card-white {
  background: var(--branco);
  border: 2px solid #e0e0e0;
}

.programa-card-3b:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.programa-card-featured:hover {
  box-shadow: 0 12px 40px rgba(0, 81, 165, 0.3);
}

.badge-destino {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.75em;
  font-weight: 600;
  letter-spacing: 0.5px;
  background: rgba(0, 0, 0, 0.2);
  color: var(--branco);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.programa-card-white .badge-destino {
  background: var(--azul-3b);
  color: var(--branco);
  border: 1px solid var(--azul-3b);
}

.card-header-3b {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.card-titulo {
  font-size: 1.1em;
  font-weight: 700;
  line-height: 1.3;
  margin: 0;
  min-height: 2.6em;
  max-height: 2.6em;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  color: var(--branco);
}

.programa-card-white .card-titulo {
  color: var(--preto);
}

.card-duracao {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9em;
  font-weight: 600;
}

.programa-card-white .card-duracao {
  color: #666;
}

.badge-actualizado {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.7em;
  font-weight: 700;
  letter-spacing: 0.5px;
  background: var(--azul-claro);
  color: var(--branco);
  width: fit-content;
  min-height: 28px;
}

.badge-actualizado.hidden {
  visibility: hidden;
  opacity: 0;
}

.card-imagem {
  position: relative;
  width: calc(100% + 40px);
  margin: auto -20px -20px;
  height: 200px;
  border-radius: 0 0 14px 14px;
  overflow: hidden;
  flex-shrink: 0;
}

.card-imagem img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.programa-card-3b:hover .card-imagem img {
  transform: scale(1.05);
}

.btn-reservar {
  position: absolute;
  bottom: 16px;
  right: 16px;
  background: var(--amarelo-3b);
  color: var(--preto);
  border: none;
  padding: 12px 24px;
  border-radius: 25px;
  font-size: 0.9em;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.btn-reservar:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.section-cta {
  text-align: center;
  margin-top: 50px;
}

.btn-ver-todos {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: var(--azul-claro);
  color: var(--branco);
  border-radius: 50px;
  font-size: 1em;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.btn-ver-todos:hover {
  background: var(--amarelo-3b);
  color: var(--preto);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 235, 0, 0.4);
}

/* ===== SETAS DE NAVEGAÇÃO ===== */
.scroll-wrapper {
  position: relative;
}

.scroll-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.95);
  border: none;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(10px);
}

.scroll-arrow i {
  font-size: 1.1em;
  color: var(--cinza-escuro);
  transition: color 0.3s ease;
}

.scroll-left {
  left: -20px;
}

.scroll-right {
  right: -20px;
}

/* Hover Programas - Azul */
.programas-destaque .scroll-arrow:hover {
  background: var(--azul-3b);
  transform: translateY(-50%) scale(1.05);
  box-shadow: 0 6px 24px rgba(0, 81, 165, 0.4);
}

.programas-destaque .scroll-arrow:hover i {
  color: var(--branco);
}

/* Hover Eventos - Amarelo */
.proximos-eventos-novo .scroll-arrow:hover {
  background: var(--preto);
  transform: translateY(-50%) scale(1.05);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.4);
}

.proximos-eventos-novo .scroll-arrow:hover i {
  color: var(--amarelo-3b);
}

/* ===== PRÓXIMOS EVENTOS ===== */
.proximos-eventos-novo {
  position: relative;
  padding: 60px 0;
  background: var(--amarelo-3b);
  overflow: hidden;
}

.proximos-eventos-novo .section-title {
  color: var(--preto);
}

.proximos-eventos-novo .section-subtitle {
  color: #333;
}

/* Card Featured Topo (Largura Total) */
.evento-featured-topo {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 30px;
  height: 350px;
}

/* Link em volta do card de destaque */
.evento-featured-link {
  display: block;
  text-decoration: none;
  width: 100%;
  height: 100%;
}

/* Imagem ocupa 100% */
.evento-featured-imagem {
  position: relative;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: 1;
}

.evento-featured-imagem:not([style*="background-image"]) {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
}

.evento-featured-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.7) 100%);
  display: flex;
  align-items: center;
  padding: 50px;
  z-index: 2;
}

.evento-featured-content {
  position: relative;
  z-index: 4;
  color: var(--branco);
  max-width: 65%;
}

.evento-tipo {
  display: block;
  font-size: 0.85em;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 15px;
  opacity: 0.9;
}

.evento-featured-titulo {
  font-size: 4.5em;
  font-weight: 900;
  line-height: 0.95;
  margin: 0 0 25px 0;
  letter-spacing: -2px;
  color: var(--branco);
}

.evento-featured-info {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95em;
  font-weight: 600;
  text-transform: uppercase;
  padding: 10px 18px;
  background: var(--amarelo-3b);
  color: var(--preto);
  border-radius: 25px;
  flex-wrap: nowrap;
  white-space: nowrap;
  max-width: 100%;
}

.separador {
  opacity: 0.5;
}

/* SVG Decorativo Amarelo SOBRE a imagem (overlay direita) - PADRÃO ONDULADO */
.grafismo-chevrons-card {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 30%;
  z-index: 3;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(255,235,0,0) 0%, rgba(255,235,0,0.3) 10%, rgba(255,235,0,0.95) 25%, #FFEB00 35%);
}

/* Padrão SVG ondulado exato da referência */
.grafismo-chevrons-card::after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200" preserveAspectRatio="none"><defs><pattern id="wave" x="0" y="0" width="50" height="40" patternUnits="userSpaceOnUse"><path d="M 0 20 Q 12.5 10, 25 20 T 50 20" fill="%23000000" opacity="0.15"/><path d="M 0 20 Q 12.5 30, 25 20 T 50 20" fill="%23000000" opacity="0.15"/></pattern></defs><rect width="200" height="200" fill="url(%23wave)"/></svg>');
  background-size: 60px 60px;
  background-repeat: repeat;
}

.eventos-grid-4 {
  display: flex;
  gap: 20px;
  padding-top: 10px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-snap-type: x mandatory;
}

.eventos-grid-4::-webkit-scrollbar {
  display: none;
}

.eventos-grid-4 > * {
  flex: 0 0 calc(25% - 15px);
  min-width: 280px;
  scroll-snap-align: start;
}

.evento-card-link {
  text-decoration: none;
  color: inherit;
  display: flex;
  height: 100%;
}

.evento-card-3b {
  background: var(--branco);
  border-radius: 16px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  border: 2px solid #e0e0e0;
  transition: all 0.3s ease;
  width: 100%;
  min-height: 420px;
}

.evento-card-3b:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  border-color: var(--preto);
}

.badges-topo {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.badge-destino-evento {
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.7em;
  font-weight: 600;
  background: var(--azul-3b);
  color: var(--branco);
  border: 1px solid var(--azul-3b);
}

.badge-data {
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.7em;
  font-weight: 600;
  background: var(--amarelo-3b);
  color: var(--preto);
  border: 1px solid var(--preto);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

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

.evento-titulo {
  font-size: 1.1em;
  font-weight: 700;
  line-height: 1.3;
  margin: 0;
  color: var(--preto);
  min-height: 2.6em;
  max-height: 2.6em;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
}

.evento-duracao {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85em;
  font-weight: 600;
  color: #666;
  text-transform: uppercase;
}

.badge-actualizado-evento {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 0.65em;
  font-weight: 700;
  text-transform: uppercase;
  background: var(--azul-claro);
  color: var(--branco);
  width: fit-content;
  min-height: 24px;
  margin-top: auto;
}

.badge-actualizado-evento:empty {
  visibility: hidden;
  opacity: 0;
}

.evento-imagem {
  position: relative;
  width: calc(100% + 40px);
  margin: auto -20px -20px;
  height: 200px;
  border-radius: 0 0 14px 14px;
  overflow: hidden;
  flex-shrink: 0;
}

.evento-imagem img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.evento-card-3b:hover .evento-imagem img {
  transform: scale(1.05);
}

.btn-reservar-evento {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: var(--amarelo-3b);
  color: var(--preto);
  border: none;
  padding: 10px 20px;
  border-radius: 25px;
  font-size: 0.85em;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.btn-reservar-evento:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

/* ===== FAQ SECTION ===== */
.faq-section {
  padding: 60px 0;
  background: var(--cinza-claro);
}

.faq-accordion {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: var(--branco);
  border-radius: 12px;
  margin-bottom: 16px;
  overflow: hidden;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: var(--azul-3b);
}

.faq-question {
  width: 100%;
  padding: 24px 28px;
  background: none;
  border: none;
  text-align: left;
  font-size: 1.1em;
  font-weight: 600;
  color: var(--preto);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  font-family: 'Museo Sans Rounded', sans-serif;
  transition: all 0.3s ease;
}

.faq-question:hover {
  color: var(--azul-3b);
}

.faq-question i {
  transition: transform 0.3s ease;
  color: var(--azul-3b);
  font-size: 0.9em;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer p,
.faq-answer div {
  padding: 0 28px 24px 28px;
  margin: 0;
  font-size: 1em;
  line-height: 1.7;
  color: #666;
}

/* ===== FOOTER PROFISSIONAL ===== */
.footer-3b {
  background: #164194; /* Azul escuro institucional */
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  padding: 0;
}

.footer-main {
  padding: 60px 0 30px 0;
}

.footer-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
}

/* Brand Column */
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-logo {
  max-width: 140px;
  height: auto;
  margin-bottom: 8px;
}

.footer-tagline {
  font-size: 0.75em;
  font-weight: 700;
  color: #fbe800; /* Amarelo 3B */
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0;
  line-height: 1.4;
}

.footer-description {
  font-size: 0.9em;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin: 0;
}

/* Footer Columns */
.footer-column {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-title {
  font-size: 1em;
  font-weight: 700;
  color: #fbe800; /* Amarelo 3B */
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0 0 8px 0;
}

.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-list li {
  font-size: 0.9em;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.footer-list li i {
  color: #fbe800;
  font-size: 0.9em;
  margin-top: 3px;
  min-width: 16px;
}

.footer-list a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-list a:hover {
  color: #fbe800;
}

/* Copyright */
.footer-3b .footer-main .footer-copyright-wrapper {
  margin-top: 40px;
  padding-top: 0;
  text-align: center;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
}

.footer-3b .footer-main .footer-copyright-wrapper::before,
.footer-3b .footer-main .footer-copyright-wrapper::after {
  display: none !important;
}

.footer-3b .footer-copyright {
  font-size: 0.85em;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  background: transparent !important;
  box-shadow: none !important;
}

.footer-copyright a {
  color: #fbe800;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.footer-copyright a:hover {
  color: #0194dd;
}

/* Responsividade */
@media (max-width: 1024px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 40px 30px;
  }
  
  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .footer-main {
    padding: 40px 0 30px 0;
  }
  
  .footer-container {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 0 20px;
  }
  
  .footer-brand {
    text-align: center;
    align-items: center;
  }
  
  .footer-logo {
    max-width: 120px;
  }
  
  .footer-column {
    text-align: center;
    align-items: center;
  }
  
  .footer-list li {
    justify-content: center;
  }
  
  .footer-bottom .footer-container {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}

/* ===== RESPONSIVIDADE ===== */
@media (max-width: 1024px) {
  .container-editorial {
    padding: 0 30px;
  }
  
  .hero-title-new {
    font-size: 3em;
  }
  
  .scroll-arrow {
    display: none;
  }
  
  .destinos-grid-5 {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 280px;
  }
  
  .programas-grid-4 > * {
    flex: 0 0 calc(50% - 10px);
    min-width: 250px;
  }
  
  .eventos-grid-4 > * {
    flex: 0 0 calc(50% - 10px);
    min-width: 250px;
  }
  
  .evento-featured-topo {
    height: 300px;
  }
  
  .evento-featured-titulo {
    font-size: 3em;
  }
  
  .evento-featured-overlay {
    padding: 40px;
  }
  
  .evento-featured-content {
    max-width: 60%;
  }
  
  .grafismo-chevrons-card {
    width: 30%;
  }
}

@media (max-width: 768px) {
  .container-editorial {
    padding: 0 20px;
  }
  
  .hero-3b {
    min-height: 600px;
    padding: 80px 0 0 0 !important;
  }
  
  .hero-title-new {
    font-size: 2.2em;
    margin-bottom: 30px;
  }
  
  .search-form-3b {
    flex-direction: column;
    border-radius: 20px;
    padding: 16px;
    gap: 12px;
  }
  
  .search-box {
    width: 100%;
    padding: 0 12px;
  }
  
  .search-input {
    font-size: 0.9em;
  }
  
  .search-input::placeholder {
    font-size: 0.95em;
  }
  
  .btn-buscar {
    width: 100%;
    padding: 16px;
    border-radius: 12px;
  }
  
  /* Dropdown mobile - empilhar cidade e quantidade */
  .destinos-dropdown {
    width: calc(100% - 20px);
  }
  
  .destino-item {
    flex-direction: column;
    align-items: flex-start;
    padding: 14px 20px;
    gap: 6px;
  }
  
  .destino-item i {
    position: absolute;
    left: 20px;
    top: 16px;
  }
  
  .destino-item .destino-name {
    padding-left: 28px;
    font-size: 0.95em;
  }
  
  .destino-item .destino-count {
    padding-left: 28px;
    font-size: 0.8em;
    color: #999;
  }
  
  .destino-item:hover {
    padding-left: 20px;
  }
  
  .destinos-grid-5 {
    grid-template-columns: 1fr;
    grid-auto-rows: 260px;
    gap: 16px;
  }
  
  .destino-card-large,
  .destino-card-small {
    grid-column: span 1;
    grid-row: span 1;
    min-height: 300px;
  }
  
  .section-title,
  .section-title-editorial {
    font-size: 2em;
  }
  
  .programas-grid-4 > * {
    flex: 0 0 85%;
    min-width: 280px;
  }
  
  .eventos-grid-4 > * {
    flex: 0 0 85%;
    min-width: 280px;
  }
  
  .evento-featured-topo {
    height: 280px;
  }
  
  .grafismo-chevrons-card {
    width: 40%;
  }
  
  .evento-featured-titulo {
    font-size: 2em;
  }
  
  .evento-featured-overlay {
    padding: 25px;
  }
  
  .evento-featured-content {
    max-width: 60%;
  }
  
  .evento-featured-info {
    font-size: 0.7em;
    padding: 8px 12px;
    gap: 6px;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .evento-featured-info i {
    font-size: 1em;
  }
  
  .evento-tipo {
    font-size: 0.7em;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }
  
  .footer-logo {
    align-items: center;
  }
  
  .footer-tagline {
    text-align: center;
  }
}
