 * {
  margin: 0px;
  padding: 0px;
}

#sidebar {
  position: fixed;
  width: 550px;
  height: 100%;
  background: #151719;
  left: 100%;
  transition: all 500ms linear;
  z-index: 7;
}

#sidebar.active {
  left: 80%;
}

#sidebar ul li {
  color: rgba(230, 230, 230, .9);
  list-style: none;
  padding: 15px 10px;
  border-bottom: 1px solid rgba(100, 100, 100, 0);
  text-align: center;
}

.logo {
  border-radius: 50%;
  display: block;
  margin: 0 auto; 
}

#sidebar .toggle-btn {
  position: absolute;
  left: -70px;
  top: 300px;
  cursor: pointer;
  background-color:#ff4a17;
}

#sidebar .toggle-btn span {
  display: block;
  width: 70px;
  text-align: center;
  font-size: 30px;
  border: 3px solid #000;
}

.box {
  height: 550px;
  width: 400px;
}
.social-sidebar {
  position: fixed;
  top: 40%;
  left: 0;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 1000;
}

.social-sidebar a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  color: #fff;
  font-size: 20px;
  border-radius: 0 8px 8px 0;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-sidebar a.facebook { background: #3b5998; }
.social-sidebar a.twitter { background: #1da1f2; }
.social-sidebar a.linkedin { background: #0077b5; }
.social-sidebar a.instagram { background: #e1306c; }
.social-sidebar a.whatsapp { background: #25d366; }

.social-sidebar a:hover {
  padding-left: 10px;
  opacity: 0.9;
}


/* Tarjeta RSS */
.rss-item {
  background: #fff;
  border-radius: 12px;
  padding: 15px;
  margin-bottom: 15px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: transform 0.2s;
}

.rss-item:hover {
  transform: translateY(-4px);
}

.rss-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #ff4a17;
  margin-bottom: 8px;
}

.rss-meta {
  font-size: 0.85rem;
  color: #666;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.rss-desc {
  font-size: 0.9rem;
  color: #444;
  line-height: 1.4;
  max-height: 70px;
  overflow: hidden;
  text-overflow: ellipsis;
}

.rss-readmore {
  font-size: 0.85rem;
  color: #ff4a17;
  text-decoration: none;
  font-weight: 500;
}

.rss-readmore:hover {
  text-decoration: underline;
}

.titulo-destacado {
  color: #ff4a17;
  font-size: 4rem;      /* súper grande */
  font-weight: 900;     /* extrabold */
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
}

.subtitulo-destacado {
  color: #ffffff;
  font-size: 2rem;      /* más grande que antes */
  font-weight: 700;
  margin-top: 0;
}


