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

:root {
  --primary: #E8A03C;
  --accent: #FF6B35;
  --dark: #0a0e27;
  --surface: #141b2f;
  --text: #ffffff;
  --text-muted: #a0aec0;
  --border: rgba(232, 160, 60, 0.1);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 50%, #0f1428 100%);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

/* ======================== ANIMATED BACKGROUND ======================== */
.animated-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
}

.radial-lines {
  position: absolute;
  left: 10%;
  top: 50%;
  transform: translateY(-50%);
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(232, 160, 60, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  animation: radiateLines 8s ease-in-out infinite;
}

@keyframes radiateLines {
  0%, 100% {
    transform: translateY(-50%) scale(1);
    opacity: 0.5;
  }
  50% {
    transform: translateY(-50%) scale(1.2);
    opacity: 0.3;
  }
}

.floating-shapes {
  position: absolute;
  left: 5%;
  top: 30%;
  width: 500px;
  height: 500px;
  background: 
    radial-gradient(circle at 20% 20%, rgba(255, 107, 53, 0.08) 0%, transparent 40%),
    radial-gradient(circle at 80% 80%, rgba(232, 160, 60, 0.05) 0%, transparent 40%);
  animation: float 20s ease-in-out infinite;
}

@keyframes float {
  0%, 100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(30px, 30px);
  }
}

/* ======================== HEADER ======================== */
.header {
  background: rgba(10, 14, 39, 0.7);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 18px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-decoration: none;
}

.nav {
  display: flex;
  gap: 30px;
  align-items: center;
}

.nav-link {
  color: var(--text-muted);
  text-decoration: none;
  transition: all 0.3s;
  font-weight: 500;
}

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

.btn-header {
  padding: 10px 24px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s;
  text-decoration: none;
}

.btn-header:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(232, 160, 60, 0.3);
}

/* ======================== HERO SECTION ======================== */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 100px 40px;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  position: relative;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  width: 100%;
  animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.urgency-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(232, 160, 60, 0.1);
  border: 1px solid var(--border);
  padding: 10px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 30px;
  animation: fadeInUp 0.8s ease-out 0.1s both;
}

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

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255, 107, 53, 0.7); }
  50% { box-shadow: 0 0 0 8px rgba(255, 107, 53, 0); }
}

.hero-title {
  font-size: clamp(32px, 6vw, 56px);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-title .highlight {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 20px;
  color: var(--text-muted);
  margin-bottom: 20px;
  animation: fadeInUp 0.8s ease-out 0.3s both;
}

.hero-description {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 30px;
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-meta {
  display: flex;
  gap: 30px;
  margin-bottom: 40px;
  animation: fadeInUp 0.8s ease-out 0.5s both;
  flex-wrap: wrap;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text-muted);
}

.meta-item svg {
  color: var(--primary);
}

.hero-cta {
  display: flex;
  align-items: center;
  gap: 20px;
  animation: fadeInUp 0.8s ease-out 0.6s both;
}

.btn-primary {
  padding: 16px 40px;
  background: linear-gradient(135deg, #4CAF50, #45a049);
  color: white;
  border: none;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(76, 175, 80, 0.3);
}

.cta-text {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ======================== HERO RIGHT - BANNER & ICONS ======================== */
.hero-right {
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

.banner-container {
  position: relative;
  height: 500px;
  background: linear-gradient(135deg, rgba(20, 27, 47, 0.8), rgba(31, 41, 55, 0.8));
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.banner-upload {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.upload-trigger {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  z-index: 2;
  position: relative;
}

.upload-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  color: white;
  font-weight: 700;
}

.upload-trigger p {
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  margin: 0;
}

.upload-trigger small {
  font-size: 12px;
  color: var(--text-muted);
}

.banner-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ======================== FLOATING ICONS ======================== */
.floating-icons {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
}

.float-icon {
  position: absolute;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(232, 160, 60, 0.2);
  border: 1px solid var(--border);
  border-radius: 12px;
  color: var(--primary);
  animation: floatIcon 4s ease-in-out infinite;
  backdrop-filter: blur(10px);
}

.float-icon svg {
  width: 28px;
  height: 28px;
  filter: drop-shadow(0 0 10px rgba(232, 160, 60, 0.5));
}

.icon-1 {
  top: 20%;
  left: 15%;
  animation-delay: 0s;
}

.icon-2 {
  top: 50%;
  right: 10%;
  animation-delay: 0.5s;
}

.icon-3 {
  bottom: 15%;
  left: 20%;
  animation-delay: 1s;
}

.icon-4 {
  bottom: 30%;
  right: 15%;
  animation-delay: 1.5s;
}

@keyframes floatIcon {
  0%, 100% {
    transform: translateY(0px);
    opacity: 0.6;
  }
  50% {
    transform: translateY(-20px);
    opacity: 1;
  }
}

/* ======================== VAGAS INDICATOR ======================== */
.vagas-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(20, 27, 47, 0.9);
  border: 1px solid var(--border);
  padding: 20px 40px;
  border-radius: 12px;
  backdrop-filter: blur(10px);
  min-width: 300px;
}

.vagas-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.vagas-number {
  font-size: 28px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.vagas-label {
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  font-weight: 600;
}

.vagas-bar {
  width: 100%;
  height: 6px;
  background: rgba(232, 160, 60, 0.1);
  border-radius: 3px;
  overflow: hidden;
}

.vagas-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 3px;
  animation: fillBar 2s ease-out;
}

@keyframes fillBar {
  from { width: 0; }
  to { width: 62%; }
}

/* ======================== BENEFITS SECTION ======================== */
.benefits {
  padding: 100px 40px;
  max-width: 1400px;
  margin: 0 auto;
}

.benefits h2 {
  font-size: 42px;
  text-align: center;
  margin-bottom: 60px;
}

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

.benefit-card {
  background: linear-gradient(135deg, rgba(20, 27, 47, 0.8), rgba(31, 41, 55, 0.8));
  border: 1px solid var(--border);
  padding: 40px 30px;
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s;
  backdrop-filter: blur(10px);
}

.benefit-card:hover {
  border-color: var(--primary);
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(232, 160, 60, 0.15);
}

.benefit-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 700;
  color: white;
}

.benefit-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.benefit-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.8;
}

/* ======================== DETAILS SECTION ======================== */
.details {
  padding: 60px 40px;
  max-width: 1400px;
  margin: 0 auto;
}

.details-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.detail-card {
  background: linear-gradient(135deg, rgba(232, 160, 60, 0.05), rgba(255, 107, 53, 0.05));
  border: 1px solid var(--border);
  padding: 32px;
  border-radius: 12px;
  backdrop-filter: blur(10px);
}

.detail-card h4 {
  color: var(--primary);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
  font-weight: 700;
}

.detail-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.8;
  margin: 0;
}

/* ======================== PRICING SECTION ======================== */
.pricing {
  padding: 100px 40px;
  max-width: 1400px;
  margin: 0 auto;
}

.pricing h2 {
  font-size: 42px;
  text-align: center;
  margin-bottom: 60px;
}

.pricing-cards {
  display: flex;
  justify-content: center;
}

.price-card {
  background: linear-gradient(135deg, rgba(20, 27, 47, 0.9), rgba(31, 41, 55, 0.9));
  border: 1px solid var(--border);
  padding: 50px 40px;
  border-radius: 16px;
  max-width: 400px;
  backdrop-filter: blur(10px);
  position: relative;
}

.price-card.featured {
  border-color: var(--primary);
  box-shadow: 0 0 50px rgba(232, 160, 60, 0.2);
}

.price-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: white;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
}

