/* ============================================
   OLHAR 4K - Enhanced CSS (Improvements)
   Sobrescreve e expande o style.css original
   ============================================ */

/* ----- NOVA PALETA DE CORES ----- */
:root {
  --primary: #0f172a;
  --primary-light: #1e293b;
  --primary-dark: #020617;
  --secondary: #0369a1;
  --secondary-light: #0ea5e9;
  --accent: #f59e0b;
  --accent-dark: #d97706;
  --accent-gradient: linear-gradient(135deg, #f59e0b, #f97316);
  --accent-gradient-2: linear-gradient(135deg, #f59e0b, #f97316, #ea580c);
  --cyan: #06b6d4;
  --cyan-dark: #0891b2;
  --bg: #ffffff;
  --bg-alt: #f8fafc;
  --bg-alt2: #f1f5f9;
  --text-heading: #0f172a;
  --text-body: #475569;
  --text-muted: #94a3b8;
  --font-display: 'Playfair Display', Georgia, serif;
  --shadow-glow: 0 0 30px rgba(245, 158, 11, 0.3);
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 28px;
  --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==============================
   READING PROGRESS BAR
   ============================== */
.reading-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--accent-gradient);
  z-index: 99999;
  transform-origin: left;
  transform: scaleX(0);
  will-change: transform;
  box-shadow: 0 0 10px rgba(245, 158, 11, 0.5);
}

/* ==============================
   SCROLL INDICATOR (hero)
   ============================== */
.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: bounce-scroll 2s ease-in-out infinite;
}

.scroll-indicator .scroll-mouse {
  width: 24px;
  height: 38px;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 12px;
  position: relative;
}

.scroll-indicator .scroll-mouse::after {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 10px;
  background: rgba(255,255,255,0.5);
  border-radius: 2px;
  animation: scroll-dot 2s ease-in-out infinite;
}

@keyframes scroll-dot {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; }
  50% { transform: translateX(-50%) translateY(12px); opacity: 0.3; }
}

