
:root {
  --bg: #020617;
  --bg-light: #020819;
  --bg-soft: #020617;
  --primary: #1e40af;           /* brand blue */
  --primary-soft: rgba(30, 64, 175, 0.12);
  --primary-strong: #1d4ed8;    /* stronger blue */
  --accent: #fbbf24;            /* gold accent */
  --accent-soft: rgba(251, 191, 36, 0.12);
  --text: #e5e7eb;
  --muted: #9ca3af;
  --border-soft: rgba(148, 163, 184, 0.35);
  --danger: #f97373;
  --radius-lg: 16px;
  --radius-md: 10px;
  --shadow-soft: 0 18px 45px rgba(15, 23, 42, 0.75);
}


/* Reset básico */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  background: radial-gradient(circle at top, #0b1120 0, #020617 55%, #000 100%);
  color: var(--text);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Layout genérico */
main {
  flex: 1;
}

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 16px;
}

.section {
  padding: 56px 0;
}

.section--bg-soft {
  background: radial-gradient(circle at top, #020617 0, #020617 40%, #000 100%);
}

.section-title {
  font-size: 1.9rem;
  margin: 0 0 12px 0;
  letter-spacing: 0.03em;
}

.section-subtitle {
  margin: 0 0 24px 0;
  color: var(--muted);
  max-width: 720px;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(18px);
  background: linear-gradient(
    to bottom,
    rgba(2, 6, 23, 0.95),
    rgba(2, 6, 23, 0.8),
    transparent
  );
  border-bottom: 1px solid rgba(15, 23, 42, 0.8);
}

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

.header-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-logo img,
.header-logo-img {
  height: 44px;
  width: auto;
  border-radius: 0;
  box-shadow: none;
  display: block;
}

.header-logo-text {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.header-subtitle {
  font-size: 0.75rem;
  color: var(--muted);
}

/* Navegação */
.nav {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav a {
  font-size: 0.9rem;
  color: var(--muted);
  text-decoration: none;
  padding: 6px 8px;
  border-radius: 999px;
  transition: color 0.2s ease, background-color 0.2s ease,
    transform 0.15s ease;
}

.nav a:hover {
  color: var(--text);
  background-color: rgba(15, 23, 42, 0.9);
  transform: translateY(-1px);
}

.nav-cta {
  background: linear-gradient(135deg, var(--accent), var(--primary-strong));
  color: #0b1120 !important;
  font-weight: 600;
  padding: 7px 14px !important;
  box-shadow: 0 14px 35px rgba(56, 189, 248, 0.28);
}

.nav-cta:hover {
  transform: translateY(-1px) scale(1.01);
  box-shadow: 0 18px 40px rgba(56, 189, 248, 0.4);
}

/* Hero / botões */
.hero {
  padding: 64px 0 40px 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 32px;
  align-items: center;
}

.hero-title {
  font-size: 2.4rem;
  margin: 0 0 12px 0;
}

.hero-subtitle {
  margin: 0 0 20px 0;
  color: var(--muted);
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.8rem;
  background-color: var(--primary-soft);
  color: var(--primary-strong);
  margin-bottom: 8px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.hero-btn,
.hero-secondary-btn {
  border-radius: 999px;
  padding: 10px 18px;
  font-size: 0.9rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: transform 0.15s ease, box-shadow 0.15s ease,
    background-color 0.15s ease, color 0.15s ease;
}

.hero-btn {
  background: linear-gradient(135deg, var(--accent), var(--primary-strong));
  color: #020617;
  box-shadow: 0 18px 35px rgba(56, 189, 248, 0.35);
}

.hero-btn:hover {
  transform: translateY(-1px) scale(1.01);
  box-shadow: 0 24px 50px rgba(56, 189, 248, 0.45);
}

.hero-secondary-btn {
  background-color: rgba(15, 23, 42, 0.9);
  color: var(--muted);
  border: 1px solid rgba(148, 163, 184, 0.4);
}

.hero-secondary-btn:hover {
  color: var(--text);
  background-color: rgba(15, 23, 42, 1);
}

/* Imagem hero */
.hero-media {
  position: relative;
}

.hero-media img {
  width: 100%;
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
  object-fit: cover;
}

/* Cards genéricos */
.card {
  background: radial-gradient(circle at top left, #020617 0, #020617 45%, #020617 100%);
  border-radius: 20px;
  padding: 20px 20px 18px 20px;
  border: 1px solid rgba(148, 163, 184, 0.35);
  box-shadow: 0 18px 38px rgba(15, 23, 42, 0.8);
  animation: fadeInUp 0.4s ease both;
}

.card-title {
  font-size: 1.1rem;
  margin: 0 0 8px 0;
}

.card-text {
  font-size: 0.95rem;
  color: var(--muted);
}

.hero-card-list {
  list-style: none;
  padding-left: 0;
  font-size: 0.9rem;
  color: var(--muted);
}

.hero-card-list li {
  margin-bottom: 6px;
}

/* Info blocks (Central do viajante etc.) */
.info-block {
  margin-bottom: 18px;
}

.info-block-title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.info-list {
  list-style: none;
  padding-left: 0;
  font-size: 0.9rem;
}

.info-list li {
  margin-bottom: 6px;
}

.info-list li::before {
  content: "• ";
  color: var(--primary);
}

/* Alert / link card */
.alert-card {
  background-color: #fef3c7;
  border: 1px solid #f59e0b;
  color: #92400e;
  border-radius: var(--radius-lg);
  padding: 12px 14px;
  font-size: 0.9rem;
}

.link-card {
  background-color: var(--bg-light);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-soft);
  padding: 16px;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.35);
}

/* Grids */
.grid-3 {
  display: grid;
  gap: 16px;
}

@media (min-width: 900px) {
  .grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* FAQ (details) */
.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  background-color: var(--bg-light);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-soft);
  padding: 0;
  overflow: hidden;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 14px 16px;
  font-weight: 600;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  font-weight: 700;
  font-size: 1rem;
  color: #6b7280;
}

.faq-item[open] summary::after {
  content: "–";
}

.faq-answer {
  padding: 0 16px 14px 16px;
  border-top: 1px solid var(--border-soft);
  font-size: 0.9rem;
  color: #4b5563;
}

/* Cases / logos */
.case-highlight {
  margin-bottom: 24px;
}

.testimonials-grid {
  display: grid;
  gap: 16px;
}

@media (min-width: 720px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.testimonial-card {
  background-color: var(--bg-light);
  border-radius: var(--radius-lg);
  padding: 16px;
  border: 1px solid var(--border-soft);
  font-size: 0.9rem;
}

.testimonial-author {
  margin-top: 8px;
  font-weight: 600;
  font-size: 0.85rem;
}

.logo-carousel {
  margin-top: 16px;
  overflow-x: auto;
  padding-bottom: 6px;
}

.logo-carousel-track {
  display: flex;
  gap: 12px;
  min-width: 100%;
  scroll-snap-type: x mandatory;
}

.logo-card {
  flex: 0 0 130px;
  height: 70px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-soft);
  background-color: var(--bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 600;
  color: #4b5563;
  scroll-snap-align: start;
}

/* Vídeo placeholder */
.video-placeholder {
  border-radius: var(--radius-lg);
  border: 1px dashed var(--border-soft);
  padding: 20px;
  text-align: center;
  font-size: 0.9rem;
  color: #6b7280;
  background-color: #020617;
}

/* Forms */
.form-grid {
  display: grid;
  gap: 12px;
}

@media (min-width: 720px) {
  .form-grid-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.form-label {
  font-size: 0.85rem;
  color: var(--muted);
}

.form-input,
.form-textarea,
.form-select {
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.5);
  padding: 9px 12px;
  font-size: 0.9rem;
  background-color: rgba(15, 23, 42, 0.95);
  color: var(--text);
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease,
    background-color 0.15s ease;
}

.form-textarea {
  border-radius: 16px;
  min-height: 120px;
  resize: vertical;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  border-color: var(--primary-strong);
  box-shadow: 0 0 0 1px rgba(56, 189, 248, 0.5);
  background-color: #020617;
}

.form-hint {
  font-size: 0.75rem;
  color: var(--muted);
}

/* Footer */
.footer-logo {
  margin-bottom: 10px;
  display: inline-block;
}

.footer-logo img {
  height: 40px;
  width: auto;
  display: block;
}

.footer-social a.instagram {
  background: radial-gradient(circle at 30% 30%, #fdf497 0, #fdf497 30%, #fd5949 55%, #d6249f 75%, #285aeb 100%);
  border-color: transparent;
  color: #fff;
}

.footer-social a.linkedin {
  background-color: #0a66c2;
  border-color: transparent;
  color: #fff;
}

.footer {
  border-top: 1px solid rgba(15, 23, 42, 0.9);
  background: radial-gradient(circle at top, #020617 0, #020617 40%, #000 100%);
  margin-top: 40px;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) repeat(3, minmax(0, 1fr));
  gap: 24px;
  padding: 32px 16px 24px 16px;
}

.footer-col-title {
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
}

.footer-col-title-spaced {
  margin-top: 18px;
}

.footer-text {
  font-size: 0.85rem;
  color: var(--muted);
}

.footer-text-small {
  font-size: 0.8rem;
}

.footer-links {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

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

.footer-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.85rem;
}

.footer-links a:hover {
  color: var(--primary-strong);
}

.footer-payments {
  list-style: none;
  padding-left: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 8px;
}

.footer-payments li {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background-color: rgba(15, 23, 42, 0.85);
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 0.8rem;
  color: #e5e7eb;
}

.footer-payment-icon {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  background-color: rgba(15, 23, 42, 1);
  border: 1px solid rgba(148, 163, 184, 0.8);
}

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

.footer-social a {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 600;
}

.footer-bottom {
  border-top: 1px solid rgba(15, 23, 42, 0.9);
  padding: 10px 0;
  background-color: #020617;
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: #6b7280;
  gap: 10px;
}

.footer-bottom a {
  color: #9ca3af;
  text-decoration: none;
}

.footer-bottom a:hover {
  color: #e5e7eb;
}

/* Responsivo */
@media (max-width: 840px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero {
    padding-top: 40px;
  }

  .header-inner {
    flex-wrap: wrap;
    gap: 10px;
  }

  .nav {
    flex-wrap: wrap;
    justify-content: flex-end;
  }

  .footer-main {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }
}

@media (max-width: 640px) {
  .section {
    padding: 40px 0;
  }

  .section-title {
    font-size: 1.6rem;
  }

  .hero-title {
    font-size: 2rem;
  }

  .nav {
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .footer-main {
    grid-template-columns: minmax(0, 1fr);
  }

  .footer-bottom-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Animações simples */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}



/* Botões do Blog / Artigos */
.btn-blog,
.btn-blog-back {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  border: none;
  cursor: pointer;
  background: linear-gradient(135deg, #0EA5E9, #1E3A8A);
  color: #e5e7eb;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.65);
  transition: transform 0.18s ease, box-shadow 0.18s ease, opacity 0.18s ease;
}

.btn-blog:hover,
.btn-blog-back:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 36px rgba(15, 23, 42, 0.85);
  opacity: 0.96;
}

/* Variante de retorno: mais discreta, com contorno */
.btn-blog-back {
  background: transparent;
  border: 1px solid rgba(148, 163, 184, 0.65);
  color: #e5e7eb;
  box-shadow: none;
}

.btn-blog-back:hover {
  background: rgba(15, 23, 42, 0.9);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.9);
}
