@import url('https://fonts.googleapis.com/css2?family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');
/* UNIVERSAL */
html {
  font-size: 62.5%; 	      /* +/- 10px */
  box-sizing: border-box;
}
/* seudo elementos */
*,
*::before,
*::after {
  box-sizing: border-box;
}
/* variables */
:root {
  --bg-color: #ffffff;
  --txt-color: #111;
  --web-color: #d45400;
  --baj-color: #666666;
  --act-color: #d45400;
  --hov-color: #e6e6e6
}

[data-theme='oscuro'] {
  --bg-color: #111;
  --txt-color: #ffffff;
  --web-color: #d45400;
  --baj-color: #666666;
  --act-color: #d45400;
  --hov-color: #e6e6e6
}

/* Botones */
.btn {
  border: none;
  outline: none;
  background-color: var(--bg-color);
  color: var(--txt-color);
  cursor: pointer;
  font-size: medium;
  font-weight: 700;
  width: auto;

  margin: 4px, 2px; 
  text-align: center;
  align-items: center;
  text-decoration: none;
  display: inline-block;
}

/* Botón Activo */
.active {
  background-color: var(--act-color);
  color: var(--bg-color);
}
/* Cursor sobre botón */
.btn:hover {
  background-color: var(--act-color);
  color: var(--bg-color);
}

body {
  margin: 0;
  padding: 0;
  font-family: "Ubuntu", serif;
  font-weight: 400;
  font-style: normal;
  background: var(--bg-color);
  color: var(--txt-color);
}
/* * * * GLOBALES * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
.audio-player{
  background-color: pink;
}

.triangulo{
  width: 0;
  height: 0;
  border-top: 50px solid transparent;
  border-bottom: 50px solid transparent;
  border-left: 100px solid blue;
}

span.circulo {
  background: var(--web-color);
  border-radius: 0.8em;
  -moz-border-radius: 0.8em;
  -webkit-border-radius: 0.8em;
  color: #ffffff;
  display: inline-block;
  font-weight: bold;
  line-height: 1.6em;
  margin-right: 15px;
  text-align: center;
  width: 1.6em;
  -webkit-box-shadow: 7px 7px 5px 0px rgba(50, 50, 50, 0.75);
  -moz-box-shadow:    7px 7px 5px 0px rgba(50, 50, 50, 0.75);
  box-shadow:         7px 7px 5px 0px rgba(50, 50, 50, 0.75);
}
span.circulo:hover{ background: pink; }
/* 
    background: #cccccc;
    background: #5EA226;
    background: #5178D0;
    background: #EF0BD8;
*/

/* * * * * * * * * * * * * * * * * * * * * * * * * ** * * * * * * * * * * */

/* Señales */
.senales {
  width: 60%;
  z-index: 1000;
  position: fixed;
  bottom: 16px;
/*    left: 10px; */
/*    width: 40px; */
  height: auto;
  font-size: 25px;
  font-weight: 800;
  color: #fff;
  display: none;
  flex-direction: row;
  justify-content: space-between;
}
/* * * * * /

/* HEADER */
header {
  position: fixed;
  top: 0;
  width: 100%;
}
/* MENU */
#menu, #temas {
  background-color: var(--bg-color);
  width: 96%;
  height: 100px;
  margin: auto;
  display: flex;
  flex-direction: row;
  justify-content: space-between; /* horizontal */
  align-items: center; /* vertical */
/*    border-bottom: 1px solid #e6e6e6;
    margin-bottom: 10px; */
} 
#menu img {
  height: 100%;
  padding: 4px;
}
#menu {
  border-bottom: 1px solid #e6e6e6;
  margin-bottom: 10px;
}

/* MENÚ VERTICAL - responsive */
.topnav {
  overflow: hidden;
  background-color: var(--bg-color);
  top: 160px;
  color: var(--txt-color);
}
.topnav a {
  float: left;
  display: block;
  color: var(--txt-color);
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: medium;
  font-weight: 700;
  text-transform: uppercase;
}
.topnav a:hover {
  background-color: #e6e6e6;
  color: var(--txt-color);
}
.topnav a.active {
  background-color: var(--act-color);
  color: var(--bg-color);
}
.topnav .icon {
  display: none;
}