@keyframes bounce-scroll {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ==============================
   TYPEWRITER EFFECT
   ============================== */
.typewriter-text {
  display: inline;
}

.typewriter-cursor {
  display: inline-block;
  width: 3px;
  height: 1.1em;
  background: var(--accent);
  margin-left: 4px;
  vertical-align: text-bottom;
  animation: cursor-blink 0.8s step-end infinite;
}

@keyframes cursor-blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

/* ==============================
   GRADIENT TEXT UTILITY
   ============================== */
.text-gradient {
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-gradient-cyan {
  color: #06b6d4;
}

.airalo-title .text-gradient-cyan {
  color: #2dd4bf;
}

/* ==============================
   FLOATING ANIMATION
   ============================== */
.float-animation {
  animation: float-element 4s ease-in-out infinite;
}

@keyframes float-element {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ==============================
   IMAGE ZOOM ON HOVER
   ============================== */
.img-zoom-wrapper {
  overflow: hidden;
  position: relative;
}

.img-zoom-wrapper img {
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.img-zoom-wrapper:hover img {
  transform: scale(1.08);
}

.img-zoom-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.4);
  opacity: 0;
  transition: opacity 0.4s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.img-zoom-overlay i {
  color: #fff;
  font-size: 2rem;
  transform: scale(0.5);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.img-zoom-wrapper:hover .img-zoom-overlay {
  opacity: 1;
}

.img-zoom-wrapper:hover .img-zoom-overlay i {
  transform: scale(1);
}

/* ==============================
   SKELETON LOADING
   ============================== */
.skeleton {
  background: linear-gradient(90deg, #e2e8f0 25%, #f1f5f9 50%, #e2e8f0 75%);
  background-size: 200% 100%;
  animation: skeleton-shimmer 1.5s ease-in-out infinite;
  border-radius: 8px;
}

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

.skeleton-card {
  background: #fff;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid #e2e8f0;
}

.skeleton-card .skeleton-img {
  height: 200px;
}

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

.skeleton-card .skeleton-line {
  height: 14px;
  margin-bottom: 10px;
}

.skeleton-card .skeleton-line:last-child {
  width: 60%;
}

/* ==============================
   SEARCH OVERLAY
   ============================== */
.search-overlay {
  position: fixed;
  inset: 0;
  z-index: 99998;
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 120px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.search-overlay .search-container {
  width: 100%;
  max-width: 640px;
  padding: 0 24px;
}

.search-overlay .search-field {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  transition: border-color 0.3s;
}

.search-overlay .search-field:focus-within {
  border-color: var(--accent);
}

.search-overlay .search-field i {
  color: var(--accent);
  font-size: 1.3rem;
}

.search-overlay .search-field input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  color: #fff;
  font-size: 1.3rem;
  font-family: var(--font);
}

.search-overlay .search-field input::placeholder {
  color: rgba(255,255,255,0.3);
}

.search-overlay .search-hint {
  color: rgba(255,255,255,0.3);
  font-size: 0.82rem;
  margin-top: 16px;
  text-align: center;
}

.search-overlay .search-hint kbd {
  display: inline-block;
  padding: 2px 8px;
  background: rgba(255,255,255,0.08);
  border-radius: 4px;
  font-size: 0.75rem;
  margin: 0 2px;
}

.search-results {
  margin-top: 20px;
  max-height: 50vh;
  overflow-y: auto;
  padding-right: 8px;
}

.search-results::-webkit-scrollbar {
  width: 4px;
}

.search-results::-webkit-scrollbar-thumb {
  background: rgba(255,255,255,0.15);
  border-radius: 2px;
}

.search-result-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  margin-bottom: 8px;
  text-decoration: none;
  color: #fff;
  transition: all 0.3s ease;
}

.search-result-item:hover {
  background: rgba(255,255,255,0.08);
  border-color: var(--accent);
  transform: translateX(4px);
}

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

.search-result-item .search-result-info {
  flex: 1;
  min-width: 0;
}

.search-result-item .search-result-info h4 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.search-result-item .search-result-info span {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}

.search-no-results {
  text-align: center;
  padding: 40px;
  color: rgba(255,255,255,0.4);
}

.search-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: #fff;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.search-close:hover {
  background: var(--accent);
  border-color: var(--accent);
  transform: rotate(90deg);
}

/* ==============================
   MOBILE DRAWER NAV
   ============================== */
.drawer-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

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

.drawer {
  position: fixed;
  top: 0;
  right: -320px;
  width: 320px;
  max-width: 85vw;
  height: 100vh;
  z-index: 10000;
  background: var(--primary);
  padding: 32px 28px;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  box-shadow: -8px 0 40px rgba(0,0,0,0.3);
}

.drawer.active {
  right: 0;
}

.drawer .drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.drawer .drawer-close {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: #fff;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.drawer .drawer-close:hover {
  background: var(--accent);
  border-color: var(--accent);
}

.drawer .drawer-nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}

.drawer .drawer-nav a {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border-radius: 12px;
  color: rgba(255,255,255,0.7);
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s;
}

.drawer .drawer-nav a i {
  width: 24px;
  text-align: center;
  color: var(--accent);
  font-size: 1rem;
}

.drawer .drawer-nav a:hover,
.drawer .drawer-nav a.active {
  background: rgba(245, 158, 11, 0.1);
  color: #fff;
}

.drawer .drawer-cta {
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.drawer .drawer-cta .btn {
  width: 100%;
  justify-content: center;
}

/* ==============================
   COOKIE CONSENT
   ============================== */
.cookie-consent {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(120px);
  z-index: 9997;
  background: var(--primary);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  padding: 20px 28px;
  max-width: 460px;
  width: calc(100% - 48px);
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  opacity: 0;
  visibility: hidden;
  transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.cookie-consent.active {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.cookie-consent .cookie-content {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.cookie-consent .cookie-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  background: rgba(245, 158, 11, 0.1);
  color: var(--accent);
}

.cookie-consent .cookie-text h4 {
  color: #fff;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.cookie-consent .cookie-text p {
  color: rgba(255,255,255,0.5);
  font-size: 0.82rem;
  line-height: 1.5;
}

.cookie-consent .cookie-buttons {
  display: flex;
  gap: 10px;
}

.cookie-consent .cookie-buttons .btn {
  flex: 1;
  justify-content: center;
  padding: 10px 20px;
  font-size: 0.85rem;
}

.cookie-consent .cookie-btn-accept {
  background: var(--accent-gradient);
  color: #fff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s;
}

.cookie-consent .cookie-btn-accept:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(245, 158, 11, 0.3);
}

.cookie-consent .cookie-btn-decline {
  background: transparent;
  color: rgba(255,255,255,0.5);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.3s;
}

.cookie-consent .cookie-btn-decline:hover {
  border-color: rgba(255,255,255,0.3);
  color: #fff;
}

/* ==============================
   ANIMATED BACKGROUND (Hero)
   ============================== */
.hero-animated-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-animated-bg .orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.25;
  animation: orb-float 20s ease-in-out infinite;
  will-change: transform;
}

.hero-animated-bg .orb:nth-child(1) {
  width: 300px;
  height: 300px;
  background: rgba(245, 158, 11, 0.15);
  top: -50px;
  left: -50px;
  animation-delay: 0s;
}

.hero-animated-bg .orb:nth-child(2) {
  width: 250px;
  height: 250px;
  background: rgba(6, 182, 212, 0.1);
  bottom: -50px;
  right: -30px;
  animation-delay: -7s;
}

.hero-animated-bg .orb:nth-child(3) {
  width: 200px;
  height: 200px;
  background: rgba(59, 130, 246, 0.08);
  top: 50%;
  left: 60%;
  animation-delay: -14s;
}

@keyframes orb-float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(60px, -40px) scale(1.1); }
  50% { transform: translate(-30px, 60px) scale(0.9); }
  75% { transform: translate(40px, -20px) scale(1.05); }
}

/* ==============================
   STAGGER ENTRANCE ANIMATIONS
   ============================== */
.stagger-enter {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.stagger-enter.visible {
  opacity: 1;
  transform: translateY(0);
}

.stagger-enter:nth-child(1) { transition-delay: 0s; }
.stagger-enter:nth-child(2) { transition-delay: 0.1s; }
.stagger-enter:nth-child(3) { transition-delay: 0.2s; }
.stagger-enter:nth-child(4) { transition-delay: 0.3s; }
.stagger-enter:nth-child(5) { transition-delay: 0.4s; }
.stagger-enter:nth-child(6) { transition-delay: 0.5s; }
.stagger-enter:nth-child(7) { transition-delay: 0.6s; }
.stagger-enter:nth-child(8) { transition-delay: 0.7s; }

/* ==============================
   CARD BORDER ANIMATION ON HOVER
   ============================== */
.blog-card,
.promo-box,
.tur-card,
.guide-card {
  position: relative;
}

.blog-card::before,
.promo-box::before,
.tur-card::before,
.guide-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: var(--accent-gradient);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
  pointer-events: none;
}

.blog-card:hover::before,
.promo-box:hover::before,
.tur-card:hover::before,
.guide-card:hover::before {
  opacity: 0.3;
}

/* ==============================
   CUSTOM SCROLLBAR
   ============================== */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-alt2);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--accent), var(--accent-dark));
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--accent-gradient);
}

/* ==============================
   ENHANCED BUTTON PRESS EFFECT
   ============================== */
.btn:active {
  transform: scale(0.96) !important;
}

/* ==============================
   SECTION CONNECTORS
   ============================== */
.section-connector {
  position: relative;
}

.section-connector::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 40px;
  background: linear-gradient(180deg, transparent, var(--accent), transparent);
  opacity: 0.15;
}

/* ==============================
   HERO IMPROVED OVERLAY
   ============================== */
.hero .hero-overlay {
  background: linear-gradient(135deg, rgba(15,23,42,0.92) 0%, rgba(15,23,42,0.5) 50%, rgba(15,23,42,0.2) 100%);
}

/* ==============================
   ENHANCED FOCUS VISIBLE
   ============================== */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  border-radius: 4px;
}

/* ==============================
   KEYBOARD SHORTCUT BADGE
   ============================== */
.kbd-badge {
  display: none;
}

