/* Reset */
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

html {
  overflow-x: hidden;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: "Poppins", system-ui;
  font-style: normal;
  color: #2c2c2c;
  background-color: #ffffff;
}

a {
  text-decoration: none;
  cursor: pointer;
  color: inherit;
}

/* Utility Classes */
.clear {
  clear: both;
}

img {
  max-width: 100%;
}

/* layout contenedor */
.contenedor {
  min-height: 100dvh;
  display: grid;
  grid-template-rows: auto 1fr auto;
}

/*///////HEADER Y MENU //////////*/
.header {
  padding: 0.5em 1em;
  background-color: #2C3E50;
  position: sticky;
  top: 0;
  z-index: 9;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #eff7ff;
  justify-content: space-between;
}

.header-area {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin: auto;
  justify-content: space-between;
}

#Header1 {
  flex: 1;
  text-align: left;
}

#header-inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.header h1 {
  font-size: 33px;
  font-weight: 500;
  color: #fff;
}

.header a {
  color: #fff;
  text-decoration: none;
}

.description {
  font-size: 20px;
  margin: 0;
  color: #fff;
}

.LinkList {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

#menu1 {
  list-style: none;
  display: flex;
  gap: 1em;
}

#menu1 li a {
  padding: 15px;
  font-size: 17px;
  font-weight: 600;
  color: #ffffff;
  text-decoration: none;
}

#menu1 li a:hover {
  color: #97ffae;
}

.menu-icon,
.menu-close {
  display: none;
  cursor: pointer;
  font-size: 30px;
  padding: 0.5em;
}

/* Submenú */
#sub-menu {
  position: absolute;
  background: #101010;
  min-width: 150px;
  margin-top: 5px;
  list-style: none;
  display: none;
  box-shadow: -3px 20px 25px #ededed;
}

#sub-menu li {
  border-bottom: 1px solid #ddd;
}

#menu1 li:hover #sub-menu {
  display: block;
}

/* Responsive: Móvil y tablets */
@media (max-width: 800px) {
  .menu-icon {
    display: block;
    color: #ea540f;
  }

  .header-area {
    flex-direction: column;
  }

  #Header1 {
    width: 100%;
    text-align: center;
  }

  #header-inner {
    align-items: center;
  }

  .LinkList {
    background-color: #006600;
    width: 300px;
    position: fixed;
    top: 0;
    left: -500px;
    z-index: 999;
    height: 100%;
    transition: left 0.5s ease;
    overflow-y: auto;
    box-shadow: 0 0 35px #9f9f9f;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding-top: 1em;
  }

  #menu1 {
    flex-direction: column;
    padding: 0;
    width: 100%;
  }

  .menu-close {
    display: block;
    position: absolute;
    right: 20px;
    top: 20px;
  }
}

@media (min-width: 801px) {
  .menu-close {
    display: none;
  }

  #menu1 li:hover #sub-menu {
    display: block;
  }
}



/******************
CONTAINER
*******************/

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.espacio {
  padding: 4rem 0px;
}

section {
  scroll-margin-top: 4rem;
  width: 100%;
  max-width: 100%;
}


/****** PLAYER LUNA********/

.heroe {
  display: grid;
  grid-template-columns: 2fr 1fr;
  width: 100%;
  padding: 0;
  margin: 0;
}

.player-radio {
  background-color: #f0f0f0;
  /* Estilo de ejemplo */
}

.info-radio {
  background-color: #d0d0d0;
  /* Estilo de ejemplo */
}

@media (max-width: 850px) {
  .heroe {
    grid-template-columns: 1fr;
    /* Una sola columna en mobile */
  }

  .heroe {
    display: grid;
    grid-template-areas:
      "info-radio"
      "player-radio";
  }

  .info-radio {
    grid-area: info-radio;
  }

  .player-radio {
    grid-area: player-radio;
  }
}

.radio {
  position: relative;
  height: 600px;
  position: relative;
  width: 100%;
  background-image: url(img/fondo-dark.jpg);
  background-repeat: no-repeat;
  background-position: center/center;
  background-size: cover;
}

.player {
  position: absolute;
  margin: 0;
  width: 100%;
  top: 0%;
  bottom: 0%;
  padding: 0;
  box-sizing: border-box;
  font-size: 16px;
  font-family: 'Poppins', sans-serif;
  z-index: 7;
}

.lunaradiovisualizericon {
  display: none;
}

.rowrigotextradionamespan {
  font-size: 2em;
}

.rowrigotexttitlespan {
  font-size: 1.2em;
}

.info-radio {
  background-color: #046838;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
}