button {
  background-color: var(--web-color);
  color: #ffffff;
  width: 100px;
  height: 36px;
  font-weight: 800;
  border-radius: 4px;
  border-width: 0px;
  padding: 10px;
}
main {
  margin-top: 110px;
  margin-bottom: 40px;
  width: 100%;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
/* hr */
.hr, .hr2, .hr3, .hr4 {
  width: 93%;
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: top;
  border-bottom: 1px solid #e6e6e6;
  margin-bottom: 20px;
  padding-bottom: 20px;
}

/* audio-horizontal */
.audio-horizontal {
  width: 100%;
  display: flex;
  flex-direction: row;
  padding: 5px;
}
  .hr2 .audio-horizontal {width: 50%;}
  .hr4 .audio-horizontal {width: 33%;}

.audio-horizontal img {
  width: 35%;
}
.audio-horizontal .persona {
  width: 65%;
  padding: 10px;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-width: 1px;
  border-color: #e6e6e6;
}
.audio-horizontal .persona .nombre {
  font-size: medium;
  font-weight: normal;
  text-transform: uppercase;
  color: var(--txt-color);
}
.audio-horizontal .persona .cargo {
  font-size: medium;
  font-weight: bold;
  color: var(--web-color);
}
.audio-horizontal .persona .frase {
  font-size: medium;
  font-weight: normal;
  color: #666;
}
.audio-horizontal .persona nav {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  padding-top: 5px;
}
.audio-horizontal .persona nav a {
  text-decoration: none;
  font-size: medium;
  font-weight: normal;
  color: #666;
  padding-bottom: 4px;
}

/* audio-vertical */ 
.audio-vertical {
  width: 30%;
  padding: 5px;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
}
.audio-vertical img {
  width: 100%;
}
.audio-vertical .persona {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
  padding: 10px;
  border-color: #e6e6e6;
  border-width: 1px;
  border-style: solid;
}
.audio-vertical .persona .nombre {
  font-size: medium;
  font-weight: bold;
  color: var(--txt-color);
  text-transform: uppercase;
}
.audio-vertical .persona .cargo {
  font-size: medium;
  font-weight: normal;
  color: #666;
  padding-bottom: 4px;
}
.audio-vertical .persona nav {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  padding-top: 5px;
}
.audio-vertical .persona nav a {
  text-decoration: none;
  font-size: medium;
  font-weight: normal;
  color: #666;
  padding-bottom: 4px;
}

/* texto-vertical */ 
.texto-vertical {
  width: 15%;
  padding: 5px;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
}
.texto-vertical img {
  width: 100%;
}
.texto-vertical .persona {
  height: 60%;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
  padding: 10px;
  border-color: #e6e6e6;
  border-width: 1px;
  border-style: solid;
}
.texto-vertical .persona .titulo {
  font-size: medium;
  font-weight: bold;
  color: var(--txt-color);
  padding-bottom: 4px;
}
.texto-vertical .persona .intro {
  font-size: medium;
  font-weight: normal;
  color: #666;
  padding-bottom: 4px;
}
.texto-vertical .persona .nombre {
  font-size: medium;
  font-weight: bold;
  color: var(--web-color);
}


/*FOOTER*/
footer {
  position: fixed;
  bottom: 0;
  width: 100%;
  background-color: var(--txt-color);
}
.pie {
  width: 96%;
  margin-left: 2%;
  margin-right: 2%;
  /*height: 70px;*/
  /*margin: auto;*/
  display: flex;
  flex-direction: row;
  justify-content: space-around; /* horizontal */
  align-items: center; /* vertical */
  background: var(--txt-color);
  color: var(--bg-color);
/*    border-top: 1px #e6e6e6 solid;  /* linea solida */ 
}
.pie .opciones {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  margin-left: 2%;
}
.pie .opciones h1 {
  color: var(--bg-color);
}

.pie .audio-player {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px;
  background: var(--txt-color);
  border-radius: 20px;
  width: 300px;
}

.pie .escuchas {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
}
.alaire {
  color: var(--web-color);
  font-size: large;
  font-weight: 800;
}


.live {
  width: 100%;
  background-color: red;
]
/*******************************************************************/

@media screen and (max-width: 1900px) {                                                                                           
/*.pie {background-color: black;} */
}
 
/* Tablet ASUS  */
@media screen and (max-width: 1400px) {
/* .pie {background-color: lightskyblue;} */
}
 
@media screen and (max-width: 1200px) {
/*  .pie {background-color: lightgreen;} */
  .topnav a {padding: 14px 6px; font-size: small;}
  .hr4 .audio-horizontal img {width: 30%;}
  .hr4 .audio-horizontal .persona {width: 70%;}
}
 
/* Mitad Monitor Samsung Curvo | CNNAudio->PC */
@media screen and (max-width: 1000px) {
/*  .pie {background-color: pink;} */
  #menu img {height: 100px;}
  .btn {
    font-size: small;
    padding: 6px 3px;
    margin: 2px 1px;
    height: auto;
  }
  .topnav a {padding: 10px 4px; font-size: x-small;}
  .hr4 .audio-horizontal {flex-direction: column;}
  .hr4 .audio-horizontal img {width: 100%;}
  .hr4 .audio-horizontal .persona {width: 100%;}
}
 
/* Tablet Carolina */
@media screen and (max-width: 800px) {
/*  .pie {background-color: violet;} */
/*  .pie .escuchas {display: none}; */
  .pie .opciones h1, .pie .escuchas .alaire {font-size: small;}
  #menu img {width: 90%; height: auto;}
  .btn {
    font-size: small;
    padding: 10px 4px;
    margin: 2px 1px;
    height: auto;
  }
  .hr .audio-horizontal img, .persona {width: 50%};
  .hr2 {flex-direction: column; justify-content: space-evenly;}
  .hr2 .audio-horizontal {width: 100%;};
  .hr4 .audio-horizontal {width: 100%};
  .audio-vertical {
    width: 100%;
    flex-direction:row-reverse;
    justify-content: space-between;
  }
  .audio-vertical img {width: 35%;}
  .audio-vertical .persona {width: 65%;}
}
/* 600 previo a motorola */
@media screen and (max-width: 600px) {
/*  .pie {background-color: red;} */ 
/*  .pie .escuchas {display: none;}  */
  .pie .opciones h1, .pie .escuchas .alaire{font-size: small;}
  .topnav a {padding: 10px 6px; font-size: x-small;}
  #menu {
    flex-direction: column; 
    justify-content: center; 
    height: auto;
  }
  #menu img {width: 80%;}
  .btn {
    font-size: x-small;
    padding: 10px 4px;
    margin: 2px 1px;
    height: auto;
  }
  main {margin-top: 110px;}
  .hr {flex-direction: column; justify-content: space-evenly;}
  .hr .audio-horizontal {flex-direction: column; justify-content: space-evenly;}
  .hr .audio-horizontal img {width: 100%;}
  .hr .audio-horizontal .persona {width: 100%;}
}
/*  500 : Celular Motorola */
@media screen and (max-width: 500px) {
/*  .pie {background-color: blue;}  */
  .pie {justify-content: center; width: 100%;}
/*   .pie .escuchas {display: none}; */

  #menu {width: 100%; height: auto;}
  .topnav a {padding: 10px 4px; font-size: x-small;}
  .btn {
    font-size: xx-small;
    padding: 10px 4px;
    margin: 2px 1px;
    height: auto;
  }

/*  .senales {display:flex;} */

  .hr2, .hr3, .hr4 {flex-direction: column; justify-content: space-evenly;}
  .hr2 .audio-horizontal {flex-direction: column; justify-content: space-evenly;}
  .hr2 .audio-horizontal img {width: 100%;}
  .hr2 .audio-horizontal .persona {width: 100%;}
  .hr3 .audio-vertical {width: 100%;}
  .hr3 .audio-vertical {flex-direction: column; justify-content: space-evenly;}
  .hr3 .audio-vertical img {width: 100%;}
  .hr3 .audio-vertical .persona {width: 100%;}
  .hr4 .audio-horizontal {width: 100%;  flex-direction: column; justify-content: space-evenly;}
  .hr4 .audio-horizontal img {width: 100%;}
  .hr4 .audio-horizontal .persona {width: 100%;}
}
 
@media screen and (max-width: 400px) {
/*  .pie {background-color: brown;}  */
  .pie .escuchas {display: none};
}
 
@media footer and (max-width: 200px) {
/*  .pie {background-color: green;}  */
  .pie .escuchas {display: none};
}
 
@media footer and (max-width: 100px) {
/*  .pie {background-color: black;}  */
  .pie .escuchas {display: none};
}
