/* Reset e Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #6366f1;
  --primary-dark: #4f46e5;
  --secondary: #ec4899;
  --dark: #1e1e2e;
  --light: #f8fafc;
  --gray: #64748b;
  --gray-light: #e2e8f0;
  --white: #ffffff;
  --gradient: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: var(--dark);
  background: var(--white);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--primary-dark);
}

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

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

.logo {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 80px;
  width: auto;
}

.footer-logo {
  height: 100px;
  width: auto;
  margin-bottom: 15px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 30px;
}

.nav-links a {
  color: var(--gray);
  font-weight: 500;
  transition: color 0.3s ease;
}

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

/* Hero */
.hero {
  padding: 180px 0 120px;
  text-align: center;
  background: linear-gradient(180deg, var(--light) 0%, var(--white) 100%);
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 30px;
  line-height: 1.2;
}

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

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--gray);
  max-width: 600px;
  margin: 0 auto 40px;
}

.coming-soon {
  display: inline-block;
  padding: 15px 30px;
  background: var(--light);
  border-radius: 50px;
  color: var(--gray);
  font-weight: 500;
}

.coming-soon p {
  margin: 0;
}

/* Sections */
.section {
  padding: 120px 0;
  border-top: 1px solid var(--gray-light);
}

.section:first-of-type {
  border-top: none;
}

.section-alt {
  background: var(--light);
  border-top: none;
}

.section h2 {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 30px;
}

.section > .container > p {
  text-align: center;
  color: var(--gray);
  max-width: 700px;
  margin: 0 auto 80px;
  font-size: 1.1rem;
}

/* Features */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.feature {
  text-align: center;
  padding: 40px 30px;
  background: var(--white);
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

.feature h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}

.feature p {
  color: var(--gray);
}

/* Steps */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.step {
  text-align: center;
  position: relative;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: var(--gradient);
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 700;
  border-radius: 50%;
  margin-bottom: 20px;
}

.step h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}

.step p {
  color: var(--gray);
}

/* Contact */
.contact-info {
  text-align: center;
  margin-top: 40px;
}

.contact-info p {
  margin: 10px 0;
  font-size: 1.1rem;
}

/* Footer */
.footer {
  background: var(--dark);
  color: var(--white);
  padding: 60px 0 30px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand p {
  color: var(--gray);
}

.footer h4 {
  font-size: 1rem;
  margin-bottom: 20px;
  color: var(--gray-light);
}

.footer-links ul {
  list-style: none;
}

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

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

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

.footer-company p {
  color: var(--gray);
  font-size: 0.9rem;
  margin-bottom: 5px;
}

.footer-company strong {
  color: var(--gray-light);
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--gray);
  font-size: 0.9rem;
}

/* Legal Pages */
.legal-page {
  padding: 120px 0 80px;
}

.legal-page h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.last-updated {
  color: var(--gray);
  margin-bottom: 40px;
}

.legal-section {
  margin-bottom: 40px;
}

.legal-section h2 {
  font-size: 1.5rem;
  text-align: left;
  margin-bottom: 15px;
  color: var(--primary);
}

.legal-section h3 {
  font-size: 1.1rem;
  margin: 20px 0 10px;
}

.legal-section p {
  margin-bottom: 15px;
  color: var(--dark);
}

.legal-section ul {
  margin: 15px 0 15px 30px;
}

.legal-section li {
  margin-bottom: 10px;
  color: var(--dark);
}

.contact-box {
  background: var(--light);
  padding: 30px;
  border-radius: 15px;
  margin-top: 20px;
}

.contact-box p {
  margin-bottom: 8px;
}

/* Responsive */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .section {
    padding: 60px 0;
  }

  .section h2 {
    font-size: 2rem;
  }

  .features,
  .steps {
    gap: 20px;
  }

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