@media (min-width: 769px) {
  .kbd-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 10px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 6px;
    font-size: 0.7rem;
    color: rgba(255,255,255,0.4);
    margin-left: 8px;
    cursor: pointer;
    transition: all 0.3s;
  }

  .kbd-badge:hover {
    background: rgba(245, 158, 11, 0.1);
    border-color: var(--accent);
    color: var(--accent);
  }

  .kbd-badge kbd {
    font-family: inherit;
    font-size: 0.65rem;
    background: rgba(255,255,255,0.1);
    padding: 1px 5px;
    border-radius: 3px;
  }
}

/* ==============================
   POST PAGE IMPROVEMENTS
   ============================== */
.post-header h1 {
  font-family: var(--font-display) !important;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem) !important;
  line-height: 1.2;
}

.post-body h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-heading);
  margin-top: 36px;
  margin-bottom: 14px;
  position: relative;
  padding-left: 16px;
}

.post-body h2::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  bottom: 6px;
  width: 4px;
  background: var(--accent-gradient);
  border-radius: 2px;
}

.post-body h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-heading);
  margin-top: 28px;
  margin-bottom: 10px;
}

.post-body p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-body);
  margin-bottom: 16px;
}

/* ==============================
   GALLERY IMPROVEMENTS
   ============================== */
.gallery-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.gallery-title i {
  color: var(--accent);
}

.gallery-track-wrapper {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
}

.gallery-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(15,23,42,0.6);
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  backdrop-filter: blur(4px);
}

.gallery-btn:hover {
  background: var(--accent);
  border-color: var(--accent);
}

.gallery-btn.gallery-prev { left: 12px; }
.gallery-btn.gallery-next { right: 12px; }

.gallery-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(0,0,0,0.1);
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  padding: 0;
}

.gallery-dot.active {
  background: var(--accent);
  transform: scale(1.3);
}

/* ==============================
   RESPONSIVE ENHANCEMENTS
   ============================== */
@media (max-width: 768px) {
  .search-overlay {
    padding-top: 80px;
  }

  .search-overlay .search-field {
    padding: 16px 18px;
  }

  .search-overlay .search-field input {
    font-size: 1rem;
  }

  .cookie-consent {
    bottom: 16px;
    max-width: calc(100% - 32px);
    padding: 16px 20px;
  }

  .cookie-consent .cookie-content {
    flex-direction: column;
  }

  .hero-animated-bg .orb {
    filter: blur(60px);
  }

  .hero-animated-bg .orb:nth-child(1) {
    width: 300px;
    height: 300px;
  }

  .hero-animated-bg .orb:nth-child(2) {
    width: 250px;
    height: 250px;
  }

  .hero-animated-bg .orb:nth-child(3) {
    width: 200px;
    height: 200px;
  }

  .scroll-indicator {
    display: none;
  }
}

@media (max-width: 480px) {
  .drawer {
    width: 280px;
    padding: 24px 20px;
  }

  .search-overlay .search-container {
    padding: 0 16px;
  }

  .search-result-item {
    padding: 12px 14px;
  }

  .search-result-item .search-result-img {
    width: 44px;
    height: 44px;
  }

  .cookie-consent .cookie-buttons {
    flex-direction: column;
  }
}

/* ----- HEADER ATUALIZADO ----- */
.header.scrolled {
  background: rgba(15, 23, 42, 0.97) !important;
}

.logo-icon {
  color: var(--accent);
  font-size: 1.5rem;
}

.logo-text {
  font-size: 1.6rem;
  font-weight: 800;
  font-family: var(--font-display);
}

.logo-highlight {
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-link {
  font-size: 0.88rem;
  font-weight: 500;
  position: relative;
  padding: 4px 12px;
  border-radius: 0 !important;
  background: none !important;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 12px;
  right: 12px;
  height: 2px;
  background: var(--accent-gradient);
  transform: scaleX(0);
  transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}

.btn-primary {
  background: var(--accent-gradient) !important;
  border-color: transparent !important;
  color: #fff !important;
  box-shadow: 0 4px 20px rgba(245, 158, 11, 0.4) !important;
  border-radius: 50px !important;
  padding: 14px 32px !important;
  font-weight: 600 !important;
}

.btn-primary:hover {
  transform: translateY(-3px) !important;
  box-shadow: 0 8px 30px rgba(245, 158, 11, 0.5) !important;
}

.btn-outline {
  border-radius: 50px !important;
  border: 2px solid rgba(255,255,255,0.4) !important;
  background: transparent !important;
  color: #fff !important;
  padding: 12px 28px !important;
}

.btn-outline:hover {
  border-color: #fff !important;
  background: rgba(255,255,255,0.1) !important;
}

/* ----- HERO MELHORADO ----- */
.hero {
  background: var(--primary) !important;
  min-height: 80vh !important;
  padding-bottom: 24px !important;
}

.hero-content {
  padding-bottom: 24px !important;
}

.hero-bg-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(6, 182, 212, 0.12), transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(245, 158, 11, 0.08), transparent 50%),
    radial-gradient(ellipse at 50% 80%, rgba(3, 105, 161, 0.1), transparent 50%);
  z-index: 1;
  pointer-events: none;
}

.hero-particles-simple {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: rgba(255,255,255,0.25);
  border-radius: 50%;
  animation: float-particle linear infinite;
  pointer-events: none;
}

@keyframes float-particle {
  0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translateY(-100px) rotate(720deg); opacity: 0; }
}

