:root {
  --primary: #3a78c9;
  --primary-dark: #2c5fa3;
  --primary-light: #6da5e0;
  --primary-alpha: rgba(58,120,201,0.1);
  --accent: #e67e22;
  --accent-alpha: rgba(230,126,34,0.1);
  --fresh: #1a9e7a;
  --fresh-alpha: rgba(26,158,122,0.1);
  --bg: #ffffff;
  --bg-alt: #f8f6f3;
  --bg-alt2: #f3f6fa;
  --bg-card: #ffffff;
  --text-heading: #1a2332;
  --text-body: #4a5568;
  --text-muted: #8b95a5;
  --border: #e8ecf0;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.04), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.06);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.08);
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 14px;
  --radius-xl: 18px;
  --transition: 0.3s ease;
  --font: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-alt: 'Open Sans', -apple-system, BlinkMacSystemFont, sans-serif;
}

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
}

body {
  font-family: var(--font);
  color: var(--text-body);
  background: var(--bg);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul { list-style: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 72px 0;
  position: relative;
}

.section-alt {
  background: var(--bg-alt);
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 40px;
}

.section-header-left {
  text-align: left;
  margin: 0 0 32px;
}

.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 10px;
  color: var(--primary);
}

.section-header h2 {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 14px;
  color: var(--text-heading);
}

.section-header p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 580px;
  margin: 0 auto;
}

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

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: 5px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
}

.btn-sm {
  padding: 8px 20px;
  font-size: 0.85rem;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(58, 120, 201, 0.3);
}

.btn-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.6);
}

.btn-outline:hover {
  background: #3a78c9;
  border-color: #3a78c9;
  color: #fff;
  transform: translateY(-2px);
}

/* ---- Top Bar ---- */
.top-bar {
  background: #1e2a3e;
  color: rgba(255,255,255,0.9);
  font-size: 0.8rem;
  padding: 10px 0;
}

.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.top-bar-info {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.top-bar-info i {
  margin-right: 6px;
  color: rgba(255,255,255,0.7);
}

.top-bar-social {
  display: flex;
  gap: 12px;
}

.top-bar-social a {
  color: rgba(255,255,255,0.8);
  transition: color 0.3s;
}

.top-bar-social a:hover { color: #fff; }

/* ---- Header ---- */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #1e2a3e;
  transition: background 0.3s;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.5rem;
  font-weight: 800;
}

.logo-icon {
  color: #fff;
  font-size: 1.3rem;
}

.logo-text { color: #fff; }

.logo-highlight { color: rgba(255,255,255,0.7); }

.nav-list {
  display: flex;
  gap: 4px;
}

.nav-link {
  color: rgba(255,255,255,0.85);
  font-size: 0.88rem;
  font-weight: 400;
  padding: 8px 14px;
  border-radius: 4px;
  transition: all 0.3s;
}

.nav-link:hover,
.nav-link.active {
  color: #fff;
  background: rgba(255,255,255,0.1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* ---- Header Search ---- */
.header-search {
  position: relative;
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 24px;
  padding: 6px 14px;
  transition: all 0.3s;
}

.header-search:focus-within {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.4);
}

.header-search i {
  color: rgba(255,255,255,0.7);
  font-size: 0.85rem;
  margin-right: 8px;
}

.header-search input {
  background: none;
  border: none;
  outline: none;
  color: #fff;
  font-size: 0.85rem;
  width: 200px;
  font-family: var(--font-alt);
  transition: width 0.3s;
}

.header-search:focus-within input {
  width: 260px;
}

.header-search input::placeholder {
  color: rgba(255,255,255,0.5);
}

.header-search-results {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  min-width: 360px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.15);
  border: 1px solid var(--border);
  max-height: 400px;
  overflow-y: auto;
  display: none;
  z-index: 1000;
}

.header-search-results.active {
  display: block;
}

.header-search-result {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  text-decoration: none;
  color: var(--text-body);
  transition: background 0.2s;
  border-bottom: 1px solid var(--border);
}

.header-search-result:last-child {
  border-bottom: none;
}

.header-search-result:hover {
  background: #f5f7fa;
}

.header-search-result-img {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
}

.header-search-result-info h4 {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-heading);
  margin-bottom: 2px;
}

.header-search-result-info span {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.header-search-no-results {
  padding: 24px 16px;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.btn-header-cta {
  padding: 5px 14px;
  font-size: 0.78rem;
  background: transparent;
  color: #fff;
  border-radius: 4px;
  border: 1px solid rgba(255,255,255,0.5);
  transition: all 0.3s;
  font-weight: 400;
}

.btn-header-cta:hover {
  background: #3a78c9;
  border-color: #3a78c9;
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.menu-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s;
}

/* ---- Hero ---- */
.hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-slider {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.8s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-slide.active { opacity: 1; }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,35,55,0.88) 0%, rgba(26,35,55,0.45) 65%, rgba(26,35,55,0) 85%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 640px;
  width: 100%;
  padding: 20px 0;
  text-align: center;
  margin: 0 auto;
}

.hero-badge {
  display: inline-block;
  background: rgba(58, 120, 201, 0.2);
  color: #6da5e0;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 20px;
  margin-bottom: 12px;
  border: 1px solid rgba(58, 120, 201, 0.3);
}

.hero-content h1 {
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 12px;
}

.hero-content p {
  font-size: 0.95rem;
  font-weight: 300;
  color: rgba(255,255,255,0.75);
  line-height: 1.6;
  margin: 0 auto 20px;
  max-width: 520px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

/* Slider Arrows */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.08);
  color: #fff;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  backdrop-filter: blur(4px);
}

.slider-arrow:hover {
  background: #3a78c9;
  border-color: #3a78c9;
}

.slider-arrow.prev { left: 24px; }

.slider-arrow.next { right: 24px; }

/* ---- Shape Divider ---- */
.shape-divider {
  position: relative;
  width: 100%;
  line-height: 0;
  z-index: 2;
  pointer-events: none;
}

.hero .shape-divider {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  pointer-events: none;
}

.hero .shape-divider svg {
  transform: scaleY(-1);
}

.shape-divider svg {
  display: block;
  width: 100%;
  height: 60px;
}

.shape-divider .shape-fill {
  fill: var(--bg-alt2);
}

@media (max-width: 768px) {
  .shape-divider svg { height: 30px; }
}

/* ---- Categorias Section ---- */
#categorias {
  background: var(--bg-alt2);
}

