* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Cores da Logomarca Delivery Brazil */
  --primary-green: #009639;
  --primary-green-dark: #007a2e;
  --primary-green-light: #00b347;
  --secondary-yellow: #FFD700;
  --secondary-yellow-dark: #e6c200;
  --accent-blue: #1B2A5E;
  --accent-blue-dark: #141f45;
  --accent-blue-light: #2a3f7f;
  
  /* Cores de suporte */
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-700: #374151;
  --gray-900: #111827;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  background-color: #000;
  color: #fff;
  line-height: 1.6;
  overflow-x: hidden;
}

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

/* Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
}

.logo img {
  height: 3.5rem;
  width: auto;
}

@media (min-width: 768px) {
  .logo img {
    height: 4rem;
  }
}

.nav-links {
  display: none;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
}

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

.btn {
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
  display: inline-block;
  cursor: pointer;
  border: none;
  font-size: 1rem;
}

.btn-primary {
  background: linear-gradient(to right, var(--primary-green), var(--secondary-yellow));
  color: #fff;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.btn-primary:hover {
  background: linear-gradient(to right, var(--primary-green-dark), var(--secondary-yellow-dark));
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 150, 57, 0.3);
}

/* Hero Section */
.hero {
  padding: 8rem 1.5rem 5rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

.hero h1 {
  font-size: 3rem;
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.gradient-text {
  background: linear-gradient(to right, var(--primary-green), var(--secondary-yellow), var(--accent-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: 1.25rem;
  color: var(--gray-300);
  margin-bottom: 2rem;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hero-image {
  position: relative;
}

.hero-image img {
  width: 100%;
  border-radius: 1.5rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.social-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  text-decoration: none;
  transition: all 0.3s;
}

.social-icon:hover {
  background: var(--primary-green);
  transform: scale(1.1);
}

/* Section */
section {
  padding: 5rem 1.5rem;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.section-subtitle {
  text-align: center;
  font-size: 1.25rem;
  color: var(--gray-300);
  margin-bottom: 3rem;
}

.bg-gradient {
  background: linear-gradient(to bottom, #000, rgba(0, 150, 57, 0.1), rgba(27, 42, 94, 0.15));
}

/* Cards */
.card {
  background: linear-gradient(135deg, rgba(0, 150, 57, 0.2), rgba(27, 42, 94, 0.2));
  border: 1px solid rgba(0, 150, 57, 0.3);
  border-radius: 1rem;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  transition: all 0.3s;
}

.card:hover {
  border-color: rgba(0, 150, 57, 0.5);
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(0, 150, 57, 0.2);
}

.card-number {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: linear-gradient(to right, var(--primary-green), var(--secondary-yellow));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 1rem;
  box-shadow: 0 4px 8px rgba(0, 150, 57, 0.3);
}

.card-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.card-description {
  color: var(--gray-300);
}

/* Grid */
.grid {
  display: grid;
  gap: 2rem;
}

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

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

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

/* Feature Card */
.feature-card {
  background: rgba(17, 24, 39, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s;
}

.feature-card:hover {
  background: rgba(17, 24, 39, 0.8);
  border-color: var(--primary-green);
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 150, 57, 0.2);
}

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

.feature-title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.feature-description {
  color: var(--gray-400);
  font-size: 0.875rem;
}

/* Demo Cards */
.demo-card {
  background: rgba(17, 24, 39, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  overflow: hidden;
  transition: all 0.3s;
  cursor: pointer;
}

.demo-card:hover {
  transform: scale(1.05);
  border-color: var(--primary-green);
  box-shadow: 0 8px 16px rgba(0, 150, 57, 0.3);
}

.demo-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.demo-card-content {
  padding: 1.5rem;
  text-align: center;
}

.demo-card-title {
  font-size: 1.125rem;
  font-weight: 600;
}

/* Affiliate Section */
.affiliate-section {
  background: linear-gradient(135deg, rgba(0, 150, 57, 0.3), rgba(27, 42, 94, 0.3));
  border-radius: 2rem;
  padding: 3rem 1.5rem;
  border: 1px solid rgba(0, 150, 57, 0.2);
}

.affiliate-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

.affiliate-image img {
  width: 100%;
  border-radius: 1rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.affiliate-content h2 {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
}

.affiliate-content p {
  font-size: 1.125rem;
  color: var(--gray-300);
  margin-bottom: 1.5rem;
}

.affiliate-list {
  list-style: none;
  margin-bottom: 2rem;
}

.affiliate-list li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: var(--gray-300);
}

.affiliate-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary-green);
  font-weight: bold;
  font-size: 1.2rem;
}

/* Plans */
.plan-card {
  background: linear-gradient(135deg, rgba(0, 150, 57, 0.2), rgba(27, 42, 94, 0.3));
  border: 2px solid rgba(0, 150, 57, 0.3);
  border-radius: 1rem;
  padding: 2rem;
  position: relative;
}

.plan-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(to right, var(--primary-green), var(--secondary-yellow));
  padding: 0.25rem 1rem;
  border-radius: 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #fff;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.plan-name {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
  text-align: center;
}

.plan-price {
  font-size: 2.5rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 0.5rem;
}

.plan-period {
  text-align: center;
  color: var(--gray-400);
  margin-bottom: 1.5rem;
}

.plan-features {
  list-style: none;
  margin-bottom: 2rem;
}

.plan-features li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: var(--gray-300);
}

.plan-features li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary-green);
  font-weight: bold;
  font-size: 1.2rem;
}

/* Contact Cards */
.contact-card {
  background: linear-gradient(135deg, rgba(0, 150, 57, 0.2), rgba(27, 42, 94, 0.2));
  border: 1px solid rgba(0, 150, 57, 0.3);
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s;
}

.contact-card:hover {
  border-color: rgba(0, 150, 57, 0.5);
  transform: scale(1.05);
  box-shadow: 0 8px 16px rgba(0, 150, 57, 0.3);
}

.contact-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: var(--primary-green);
}

.contact-title {
  font-size: 1.25rem;
  font-weight: 600;
}

/* Footer */
footer {
  padding: 3rem 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-logo img {
  height: 4rem;
  margin-bottom: 1rem;
}

.footer-description {
  color: var(--gray-400);
}

.footer-title {
  font-weight: 600;
  margin-bottom: 1rem;
}

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

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: var(--gray-400);
  text-decoration: none;
  transition: color 0.3s;
}

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

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

.footer-bottom p {
  margin-bottom: 0.5rem;
}

.footer-bottom a {
  color: var(--secondary-yellow);
  text-decoration: none;
}

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

/* Video Container */
.video-container {
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
  aspect-ratio: 16/9;
}

.video-container iframe {
  width: 100%;
  height: 100%;
  border-radius: 1.5rem;
}

/* Responsive */
@media (min-width: 768px) {
  .nav-links {
    display: flex;
  }
  
  .hero h1 {
    font-size: 4rem;
  }
  
  .hero-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .hero-buttons {
    flex-direction: row;
  }
  
  .grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .grid-4 {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .affiliate-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .hero h1 {
    font-size: 4.5rem;
  }
  
  .section-title {
    font-size: 3rem;
  }
}

/* Smooth Scroll */
html {
  scroll-behavior: smooth;
}

