/* ===== VARIABLES ===== */
:root {
  --green: #ADCC29;
  --green-dark: #8fa820;
  --green-glow: rgba(173, 204, 41, 0.15);
  --navy: #0D1B3E;
  --navy-mid: #112250;
  --navy-light: #1a3366;
  --blue: #1E70BF;
  --dark: #060E22;
  --white: #FFFFFF;
  --gray: #94a3b8;
  --gray-light: #cbd5e1;
  --border: rgba(255,255,255,0.08);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.3s ease;
  --shadow: 0 4px 24px rgba(0,0,0,0.3);
  --shadow-green: 0 0 30px rgba(173, 204, 41, 0.25);
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background-color: var(--dark);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

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

.section {
  padding: 96px 0;
}

/* ===== REVEAL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-green {
  background: var(--green);
  color: var(--dark);
}

.btn-green:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-green);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--border);
}

.btn-outline:hover {
  border-color: var(--green);
  color: var(--green);
  transform: translateY(-2px);
}

.btn-lg { padding: 16px 32px; font-size: 1rem; }

.btn-xl { padding: 18px 36px; font-size: 1.05rem; border-radius: 14px; }

/* ===== SECTION HEADER ===== */
.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-tag {
  display: inline-block;
  background: var(--green-glow);
  color: var(--green);
  border: 1px solid rgba(173, 204, 41, 0.3);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}

.tag-new {
  background: rgba(30, 112, 191, 0.15);
  color: #60a5fa;
  border-color: rgba(96, 165, 250, 0.3);
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--gray);
  max-width: 560px;
  margin: 0 auto;
}

.text-green { color: var(--green); }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: all var(--transition);
}

.navbar.scrolled {
  background: rgba(6, 14, 34, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-img {
  height: 70px;
  width: auto;
  object-fit: contain;
}

.logo-sm {
  height: 36px;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-image: url("/static/images/car-lisbon.c6d9bdf29d41.jpeg");
  background-size: cover;
  background-position: center 35%;
  overflow: hidden;
  padding-top: 80px;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg,
      rgba(6,14,34,0.97) 0%,
      rgba(6,14,34,0.88) 45%,
      rgba(6,14,34,0.50) 70%,
      rgba(6,14,34,0.25) 100%
    );
  z-index: 1;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to bottom, transparent, var(--dark));
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.015'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-content {
  position: relative;
  z-index: 3;
  padding: 48px 24px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 0.8rem;
  color: var(--gray-light);
  margin-bottom: 28px;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.3); }
}

.hero-title {
  font-size: clamp(2rem, 6vw, 3.8rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 20px;
  max-width: 700px;
}

.hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  color: var(--gray);
  margin-bottom: 40px;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.hero-platforms {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.platform-label {
  color: var(--gray);
  font-size: 0.85rem;
}

.platform-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.platform-badge {
  padding: 6px 14px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
}

.uber {
  background: #000000;
  color: #fff;
}

.bolt {
  background: #34D186;
  color: #000;
}

.bolt-dot { position: relative; }

.vloz {
  background: var(--navy-light);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.2);
}

.vloz-dot {
  display: inline-block;
  color: #f97316;
  position: relative;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}

.scroll-arrow {
  width: 24px;
  height: 24px;
  border-right: 2px solid rgba(255,255,255,0.3);
  border-bottom: 2px solid rgba(255,255,255,0.3);
  transform: rotate(45deg);
  animation: scrollBounce 1.5s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: rotate(45deg) translateY(0); opacity: 0.3; }
  50% { transform: rotate(45deg) translateY(6px); opacity: 1; }
}

/* ===== STATS BAR ===== */
.stats-bar {
  background: var(--navy);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 48px 0;
}

.stats-grid {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 32px;
  flex-wrap: wrap;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 6px;
}

.stat-number {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 900;
  line-height: 1;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.4;
}

.stat-label small {
  display: block;
  font-size: 0.75rem;
  color: var(--gray);
  opacity: 0.7;
}

.stat-divider {
  width: 1px;
  height: 60px;
  background: var(--border);
  flex-shrink: 0;
}

/* ===== BENEFITS ===== */
.benefits {
  position: relative;
  background-image: url("/static/images/car-lisbon.c6d9bdf29d41.jpeg");
  background-size: cover;
  background-position: center 35%;
  background-attachment: fixed;
}

.benefits::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(6, 14, 34, 0.90);
  z-index: 0;
}