/* ---- Promo Grid (Categorias) ---- */
.promo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.promo-box {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  cursor: pointer;
  transition: transform 0.4s ease;
  aspect-ratio: 3 / 4;
}

.promo-content {
  width: 100%;
}

.promo-box:hover {
  transform: translateY(-6px);
}

.promo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.2) 100%);
  transition: background 0.3s;
}

.promo-box:hover .promo-overlay {
  background: linear-gradient(0deg, rgba(58,120,201,0.85) 0%, rgba(58,120,201,0.3) 100%);
}

.promo-content {
  position: relative;
  z-index: 2;
  padding: 28px;
  color: #fff;
}

.promo-content h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.promo-content p {
  font-size: 0.85rem;
  line-height: 1.6;
  opacity: 0.85;
}

/* ---- Destaques (3 cards) ---- */
.section-destaques {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-alt2) 100%);
  padding: 40px 0 70px;
}

.destaques-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.card-destaque {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 48px 32px 40px;
  text-align: center;
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
  box-shadow: var(--shadow-sm);
  display: block;
  position: relative;
  overflow: hidden;
}

.card-destaque::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light), var(--primary));
  background-size: 200% 100%;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.card-destaque:hover::before {
  opacity: 1;
  animation: shimmer 2s linear infinite;
}

@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

.card-destaque:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border-card);
}

.card-destaque-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  position: relative;
}

.card-destaque:nth-child(1) .card-destaque-icon {
  background: linear-gradient(135deg, #e8f0fe, #d0e2fc);
  color: var(--primary);
  box-shadow: 0 8px 24px rgba(26,115,232,0.15);
}

.card-destaque:nth-child(2) .card-destaque-icon {
  background: linear-gradient(135deg, #fef3e8, #fce4cc);
  color: #e67e22;
  box-shadow: 0 8px 24px rgba(230,126,34,0.15);
}

.card-destaque:nth-child(3) .card-destaque-icon {
  background: linear-gradient(135deg, #e8faf0, #c8f0dc);
  color: #16a34a;
  box-shadow: 0 8px 24px rgba(22,163,74,0.15);
}

.card-destaque:hover .card-destaque-icon {
  transform: scale(1.15) rotate(-3deg);
}

.card-destaque:nth-child(1):hover .card-destaque-icon {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  box-shadow: 0 12px 32px rgba(26,115,232,0.3);
}

.card-destaque:nth-child(2):hover .card-destaque-icon {
  background: linear-gradient(135deg, #e67e22, #d35400);
  color: #fff;
  box-shadow: 0 12px 32px rgba(230,126,34,0.3);
}

.card-destaque:nth-child(3):hover .card-destaque-icon {
  background: linear-gradient(135deg, #16a34a, #15803d);
  color: #fff;
  box-shadow: 0 12px 32px rgba(22,163,74,0.3);
}

.card-destaque h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 14px;
}

.card-destaque p {
  font-size: 0.9rem;
  color: var(--text-body);
  line-height: 1.75;
  margin-bottom: 20px;
}

.card-destaque-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.4s ease;
  position: relative;
}

.card-destaque-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s ease;
}

.card-destaque:hover .card-destaque-link {
  gap: 14px;
}

.card-destaque:hover .card-destaque-link::after {
  transform: scaleX(1);
  transform-origin: left;
}

.card-destaque:nth-child(1):hover .card-destaque-link { color: var(--primary); }
.card-destaque:nth-child(2):hover .card-destaque-link { color: #e67e22; }
.card-destaque:nth-child(3):hover .card-destaque-link { color: #16a34a; }

@media (max-width: 768px) {
  .destaques-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .card-destaque {
    padding: 36px 24px 32px;
  }
}

/* ---- Video Section ---- */
.section-video {
  background: var(--bg-alt);
}

.video-ctrl-btn {
  position: absolute;
  bottom: 20px;
  right: 20px;
  z-index: 3;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: rgba(0,0,0,0.6);
  color: #fff;
  font-size: 1.1rem;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s, background 0.3s;
}
.video-ctrl-btn:hover {
  background: rgba(0,0,0,0.8);
}

.video-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

.video-placeholder {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.3);
}

.video-play {
  position: relative;
  z-index: 2;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  border: 3px solid rgba(255,255,255,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #fff;
  transition: all 0.3s;
  backdrop-filter: blur(4px);
}

.video-placeholder:hover .video-play {
  background: #3a78c9;
  border-color: #3a78c9;
  transform: scale(1.1);
}

/* ---- Counters ---- */
.section-counters {
  background: linear-gradient(135deg, var(--bg-alt) 0%, var(--bg) 100%);
  padding: 60px 0;
}

.counters-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.counter-item {
  padding: 24px;
}

.counter-number {
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--primary-light);
  line-height: 1;
}

.counter-suffix {
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--primary-light);
  margin-left: 4px;
}

.counter-label {
  display: block;
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-top: 8px;
  font-weight: 500;
}

/* ---- Info Section ---- */
.section-info {
  background: var(--bg-alt);
}

.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.info-content p {
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 20px;
}

.info-content .btn {
  margin-top: 12px;
}

.info-images {
  position: relative;
  min-height: 400px;
}

.info-img-main {
  width: 85%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
  position: relative;
  z-index: 2;
}

.info-img-main img {
  width: 100%;
  height: 360px;
  object-fit: cover;
}

.info-img-sec {
  position: absolute;
  bottom: -20px;
  right: 0;
  width: 55%;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  z-index: 3;
  border: 4px solid var(--bg-alt);
}

.info-img-sec img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

/* ---- Guide Section ---- */
.section-guide {
  background: var(--bg-alt2);
}

.guide-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.guide-step {
  display: flex;
  gap: 20px;
  margin-bottom: 32px;
  align-items: flex-start;
}

.guide-icon {
  width: 52px;
  height: 52px;
  min-width: 52px;
  background: rgba(58, 120, 201, 0.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: #3a78c9;
}

.guide-text h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: #1a1a2e;
}

.guide-text p {
  font-size: 0.88rem;
  color: #777;
  line-height: 1.6;
}

.guide-cards-horizontal {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.guide-cards {
  display: grid;
  gap: 20px;
}

.guide-card {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  padding: 28px;
  transition: all var(--transition);
  border: 1px solid var(--border);
}

.guide-card:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-4px);
}

.guide-card-icon {
  display: inline-flex;
  width: 44px;
  height: 44px;
  background: var(--primary-alpha);
  border-radius: 10px;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--primary);
  margin-bottom: 16px;
  transition: all var(--transition);
}