.hero .hero-content h1 {
  font-family: var(--font-display);
  font-weight: 800 !important;
  line-height: 1.1;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.hero .hero-content h1 .highlight-gradient {
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero .hero-content p {
  font-weight: 400 !important;
  color: rgba(255,255,255,0.9) !important;
  text-shadow: 0 1px 12px rgba(0,0,0,0.25);
}

.hero .hero-badge {
  background: rgba(255,255,255,0.1) !important;
  border: 1px solid rgba(255,255,255,0.15) !important;
  padding: 8px 22px !important;
  color: var(--accent) !important;
  font-size: 0.82rem !important;
  padding: 8px 20px !important;
}

.hero-badge-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #10b981;
  border-radius: 50%;
  margin-right: 8px;
  animation: pulse-dot 2s infinite;
  vertical-align: middle;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero-stats-bar {
  display: flex;
  gap: 40px;
  justify-content: center;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.hero-stat-item {
  text-align: center;
}

.hero-stat-number {
  font-size: 1.8rem;
  font-weight: 800;
  color: #fff;
  font-family: var(--font-display);
}

.hero-stat-label {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  margin-top: 4px;
}

/* ----- WAVE DIVIDER ----- */
.wave-divider {
  position: relative;
  margin-top: 0;
  line-height: 0;
}

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

/* ----- SEÇÃO TÍTULOS ----- */
.section-header .section-title,
.section-header h2 {
  font-family: var(--font-display) !important;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem) !important;
  font-weight: 700 !important;
  color: var(--text-heading) !important;
  line-height: 1.2;
}

.section-tag {
  background: rgba(245, 158, 11, 0.1) !important;
  color: var(--accent-dark) !important;
  font-size: 0.78rem !important;
  padding: 6px 18px !important;
  border-radius: 50px !important;
  border: none !important;
}

/* ----- CARDS MELHORADOS ----- */
.blog-card {
  border-radius: var(--radius-md) !important;
  border: 1px solid #e2e8f0 !important;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.blog-card:hover {
  transform: translateY(-8px) !important;
  box-shadow: 0 20px 60px rgba(0,0,0,0.12) !important;
  border-color: transparent !important;
}

.blog-card-img {
  height: 200px !important;
}

.blog-card-body h3 {
  font-size: 1.1rem !important;
  font-weight: 700 !important;
  line-height: 1.4;
}

.blog-tag {
  background: rgba(245, 158, 11, 0.1) !important;
  color: var(--accent-dark) !important;
  font-size: 0.72rem !important;
  font-weight: 600;
  padding: 4px 12px !important;
  border-radius: 50px !important;
}

.blog-read {
  color: var(--secondary) !important;
  font-weight: 600 !important;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.blog-read:hover {
  color: var(--accent-dark) !important;
  gap: 10px;
}

/* ----- PROMO / CATEGORIA CARDS ----- */
.promo-box {
  border-radius: var(--radius-md) !important;
  min-height: 300px !important;
}

.promo-box:hover {
  transform: translateY(-8px) !important;
  box-shadow: 0 20px 50px rgba(0,0,0,0.2) !important;
}

.promo-overlay {
  background: linear-gradient(180deg, rgba(15,23,42,0.1) 0%, rgba(15,23,42,0.85) 100%) !important;
}

.promo-content h3 {
  font-size: 1.3rem !important;
  font-weight: 700 !important;
  font-family: var(--font-display);
}

/* ----- DESTAQUE CARDS ----- */
.card-destaque {
  border-radius: var(--radius-lg) !important;
  border: 1px solid #e2e8f0 !important;
}

.card-destaque:hover {
  transform: translateY(-10px) !important;
  box-shadow: 0 24px 60px rgba(0,0,0,0.12) !important;
}

.card-destaque h3 {
  font-family: var(--font-display);
  font-size: 1.4rem !important;
}

/* ----- COUNTERS ----- */
.section-counters {
  background: var(--primary) !important;
  background-image:
    radial-gradient(ellipse at 30% 50%, rgba(245, 158, 11, 0.06), transparent 50%),
    radial-gradient(ellipse at 70% 50%, rgba(6, 182, 212, 0.06), transparent 50%) !important;
}

.counter-number {
  font-size: 3rem !important;
  color: var(--accent) !important;
  font-family: var(--font-display) !important;
}

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

.counter-label {
  color: rgba(255,255,255,0.6) !important;
}

/* ----- NEWSLETTER MELHORADA ----- */
.newsletter-box {
  background: var(--primary) !important;
  border-radius: var(--radius-lg) !important;
  padding: 60px !important;
  position: relative;
  overflow: hidden;
}

.newsletter-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(245, 158, 11, 0.06), transparent 50%),
    radial-gradient(ellipse at 20% 80%, rgba(6, 182, 212, 0.06), transparent 50%);
  pointer-events: none;
}

.newsletter-box > * {
  position: relative;
  z-index: 1;
}

.newsletter-content h2 {
  font-family: var(--font-display) !important;
  color: #fff !important;
  font-size: 2rem !important;
}

.newsletter-content p {
  color: rgba(255,255,255,0.6) !important;
}

.newsletter-input-group input {
  background: rgba(255,255,255,0.06) !important;
  border: 1px solid rgba(255,255,255,0.15) !important;
  color: #fff !important;
  border-radius: 50px !important;
  padding: 16px 24px !important;
  font-size: 1rem !important;
}

.newsletter-input-group input::placeholder {
  color: rgba(255,255,255,0.4) !important;
}

.newsletter-input-group input:focus {
  border-color: var(--accent) !important;
  box-shadow: none !important;
}

.newsletter-benefits {
  display: flex;
  gap: 24px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.newsletter-benefits span {
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 6px;
}

.newsletter-benefits span i {
  color: #10b981;
}

.newsletter-note {
  display: none !important;
}

/* ----- TESTIMONIALS MELHORADAS ----- */
.testimonials {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%) !important;
}

.testimonials .section-header h2 {
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent !important;
}

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

.testimonial-card {
  background: rgba(255,255,255,0.04) !important;
  border: 1px solid rgba(255,255,255,0.06) !important;
  border-radius: var(--radius-md) !important;
  padding: 36px 32px !important;
  backdrop-filter: blur(10px);
}

.testimonial-stars {
  color: var(--accent) !important;
  font-size: 1.1rem !important;
}

.testimonial-card p {
  color: rgba(255,255,255,0.75) !important;
  font-size: 1rem !important;
}

.testimonial-author {
  gap: 14px !important;
}

.testimonial-author img {
  width: 52px !important;
  height: 52px !important;
  border-radius: 50%;
  border: 2px solid rgba(245, 158, 11, 0.3);
}

.testimonial-author strong {
  color: #fff !important;
  font-size: 0.95rem;
}

.testimonial-author span {
  color: rgba(255,255,255,0.4) !important;
  font-size: 0.8rem;
}

.testimonial-btn {
  background: rgba(255,255,255,0.08) !important;
  border: 1px solid rgba(255,255,255,0.12) !important;
  color: #fff !important;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  transition: var(--transition);
}

.testimonial-btn:hover {
  background: var(--accent) !important;
  border-color: var(--accent) !important;
}

.testimonial-dots button.active {
  background: var(--accent) !important;
}

/* ----- FAQ SECTION ----- */
.faq-section {
  background: var(--bg-alt);
}

.faq-list {
  max-width: 720px;
  margin: 0 auto;
}

.faq-item {
  background: #fff;
  border-radius: 12px;
  margin-bottom: 12px;
  border: 1px solid #e2e8f0;
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover {
  border-color: #cbd5e1;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-heading);
  text-align: left;
  gap: 16px;
  transition: var(--transition);
}

.faq-question:hover {
  color: var(--accent-dark);
}

.faq-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #f1f5f9;
  transition: var(--transition);
  font-size: 0.85rem;
  color: #94a3b8;
}

.faq-item.active .faq-question .faq-icon {
  background: var(--accent-gradient);
  color: #fff;
  transform: rotate(45deg);
}

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

.faq-answer-inner {
  padding: 0 24px 20px;
  font-size: 0.92rem;
  color: var(--text-body);
  line-height: 1.7;
}

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

/* ----- SCROLL REVEAL ----- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ----- FOOTER MELHORADO ----- */
.footer {
  background: var(--primary) !important;
  border-top: 1px solid rgba(255,255,255,0.06) !important;
}

.footer-brand p {
  color: rgba(255,255,255,0.45) !important;
  max-width: 320px;
}

.footer h4 {
  color: #fff !important;
  font-size: 0.95rem !important;
  font-weight: 700;
  margin-bottom: 20px;
}

.footer-links ul li a,
.footer-contact p {
  color: rgba(255,255,255,0.45) !important;
  font-size: 0.88rem;
}

.footer-links ul li a:hover {
  color: var(--accent) !important;
  padding-left: 4px;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.45);
  font-size: 1rem;
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--accent-gradient);
  color: #fff;
  transform: translateY(-3px);
}

