body {
  margin: 0;
  font-family: Arial, sans-serif;
  color: #333;

}

/* Topbar */
.topbar {
  font-size: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  background-color: white;
  border-bottom: 2px solid #ddd;
}

.topbar i {
  margin-right: 10px;
}

.topbar .left, .topbar .right {
  display: flex;
  align-items: center;
}

.topbar img {
  width: 50px;
  height: 50px;
  margin-right: 25px;
}

/* Banner rojo con texto y guitarrista */
.banner {
  background-color: #d70c19;
  color: white;

  display: flex;
  justify-content: space-between;

  position: relative;
  overflow: hidden;
}

.banner-texto {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}


.banner h1 {
  margin-left: 20px;
  font-size: 30px;
}

.banner p {
  margin-left: 20px;
  font-size: 12px;
  min-width: 150px;
  max-width: 150px;
  text-align: left;
}


.guitarrista {
  height: auto;
  max-height: 140px;
  position: relative;
  bottom: 0;
  right: 0;
  align-self: flex-end;
}


/* Descripción principal en recuadro blanco */
.descripcion {
  background-color: white;
  color: #d70c19;
  margin: 20px;
  padding: 20px;
  border-radius: 10px;
  font-size: 16px;
  text-align: justify;
}

/* Tarjetas de categorías */
.card {
  background-size: cover;
  background-position: center;
  height: 150px;
  margin: 20px;
  border-radius: 15px;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 20px;
  color: white;
  font-weight: bold;
  font-size: 16px;
  cursor: pointer;
  transition: transform 0.2s ease;
}

a {
  text-decoration: none;
  color: inherit;
}

.card:hover {
  transform: scale(1.02);
}

.card::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.4);
  border-radius: 15px;
}

.card-content {
  position: relative;
  z-index: 2;
}

.card-content i {
  margin-right: 8px;
}

.card-content .sub {
  font-weight: normal;
  font-size: 12px;
  display: block;
  margin-left: 20px;
}
.card-parques {
  background-position: top;
}