.guide-card:hover .guide-card-icon {
  background: rgba(255,255,255,0.2);
  color: #fff;
}

.guide-card h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-heading);
}

.guide-card p {
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--text-body);
}

.guide-card:hover p {
  opacity: 0.9;
}

/* ---- Partners ---- */
.section-partners {
  background: #f8f9fc;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  align-items: center;
}

.partner-logo {
  padding: 28px 16px;
  text-align: center;
  background: #fff;
  border-radius: 8px;
  border: 1px solid #eee;
  transition: all 0.3s;
}

.partner-logo:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
  border-color: transparent;
}

.partner-logo span {
  font-size: 1.1rem;
  font-weight: 700;
  color: #bbb;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ---- Blog Grid ---- */
.section-grid .section-header {
  margin-bottom: 40px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.blog-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.4s ease;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.section-alt .blog-card {
  border-color: var(--border);
}

.blog-card-img {
  height: 220px;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.blog-card:hover .blog-card-img {
  transform: scale(1.08);
}

.blog-card-body {
  padding: 20px;
}

.blog-tag {
  display: inline-block;
  background: var(--primary-alpha);
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 4px 12px;
  border-radius: 4px;
  margin-bottom: 12px;
}

.blog-card-body h3 {
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 10px;
  color: var(--text-heading);
}

.blog-card-body > p {
  font-size: 0.85rem;
  color: var(--text-body);
  line-height: 1.6;
  margin-bottom: 16px;
}

.blog-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.blog-meta i { margin-right: 4px; }

.blog-read {
  color: var(--primary);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap 0.3s;
}

.blog-read:hover { gap: 8px; }

/* ---- Testimonials ---- */
.testimonials {
  background: linear-gradient(135deg, #1a2a44 0%, #1a2332 100%);
  position: relative;
  color: #fff;
}

.testimonials .section-header h2 { color: #fff; }

.testimonials .section-header p { color: rgba(255,255,255,0.6); }

.testimonial-carousel {
  max-width: 700px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
}

.testimonial-track {
  display: flex;
  transition: transform 0.5s ease;
}

.testimonial-card {
  min-width: 100%;
  padding: 0 24px;
  text-align: center;
}

.testimonial-stars {
  color: #f1c40f;
  font-size: 1.5rem;
  margin-bottom: 24px;
  letter-spacing: 4px;
}

.testimonial-card > p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.8);
  font-style: italic;
  margin-bottom: 32px;
  font-weight: 300;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.testimonial-author img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(58, 120, 201, 0.4);
}

.testimonial-author strong {
  display: block;
  color: #fff;
  font-size: 1rem;
}

.testimonial-author span {
  display: block;
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
}

.testimonial-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

.testimonial-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.06);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.testimonial-btn:hover {
  background: #3a78c9;
  border-color: #3a78c9;
}

.testimonial-dots {
  display: flex;
  gap: 8px;
}

.testimonial-dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.3);
  background: transparent;
  cursor: pointer;
  transition: all 0.3s;
  padding: 0;
}

.testimonial-dots button.active {
  background: #3a78c9;
  border-color: #3a78c9;
}

/* ---- Newsletter ---- */
.section-newsletter {
  background: var(--bg-alt);
  padding: 60px 0;
}

.newsletter-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  background: var(--bg-card);
  border-radius: var(--radius-xl);
  padding: 52px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}

.newsletter-content .section-tag {
  margin-bottom: 8px;
}

.newsletter-content h2 {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-heading);
}

.newsletter-content p {
  color: var(--text-muted);
  font-size: 0.92rem;
}

.newsletter-input-group {
  display: flex;
  gap: 12px;
}

.newsletter-input-group input {
  flex: 1;
  padding: 14px 20px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: var(--bg);
  color: var(--text-heading);
  font-size: 0.9rem;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  font-family: var(--font);
}

.newsletter-input-group input::placeholder { color: var(--text-muted); }
.newsletter-input-group input:focus { border-color: var(--primary); box-shadow: 0 0 0 3px var(--primary-alpha); }

.newsletter-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 12px;
}

/* ---- Footer ---- */
.footer {
  background: #1e2a3e;
  color: rgba(255,255,255,0.65);
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand .logo { margin-bottom: 16px; }

.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.5);
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  color: rgba(255,255,255,0.5);
  transition: all 0.3s;
  font-size: 0.85rem;
}

.footer-social a:hover {
  background: #3a78c9;
  border-color: #3a78c9;
  color: #fff;
}

.footer h4 {
  color: #fff;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 18px;
}

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links a {
  color: rgba(255,255,255,0.5);
  font-size: 0.88rem;
  transition: color 0.3s;
}

.footer-links a:hover { color: #3a78c9; }

.footer-contact p {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
}

.footer-contact i {
  color: #3a78c9;
  width: 16px;
}

.footer-bottom {
  text-align: center;
  padding: 24px 0;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.35);
}

