@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;900&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: #0a0f1c;
  color: white;
  line-height: 1.5;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
}

/* HEADER */
header {
  background: #0a0f1c;
  padding: 30px 20px;
  text-align: center;
}

.logo-img {
  max-width: 320px;
  height: auto;
}

/* BARRA VERDE */
.green-bar {
  background: linear-gradient(90deg, #00ff9d, #00cc7a);
  color: #0a0f1c;
  padding: 14px 20px;
  font-weight: 600;
  text-align: center;
  font-size: 15px;
}

/* HERO */
.hero {
  padding: 50px 20px 40px;
  text-align: center;
}

.subtitle {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 30px;
}

.main-text {
  font-size: 34px;
  font-weight: 900;
  line-height: 1.25;
  margin-bottom: 40px;
}

.main-text span {
  color: #00ff9d;
}

/* VIDEO */
.video-section {
  background: #111827;
  padding: 60px 20px;
  text-align: center;
}

.video-container {
  max-width: 800px;
  margin: 0 auto 30px;
  background: #000;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,255,157,0.25);
}

.video-placeholder {
  width: 100%;
  height: 450px;
  background: #1f2937;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9ca3af;
  font-size: 18px;
}

/* BOTÓN */
.btn-primary {
  background: #00ff9d;
  color: #0a0f1c;
  padding: 18px 50px;
  font-size: 20px;
  font-weight: 700;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  display: block;
  margin: 30px auto;
  transition: all 0.3s;
}

.btn-primary:hover {
  background: #00cc7a;
  transform: translateY(-3px);
}

/* FORMULARIO */
.form-section {
  padding: 60px 20px;
  background: #0a0f1c;
  text-align: center;
}

.form-container {
  max-width: 500px;
  margin: 0 auto;
  background: #111827;
  padding: 40px 30px;
  border-radius: 12px;
}

.form-group {
  margin-bottom: 20px;
  text-align: left;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
}

.form-group select, .form-group input {
  width: 100%;
  padding: 14px 15px;
  border-radius: 6px;
  border: none;
  background: #1f2937;
  color: white;
  font-size: 16px;
}

/* SECCIÓN APROVECHA CADA DÓLAR */
.dolar-section {
  padding: 80px 20px;
  background: #ffffff;
  color: #111827;
  text-align: center;
}

.dolar-section h2 {
  font-size: 42px;
  font-weight: 900;
  margin-bottom: 20px;
}

.dolar-section h2 span {
  color: #00cc7a;
}

.dolar-section p {
  max-width: 800px;
  margin: 0 auto 30px;
  font-size: 18px;
  line-height: 1.6;
}

.dolar-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
  max-width: 1000px;
  margin: 0 auto;
}

.dolar-image {
  max-width: 380px;
  height: auto;
}

.steps {
  text-align: left;
  max-width: 480px;
}

.steps h3 {
  font-size: 26px;
  margin-bottom: 25px;
  font-weight: 700;
}

.step {
  margin-bottom: 28px;
  display: flex;
  gap: 15px;
}

.step-number {
  background: #00ff9d;
  color: #0a0f1c;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
}

.step p {
  font-size: 17px;
  line-height: 1.5;
}

/* TESTIMONIOS */
.testimonials {
  padding: 80px 20px 60px;
  background: #0a0f1c;
}

.testimonials h2 {
  text-align: center;
  font-size: 32px;
  margin-bottom: 50px;
}

.test-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 25px;
}

.testimonial-card {
  background: #111827;
  border-radius: 12px;
  padding: 25px 20px;
  text-align: center;
}

.testimonial-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 15px;
}

.name {
  font-weight: 700;
  font-size: 18px;
  margin: 10px 0 5px;
}

.amount {
  color: #00ff9d;
  font-weight: 600;
  margin-bottom: 8px;
}

.stars {
  color: #fbbf24;
  font-size: 20px;
  margin: 10px 0;
}

.quote {
  font-size: 14.5px;
  line-height: 1.5;
  color: #d1d5db;
}

footer {
  text-align: center;
  padding: 40px 20px;
  color: #6b7280;
  font-size: 14px;
}