.benefits .container {
  position: relative;
  z-index: 1;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.benefit-card {
  background: rgba(13, 27, 62, 0.60);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(173,204,41,0.5), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}

.benefit-card:hover {
  border-color: rgba(173, 204, 41, 0.25);
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(0,0,0,0.4), 0 0 0 1px rgba(173,204,41,0.1);
  background: rgba(13, 27, 62, 0.75);
}

.benefit-card:hover::before {
  opacity: 1;
}

.benefit-icon {
  width: 52px;
  height: 52px;
  background: var(--green-glow);
  border: 1px solid rgba(173, 204, 41, 0.25);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.benefit-icon svg {
  width: 24px;
  height: 24px;
  color: var(--green);
}

.benefit-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.benefit-card p {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.6;
}

/* ===== VLOZ SECTION ===== */
.vloz-section {
  background: var(--navy);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.vloz-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.vloz-desc {
  font-size: 1rem;
  color: var(--gray);
  line-height: 1.7;
  margin: 20px 0 28px;
}

.vloz-desc strong { color: var(--white); }

.vloz-list {
  list-style: none;
  margin-bottom: 36px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.vloz-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--gray-light);
}

.vloz-list strong { color: var(--white); }

.vloz-check {
  color: var(--green);
  font-weight: 800;
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.vloz-card {
  background: var(--dark);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  text-align: center;
}

.vloz-logo-block {
  margin-bottom: 32px;
}

.vloz-logo-text {
  font-size: 3.5rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  color: var(--white);
}

.vloz-o {
  color: #f97316;
  display: inline-block;
  position: relative;
}

.vloz-o::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 6px;
  height: 6px;
  background: #f97316;
  border-radius: 50%;
}

.vloz-platforms {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}

.vloz-plat-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  background: var(--navy);
  border: 1px solid var(--border);
  border-radius: 10px;
}

.plat-name {
  font-weight: 700;
  font-size: 1rem;
}

.uber-text { color: var(--white); }
.bolt-text { color: #34D186; }
.vloz-text-sm { color: var(--gray-light); }

.plat-status {
  font-size: 0.75rem;
  padding: 4px 10px;
  border-radius: 100px;
  font-weight: 600;
}

.plat-status.active {
  background: rgba(52, 211, 134, 0.15);
  color: #34D186;
  border: 1px solid rgba(52, 211, 134, 0.3);
}

.new-status {
  background: rgba(173, 204, 41, 0.15);
  color: var(--green);
  border: 1px solid rgba(173, 204, 41, 0.3);
}

.vloz-card-msg {
  font-size: 0.85rem;
  color: var(--gray);
  font-style: italic;
}

/* ===== HOW IT WORKS ===== */
.how-section {
  position: relative;
  background-image: url("/static/images/car-lisbon.c6d9bdf29d41.jpeg");
  background-size: cover;
  background-position: center 55%;
  background-attachment: fixed;
}

.how-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(6, 14, 34, 0.88);
  z-index: 0;
}

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

.steps-grid {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.step-card {
  flex: 1;
  min-width: 220px;
  max-width: 320px;
  background: rgba(13, 27, 62, 0.60);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  position: relative;
  transition: all var(--transition);
}

.step-card:hover {
  border-color: rgba(173, 204, 41, 0.3);
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(0,0,0,0.4);
  background: rgba(13, 27, 62, 0.80);
}

.step-number {
  font-size: 3.5rem;
  font-weight: 900;
  color: rgba(173, 204, 41, 0.12);
  line-height: 1;
  margin-bottom: 16px;
  font-family: 'Inter', sans-serif;
}

.step-icon {
  width: 56px;
  height: 56px;
  background: var(--green-glow);
  border: 1px solid rgba(173, 204, 41, 0.25);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.step-icon svg {
  width: 26px;
  height: 26px;
  color: var(--green);
}

.step-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.step-card p {
  font-size: 0.88rem;
  color: var(--gray);
  line-height: 1.6;
}

.step-arrow {
  font-size: 1.8rem;
  color: var(--green);
  opacity: 0.5;
  flex-shrink: 0;
}

/* ===== FAQ ===== */
.faq-section {
  background: var(--navy);
  border-top: 1px solid var(--border);
}

.faq-inner {
  max-width: 800px;
  margin: 0 auto;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--dark);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition);
}

.faq-item.open {
  border-color: rgba(173, 204, 41, 0.3);
}

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

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

.faq-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  background: var(--green-glow);
  border: 1px solid rgba(173, 204, 41, 0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--green);
  transition: transform var(--transition);
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

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

.faq-answer p {
  padding: 0 24px 20px;
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.7;
}

.faq-answer p strong { color: var(--white); }

.faq-item.open .faq-answer {
  max-height: 200px;
}

/* ===== CTA SECTION ===== */
.cta-section {
  position: relative;
  background-image: url("/static/images/car-lisbon.c6d9bdf29d41.jpeg");
  background-size: cover;
  background-position: center 70%;
  background-attachment: fixed;
  border-top: 1px solid var(--border);
  text-align: center;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(6, 14, 34, 0.92);
  z-index: 0;
}

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

.cta-inner {
  max-width: 760px;
  margin: 0 auto;
}

.cta-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 16px;
}

.cta-subtitle {
  font-size: 1.1rem;
  color: var(--gray);
  margin-bottom: 48px;
}

.cta-contacts {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.cta-trust {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  font-size: 0.85rem;
  color: var(--gray);
}

.cta-trust span {
  display: flex;
  align-items: center;
  gap: 4px;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--dark);
  border-top: 1px solid var(--border);
  padding-top: 18px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: center;
  padding-bottom: 14px;
}

.footer-slogan {
  margin-top: 2px;
  font-size: 0.8rem;
  color: var(--gray);
}

.footer-links {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px 20px;
  text-align: center;
}

.footer-links a {
  font-size: 0.8rem;
  color: var(--gray);
  transition: color var(--transition);
  white-space: nowrap;
}

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

.footer-contact {
  text-align: right;
  font-size: 0.8rem;
  color: var(--gray);
  line-height: 1.5;
}

.footer-contact a {
  color: var(--green);
  transition: opacity var(--transition);
}

.footer-contact a:hover { opacity: 0.8; }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 8px 0;
  text-align: center;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: all var(--transition);
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .vloz-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-contact { text-align: center; }

  .stat-divider { display: none; }

  .steps-grid { flex-direction: column; }

  .step-arrow { transform: rotate(90deg); }
}

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

  .hero-actions { flex-direction: column; }

  .btn-lg, .btn-xl { width: 100%; justify-content: center; }

  .hero-platforms { flex-direction: column; align-items: flex-start; }

  .nav-cta span { display: none; }

  .cta-contacts { flex-direction: column; align-items: center; }

  .benefits-grid { grid-template-columns: 1fr; }

  .hero {
    background-size: contain;
    background-position: center 90px;
    background-color: var(--dark);
  }
}