/* ---- Back to Top ---- */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 999;
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  background: var(--primary);
  color: #fff;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all var(--transition);
  box-shadow: 0 4px 16px var(--primary-alpha);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(58,120,201,0.3);
}

/* ---- Toolbar do Viajante ---- */
.travel-toolbar {
  display: none;
  position: sticky;
  top: 0;
  z-index: 999;
  background: #fff;
  border-bottom: 1px solid #eef2f7;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.travel-toolbar.loaded {
  display: block;
}

.travel-toolbar.hidden {
  transform: translateY(-100%);
  opacity: 0;
}

.travel-toolbar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 6px 24px;
}

.travel-toolbar-title {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-right: 12px;
  white-space: nowrap;
  font-family: 'Poppins', sans-serif;
}

.travel-toolbar-title i {
  color: #3a78c9;
  font-size: 0.85rem;
}

.travel-toolbar-links {
  display: flex;
  gap: 2px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.travel-toolbar-links::-webkit-scrollbar {
  display: none;
}

.travel-toolbar-item {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 5px 12px;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  color: #555;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.25s ease;
  border: 1px solid transparent;
  font-family: 'Poppins', sans-serif;
}

.travel-toolbar-item i {
  font-size: 0.8rem;
  color: var(--item-color, #3a78c9);
  transition: transform 0.25s ease;
}

.travel-toolbar-item:hover {
  background: var(--item-color, #3a78c9);
  color: #fff;
  border-color: var(--item-color, #3a78c9);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.travel-toolbar-item:hover i {
  color: #fff;
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .travel-toolbar-inner {
    justify-content: center;
    padding: 6px 24px;
    gap: 4px;
  }

  .travel-toolbar-title {
    display: flex;
  }

  .travel-toolbar-item {
    padding: 5px 12px;
    font-size: 0.75rem;
  }

  .travel-toolbar-item i {
    font-size: 0.8rem;
  }
}

/* ==============================
   Responsive
   ============================== */

@media (max-width: 1024px) {
  .top-bar-info span:nth-child(3) { display: none; }
  .promo-grid { grid-template-columns: repeat(2, 1fr); }
  .guide-grid { grid-template-columns: 1fr; }
  .info-grid { grid-template-columns: 1fr; gap: 40px; }
}

.section-sidebar {
  padding: 60px 0 80px;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #1a1a2e 100%);
  position: relative;
}

.section-sidebar .section-tag {
  color: #3a78c9;
  background: rgba(58,120,201,0.15);
}

.section-sidebar .section-header h2 {
  color: #fff;
}

.section-sidebar .section-header p {
  color: rgba(255,255,255,0.65);
}

.section-sidebar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  border-radius: 2px;
}

.sidebar-home-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 32px;
  margin-top: 24px;
}

.sidebar-home-widget {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.sidebar-home-widget:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
}

.sidebar-home-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--primary);
  font-family: var(--font);
  display: flex;
  align-items: center;
  gap: 10px;
}

.sidebar-home-title i {
  color: #3a78c9;
  font-size: 1.1rem;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(58, 120, 201, 0.08);
  border-radius: 8px;
}

.sidebar-home-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar-home-list li {
  padding: 12px 0;
  border-bottom: 1px solid var(--border-card);
  transition: padding-left 0.2s;
}

.sidebar-home-list li:last-child {
  border-bottom: none;
}

.sidebar-home-list li:hover {
  padding-left: 6px;
}

.sidebar-home-list a {
  color: var(--text-body);
  text-decoration: none;
  font-size: 0.9rem;
  line-height: 1.45;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-family: var(--font-alt);
  transition: color var(--transition);
}

.sidebar-home-list a:hover {
  color: var(--primary);
}

.sidebar-home-list .post-date {
  font-size: 0.75rem;
  color: #999;
  white-space: nowrap;
  flex-shrink: 0;
}

.sidebar-home-list .post-arrow {
  color: #3a78c9;
  font-size: 0.75rem;
  opacity: 0;
  transition: opacity 0.2s, transform 0.2s;
  flex-shrink: 0;
}

.sidebar-home-list li:hover .post-arrow {
  opacity: 1;
  transform: translateX(3px);
}

.sidebar-home-count {
  float: right;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 3px 14px;
  border-radius: 20px;
  min-width: 28px;
  text-align: center;
  transition: transform 0.2s;
}

.sidebar-home-list li:hover .sidebar-home-count {
  transform: scale(1.1);
}