.footer-bottom {
  border-top-color: rgba(255,255,255,0.06) !important;
  padding-top: 24px;
}

.footer-bottom p {
  color: rgba(255,255,255,0.3) !important;
}

/* ----- BACK TO TOP ----- */
.back-to-top {
  background: var(--accent-gradient) !important;
  box-shadow: 0 4px 20px rgba(245, 158, 11, 0.4) !important;
  border: none !important;
  color: #fff !important;
  border-radius: 50% !important;
}

.back-to-top:hover {
  transform: translateY(-4px) !important;
  box-shadow: 0 8px 30px rgba(245, 158, 11, 0.5) !important;
}

/* ==============================
   FLIGHT SEARCH SECTION
   ============================== */
.section-flight-search {
  background: linear-gradient(180deg, #0f172a 0%, #0c1222 50%, #0a0f1e 100%);
  position: relative;
  overflow: hidden;
  padding: 80px 0;
}

.section-flight-search::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 15% 50%, rgba(6, 182, 212, 0.06), transparent 50%),
    radial-gradient(ellipse at 85% 50%, rgba(245, 158, 11, 0.05), transparent 50%);
  pointer-events: none;
}

.section-flight-search::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(245, 158, 11, 0.15), transparent);
}

.flight-search-box {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 24px;
  padding: 48px 40px;
  backdrop-filter: blur(12px);
  box-shadow:
    0 4px 30px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transition: border-color 0.4s ease, box-shadow 0.4s ease;
}

.flight-search-box:hover {
  border-color: rgba(245, 158, 11, 0.15);
  box-shadow:
    0 8px 50px rgba(0, 0, 0, 0.3),
    0 0 60px rgba(245, 158, 11, 0.03),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.flight-search-header {
  text-align: center;
  margin-bottom: 32px;
}

.flight-search-header .section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245, 158, 11, 0.12) !important;
  color: var(--accent) !important;
  border: 1px solid rgba(245, 158, 11, 0.15);
  font-size: 0.78rem;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.flight-search-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
  background: linear-gradient(135deg, #f59e0b, #f97316);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.flight-search-header p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.95rem;
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Widget container */
.flight-search-widget {
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 24px;
  transition: all 0.4s ease;
}

.flight-search-widget:hover {
  border-color: rgba(245, 158, 11, 0.12);
  background: rgba(255, 255, 255, 0.03);
}

/* Loading indicator — controlado por JavaScript */
.flight-search-loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  color: rgba(255, 255, 255, 0.25);
  font-size: 0.9rem;
  text-align: center;
}

.flight-search-loading .spinner {
  width: 32px;
  height: 32px;
  border: 3px solid rgba(255, 255, 255, 0.08);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: flight-spin 0.8s linear infinite;
}

@keyframes flight-spin {
  to { transform: rotate(360deg); }
}

.flight-search-widget.loaded .flight-search-loading {
  display: none;
}

.flight-search-footer {
  text-align: center;
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.78rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.flight-search-footer i {
  color: #10b981;
}

.flight-search-note {
  text-align: center;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.78rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: color 0.3s ease;
}

.flight-search-note:hover {
  color: rgba(255, 255, 255, 0.9);
}

.flight-search-note i {
  color: var(--accent);
  font-size: 0.7rem;
}

/* Partner badge */
.partner-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  padding: 8px 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50px;
  transition: all 0.3s ease;
}

.partner-badge:hover {
  background: rgba(245, 158, 11, 0.08);
  border-color: rgba(245, 158, 11, 0.2);
}

.partner-badge-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.15), rgba(245, 158, 11, 0.05));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 0.85rem;
  flex-shrink: 0;
}