.info-radio .cont-img {

  position: relative;
  width: 100%;
  max-width: 250px;
  /*border: 2px solid #0d9406;*/
  margin: 0 auto;
}

.info-radio .cont-img img {
  height: 100%;
  width: 100%;
  -webkit-border-radius: 47px;
  border-radius: 47px;
  /*  background: #D1D8EC;
-webkit-box-shadow: 9px 9px 22px #9499a8, -9px -9px 22px #ffffff;
box-shadow: 9px 9px 22px #9499a8, -9px -9px 22px #ffffff;*/
}

.info-radio .info {
  text-align: center;
}

.info-radio .info h2 {
  font-size: 2em;
  margin: 20px 0 10px 0;
}

@media (max-width: 768px) {
  .info-radio {

    padding: 40px 0;
  }
}

/*******************/
.title-green,
.title-black,
.title-white {
  font-size: 2.5em;
  text-align: center;
  margin: 0px 0px 20px 0px;
}

.title-white {
  color: #ffffff;
}

.title-green {
  color: #006600;
}

.title-black {
  color: #000000;
}

.title-dias {
  margin: 30px 0px 20px 0px;
  text-align: center;
  color: #FF0000;
}


/*/////// SECTION NOSOTROS /////////*/

#nosotros {
  position: relative;
  color: rgb(30, 30, 30);
  overflow: hidden;
  padding: 4rem 0;
  background-color: #ffffff;
}



#nosotros .container {
  position: relative;
  z-index: 2;
  /* Coloca el contenido sobre el fondo con transparencia */
}

#nosotros .cont-home-nosotros {
  padding: 20px;
  border-radius: 8px;
}

#nosotros .text-contenido p {
  margin-bottom: 15px;
  font-size: 1em;
  line-height: 1.6;
}


/*/////// SLOGAN /////////*/
.mensaje-slogan {
  font-size: 2em;
  color: #d0d0d0;
  text-align: center;
}


/*///////// PGINA BLOG ///////////*/

.header-blog {
  padding: 4em 0;
  background-image: url(img/bg-fondo.jpg);
  background-repeat: no-repeat;
  background-position: center/center;
  background-size: cover;
}

.blog-espacio {
  padding: 3rem 0;
}

.tab-menu-container {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.tab-menu {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  background-color: #f1f1f1;
  border-bottom: 1px solid #ccc;
}

.tab-menu li {
  padding: 10px 20px;
  cursor: pointer;
  background-color: #ccc;
  margin: 0 5px;
  border-radius: 5px 5px 0 0;
}

.tab-menu li.active {
  background-color: #fff;
  border: 1px solid #ccc;
  border-bottom: none;
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

/* Estilos de las tarjetas (cards) */
.card-grid {
  width: 100%;
  max-width: 1200px;
  margin: 0% auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.post-item {
  overflow: hidden;
  border: 1px solid #ccc;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  padding: 10px;
  /*text-align: center;*/
  background-color: #fff;
}

.post-item:hover {
  transform: translateY(-5px);
}

.post-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  margin-bottom: 10px;
}

.post-item a {
  text-decoration: none;
  font-size: 18px;
  color: #000;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: normal;
  margin-bottom: 10px;
}

.post-excerpt {
  font-size: 16px;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: normal;
  color: #555;
  margin-top: 10px;
}

.load-more {
  text-align: center;
  margin: 20px 0;
}

.load-more button {
  padding: 10px 20px;
  background-color: #007BFF;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.load-more button:hover {
  background-color: #0056b3;
}

@media (max-width: 810px) {
  .card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .card-grid {
    grid-template-columns: 1fr;
  }
}




/*///////// FOOTER /////////////*/
.footer {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 20px;
  background-color: #2C3E50;
  color: #fff;
  border-top: solid 1px #ccc;
}

.copy {
  text-align: left;
}

.footer-links {
  text-align: right;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links ul li {
  display: inline;
  margin-left: 15px;
}

.footer-links ul li a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links ul li a:hover {
  color: #d2ffc6;
}

/* Media query para pantallas de 801px o menos */
@media (max-width: 801px) {
  .footer {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .copy {
    margin-bottom: 15px;
    text-align: center;
  }

  .footer-links {
    text-align: center;
  }

  .footer-links ul li {
    display: block;
    margin-left: 0;
    margin-bottom: 10px;
  }
}


/*//////// INSTALL APP ////////*/

#install-button {
  background-color: #ff0000;
  color: #ffffff;
  padding: 10px 20px;
  font-size: 16px;
  cursor: pointer;
  position: fixed;
  border-radius: 8;
  bottom: 0px;
  right: 10px;
  z-index: 1000;
}

#install-button:hover {
  background-color: #000;
  color: #fff;

}