@media (max-width: 992px) {
  .sidebar-home-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .newsletter-box { grid-template-columns: 1fr; gap: 32px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .hero-content h1 { font-size: 2.2rem; }
  .counters-grid { grid-template-columns: repeat(2, 1fr); }
  .partners-grid { grid-template-columns: repeat(3, 1fr); }
  .info-img-main img { height: 300px; }
  .info-img-sec img { height: 160px; }
  .video-placeholder { height: 300px; }
}

@media (max-width: 768px) {
  .top-bar { display: none; }
  .nav { display: none; }
  .nav.open {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #1e2a3e;
    padding: 16px 24px;
    border-top: 1px solid rgba(255,255,255,0.1);
  }
  .nav-list { flex-direction: column; gap: 4px; }
  .menu-toggle { display: flex; }
  .btn-header-cta { display: none; }
  .header-search { display: none; }
  .hero { min-height: 60vh; }
  .hero-content { padding: 20px 0; }
  .hero-content h1 { font-size: 1.5rem; }
  .hero-content p { font-size: 0.88rem; }
  .slider-arrow { width: 36px; height: 36px; font-size: 0.9rem; }
  .slider-arrow.prev { left: 12px; }
  .slider-arrow.next { right: 12px; }
  .section-header h2 { font-size: 1.4rem; }
  .section { padding: 48px 0; }
  .promo-grid { grid-template-columns: 1fr; }
  .promo-box { aspect-ratio: 2 / 3; }
  .blog-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .newsletter-box { padding: 32px; }
  .newsletter-input-group { flex-direction: column; }
  .counters-grid { grid-template-columns: repeat(2, 1fr); }
  .counter-number { font-size: 2.2rem; }
  .partners-grid { grid-template-columns: repeat(2, 1fr); }
  .info-images { min-height: 280px; }
  .info-img-main img { height: 240px; }
  .info-img-sec { width: 50%; }
  .info-img-sec img { height: 140px; }
  .guide-cards,
  .guide-cards-horizontal { grid-template-columns: 1fr; }
  .video-placeholder { height: 220px; }
  .back-to-top { bottom: 20px; right: 20px; width: 40px; height: 40px; font-size: 1rem; }
}

@media (max-width: 480px) {
  .hero-buttons { flex-direction: column; }
  .btn { text-align: center; justify-content: center; }
  .partners-grid { grid-template-columns: repeat(2, 1fr); }
  .guide-step { flex-direction: column; gap: 12px; }
}

/* ---- Reveal on scroll (via IntersectionObserver, not CSS scroll-timeline) ---- */
.reveal-on-scroll,
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal-on-scroll.revealed,
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.newsletter-input-group .btn {
  border-radius: var(--radius-md);
}

/* ---- Responsivo extra: tablets grandes ---- */
@media (min-width: 1200px) {
  .container {
    padding: 0 32px;
  }
  .hero-content h1 {
    font-size: 3.2rem;
  }
}

/* ---- Ajuste nav para telas médias ---- */
@media (max-width: 1100px) and (min-width: 769px) {
  .nav-link {
    font-size: 0.8rem;
    padding: 6px 10px;
  }
}

/* ---- Melhorias mobile adicionais ---- */
@media (max-width: 768px) {
  .section-header h2 {
    font-size: 1.3rem;
  }
  .section-sidebar {
    padding: 40px 0 60px;
  }
  .sidebar-home-widget {
    padding: 20px;
  }
  .blog-card-img {
    height: 180px;
  }
}

/* ---- Efeito sutil no header ao scroll ---- */
.header.scrolled {
  background: rgba(99, 154, 203, 0.97);
  box-shadow: 0 1px 8px rgba(0,0,0,0.06);
}

/* ---- Cards ---- */

/* ---- Transições suaves nas imagens ---- */
.promo-box {
  border-radius: var(--radius-xl);
}

.promo-content h3 {
  font-size: 1.25rem;
}

/* ---- Melhor espaçamento no grid de posts ---- */
.blog-grid {
  gap: 24px;
}

/* ---- Counter com visual moderno ---- */
.counter-item {
  position: relative;
}

.counter-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 32px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 2px;
}

/* ==============================
   Turismo Page
   ============================== */

/* Hero */
.tur-hero {
  position: relative;
  min-height: 40vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.tur-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.tur-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(22,33,62,0.93) 0%, rgba(26,26,46,0.65) 100%);
}

.tur-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
  padding: 40px 0;
}

.tur-hero-badge {
  display: inline-block;
  background: rgba(58, 120, 201, 0.2);
  color: #6da5e0;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 20px;
  margin-bottom: 20px;
  border: 1px solid rgba(58, 120, 201, 0.3);
}

.tur-hero-content h1 {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 16px;
}

.tur-hero-content p {
  font-size: 1.1rem;
  font-weight: 300;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  margin: 0 auto 36px;
  max-width: 560px;
}

/* --- Destaques --- */
.tur-destaques-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 20px;
}

.tur-destaque-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  display: block;
  text-decoration: none;
  color: #fff;
  min-height: 380px;
}

.tur-destaque-main {
  min-height: 380px;
}

.tur-destaque-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease;
}

.tur-destaque-card:hover .tur-destaque-img {
  transform: scale(1.06);
}

.tur-destaque-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.15) 60%, rgba(0,0,0,0.05) 100%);
  transition: background 0.4s;
}

.tur-destaque-card:hover .tur-destaque-overlay {
  background: linear-gradient(0deg, rgba(26,26,46,0.9) 0%, rgba(58,120,201,0.3) 100%);
}

.tur-destaque-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px;
  z-index: 2;
}

.tur-destaque-tag {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(4px);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 4px 12px;
  border-radius: 4px;
  margin-bottom: 12px;
  border: 1px solid rgba(255,255,255,0.2);
}

.tur-destaque-info h3 {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 8px;
}

.tur-destaque-main .tur-destaque-info h3 {
  font-size: 1.5rem;
}

.tur-destaque-info p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.5;
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.tur-destaque-read {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #6da5e0;
  transition: gap 0.3s;
}

.tur-destaque-card:hover .tur-destaque-read { gap: 10px; }

/* --- Info Boxes --- */
.tur-infoboxes {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.tur-infobox {
  display: flex;
  flex-direction: column;
  border-radius: 16px;
  padding: 32px 24px;
  color: #fff;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  min-height: 220px;
}

.tur-infobox:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.15);
}

.tur-infobox-icon {
  width: 48px;
  height: 48px;
  background: rgba(255,255,255,0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 16px;
}

.tur-infobox h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.tur-infobox p {
  font-size: 0.85rem;
  opacity: 0.85;
  line-height: 1.5;
  flex: 1;
}

.tur-infobox-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-top: 16px;
  opacity: 0.9;
  transition: gap 0.3s;
}

.tur-infobox:hover .tur-infobox-link { gap: 10px; }

/* --- Cultura destaque --- */
.tur-cultura-grid {
  max-width: 800px;
  margin: 0 auto;
}

.tur-cultura-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  border: 1px solid #eee;
  transition: box-shadow 0.3s;
}

.tur-cultura-card:hover {
  box-shadow: 0 16px 48px rgba(0,0,0,0.08);
}

.tur-cultura-img {
  min-height: 320px;
  background-size: cover;
  background-position: center;
}