.price-card h3 {
  font-size: 24px;
  margin-bottom: 20px;
  margin-top: 20px;
}

.price {
  margin-bottom: 8px;
}

.old-price {
  text-decoration: line-through;
  color: var(--text-muted);
  font-size: 14px;
  display: block;
}

.new-price {
  font-size: 48px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
}

.price-info {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 30px;
}

.price-features {
  list-style: none;
  margin-bottom: 30px;
}

.price-features li {
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 13px;
  color: var(--text-muted);
}

.price-features li:before {
  content: '✓ ';
  color: var(--primary);
  font-weight: 700;
  margin-right: 8px;
}

.btn-buy {
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-buy:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(232, 160, 60, 0.3);
}

/* ======================== FOOTER ======================== */
.footer {
  background: rgba(10, 14, 39, 0.8);
  border-top: 1px solid var(--border);
  padding: 60px 40px 30px;
  backdrop-filter: blur(10px);
}

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

.footer-section h4 {
  color: var(--primary);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
  font-weight: 700;
}

.footer-section p {
  font-size: 13px;
  color: var(--text-muted);
  margin: 0;
}

.footer-section a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 13px;
  transition: color 0.3s;
}

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

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 30px;
  text-align: center;
  font-size: 12px;
  color: var(--text-muted);
}

.nexia {
  color: var(--primary);
  font-weight: 700;
  cursor: pointer;
}

/* ======================== WHATSAPP BUTTON ======================== */
.whatsapp-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #25D366, #20BA5C);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  z-index: 999;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
  animation: float 3s ease-in-out infinite;
  transition: all 0.3s;
}

.whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 15px 40px rgba(37, 211, 102, 0.6);
}

.whatsapp-btn svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

/* ======================== RESPONSIVE ======================== */
@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .hero-right {
    order: -1;
  }
}

@media (max-width: 768px) {
  .header-content {
    padding: 0 20px;
  }
  
  .nav {
    gap: 16px;
  }
  
  .hero {
    padding: 60px 20px;
    min-height: auto;
  }
  
  .hero-title {
    font-size: 28px;
  }
  
  .hero-meta {
    flex-direction: column;
    gap: 16px;
  }
  
  .benefits, .details, .pricing {
    padding: 60px 20px;
  }
  
  .banner-container {
    height: 300px;
  }
  
  .whatsapp-btn {
    width: 56px;
    height: 56px;
    bottom: 20px;
    right: 20px;
  }
}
