/* Import Motter Corpus ITC font */
@import url('https://db.onlinewebfonts.com/c/f475b0a4b7527d3ef74a5c4c23e70cc9?family=Motter+Corpus+ITC');

/* Base Styles */
body, html {
  margin: 0;
  padding: 0;
  font-family: 'Motter Corpus ITC', sans-serif;
  background-color: #0e191a;
  color: #fff;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2em;
}

h1, h2, h3, h5, p {
  font-family: 'Motter Corpus ITC', sans-serif;
  font-weight: 400;
  color: #dab960;
}

/* Hero Section */
.hero {
  background-color: #152325;
  text-align: center;
  padding: 4em 0;
}

.hero-image {
  max-width: 300px;
  margin: 2em 0;
}

.subtitle {
  font-size: 1.5em;
  color: #dab960;
  margin-top: -1em;
}

.btn {
  display: inline-block;
  padding: 0.75em 1.5em;
  color: #dab960;
  border: 1px solid #dab960;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s;
  margin-top: 2em;
}

.btn:hover {
  background-color: #dab960;
  color: #152325;
}

/* About Section */
.about {
  background-color: #877944;
  color: #3c422d;
  padding: 4em 0;
}

.split {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2em;
  flex-wrap: wrap;
}

.img-left {
  width: 40%;
  border: 4px solid #000;
  border-radius: 20px;
}

.text {
  width: 55%;
  font-size: 1.2em;
  color: #3c422d;
}

.img-right {
  width: 40%;
  display: block;
  margin: 3em auto 0;
}

/* Benefits Section */
.benefits {
  background-color: #3c422d;
  padding: 4em 0;
  text-align: center;
}

.benefits h2 {
  font-size: 2.5em;
  margin-bottom: 1.5em;
}

.cards {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 2em;
}

.card {
  width: 300px;
  background-color: #2f3520;
  padding: 1.5em;
  border-radius: 10px;
  color: white;
}

.card img {
  width: 100%;
  border-radius: 10px;
}

.card h3 {
  color: #eab802;
  margin-top: 1em;
}

.center-img {
  width: 40%;
  margin: 3em auto 0;
  display: block;
}

/* Subscribe Section */
.subscribe {
  background: url(resources/fondo_personas.png) center/cover no-repeat;
  padding: 6em 0;
  text-align: center;
}

.subscribe h2 {
  font-size: 2.5em;
  color: #fff;
}

.btn-light {
  display: inline-block;
  margin-top: 2em;
  padding: 0.75em 1.5em;
  border: 1px solid #fff;
  color: #fff;
  text-decoration: none;
  transition: background 0.3s;
}

.btn-light:hover {
  background-color: #fff;
  color: #152325;
}

/* Features Section */
.features {
  background-color: #152325;
  padding: 4em 0;
}

.features h2 {
  text-align: center;
  font-size: 2.5em;
  margin-bottom: 2em;
}

.feature {
  display: flex;
  align-items: center;
  gap: 2em;
  background-color: #877944;
  margin-bottom: 2em;
  padding: 2em;
  border-radius: 15px;
  flex-wrap: wrap;
}

.feature img {
  width: 80px;
}

.feature h3 {
  color: #3c422d;
  margin: 0;
}

.feature p {
  color: #3c422d;
}

/* Footer */
.contact {
  background: url(resources/fondo_planta.png) center/cover no-repeat;
  padding: 5em 0;
  color: #fff;
  text-align: center;
}

.contact h2 {
  font-size: 2.5em;
  margin-bottom: 1em;
}

.contact p {
  font-size: 1.2em;
  margin: 0.5em 0;
}
