﻿@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

html,
body {
  margin: 0;
  padding: 0;
  background: #02010b;
}

:root {
  --color-bg: #02010b;
  --color-card-dark: #111119;
  --color-card-deep: #151522;
  --color-light: #f4f4f7;
  --color-text: #f2f2ff;
  --color-muted: #a7a7c7;
  --color-accent: #00ff85;
  --color-purple: #7b3cff;
  --radius-lg: 28px;
  --radius-md: 20px;
  --shadow-soft: 0 25px 60px rgba(0, 0, 0, 0.35);
  --shadow-light: 0 15px 40px rgba(13, 13, 20, 0.15);
}

* {
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', 'Inter', 'Segoe UI', Tahoma, sans-serif;
  color: var(--color-text);
  background-color: var(--color-bg);
  line-height: 1.6;
  min-height: 100vh;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease, opacity 0.2s ease;
}

a:hover,
a:focus-visible {
  color: var(--color-accent);
}

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

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

main {
  background: var(--color-bg);
}

section {
  padding: 6rem 0;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.78rem;
  color: var(--color-muted);
  margin-bottom: 0.75rem;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(10, 10, 15, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.header__content {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.header__logo img {
  height: 48px;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  font-weight: 500;
}

.header__nav a {
  padding: 0.4rem 0.6rem;
  border-radius: 999px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 600;
  padding: 0.9rem 1.9rem;
  border: 2px solid transparent;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.btn--primary {
  background: linear-gradient(120deg, var(--color-accent), var(--color-purple));
  color: #050405;
  box-shadow: 0 15px 35px rgba(0, 255, 133, 0.35);
}

.btn--primary:hover {
  transform: translateY(-3px);
}

.btn--outline {
  border: 2px solid transparent;
  background: linear-gradient(#0b0a13, #0b0a13) padding-box,
    linear-gradient(120deg, var(--color-accent), var(--color-purple)) border-box;
  color: var(--color-accent);
}

.btn--outline:hover {
  color: #0b0a13;
  background: linear-gradient(120deg, var(--color-accent), var(--color-purple));
}

.btn--ghost {
  padding: 0.65rem 1.2rem;
  border-radius: 999px;
  background: rgba(123, 60, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--color-purple);
}

.btn--ghost:hover {
  background: rgba(0, 255, 133, 0.18);
  color: #050405;
}

.btn--whatsapp {
  background: var(--color-accent);
  color: #050405;
  box-shadow: 0 12px 30px rgba(0, 255, 133, 0.4);
}

/* Hero */
.hero {
  min-height: 80vh;
  padding-top: calc(6rem + 80px);
  background: radial-gradient(circle at top right, rgba(123, 60, 255, 0.6), transparent 55%),
    var(--color-card-deep);
}

.hero__layout {
  display: grid;
  gap: 3rem;
  align-items: center;
}

.hero__text h1 {
  font-size: clamp(2.4rem, 6vw, 3.8rem);
  margin-bottom: 1rem;
}

.hero__actions {
  margin-top: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero__card {
  background: rgba(255, 255, 255, 0.04);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-soft);
  text-align: center;
}

.hero__photo {
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-lg);
  padding: 1rem;
  margin-bottom: 1rem;
}

.hero__card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Sections */
.section--light {
  background: var(--color-light);
  color: #111017;
}

.section--dark {
  background: linear-gradient(135deg, var(--color-card-dark), #06050f);
}

.section__header h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 0.75rem;
}

.grafica__layout {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

.grafica__image {
  background: #ffffff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-light);
  padding: 1rem;
}

.service-grid {
  display: grid;
  gap: 1.25rem;
}

.service-card {
  background: #ffffff;
  border-radius: var(--radius-md);
  padding: 1.5rem;
  box-shadow: 0 20px 45px rgba(15, 15, 30, 0.08);
  color: #161527;
  display: grid;
  gap: 0.8rem;
}

.service-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #eef0ff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  color: #6d44ff;
}

.service-card h3 {
  margin: 0;
}

/* Bio */
.bio__layout {
  display: grid;
  gap: 3rem;
  align-items: center;
}

.bio__text ul {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
  display: grid;
  gap: 0.5rem;
}

.bio__text li {
  position: relative;
  padding-left: 1.4rem;
}

.bio__text li::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-accent);
  position: absolute;
  left: 0;
  top: 0.55rem;
}

.bio__highlight {
  color: var(--color-accent);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.bio__mockup {
  position: relative;
  display: flex;
  justify-content: center;
}

.bio__mockup::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 40px;
  background: linear-gradient(130deg, rgba(0, 255, 133, 0.4), rgba(123, 60, 255, 0.4));
  filter: blur(35px);
  z-index: 0;
}

.bio__mockup img {
  position: relative;
  z-index: 1;
  max-width: 420px;
  object-fit: contain;
}

/* Corridas */
.corridas__layout {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

.corridas__logo {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-light);
  display: flex;
  justify-content: center;
}

.corridas__text {
  color: #1b1930;
}

/* Contato */
.contact {
  background: linear-gradient(135deg, #0d0c18, #151533);
}

.contact__layout {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.contact__banner img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  object-fit: cover;
}

.contact__banner a:hover {
  opacity: 0.92;
}

/* Footer */
.footer {
  background: #010103;
  text-align: center;
  color: var(--color-muted);
  padding: 2.5rem 0;
}

.footer__content a {
  color: var(--color-accent);
}

/* Animations */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.9s ease forwards;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (min-width: 768px) {
  .hero__layout,
  .grafica__layout,
  .bio__layout,
  .corridas__layout,
  .contact__layout {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .header__nav {
    width: 100%;
    justify-content: space-between;
  }

  .hero {
    padding-top: calc(5rem + 80px);
  }

  .btn {
    width: 100%;
  }
}

@media (min-width: 1024px) {
  .hero__layout {
    grid-template-columns: 1.1fr 0.9fr;
  }
}