.tur-cultura-body {
  padding: 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.tur-cultura-body .section-tag {
  margin-bottom: 8px;
}

.tur-cultura-body h3 {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 14px;
  color: #1a1a2e;
}

.tur-cultura-body p {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.7;
  margin-bottom: 20px;
}

/* --- Recursos Práticos --- */
.tur-recursos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.tur-recurso-card {
  background: #fff;
  border-radius: 16px;
  padding: 28px;
  border: 1px solid #eee;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.tur-recurso-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.06);
  border-color: transparent;
}

.tur-recurso-icon {
  width: 52px;
  height: 52px;
  background: rgba(58, 120, 201, 0.08);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: #3a78c9;
  margin-bottom: 16px;
}

.tur-recurso-card h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: #1a1a2e;
}

.tur-recurso-card p {
  font-size: 0.85rem;
  color: #777;
  line-height: 1.6;
  flex: 1;
  margin-bottom: 20px;
}

.tur-recurso-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.btn-outline-recurso {
  background: #f0f4f8;
  color: #3a78c9;
  border: 1px solid #dce4ec;
  font-size: 0.82rem;
  padding: 8px 16px;
  justify-content: center;
}

.btn-outline-recurso:hover {
  background: #3a78c9;
  color: #fff;
  border-color: #3a78c9;
  transform: none;
  box-shadow: none;
}

.btn-recurso-post {
  background: transparent;
  color: #666;
  border: 1px solid #ddd;
  font-size: 0.82rem;
  padding: 8px 16px;
  justify-content: center;
}

.btn-recurso-post:hover {
  border-color: #3a78c9;
  color: #3a78c9;
  transform: none;
  box-shadow: none;
}

/* --- Câmbio ao Vivo --- */
.tur-cambio-loading {
  text-align: center;
  padding: 40px;
  color: #888;
  font-size: 1rem;
}

.tur-cambio-table {
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
  border-collapse: collapse;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}

.tur-cambio-table th {
  background: #f8f9fc;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #888;
  font-weight: 600;
  padding: 14px 20px;
  text-align: left;
  border-bottom: 2px solid #eef2f7;
}

.tur-cambio-table td {
  padding: 14px 20px;
  font-size: 0.92rem;
  color: #333;
  border-bottom: 1px solid #f4f6fa;
}

.tur-cambio-table tr:last-child td {
  border-bottom: none;
}

.tur-cambio-table tr:hover td {
  background: #fafbfd;
}

.tur-cambio-stable {
  color: #27ae60;
  font-size: 0.85rem;
}

.tur-cambio-stable i {
  margin-right: 4px;
}

.tur-cambio-update {
  text-align: center;
  font-size: 0.78rem;
  color: #aaa;
  margin-top: 16px;
}

.tur-cambio-error {
  text-align: center;
  padding: 40px;
  color: #e67e22;
}

.tur-cambio-error i {
  font-size: 2rem;
  margin-bottom: 12px;
}

.tur-cambio-hint {
  font-size: 0.85rem;
  color: #888;
  margin-top: 12px;
}

.tur-cambio-hint a {
  color: #3a78c9;
  font-weight: 600;
}

/* Responsivo Turismo Blog */
@media (max-width: 1024px) {
  .tur-destaques-grid { grid-template-columns: 1fr; }
  .tur-destaque-main { min-height: 320px; }
  .tur-infoboxes { grid-template-columns: repeat(2, 1fr); }
  .tur-recursos-grid { grid-template-columns: repeat(2, 1fr); }
  .tur-cultura-card { grid-template-columns: 1fr; }
  .tur-cultura-img { min-height: 240px; }
  .tur-cultura-body { padding: 28px; }
  .tur-cultura-body h3 { font-size: 1.3rem; }
}

@media (max-width: 768px) {
  .tur-hero { min-height: 50vh; }
  .tur-hero-content h1 { font-size: 1.6rem; }
  .tur-destaque-card { min-height: 280px; }
  .tur-destaque-main { min-height: 280px; }
  .tur-destaque-info h3 { font-size: 1.1rem; }
  .tur-destaque-main .tur-destaque-info h3 { font-size: 1.2rem; }
  .tur-infoboxes { grid-template-columns: 1fr; }
  .tur-recursos-grid { grid-template-columns: 1fr; }
  .tur-cambio-table { font-size: 0.85rem; }
  .tur-cambio-table th,
  .tur-cambio-table td { padding: 10px 14px; }
}

/* ==============================
   Turismo Layout (novo)
   ============================== */

.tur-layout {
  display: flex;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  align-items: flex-start;
}

.tur-main {
  flex: 1;
  min-width: 0;
}

.tur-sidebar {
  width: 320px;
  min-width: 280px;
  position: sticky;
  top: 100px;
  padding: 40px 0 60px;
}

.tur-sidebar .section-header {
  margin-bottom: 24px !important;
}

.tur-sidebar .section-header p {
  font-size: 0.85rem;
}

.tur-sidebar-cat {
  background: #fff;
  border: 1px solid #e8ecf0;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 16px;
  transition: box-shadow 0.3s;
}

.tur-sidebar-cat:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}

.tur-sidebar-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid #3a78c9;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: 'Poppins', sans-serif;
}

.tur-sidebar-count {
  background: linear-gradient(135deg, #3a78c9, #2c5fa0);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 2px 12px;
  border-radius: 20px;
  min-width: 24px;
  text-align: center;
}

.tur-sidebar-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tur-sidebar-list li {
  padding: 10px 0;
  border-bottom: 1px solid #f0f2f4;
}

.tur-sidebar-list li:last-child {
  border-bottom: none;
}

.tur-sidebar-list a {
  color: #444;
  text-decoration: none;
  font-size: 0.85rem;
  line-height: 1.4;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  font-family: 'Open Sans', sans-serif;
  transition: color 0.2s;
}

.tur-sidebar-list a:hover {
  color: #3a78c9;
}

.tur-sidebar-list .post-arrow {
  color: #3a78c9;
  font-size: 0.7rem;
  opacity: 0;
  transition: opacity 0.2s, transform 0.2s;
  flex-shrink: 0;
}

.tur-sidebar-list li:hover .post-arrow {
  opacity: 1;
  transform: translateX(3px);
}

.tur-layout {
  display: flex;
  gap: 48px;
  align-items: flex-start;
  padding: 40px 0;
}

.tur-main {
  flex: 1;
  min-width: 0;
}

.tur-sidebar {
  width: 300px;
  flex-shrink: 0;
  position: sticky;
  top: 100px;
}

@media (max-width: 992px) {
  .tur-layout {
    flex-direction: column;
  }
  .tur-sidebar {
    width: 100%;
    position: static;
  }
}

/* Tur Grid */
.tur-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.tur-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #eee;
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  text-decoration: none;
  color: inherit;
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}

