/* RESET BÁSICO */

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  background: #ffffff;
  color: #2b2b2b;
  line-height: 1.6;
}

/* CONTENEDOR */

.container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
}

/* HERO */

.hero {
  background: #f5f7f4;
  padding: 100px 0;
}

.hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  flex-wrap: wrap;
}

.hero-text-block {
  flex: 1;
  min-width: 300px;
}

.hero-text-block h1 {
  font-size: 2.8rem;
  margin-bottom: 10px;
  font-weight: 700;
}

.hero-text-block h2 {
  font-weight: 400;
  color: #6a8f7b;
  margin-bottom: 20px;
}

.hero-text {
  font-size: 1.3rem;
  margin-bottom: 30px;
}

.hero-image {
  flex: 1;
  text-align: center;
}

.hero-image img {
  width: 100%;
  max-width: 420px;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

/* BOTONES */

.btn-primary {
  background: #6a8f7b;
  color: white;
  padding: 14px 30px;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 600;
  transition: 0.3s ease;
}

.btn-primary:hover {
  background: #5c7c6b;
}

.btn-secondary {
  background: white;
  color: #6a8f7b;
  padding: 14px 30px;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 600;
  transition: 0.3s ease;
}

.btn-secondary:hover {
  background: #f0f0f0;
}

/* SECCIONES GENERALES */

section {
  padding: 80px 0;
}

h3 {
  font-size: 2rem;
  margin-bottom: 30px;
  text-align: center;
}

/* ABOUT */

.about p {
  max-width: 800px;
  margin: 0 auto 20px auto;
  text-align: center;
}

/* SERVICES */

.services {
  background: #fafafa;
}

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

.card {
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  max-width: 300px;
  text-align: center;
  transition: 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
}

/* MÉTODO */

.method ol {
  max-width: 600px;
  margin: auto;
  padding-left: 20px;
}

/* CTA FINAL */

.cta {
  background: #6a8f7b;
  color: white;
  text-align: center;
  padding: 80px 0;
}

.cta p {
  margin-bottom: 30px;
}

/* FOOTER */

footer {
  text-align: center;
  padding: 20px;
  font-size: 0.9rem;
  background: #f5f5f5;
}

/* RESPONSIVE */

@media (max-width: 768px) {
  .hero-content {
    flex-direction: column;
    text-align: center;
  }

  .hero-text-block h1 {
    font-size: 2.2rem;
  }

  .hero-text-block h1,
  .hero-text-block h2,
  .hero-text-block p {
    text-align: center;
  }

  .hero-image img {
    max-width: 300px;
  }
}