.partner-badge-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.partner-badge-text strong {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.partner-badge-text span {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.82rem;
  font-weight: 500;
}

.partner-badge-wrapper {
  text-align: center;
}

@media (max-width: 480px) {
  .flight-search-note {
    font-size: 0.7rem;
  }
}

@media (max-width: 768px) {
  .section-flight-search {
    padding: 48px 0;
  }

  .flight-search-box {
    padding: 32px 20px;
    border-radius: 18px;
  }

  .flight-search-widget {
    min-height: 320px;
    padding: 16px;
  }

  .flight-search-header h2 {
    font-size: 1.6rem;
  }
}

@media (max-width: 480px) {
  .flight-search-box {
    padding: 24px 14px;
  }

  .flight-search-widget {
    min-height: 280px;
    padding: 12px;
  }

  .flight-search-footer {
    font-size: 0.7rem;
    flex-wrap: wrap;
  }
}

/* ==============================
   AIRALO eSIM — SEÇÃO COMPLETA
   ============================== */
.section-airalo {
  position: relative;
  padding: 72px 0;
  background: linear-gradient(160deg, #0c1a1e 0%, #0d2b2a 40%, #0f1f24 100%);
  overflow: hidden;
}

.section-airalo::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 10% 30%, rgba(6, 182, 212, 0.08), transparent 50%),
    radial-gradient(ellipse at 90% 70%, rgba(13, 148, 136, 0.06), transparent 50%),
    radial-gradient(ellipse at 50% 0%, rgba(245, 158, 11, 0.03), transparent 50%);
  pointer-events: none;
}

.section-airalo::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(6, 182, 212, 0.15), transparent);
}

.section-airalo > .container {
  position: relative;
  z-index: 1;
}

/* Card principal */
.airalo-card {
  max-width: 780px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 28px;
  padding: 48px 44px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow:
    0 8px 40px rgba(0, 0, 0, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transition: border-color 0.4s ease, box-shadow 0.4s ease;
}

.airalo-card:hover {
  border-color: rgba(6, 182, 212, 0.2);
  box-shadow:
    0 12px 60px rgba(0, 0, 0, 0.3),
    0 0 80px rgba(6, 182, 212, 0.03),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

/* Header do card */
.airalo-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.airalo-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px;
  background: rgba(6, 182, 212, 0.1);
  border: 1px solid rgba(6, 182, 212, 0.18);
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  color: #5eead4;
  letter-spacing: 0.3px;
}

.airalo-badge i {
  font-size: 0.7rem;
  color: #2dd4bf;
}

.airalo-brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.airalo-logo-img {
  display: block;
  height: 28px;
  width: auto;
  object-fit: contain;
}

.airalo-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px 16px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 10px;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

/* Título */
.airalo-title {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.8vw, 1.9rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 14px;
  line-height: 1.2;
}

/* Descrição */
.airalo-desc {
  font-size: 0.92rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 28px;
  max-width: 620px;
}

/* Grid de benefícios */
.airalo-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 28px;
}

.airalo-feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 18px 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  text-align: center;
  transition: all 0.3s ease;
}

.airalo-feature:hover {
  background: rgba(6, 182, 212, 0.06);
  border-color: rgba(6, 182, 212, 0.15);
  transform: translateY(-3px);
}

.airalo-feature-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(6, 182, 212, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: #2dd4bf;
  transition: all 0.3s ease;
}

.airalo-feature:hover .airalo-feature-icon {
  background: rgba(6, 182, 212, 0.2);
  transform: scale(1.05);
}

.airalo-feature span {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.3;
}

.airalo-feature strong {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
}

/* Selos de confiança */
.airalo-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.airalo-trust span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.4);
  transition: color 0.3s ease;
}

.airalo-trust span:hover {
  color: rgba(255, 255, 255, 0.7);
}

.airalo-trust i {
  color: #2dd4bf;
  font-size: 0.7rem;
}

.airalo-trust .fa-star {
  color: #f59e0b;
}

/* CTA */
.airalo-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 36px;
  background: linear-gradient(135deg, #0d9488, #0f766e);
  border-radius: 50px;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 24px rgba(13, 148, 136, 0.35);
  width: 100%;
  max-width: 380px;
  margin: 0 auto;
  display: flex;
}

.airalo-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 40px rgba(13, 148, 136, 0.45);
  background: linear-gradient(135deg, #14b8a6, #0d9488);
}

.airalo-cta:active {
  transform: translateY(0);
}

.airalo-cta i {
  font-size: 0.9rem;
  transition: transform 0.3s ease;
}

.airalo-cta:hover i {
  transform: translateX(4px);
}

/* Footnote */
.airalo-footnote {
  text-align: center;
  margin-top: 18px;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  flex-wrap: wrap;
}

.airalo-footnote i {
  color: #10b981;
  font-size: 0.7rem;
}

/* Responsivo */
@media (max-width: 768px) {
  .section-airalo {
    padding: 48px 0;
  }

  .airalo-card {
    padding: 32px 24px;
    border-radius: 22px;
  }

  .airalo-card-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .airalo-features {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .airalo-feature {
    padding: 14px 10px;
  }

  .airalo-trust {
    gap: 16px;
  }

  .airalo-cta {
    max-width: 100%;
    padding: 14px 28px;
    font-size: 0.92rem;
  }
}

@media (max-width: 480px) {
  .section-airalo {
    padding: 36px 0;
  }

  .airalo-card {
    padding: 24px 18px;
    border-radius: 18px;
  }

  .airalo-badge {
    font-size: 0.7rem;
    padding: 5px 12px;
  }

  .airalo-logo-img {
    height: 22px;
  }

  .airalo-desc {
    font-size: 0.88rem;
  }

  .airalo-features {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .airalo-feature-icon {
    width: 34px;
    height: 34px;
    font-size: 0.85rem;
  }

  .airalo-feature span {
    font-size: 0.72rem;
  }

  .airalo-trust {
    gap: 12px;
  }

  .airalo-trust span {
    font-size: 0.72rem;
  }

  .airalo-cta {
    font-size: 0.85rem;
    padding: 12px 24px;
  }

  .airalo-footnote {
    font-size: 0.72rem;
  }
}

/* ==============================
   GETYOURGUIDE SECTION (substitui o video)
   ============================== */
.gyg-section-container {
  width: 100%;
  min-height: 320px;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 24px rgba(0,0,0,0.04);
  transition: box-shadow 0.3s ease;
}

.gyg-section-container:hover {
  box-shadow: 0 8px 40px rgba(0,0,0,0.08);
}

.gyg-section-container > div {
  width: 100% !important;
  min-height: 320px;
}

.gyg-section-container iframe {
  width: 100% !important;
  border: none !important;
  border-radius: 16px;
}

.gyg-section-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  margin-top: 18px;
  flex-wrap: wrap;
}

.gyg-section-footer span {
  font-size: 0.82rem;
  color: #94a3b8;
  display: flex;
  align-items: center;
  gap: 6px;
}

.gyg-section-footer i {
  color: #10b981;
  font-size: 0.75rem;
}

@media (max-width: 768px) {
  .gyg-section-container {
    min-height: 260px;
  }

  .gyg-section-container > div {
    min-height: 260px;
  }

  .gyg-section-footer {
    gap: 16px;
    font-size: 0.75rem;
  }
}

@media (max-width: 480px) {
  .gyg-section-container {
    min-height: 220px;
  }

  .gyg-section-container > div {
    min-height: 220px;
  }

  .gyg-section-footer {
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
  }
}

/* ----- SECTION DIVIDERS ----- */
.section-alt,
.section:nth-child(even) {
  position: relative;
}

/* ----- BOTÃO VER TODOS ----- */
.section-cta .btn {
  border-radius: 50px !important;
}

/* ----- 404 PAGE ----- */
.error-page {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--primary);
  color: #fff;
}