.tur-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.08);
  border-color: transparent;
}

.tur-card-img {
  height: 160px;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease;
  flex-shrink: 0;
}

.tur-card:hover .tur-card-img {
  transform: scale(1.06);
}

.tur-card-body {
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.tur-card-tag {
  display: inline-block;
  background: rgba(58, 120, 201, 0.08);
  color: #3a78c9;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  padding: 3px 10px;
  border-radius: 4px;
  margin-bottom: 10px;
  align-self: flex-start;
}

.tur-card-body h3 {
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.35;
  margin-bottom: 8px;
  color: #1a1a2e;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.tur-card-body p {
  font-size: 0.8rem;
  color: #777;
  line-height: 1.5;
  flex: 1;
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.tur-card-date {
  font-size: 0.75rem;
  color: #aaa;
  display: flex;
  align-items: center;
  gap: 4px;
}

.section-tur-grid {
  padding: 50px 0;
}

.section-tur-grid .section-header {
  margin-bottom: 32px;
}

.section-tur-grid .section-header h2 {
  font-size: 1.6rem;
}

@media (max-width: 1024px) {
  .tur-layout {
    flex-direction: column;
    gap: 24px;
  }
  .tur-sidebar {
    width: 100%;
    position: static;
    padding: 0 0 40px;
  }
  .tur-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .tur-grid {
    grid-template-columns: 1fr;
  }
  .tur-card-img {
    height: 180px;
  }
}

/* ============================================================
   GLOBAL ICON ENHANCEMENTS
   ============================================================ */

/* ---- Top bar icons ---- */
.top-bar-info i {
  margin-right: 8px;
  color: rgba(255,255,255,0.85);
  transition: color 0.3s, transform 0.3s;
}

.top-bar-info span:hover i {
  color: #fff;
  transform: scale(1.15);
}

/* ---- Logo icon ---- */
.logo-icon {
  background: linear-gradient(135deg, #3a78c9, #6da5e0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 2px 4px rgba(58,120,201,0.3));
  transition: filter 0.3s, transform 0.3s;
}

.logo:hover .logo-icon {
  filter: drop-shadow(0 4px 8px rgba(58,120,201,0.5));
  transform: scale(1.05);
}

/* ---- Nav link icon ---- */
.nav-link i {
  transition: transform 0.3s ease;
}

.nav-link:hover i {
  transform: translateX(-2px) scale(1.1);
}

.nav-link.active i {
  color: #6da5e0;
}

/* ---- Section tag icons ---- */
.section-tag i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, rgba(58,120,201,0.12), rgba(58,120,201,0.06));
  border-radius: 8px;
  font-size: 0.75rem;
  color: #3a78c9;
  margin-right: 6px;
  transition: all 0.3s ease;
}

.section-tag:hover i {
  background: #3a78c9;
  color: #fff;
  transform: rotate(-5deg);
}

/* ---- Guide step icons ---- */
.guide-icon {
  background: linear-gradient(135deg, rgba(58,120,201,0.1), rgba(58,120,201,0.04));
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  position: relative;
}

.guide-step:hover .guide-icon {
  background: linear-gradient(135deg, #3a78c9, #2c5fa0);
  color: #fff;
  transform: scale(1.1) rotate(-3deg);
  box-shadow: 0 8px 24px rgba(58,120,201,0.25);
}

/* ---- Guide card icons ---- */
.guide-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, rgba(58,120,201,0.1), rgba(58,120,201,0.04));
  border-radius: 14px;
  font-size: 1.2rem;
  color: #3a78c9;
  margin-bottom: 16px;
  transition: all 0.4s ease;
}

.guide-card:hover .guide-card-icon {
  background: rgba(255,255,255,0.2);
  color: #fff;
  transform: scale(1.1);
  box-shadow: 0 0 20px rgba(255,255,255,0.15);
}

/* ---- Sidebar title icons ---- */
.sidebar-title i,
.sidebar-home-title i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  background: linear-gradient(135deg, rgba(58,120,201,0.1), rgba(58,120,201,0.04));
  border-radius: 8px;
  font-size: 0.8rem;
  color: #3a78c9;
  margin-right: 8px;
  transition: all 0.3s ease;
}

.sidebar-title:hover i,
.sidebar-home-title:hover i {
  background: #3a78c9;
  color: #fff;
  transform: scale(1.05);
}

/* ---- Footer contact icons ---- */
.footer-contact i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: rgba(255,255,255,0.06);
  border-radius: 10px;
  font-size: 0.85rem;
  margin-right: 10px;
  transition: all 0.3s ease;
  color: #6da5e0;
}

.footer-contact p:hover i {
  background: rgba(58,120,201,0.2);
  color: #6da5e0;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(58,120,201,0.15);
}

/* ---- Button icons ---- */
.btn i {
  transition: transform 0.3s ease;
}

.btn:hover i:last-child {
  transform: translateX(4px);
}

.btn:hover i:first-child:not(:only-child) {
  transform: translateX(-4px);
}

/* ---- Back to top ---- */
.back-to-top i {
  transition: transform 0.3s ease;
}

.back-to-top:hover i {
  transform: translateY(-3px);
}

/* ---- Slider arrows ---- */
.slider-arrow i {
  transition: transform 0.3s ease;
}

