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

:root {
  --dark: #081225;
  --dark-soft: #111827;
  --green: #10b981;
  --green-dark: #059669;
  --white: #ffffff;
  --gray: #d1d5db;
}

body {
  font-family: Arial, sans-serif;
}

html {
  scroll-behavior: smooth;
}

section {
  scroll-margin-top: 130px;
}

/* NAVBAR */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;

  padding: 18px 7%;

  background: rgba(5, 8, 22, 0.35);
  backdrop-filter: blur(10px);

  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

.logo img {
  width: 210px;
  height: auto;
  object-fit: contain;
}
.logo {
  width: 220px;
}

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

.nav-links a {
  color: white;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  transition: 0.3s ease;
}

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

/* HERO */

.hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 190px 7% 90px;
  gap: 60px;

  background:
    linear-gradient(135deg, rgba(8,18,37,0.92), rgba(17,24,39,0.88)),
    url("imagen prueba.jpg");

  background-size: cover;
  background-position: center;
}

.hero-left {
  width: 50%;
}

.hero-left h1 {
  font-size: 64px;
  line-height: 1.1;
  margin-bottom: 20px;
  color: white;
  font-weight: 800;
}

.hero-left p {
  font-size: 20px;
  color: #d1d5db;
  margin-bottom: 30px;
}

.trust-badges {
  display: flex;
  gap: 14px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.trust-badges span {
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: white;
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
}

.hero-cta {
  display: inline-block;
  padding: 16px 28px;
  background: var(--green);
  color: white;
  font-size: 18px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s ease;
}

.hero-cta:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
}

.hero-right {
  width: 40%;
}

