*{
margin: 0;
box-sizing: border-box;
font-family: 'Red Hat Display', sans-serif;
color: #ffeecd;
}

body{
  background-color: #1C201A;
}

.header {
  width: 100%;
  padding: 15px 30px;
  background: linear-gradient(180deg, #121411 0%, rgba(34,34,34,0) 100%);
  color: #ffeecd;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 100;
}

.logo {
margin-left: 20px;
}

.logo img {
  width: 80px;
}

.btn {
  padding: 10px 18px;
  background: #E01F43;
  color: #ffeecd;
  text-decoration: none;
  border-radius: 15px;
  transition: background 0.3s ease;
  font-size: 1.2rem;
  font-weight: bolder;
  margin-right: 20px;
}

.btn:hover {
  background: #aa1732;
}


/*SECCIÓN INFO*/
.info-section {
  background-color: #1e2420; 
  color: #f5dcb0;
  padding: 3rem 1.5rem;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  border-radius: 20px;
}

.info-title {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
}

.media-container {
  width: 100%;
  max-width: 600px;
  margin: 0 auto 2rem;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.3);
}

.media-container video,
.media-container img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.info-text h3 {
  font-size: 1.3rem;
  font-weight: bold;
  margin-bottom: 0.8rem;
}

.info-text p {
    font-family: "Exo", sans-serif;
  font-size: 1rem;
  line-height: 1.6;

}

/*footer*/
.footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #1C201A;
  color: #fff;
  padding: 20px;
  flex-wrap: wrap;
  text-align: center;
}

.footer-block {
  flex: 1;
  min-width: 200px;
  padding: 10px;
}

.footer-block h3 {
  margin-bottom: 10px;
}

.footer-block a {
  color: #ffeecd;
  text-decoration: none;
}

.footer-block a:hover {
  text-decoration: underline;
}

.center-block img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

  @media (max-width: 540px){
    .logo{
        margin-left: 0;
    }

    .logo img{
        width: 50px;
    }

    .btn{
        padding: 5px 10px;
    }

  .slide h2 {
  font-size: 1.8rem;
}

  .info-section {
    padding: 2rem 1rem;
  }
  .info-title {
    font-size: 1.6rem;
  }
  .info-text p {
    font-size: 0.95rem;
  }

}