* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


/* Usa la fuente en tu CSS */
body {
  font-family: "Poppins", sans-serif;
}


:root {
  --color-dark: black;
  --color-light: white;
  --color-live: #da2625;
  --color-title-media: #ffc4b2;
  --color-violet: #6441a5;
  --scale: 1.01;
}

html {
  scroll-behavior: smooth;
}

::selection {
  background-color: var(--color-violet);
}

.bold-text {
  font-weight: bold;
}

.bold-text--dark {
  color: var(--color-dark);
}

.bold-text--media {
  color: var(--color-title-media);
}

.unselectable {
  user-select: none;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin-bottom: 0;
}

a {
  all: unset;
  cursor: pointer;
  /*  color: var(--color-light); */
}

a:hover {
  color: inherit;
  text-decoration: none;
}

p {
  margin-bottom: 0rem;
}

ul {
  margin-bottom: 0;
}

/* Header*/

.header {
  background-color: var(--color-dark);
  /*   backdrop-filter: blur(30px); */
  color: var(--color-light);
  font-size: 15px;
  font-weight: 600;
  position: sticky;
  top: 0px;
  z-index: 9999999999;
  box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.5);
  -webkit-box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.5);
}

.container {
  height: 100%;
  padding: 0px 16px;
  margin: 0 auto;
}

.header__flex {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

.header__link-image {
  display: flex;
}

.header__img {
  transition: 500ms;
  width: 90px;
}
.header__img:hover {
  scale: 1.2;
}

.header__img--scroll {
  width: 65px;
}

.header__list {
  display: flex;
  flex-direction: row;
}

.header__list-item {
  all: unset;
  display: flex;
  align-items: center;
  padding: 0 15px;
  font-weight: 700 !important;
}

.header__list-item--live {
  padding-right: 0;
}

.button {
  width: 120px;
  height: 25px;
  border-radius: 25px;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  background-color: var(--color-live);
  color: var(--color-light);
  gap: 8px;
  font-weight: 500;
  font-size: 12px;
  transition: 300ms;
}

.button-search {
  cursor: pointer;
}

.button--radio {
  height: 35px;
  width: 150px;
  font-size: 12px;
  font-weight: bold;
  --animate-duration: 1s;
}

.button:hover {
  scale: 1.1;
}

.button--radio_hover {
  background-color: rgba(164, 38, 37, 1);
}

.button--enviar {
  all: unset;
  height: 30px;
  font-size: 10px;
  margin-top: 10px;
  padding-left: 15px;
  padding-right: 15px;
  border-radius: 5px;
  font-weight: 900;
  color: var(--color-dark);
  background-color: var(--color-title-media);
  transition: 500ms;
  letter-spacing: 1px;
}

.button--enviar:hover {
  cursor: pointer;
  scale: 1.1;
}

.border-animation {
  display: inline-block;
}

.border-static {
  display: inline-block;
}

.border-static::after {
  content: "";
  display: block;
  width: 0;
  height: 2px;
  background: var(--color-light);
  transition: width 0.3s;
  width: 100%;
}

.border-animation::after {
  content: "";
  display: block;
  width: 0;
  height: 2px;
  background: var(--color-light);
  transition: width 0.3s;
}

.border-animation:hover::after {
  width: 100%;
  transition: width 0.2s;
}

/* Header Mobile*/

.header__menu-mobile-bars,
.header__menu-mobile-XMark {
  font-size: 35px;
  display: none;
}
/* Menu Mobile*/
.menu-mobile {
  overflow: hidden;
  height: 100vh;
  background-color: var(--color-dark);
  position: fixed;
  z-index: 9999999999;
  top: 90px;
  transition: 200ms;
  font-size: 25px;
  width: 0px;
  display: flex;
  justify-content: center;
}

.menu-mobile--top65 {
  top: 65px;
}

.menu-mobile__link--selected {
  border-bottom: 2px solid var(--color-light);
}

.menu-mobile__item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 35px;
  gap: 15px;
}

.container--menu-mobile {
  padding: 16px;
}

.menu-mobile__list {
  list-style: none;
  color: var(--color-light);
  font-weight: bold;
}

/* Listen */

.listen {
  font-weight: bold;
  display: none;
  gap: 8px;
  color: var(--color-light);
  height: 35px;
  background-color: var(--color-live);
}

/* General */

.highlighted {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 20px;
  padding-bottom: 30px;
}

.highlighted__title {
  color: var(--color-light);
  font-weight: bold;
  line-height: 1.2;
  border: 3px solid var(--color-light);
  box-shadow: 15px 15px 0px -1px var(--color-live);
  font-weight: bold;
  padding: 8px 12px;
  font-size: 22px;
}


.social-icon__list {
  display: flex;
  gap: 5px;
}

.social-icon__item {
  all: unset;
  transition: 500ms;
}

.social-icon__item:hover {
  scale: 1.1;
  border-radius: 100%;
  background-color: var(--color-violet);
  ;
}


.social-icon__link {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-light);
  border-radius: 100%;
  height: 30px;
  width: 30px;
  color: var(--color-light);
}



/* responsive */
@media screen and (max-width: 780px) {
  .header__list {
    display: none;
  }

  .header__menu-mobile-bars {
    display: inline-block;
  }

  .listen {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

@media screen and (min-width: 1008px) {
  .container {
    max-width: 976px;
  }
}

@media screen and (min-width: 1280px) {
  .container {
    max-width: 1248px;
  }
}

.noticias__separador {
  height: 25px;
  background-color: #161616;
}