.slider-arrow:hover i {
  transform: scale(1.15);
}

.slider-arrow.prev:hover i {
  transform: translateX(-2px) scale(1.1);
}

.slider-arrow.next:hover i {
  transform: translateX(2px) scale(1.1);
}

/* ---- Video controls ---- */
.video-ctrl-btn i {
  transition: transform 0.3s ease;
}

.video-ctrl-btn:hover i {
  transform: scale(1.15);
}

/* ---- Post comment icon ---- */
.comments-title i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, rgba(58,120,201,0.1), rgba(58,120,201,0.04));
  border-radius: 10px;
  font-size: 0.85rem;
  color: #3a78c9;
  margin-right: 8px;
}

/* ---- Testimonial carousel buttons ---- */
.testimonial-btn i {
  transition: transform 0.3s ease;
}

.testimonial-btn:hover i {
  transform: scale(1.2);
}

/* ---- Error icon ---- */
.fa-exclamation-circle {
  color: #e74c3c;
  animation: pulse-icon 2s ease-in-out infinite;
}

@keyframes pulse-icon {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.7; transform: scale(1.1); }
}

/* ---- Arrow-right icon pattern in buttons/links ---- */
.fa-arrow-right {
  transition: transform 0.3s ease;
}

*:hover > .fa-arrow-right {
  transform: translateX(3px);
}

/* ==============================
   Author Section (Sobre)
   ============================== */

.section-author {
  background: linear-gradient(135deg, var(--bg-alt2) 0%, var(--bg) 100%);
  padding: 70px 0;
}

.author-box {
  display: flex;
  gap: 48px;
  align-items: center;
  max-width: 860px;
  margin: 0 auto;
  background: var(--bg-card);
  border-radius: var(--radius-xl);
  padding: 48px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}

.author-avatar {
  flex-shrink: 0;
}

.author-avatar img {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #3a78c9;
  box-shadow: 0 8px 24px rgba(58,120,201,0.15);
}

.author-info .section-tag {
  margin-bottom: 6px;
}

.author-info h2 {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 4px;
}

.author-role {
  font-size: 0.88rem;
  color: var(--primary);
  font-weight: 500;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.author-info p {
  font-size: 0.9rem;
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 12px;
}

.author-social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.author-social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(58,120,201,0.08), rgba(58,120,201,0.04));
  border-radius: 12px;
  color: #3a78c9;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.author-social a:hover {
  background: #3a78c9;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(58,120,201,0.2);
}

/* ==============================
   Kit do Viajante
   ============================== */

.section-kit {
  background: var(--bg-alt2);
  padding: 60px 0 80px;
}

.kit-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.kit-item {
  text-align: center;
  padding: 32px 16px;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: all var(--transition);
}

.kit-item:hover {
  transform: translateY(-4px);
  background: var(--primary);
  border-color: var(--primary);
  box-shadow: 0 12px 32px var(--primary-alpha);
}

.kit-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, rgba(58,120,201,0.1), rgba(58,120,201,0.04));
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: #3a78c9;
  transition: all 0.4s ease;
}

.kit-item:hover .kit-icon {
  background: rgba(255,255,255,0.2);
  color: #fff;
  transform: scale(1.1) rotate(-5deg);
}

.kit-item h3 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-heading);
  margin-bottom: 8px;
  transition: color var(--transition);
}

.kit-item:hover h3 {
  color: #fff;
}

.kit-item p {
  font-size: 0.82rem;
  color: var(--text-body);
  line-height: 1.5;
  transition: color var(--transition);
}

.kit-item:hover p {
  color: rgba(255,255,255,0.8);
}

/* ==============================
   Instagram Feed
   ============================== */

.section-instagram {
  background: var(--bg-alt2);
  padding: 60px 0;
}

.insta-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
  max-width: 900px;
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
}

.insta-item {
  position: relative;
  aspect-ratio: 1;
  background-size: cover;
  background-position: center;
  display: block;
  overflow: hidden;
}

.insta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(58,120,201,0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  font-size: 2rem;
  color: #fff;
}

.insta-item:hover .insta-overlay {
  opacity: 1;
}

/* ==============================
   Author social icons in section-tag
   ============================== */

.section-tag .fa-user {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, rgba(58,120,201,0.12), rgba(58,120,201,0.06));
  border-radius: 8px;
  font-size: 0.75rem;
  color: #3a78c9;
  margin-right: 6px;
  transition: all 0.3s ease;
}

/* ==============================
   Responsive: new sections
   ============================== */

@media (max-width: 1024px) {
  .kit-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .insta-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .author-box {
    flex-direction: column;
    text-align: center;
    padding: 36px;
  }
  .author-role {
    justify-content: center;
  }
  .author-social {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .kit-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
  .kit-item {
    padding: 24px 12px;
  }
  .kit-icon {
    width: 52px;
    height: 52px;
    font-size: 1.4rem;
    margin-bottom: 14px;
  }
  .insta-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .author-box {
    padding: 28px;
  }
  .author-avatar img {
    width: 120px;
    height: 120px;
  }
  .author-info h2 {
    font-size: 1.4rem;
  }
}

@media (max-width: 480px) {
  .kit-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .kit-item {
    padding: 20px 16px;
    display: flex;
    align-items: center;
    gap: 16px;
    text-align: left;
  }
  .kit-icon {
    width: 48px;
    min-width: 48px;
    height: 48px;
    font-size: 1.2rem;
    margin-bottom: 0;
  }
  .kit-item h3 {
    font-size: 0.9rem;
    margin-bottom: 4px;
  }
  .kit-item p {
    font-size: 0.8rem;
  }
}

/* ---- Turismo Pagination ---- */
.tur-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 48px;
  flex-wrap: wrap;
}

.tur-page-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 18px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid var(--border);
  background: var(--bg-card);
  color: var(--text-body);
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
}

.tur-page-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.tur-page-btn.active {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  cursor: default;
}

.tur-page-btn.active:hover {
  transform: none;
  box-shadow: none;
}
