﻿/* === Tour index.css — design system do site marketing === */
:root {
  --azul-claro: #22B9DD;
  --violeta: #601FFF;
  --bg-dark: #02090F;
}

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

body {
  margin: 0;
  background: var(--bg-dark);
  font-family: 'Inter Tight', 'Schibsted Grotesk', system-ui, sans-serif;
  color: #fff;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.font-display { font-family: 'Schibsted Grotesk', system-ui, sans-serif; }

.btn-gradient {
  background: linear-gradient(90deg, var(--azul-claro) 0%, var(--violeta) 100%);
  background-size: 200% auto;
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 0.75rem 2rem;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-position 0.4s ease, transform 0.2s ease;
  text-decoration: none;
  display: inline-block;
}
.btn-gradient:hover {
  background-position: right center;
  color: #fff;
  transform: translateY(-2px);
}

/* Hero section */
.hero {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 1.5rem 3rem;
  position: relative;
  overflow: hidden;
}

/* Subtle radial gradient accent */
.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 60vw;
  height: 60vw;
  background: radial-gradient(circle, rgba(34,185,221,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -10%;
  right: 5%;
  width: 30vw;
  height: 30vw;
  background: radial-gradient(circle, rgba(96,31,255,0.1) 0%, transparent 70%);
  pointer-events: none;
}

.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--azul-claro);
  margin-bottom: 1rem;
  opacity: 0.9;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1rem;
  position: relative;
}
.hero h1 .accent { color: var(--azul-claro); }

.hero-sub {
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.7);
  max-width: 480px;
  margin-bottom: 2rem;
}

/* Step badges */
.hero-steps {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 2.5rem;
}
.hero-step-badge {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50px;
  padding: 0.35rem 0.9rem;
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  backdrop-filter: blur(4px);
}
.hero-step-sep {
  color: var(--azul-claro);
  font-size: 0.85rem;
  opacity: 0.6;
}

/* CTA group */
.hero-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}
.btn-outline-light-custom {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 50px;
  color: rgba(255,255,255,0.7);
  padding: 0.65rem 1.75rem;
  font-size: 0.85rem;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}
.btn-outline-light-custom:hover {
  border-color: rgba(255,255,255,0.6);
  color: #fff;
}

/* Footer */
footer {
  padding: 1.5rem;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.06);
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
}
footer a { color: rgba(255,255,255,0.4); text-decoration: none; }
footer a:hover { color: rgba(255,255,255,0.7); }