.form-box {
  background: white;
  padding: 50px;
  border-radius: 24px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.form-box h2 {
  color: black;
  margin-bottom: 20px;
}

.form-box input {
  width: 100%;
  padding: 18px;
  margin-bottom: 18px;
  border: 1px solid #d1d5db;
  border-radius: 12px;
  font-size: 16px;
}

.form-box button {
  width: 100%;
  padding: 18px;
  border: none;
  background: #111827;
  color: white;
  font-size: 18px;
  border-radius: 12px;
  cursor: pointer;
  font-weight: bold;
  transition: 0.3s ease;
}

.form-box button:hover {
  background: #000;
}

.location-row {
  display: flex;
  gap: 14px;
}

.location-row input {
  width: 100%;
}

/* STEPS */

.steps {
  background: #ffffff;
  padding: 120px 80px;
  text-align: center;
}

.steps h2 {
  font-size: 48px;
  color: #111827;
  margin-bottom: 60px;
}

.steps-container {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.step-card {
  background: #f9fafb;
  padding: 40px;
  border-radius: 24px;
  width: 320px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.step-number {
  width: 60px;
  height: 60px;
  background: var(--green);
  color: white;
  border-radius: 50%;
  margin: 0 auto 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: bold;
}

.step-card h3 {
  font-size: 24px;
  margin-bottom: 15px;
  color: #111827;
}

.step-card p {
  color: #6b7280;
  line-height: 1.7;
}

/* WHY US */

.why-us {
  background: #0b1220;
  padding: 120px 80px;
  color: white;
}

.why-content {
  max-width: 700px;
  margin-bottom: 60px;
}

.section-label {
  color: var(--green);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.why-content h2 {
  font-size: 48px;
  margin: 16px 0;
  color: white;
}

.why-content p {
  color: #d1d5db;
  font-size: 18px;
  line-height: 1.7;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.why-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 32px;
  border-radius: 22px;
}

.why-card h3 {
  font-size: 22px;
  margin-bottom: 12px;
  color: white;
}

.why-card p {
  color: #d1d5db;
  line-height: 1.6;
}

/* TESTIMONIALS */

.testimonials {
  background: #ffffff;
  padding: 120px 80px;
}

.testimonial-header {
  text-align: center;
  margin-bottom: 70px;
}

.testimonial-header h2 {
  font-size: 48px;
  color: #111827;
  margin-top: 16px;
}

.testimonial-grid {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}

.testimonial-card {
  background: #f9fafb;
  width: 340px;
  padding: 40px;
  border-radius: 24px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

.testimonial-card p {
  color: #4b5563;
  line-height: 1.8;
  margin-bottom: 25px;
}

.testimonial-card h4 {
  color: #111827;
  font-size: 18px;
}

/* FAQ */

.faq {
  background: #0b1220;
  padding: 120px 80px;
  color: white;
}

.faq-header {
  text-align: center;
  margin-bottom: 60px;
}

.faq-header h2 {
  font-size: 48px;
  margin-top: 16px;
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 28px 32px;
  border-radius: 18px;
  margin-bottom: 18px;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: white;
  font-size: 22px;
  font-weight: 800;
  text-align: left;
  cursor: pointer;
}

.faq-answer {
  display: none;
  color: #d1d5db;
  line-height: 1.6;
  margin-top: 12px;
}

.faq-item.active .faq-answer {
  display: block;
}

/* INVESTOR CTA */

.investor-cta {
  background: linear-gradient(135deg, #050816, #0f172a);
  padding: 120px 80px;
  text-align: center;
}

.investor-cta-content {
  max-width: 850px;
  margin: 0 auto;
}

.investor-cta h2 {
  font-size: 56px;
  line-height: 1.2;
  color: white;
  margin: 20px 0;
}

.investor-cta p {
  color: #cbd5e1;
  font-size: 20px;
  line-height: 1.8;
  margin-bottom: 40px;
}

.investor-btn {
  display: inline-block;
  padding: 18px 36px;
  background: #c6a15b;
  color: #050816;
  text-decoration: none;
  border-radius: 14px;
  font-size: 18px;
  font-weight: 800;
  transition: 0.3s ease;
}

.investor-btn:hover {
  background: #e5c07b;
  transform: translateY(-2px);
}

/* FOOTER */

.footer {
  background: #081225;
  color: white;
  padding: 70px 80px 35px;
  text-align: center;
}

.footer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 20px;
}

.footer-logo img {
  height: 70px;
}

.footer-logo span {
  font-size: 22px;
  font-weight: 800;
}

.footer p {
  color: #d1d5db;
  max-width: 600px;
  margin: 0 auto 30px;
  line-height: 1.7;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 28px;
  margin-bottom: 35px;
}

.footer-links a {
  color: white;
  text-decoration: none;
  font-weight: 600;
}

.footer-bottom {
  color: #9ca3af;
  font-size: 14px;
}

/* MOBILE */

@media (max-width: 900px) {

  .navbar {
    padding: 16px 20px;
  }

  .logo img {
  height: 95px;
}

  .nav-links {
    gap: 16px;
    flex-wrap: wrap;
    justify-content: flex-end;
  }

  .nav-links a {
    font-size: 14px;
  }

  .hero {
    flex-direction: column;
    padding: 170px 20px 80px;
    text-align: center;
  }

  .hero-left,
  .hero-right {
    width: 100%;
  }

  .hero-left h1 {
    font-size: 3.2rem;
    line-height: 1.1;
  }

  .hero-left p {
    font-size: 1.05rem;
  }

  .trust-badges {
    justify-content: center;
    gap: 10px;
  }

  .trust-badges span {
    font-size: 0.85rem;
  }

  .hero-cta {
    width: 100%;
    max-width: 320px;
  }

  .form-box {
    margin-top: 40px;
    padding: 28px 22px;
  }

  .location-row {
    flex-direction: column;
    gap: 0;
  }

  .steps,
  .why-us,
  .testimonials,
  .faq,
  .investor-cta,
  .footer {
    padding-left: 20px;
    padding-right: 20px;
  }

  .steps h2,
  .why-content h2,
  .testimonial-header h2,
  .faq-header h2,
  .investor-cta h2 {
    font-size: 2.6rem;
  }

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

  .footer-links {
    flex-wrap: wrap;
    gap: 16px;
  }
}

@media (max-width: 600px) {

  .navbar {
    flex-direction: column;
    gap: 12px;
    padding: 16px 20px;
  }

  .nav-links {
    justify-content: center;
  }

  .hero {
    padding-top: 210px;
  }

  .hero-left h1 {
    font-size: 2.8rem;
  }

  .form-box h2 {
    font-size: 1.8rem;
  }
}
.form-box input,
.form-box select {
  width: 100%;
  padding: 16px;
  border: 1px solid #ddd;
  border-radius: 12px;
  font-size: 16px;
  font-family: inherit;
  box-sizing: border-box;
}

.form-box select {
  background-color: #fff;
  color: #666;
  cursor: pointer;
}
.form-box input,
.form-box select {
  width: 100%;
  padding: 16px;
  border: 1px solid #ddd;
  border-radius: 12px;
  font-size: 16px;
  box-sizing: border-box;
}
.form-box select {
  margin-bottom: 14px;
}
.privacy-note {
  margin-top: 15px;
  font-size: 12px;
  line-height: 1.5;
  color: #8a8a8a;
  text-align: center;
}

.privacy-note a {
  color: #c6a35d;
  text-decoration: none;
}

.privacy-note a:hover {
  text-decoration: underline;
}
.footer {
  background: #0b1120;
  color: #d1d5db;
  padding: 50px 20px;
  text-align: center;
}

.footer-content {
  max-width: 900px;
  margin: 0 auto;
}

.footer h3 {
  color: #ffffff;
  margin-bottom: 20px;
  font-size: 22px;
}

.footer-disclaimer {
  font-size: 13px;
  line-height: 1.8;
  color: #9ca3af;
  margin-bottom: 25px;
}

.footer-copy {
  font-size: 12px;
  color: #6b7280;
}