/* Tipografía */
body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #efe3e3;
  color: #333;
}

/* Header */
header {
  background-color: #5f6b46;
  color: white;
  padding: 40px 0;
  text-align: center;
}

header h1 {
  margin: 0;
  font-size: 2.5em;
}

.slogan {
  font-weight: 300;
  font-size: 1.2em;
  margin-top: 10px;
}

/* Estilo para el logo */
.logo {
  width: 250px;
  height: auto;
  margin-bottom: 15px;
}

/* Contenedor tipo "tarjeta"/rectángulo */
.container-box {
  background-color: white;
  max-width: 900px;
  margin: 40px auto;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
}

/* Títulos */
h2 {
  color: #5f6b46;
  margin-bottom: 20px;
}

h3 {
  color: #8b4e2c;
  margin-bottom: 10px;
}

/* Imágenes */
img {
  max-width: 100%;
  border-radius: 12px;
  margin-top: 20px;
}

/* Cartas internas */
.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-top: 30px;
}

.card {
  flex: 1;
  min-width: 250px;
  max-width: 280px;
  background-color: #f5f5f5;
  padding: 20px;
  border-radius: 12px;
  border: 1px solid #ccc;
}

/* Enlaces */
a {
  color: #5f6b46;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Footer */
footer {
  background-color: #5f6b46;
  color: white;
  text-align: center;
  padding: 20px 0;
  margin-top: 40px;
}

/* Responsive para móviles */
@media (max-width: 768px) {
  header h1 {
    font-size: 2em;
  }

  .cards {
    flex-direction: column;
    align-items: center;
  }
}