.error-page h1 {
  font-size: 6rem;
  font-family: var(--font-display);
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.error-page p {
  color: rgba(255,255,255,0.6);
  font-size: 1.1rem;
  margin: 16px 0 32px;
}

/* ----- KIT DO VIAJANTE MELHORADO ----- */
.section-kit {
  background: var(--primary);
  position: relative;
  overflow: hidden;
}

.section-kit::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(6, 182, 212, 0.08), transparent 50%),
    radial-gradient(ellipse at 80% 50%, rgba(245, 158, 11, 0.06), transparent 50%);
}

.section-kit .section-header h2 {
  color: #fff !important;
}

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

.kit-item {
  border-radius: var(--radius-md) !important;
  border: 1px solid rgba(255,255,255,0.08) !important;
  background: rgba(255,255,255,0.04) !important;
  backdrop-filter: blur(10px);
  padding: 32px 24px !important;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.kit-item:hover {
  background: rgba(245, 158, 11, 0.1) !important;
  border-color: rgba(245, 158, 11, 0.3) !important;
  transform: translateY(-6px) !important;
  box-shadow: 0 12px 40px rgba(0,0,0,0.2) !important;
}

.kit-icon {
  background: rgba(245, 158, 11, 0.1) !important;
  color: var(--accent) !important;
  width: 60px !important;
  height: 60px !important;
  border-radius: 16px !important;
  font-size: 1.4rem !important;
}

.kit-item h3 {
  color: #fff !important;
  font-size: 1.1rem !important;
  font-weight: 700;
}

.kit-item p {
  color: rgba(255,255,255,0.5) !important;
  font-size: 0.85rem;
}

/* ----- AUTHOR SECTION MELHORADA ----- */
.section-author {
  background: var(--bg-alt);
}

.author-box {
  background: #fff !important;
  border: 1px solid #e2e8f0 !important;
  border-radius: var(--radius-lg) !important;
  padding: 48px !important;
}

.author-info h2 {
  font-family: var(--font-display) !important;
}

/* ----- TURISMO PAGE MELHORIAS ----- */
.tur-hero {
  min-height: 50vh !important;
}

.tur-hero-content h1 {
  font-family: var(--font-display) !important;
  font-size: clamp(2rem, 4vw, 3.5rem) !important;
}

.tur-hero-badge {
  background: rgba(245, 158, 11, 0.15) !important;
  color: var(--accent) !important;
  border: 1px solid rgba(245, 158, 11, 0.2) !important;
  border-radius: 50px !important;
  padding: 6px 18px !important;
}

.tur-card {
  border-radius: var(--radius-md) !important;
  border: 1px solid #e2e8f0 !important;
}

.tur-card:hover {
  transform: translateY(-8px) !important;
  box-shadow: 0 20px 50px rgba(0,0,0,0.12) !important;
}

.tur-card-tag {
  background: rgba(245, 158, 11, 0.1) !important;
  color: var(--accent-dark) !important;
  border-radius: 50px !important;
}

/* ----- SIDEBAR IMPROVED ----- */
.sidebar-home-widget {
  border: 1px solid #e2e8f0 !important;
  border-radius: var(--radius-md) !important;
}

.sidebar-home-title {
  border-bottom-color: var(--accent) !important;
  color: var(--text-heading) !important;
}

.sidebar-home-title i {
  color: var(--accent-dark) !important;
  background: rgba(245, 158, 11, 0.1) !important;
}

.sidebar-home-list a {
  transition: var(--transition);
  color: var(--text-body) !important;
}

.sidebar-home-list a:hover {
  color: var(--accent-dark) !important;
  padding-left: 4px;
}

/* Section header fix for sidebar and all sections */
.section-sidebar .section-header h2 {
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: clamp(1.6rem, 3vw, 2.4rem) !important;
}

.section-sidebar .section-header p {
  color: var(--text-muted) !important;
}

/* ----- INFO SECTION ----- */
.section-info {
  background: #fff;
}

/* ----- RESPONSIVO MELHORADO ----- */
@media (max-width: 768px) {
  .hero {
    min-height: 60vh !important;
    padding-bottom: 24px !important;
  }

  .hero-content {
    padding: 12px 16px !important;
    padding-bottom: 24px !important;
  }

  .hero .hero-content h1 {
    font-size: 1.4rem !important;
    line-height: 1.2 !important;
  }

  .hero .hero-content p {
    font-size: 0.82rem !important;
    margin-bottom: 12px !important;
  }

  .hero-stats-bar {
    flex-direction: column;
    gap: 12px;
    margin-top: 24px;
    padding-top: 16px;
  }

  .newsletter-box {
    padding: 32px 24px !important;
  }

  .newsletter-input-group {
    flex-direction: column !important;
    width: 100%;
  }

  .newsletter-input-group input,
  .newsletter-input-group .btn {
    width: 100% !important;
    box-sizing: border-box;
    text-align: center;
  }

  .newsletter-input-group .btn {
    padding: 14px 24px !important;
  }

  .newsletter-benefits {
    justify-content: center;
  }

  .hero-buttons {
    flex-direction: column !important;
    width: 100%;
    gap: 8px;
  }

  .hero-buttons .btn {
    width: 100%;
    justify-content: center;
    font-size: 0.82rem;
    padding: 10px 20px;
  }

  .faq-question {
    font-size: 0.92rem;
    padding: 16px 18px;
  }

  .title-typed {
    display: block;
  }

  .blog-card {
    margin-bottom: 0;
  }

  .blog-card-body {
    padding: 14px 16px;
  }

  .blog-card-body h3 {
    font-size: 1rem;
    line-height: 1.3;
  }

  .blog-card-body p {
    font-size: 0.82rem;
    line-height: 1.4;
  }

  .blog-card-body .blog-meta {
    line-height: 1.3;
  }

  .section-desc p,
  .section-content p {
    line-height: 1.5;
  }

  .blog-card-img {
    height: 180px;
  }

  .promo-box {
    aspect-ratio: 3 / 4;
  }

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

  .promo-content p {
    font-size: 0.78rem;
  }

  .section {
    padding: 36px 0;
  }

  .section-header h2 {
    font-size: 1.3rem;
  }

  .section-header p {
    font-size: 0.85rem;
    line-height: 1.5;
  }

  .section-header {
    margin-bottom: 24px;
  }

  .blog-meta {
    flex-direction: row;
    align-items: center;
    font-size: 0.75rem;
  }

  .blog-read {
    font-size: 0.78rem;
  }

  .container {
    padding: 0 16px;
  }

  .slider-arrow {
    width: 32px;
    height: 32px;
    font-size: 0.8rem;
  }

  .slider-arrow.prev { left: 8px; }
  .slider-arrow.next { right: 8px; }
}

@media (max-width: 480px) {
  .hero {
    min-height: 50vh !important;
  }

  .hero .hero-content h1 {
    font-size: 1.2rem !important;
  }

  .hero .hero-content p {
    font-size: 0.78rem !important;
    line-height: 1.4;
  }

  .hero-stats-bar {
    gap: 8px;
  }

  .hero-stat-number {
    font-size: 1.1rem;
  }

  .hero-stat-label {
    font-size: 0.7rem;
  }

  .newsletter-box {
    padding: 24px 16px !important;
  }

  .newsletter-box h2 {
    font-size: 1.1rem;
  }

  .newsletter-input-group input,
  .newsletter-input-group .btn {
    width: 100% !important;
    box-sizing: border-box;
  }

  .newsletter-input-group .btn {
    font-size: 0.85rem !important;
    padding: 12px 16px !important;
  }

  .section {
    padding: 28px 0;
  }

  .blog-card-img {
    height: 150px;
  }

  .blog-card-body h3 {
    font-size: 0.92rem;
  }

  .promo-box {
    aspect-ratio: 3 / 4;
  }

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

  .promo-content p {
    font-size: 0.75rem;
  }

  .hero-buttons .btn {
    font-size: 0.78rem;
    padding: 8px 16px;
  }

  .slider-arrow {
    width: 28px;
    height: 28px;
    font-size: 0.7rem;
  }

  .slider-arrow.prev { left: 6px; }
  .slider-arrow.next { right: 6px; }

  .hero .hero-badge {
    font-size: 0.7rem !important;
    padding: 4px 12px !important;
  }

  .scroll-indicator {
    display: none;
  }
}

/* ----- HIGHLIGHT & DESTAQUE PARA POSTS ----- */
.hl {
  background: linear-gradient(180deg, transparent 60%, rgba(245, 158, 11, 0.25) 60%);
  font-weight: 600;
  color: var(--accent-dark);
  padding: 0 2px;
}

.hl-box {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.08), rgba(245, 158, 11, 0.03));
  border-left: 4px solid var(--accent);
  border-radius: 0 12px 12px 0;
  padding: 20px 24px;
  margin: 24px 0;
}

