* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: Arial, sans-serif;
  background: #f9f9f9;
  color: #333;
  line-height: 1.6;
}


/* BOTONES */
a[class^="btn"],
button[class^="btn"] {
  display: inline-block;
  padding: 2px 2px;
  font-size: 16px;
  font-weight: bold;
  border-radius: 4px;
  text-decoration: none;
  text-align: center;
}


.btn-danger {
  background-color: #e63946;
  color: white;
}

.btn-danger:hover {
  background-color: #c82333;
}

.btn-demo {
  background-color: #004aad;
  color: white;
}

.btn-demo:hover {
  background-color: #00398a;
}

/* HERO */
.hero {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 64px 32px;
  background: #fff;
  margin-top: 80px;
}

.hero-content {
  flex: 1 1 400px;
}

.hero-content h1 {
  font-size: 40px;
  margin-bottom: 16px;
}

.hero-content p {
  margin-bottom: 32px;
}

.hero-image {
  flex: 1 1 300px;
  text-align: center;
}

.hero-image img {
  max-width: 100%;
  height: auto;
}

/* STATS */
.stats {
  display: flex;
  justify-content: center;
  background: #fff;
  padding: 32px 0;
  flex-wrap: wrap;
}

.stat {
  margin: 16px 32px;
  text-align: center;
  min-width: 120px;
}

.stat strong {
  display: block;
  font-size: 32px;
  color: #004aad;
}

.stat span {
  display: block;
  font-size: 16px;
}

/* FEATURES */
.features {
  padding: 48px 32px;
  background: #f9f9f9;
  text-align: center;
}

.features h2 {
  margin-bottom: 32px;
}

.features-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.feature {
  width: 280px;
  background: #fff;
  padding: 24px;
  border-radius: 8px;
  margin: 16px;
}

.feature img {
  width: 60px;
  height: 60px;
  margin-bottom: 16px;
}

.feature p {
  font-size: 16px;
}

/* TESTIMONIALS */
.testimonials {
  padding: 48px 32px;
  background: #fff;
}

.testimonials h2 {
  margin-bottom: 32px;
}

.testimonials-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.testimonials-grid blockquote {
  width: 280px;
  background: #f9f9f9;
  padding: 24px;
  margin: 16px;
  border-left: 4px solid #f5a623;
  text-align: left;
}

blockquote p {
  font-style: italic;
  margin-bottom: 16px;
}

blockquote cite {
  display: block;
  font-weight: bold;
  color: #333;
}

/* FORM */
.demo-form {
  gap: 12px;
  max-width: 600px;
  margin: 48px auto;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
  padding: 32px;
  text-align: center;
}

.demo-form h2,
.demo-form p {
  margin-bottom: 24px;
}

.form-row {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
  text-align: left;
  gap:12px;
}

.form-group label {
  font-size: 15px;
  margin-bottom: 8px;
  color: #333;
}

.form-group input:focus {
  border-color: #004aad;
  outline: none;
}


/* FOOTER */
.footer {
  background: #004aad;
  color: white;
  padding: 24px 32px;
  text-align: center;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-nav a {
  color: white;
  font-size: 14px;
  text-decoration: none;
  margin: 0 8px;
}

/* RESPONSIVE FALLBACKS */
@media (max-width: 768px) {
  .hero {
    padding: 48px 16px;
    flex-direction: column;
  }

  .form-row {
    flex-direction: column;
  }

  .features-grid,
  .testimonials-grid {
    flex-direction: column;
    align-items: center;
  }
}
