/* Body */

* {
    box-sizing: border-box;
}

body {
    background-color: white;
    font-family: 'Fragment Mono', 'sans serif';
    box-sizing: border-box;
    padding: 0%;
    margin: 0px;
}

.textos {
     font-family: 'Roboto', sans-serif;
}

/* HEADER */

.logo {
    width: 220px;
}

.topbar {
    background-color: white;
    padding: 30px;
    border-bottom: 3px grey solid;
    margin: 0px;
}

header {
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.container-logo {
    justify-self: center;
    align-self: center;
    display: inline-block;
}

/* Menu Hamburguesa*/

.menu {
position: relative;
z-index: 4;
}

.menu-hamburguesa {
  position: fixed;
  color:#009182;
  top: 25px;
  /* ajusta según el espacio que necesites desde arriba */
  left: 15px;
  /* ajusta según qué tan pegado a la derecha lo quieras */
  font-size: 28px;
  cursor: pointer;
  z-index: 1000;
  /* asegura que esté por encima de otros elementos */
}


.nav-links {
  display: none;
  flex-direction: column;
  background-color: #dcd7d2;
  position: fixed;
  top: 30px;
  left: 0px;
  width: 100%;
  height: 250px;
  width: 100%;
}

.nav-links a {
  color: black;
  padding: 10px 20px;
  text-decoration: none;
  text-align: center;
}

.nav-links ul li:hover {
  background-color: #e4ea9f;
}

.nav-links.mostrar {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.nav-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
  list-style-type: none;
}

.nav-links ul li {
  /*padding-bottom: 5px;*/
  /*margin-top: 2%;*/
  width: 300px;
  border-top: 1px solid #555;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
  

/* MAIN */

.contenido {
    display: grid;
    grid-template-rows: 1fr auto;
    gap: 10px;
    width: 100%;
    padding: 30px;
} 

.menu-princip {
    display: none;
}

.textomenuprincip {
    font-size: 20px;
}

/* Menu Secundario */

.nav-links-secund {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.nav-links-secund a {
  color: black;
  text-decoration: none;
}

.nav-links-secund li {
    background-color: #93d7e8;
    width: 90%;
    margin: 3px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.nav-links-secund a:hover {
  color: #8a614c;
}

.nav-links-secund ul {
  list-style: none;
  padding: 10px;
  margin: 0px;
  list-style-type: none;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  background-color: #dcd7d2;
  width: 90%;
}

.texto-menusecund {
    font-size: 14px;
}

/* Contenido */

.info {
    margin: 10px;
}

.titulos-principales {
    font-size: 20px;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #137e7a;
}

.titulos-terceros {
    font-size: 18px;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
    align-items: left;
    font-weight: 600;
    margin-top: 10px;
    margin-bottom: 10px;
}

.titulos-abecedario {
    font-size: 24px;
    color:#009182;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
    align-items: left;
    font-weight: 600;
    margin-top: 10px;
    margin-bottom: 10px;
}

.titulos-principales-archivo {
    font-size: 18px;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
    align-items: left;
    line-height: 1.5;
}

.texto-articulo {
    font-family: 'Roboto', sans-serif;
    line-height: 1.5;
    font-size: 18px;
    text-indent: 30px;
    margin-bottom: 10px;
}

.texto-archivo {
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    line-height: 1.5;
}

/* Manifiesto Inicio */

.foto-manifiesto img {
    width: 100%;
}

.foto-manifiesto {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
}

/* About Us */
.imagefounders img {
    width: 300px;
    margin: 20px;
}

.imagefounders {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* Páginas amarillas */
.contenido-main-paginas {
    background-color: #faefbd;
}

/* Indice */

.letra {
    font-size: 100px;
    color: #66180e;
    padding: 0px;
    margin-top: 40px;
    margin-bottom: 40px;
}

.letra p {
    padding: 0px;
    margin: 0px;
}

.abecedario a {
    text-decoration: none;
    color: #66180e;
    cursor: pointer;
    transition: 0.2s;
}

.abecedario {
    font-size: 50px;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 50px;
}

.abecedario a:hover {
    color: #8bd2cf;
    transform: scale(1.2);
}

.lugar {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
    align-items: left;
}
.mapa iframe {
    width: 250px;
    height: 300px;
}

.mapa {
    margin: 30px;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
    align-items: left;
}

/* Términos y Condiciones */


/* Carrusel de imágenes AVISO PIRATERÍA */


.carousel-container-manifiesto {
    display: none; /* Inicialmente oculto */
    position: fixed; /* Para que ocupe toda la pantalla */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(164, 120, 100, 0.5); /* Fondo oscuro con opacidad */
    justify-content: center;
    align-items: center;
    z-index: 1000; /* Asegura que el carrusel esté por encima de otros elementos */
}


.carousel-manifiesto {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 90%; /* Ancho máximo del carrusel */
    max-height: 80%; /* Altura máxima del carrusel */
    flex-direction: row;
    overflow: hidden;
    margin: 2px;
}

.carousel-manifiesto img{
    width: 300px;
}

.close-manifiesto img{
    width: 15px;
    height: auto;
}

.close-manifiesto {
    position: absolute;
    top: 10px; /* Ajusta la distancia desde la parte superior */
    right: 20px; /* Ajusta la distancia desde el borde derecho */
    z-index: 10; /* Asegura que el botón quede por encima de otros elementos */
    cursor: pointer;
}

.button-manifiesto {
    background-color: #e4ea9f;
    border: 4px black;
    border-radius: 10px;
    width: 250px;
    height: 60px;
    padding: 5px;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    margin: 20px;
    font-size: 16px;
    color: black;
    align-self: center;
}

.button-manifiesto:hover {
    background-color:#009182;
    color: white;
    text-decoration: underline;
    cursor: pointer
}

/* NOTAS */

.subtitulo-nota {
    font-family: 'Roboto', sans-serif;
    font-size: 18px;
    font-weight: 200;
}

.titulo-nota {
   font-size: 28px;
   color:#009182;
}

.destacados {
    font-size: 20px;
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
}

.primera-palabranota {
    font-size: 28px;
    font-weight: 700;
    color:#8bd2cf;
}

.texto-articulo-nota {
    font-family: 'Roboto', sans-serif;
    line-height: 1.5;
    font-size: 18px;
    text-indent: 30px;
    margin-bottom: 10px;
}

.texto-articulo-poetico {
    font-family: 'Roboto', sans-serif;
    line-height: 1.5;
    font-size: 18px;
    text-indent: 0px;
    margin-bottom: 30px;
    font-weight: 100;
    font-style: italic;
}

.nota-extra {
    background-color: #846456;
    padding: 30px;
    border: 2px black solid;
    border-radius: 10px;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.texto-articulo-notaextra {
    font-family: 'Roboto', sans-serif;
    line-height: 1.5;
    font-size: 18px;
    text-indent: 30px;
    margin-bottom: 20px;
    color: white;
}

.destacadosextra {
    font-size: 20px;
    font-family: 'Fragment Mono', 'sans serif';
    font-weight: 700;
    text-decoration: underline;
    color: white;
    margin-bottom: 20px;
}

.containerfotosextra {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.texto-articulo-notaalpie {
    font-family: 'Roboto', sans-serif;
    line-height: 1.5;
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: 700;
}

.button-paginas {
    background-color: #e4ea9f;
    border: 4px black;
    border-radius: 10px;
    width: 350px;
    height: 60px;
    padding: 5px;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    margin: 20px;
    font-size: 16px;
    align-self: center;
}

.button-paginas a {
    text-decoration: none;
    color: black;
}

.button-paginas:hover {
    background-color:#009182;
    color: white;
    text-decoration: underline;
    cursor: pointer
}

.scroll-arrow img {
    width: 40px;
}

#scrollToTopBtn {
    position: fixed;
    bottom: 200px;
    right: 5px;
    padding: 10px 20px;
    cursor: pointer;
    background-color: none;
    border: none;
    display: none;
  }

  .foto-nota{
    float: left;
    width: 100%;
    margin: 0 30px 20px 0;
  }

  .foto-notaextra{
    float: left;
    width: 100%;
    margin: 0 30px 20px 0;
  }

  .foto-notamini{
    float: left;
    width: 50%;
    margin: 0 30px 20px 0;
  }


  /* Entrevistas */

  .personareliquia {
    font-weight: 700;
    color:#009182;
    font-size: 20px;
  }

  .preguntas {
    font-weight: 700;
    color:#8bd2cf;
    font-size: 20px;
  }

  .respuestas {
    font-family: 'Roboto', sans-serif;
    line-height: 1.5;
    font-size: 18px;
    margin-bottom: 10px;
  }

/* FOOTER */

footer {
    background-color: #8bd2cf;
    border-top: 3px grey solid;
}

.text-idiomas {
    text-align: center;
    color: black;
}

.text-idiomas:hover {
    color: #8a614c;
    cursor: pointer;
}

.idiomas {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: center;
    text-align: center;
    align-self: right;
}

.idiomas a {
    padding: 5px;
    text-align: center;
    align-self: center;
}

.footer {
    padding: 9px;
    text-align: center;
}

.registered-icon {
    width: 25px;
    padding: 4px;
}

.registered {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.cuerpos-texto {
    font-size: 14px;
}

/* Desktop and Ipad */

@media (min-width: 700px) {

/* MAIN */

.contenido-main {
    display: grid;
    grid-template-columns: 260px 1fr;
    grid-template-areas: "menu contenidos";
    align-items: start;
}

.menu-princip {
    display: inline-block;
    border-right: 3px grey solid;
    border-bottom: 3px grey solid;
    width: 260px;
    padding-left: 0px;
    padding-top: 10px;
    grid-area: menu;
    background-color: white;
}

.menu h3 {
    padding: 5px;
}

.nav-links-desktop {
    padding-left: 20px;
    padding-right: 20px;
}


.nav-links-desktop a {
  color: black;
  text-decoration: none;
}

.nav-links-desktop a:hover {
  color: #93d7e8;
}

.nav-links-desktop ul {
  list-style: none;
  padding: 0;
  margin: 0;
  list-style-type: none;
}

.menu-secund {
    margin: 0px;
    padding: 0px;
    display: flex;
    flex-wrap: wrap;
}

.nav-links-secund {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin: 0px;
    padding: 0px;
}

.nav-links-secund ul {
    box-sizing: border-box;
    width: 60%;
    padding: 10px;
    margin: 0px;

    list-style: none;

    display: flex;
    flex-direction: row;
    flex-wrap: wrap;

    background-color: #dcd7d2;
}

.nav-links-secund li {
    box-sizing: border-box;
    margin: 3px;
    width: 150px;

    background-color: #93d7e8;

    display: flex;
    justify-content: center;
    align-items: center;
}

.contenido {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    width: 100%;
    grid-area: contenidos; 
}

.titulos-principales {
    font-size: 30px;
    color: #137e7a;
}

.info {
    margin: 10px;
}

/* MAIN PAGINAS */

.contenido-main-paginas {
    display: grid;
    grid-template-columns: 260px 1fr;
    grid-template-areas: "menu contenidos";
    align-items: start;
    background-color: #faefbd;
}

/* Notas */

.titulo-nota {
   font-size: 30px;
   color:#009182;
}

.containerfotosextra {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

/* ADDS */

.box-clasificados {
    background-color: #aee0ee;
    height: 200px;
    border-top: 3px grey solid;
    display: flex;
    flex-wrap: wrap;
    flex-direction: center;
    justify-content: center;
    align-items: center;
    padding: 10px;
}

.titulo-clasificados {
    font-family: 'Roboto', sans-serif;
    text-decoration: underline;
    font-size: 20px;
}

.texto-clasificados {
    font-family: 'Fragment Mono', 'sans serif';
    font-size: 16px;
    text-align: center;
}

/* HEADER */

.menu {
    display: none;
}

.logo {
    width: 300px;
}

/* Founders */

.info-founders {
    width: 70%;
}

.imagefounders img {
    width: 500px;
    margin: 30px;
}

/* Inicio Manifiesto */
.foto-manifiesto img {
    width: 50%;
}

/* Indice */

.mapa iframe {
    width: 500px;
    height: 500px;
}

/* Aviso Anti piratería */

.carousel-manifiesto img{
    width: 400px;
}

/* Notas */

 .foto-nota{
    float: left;
    width: 50%;
    margin: 0 30px 20px 0;
  }

  .foto-notaextra{
    float: left;
    width: 30%;
    margin: 0 30px 20px 0;
  }

    .foto-notamini{
    float: left;
    width: 20%;
    margin: 0 30px 20px 0;
  }

}