.hl-box p {
  margin-bottom: 8px !important;
}

.hl-box p:last-child {
  margin-bottom: 0 !important;
}

/* ----- ACCESSIBILITY ----- */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* ----- SHAPE DIVIDER FIX (hero) ----- */
.shape-divider .shape-fill {
  fill: var(--bg-alt2);
}

/* ----- TOP BAR ----- */
.top-bar {
  background: var(--primary) !important;
}
/* Olhar4K otimizacoes home */
.section-video .section-header p,
.section-info .info-content p {
  color:#1f2937 !important;
  font-weight:600 !important;
  line-height:1.65 !important;
}
.section-info .info-images .info-img-main img,
.section-info .info-images .info-img-sec img {
  filter: brightness(1.05);
}
.section-newsletter .newsletter-box {
  border:1px solid rgba(245,158,11,0.25);
  box-shadow:0 20px 60px rgba(0,0,0,0.35);
}


/* Partnerships section polish */
.section-partnerships {
  background: linear-gradient(180deg, rgba(15,23,42,0.03), rgba(15,23,42,0.06));
  border-top: 1px solid rgba(15,23,42,0.06);
  border-bottom: 1px solid rgba(15,23,42,0.06);
}
.partnerships-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 820px;
  margin: 0 auto;
}
.partnership-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 32px 24px;
  transition: all .35s ease;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.partnership-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 60px rgba(0,0,0,0.12);
  border-color: transparent;
}
.partnership-icon {
  width: 56px; height: 56px; border-radius: 16px;
  background: rgba(245,158,11,0.12);
  color: var(--accent-dark);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 1.4rem; margin-bottom: 20px;
  flex-shrink: 0;
}
.partnership-card h3 {
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: var(--text-heading);
  text-align: center;
}
.partnership-card p {
  color: var(--text-body);
  font-size: 0.92rem;
  line-height: 1.6;
  text-align: center;
  margin-bottom: 0;
}
.partnership-cta {
  margin-top: 36px;
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
}
@media (max-width: 820px) {
  .partnerships-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 520px) {
  .partnerships-grid {
    grid-template-columns: 1fr;
    max-width: 380px;
  }
  .partnership-card {
    padding: 24px 20px;
  }
}
