/* Basic CSS Styles */
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/* Tipofrafías definidas por clase */

.poppins-thin {
  font-family: "Poppins", sans-serif;
  font-weight: 100;
  font-style: normal;
}

.poppins-extralight {
  font-family: "Poppins", sans-serif;
  font-weight: 200;
  font-style: normal;
}

.poppins-light {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-style: normal;
}

.poppins {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.poppins-medium {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.poppins-semibold {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: normal;
}

.poppins-bold {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.poppins-extrabold {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-style: normal;
}

.poppins-black {
  font-family: "Poppins", sans-serif;
  font-weight: 900;
  font-style: normal;
}

.poppins-thin-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 100;
  font-style: italic;
}

.poppins-extralight-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 200;
  font-style: italic;
}

.poppins-light-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-style: italic;
}

.poppins-regular-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: italic;
}

.poppins-medium-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: italic;
}

.poppins-semibold-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: italic;
}

.poppins-bold-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: italic;
}

.poppins-extrabold-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-style: italic;
}

.poppins-black-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 900;
  font-style: italic;
}

.xsmall {
  font-size: 0.70rem;
}


body {
  margin: 0;
  padding: 0;
  font-family: Arial, Helvetica, sans-serif;
  background-color: #f5f5f5;
  color: #222;
}

h1, h2, h3, h4, h5, h6 {
  margin-top: 1.2em;
  margin-bottom: 0.5em;
  font-weight: 600;
}

p {
  margin: 0 0 1em 0;
  line-height: 1.6;
}

a {
  color: #0077cc;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

ul, ol {
  margin: 0 0 1em 2em;
}

.text-green {
  color: #2E7D32;
}

.bg-very-light {
  background-color: #FFFFEA;
}

.bg-lighter { 
  background-color: #EEEBE6;
}

.bg-flora {
  background: url(../img/bghojas.png) no-repeat center center;
  background-size: stretch;
}

.bg-fauna {
  background: url(../img/bgflora.png) no-repeat center center;
  background-size: cover;
}

button {
  background-color: #0077cc;
  color: #fff;
  border: none;
  padding: 0.5em 1em;
  border-radius: 4px;
  cursor: pointer;
  font-size: 1em;
}

button:hover {
  background-color: #005fa3;
}
.bg-brown {
  background-color: #46352E;
}

.page-bg {
  position: relative;
  z-index: 1;
}

.page-bg::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  background: url('../img/fondo.jpg') no-repeat center center fixed;
  background-size: cover;
  filter: brightness(0.5);
  background-color: #000000;
}

.menu-circle {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: #009C8C;
  transition: background 0.2s;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  position: relative;
  text-decoration: none;
}

.menu-circle:hover {
  background: #3b3b3b;
}

.menu-circle img {
  transition: filter 0.2s;
}

.menu-circle:hover img {
  filter: brightness(0.85) invert(0);
}

.menu-lateral a{
  border: 1px solid #fff;
  border-radius: 50%; 

}

.menu-lateral a:hover {
  text-decoration: none;
  background-color: #ffffff40;
  border-radius: 50%;
}

.menu-lateral a:hover.active {
  text-decoration: none;
  background-color: #009C8C;
  border-radius: 50%;
}

.menu-lateral a:hover img {
  /* filter: brightness(0.85) invert(0);*/
}

.menu-lateral a.active {
  background-color: #009C8C;
  border-radius: 50%;
  transform: scale(1.2);
  margin: 15px;

}

.text-menu-green {
  text-decoration: none;
  color: #009C8C;
}

.circle-menu {
  display: flex;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.circle-menu .circle {
  width: 160px;
  height: 160px;
  border: 10px solid #009C8C;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  transition: transform .15s ease;
  text-decoration: none;
  margin: 10px;
}

.circle-menu .circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.circle-menu .circle:hover {
  transform: scale(1.05);
}

@media (min-width:768px) {
  .hide-lg {
    display: none;
  }
}

@media (max-width:576px) {
  .circle-menu .circle {
    width: 80px;
    height: 80px;
    border-width: 6px;
  }
    #panWrapper {
    max-height: 400px !important;
  }
}

@media (max-width: 600px) {
  body, p, a, li, ul, ol, button {
    font-size: 1.1em;
  }
  h1 {
    font-size: 2.2em;
  }
  h2 {
    font-size: 1.8em;
  }
  h3 {
    font-size: 1.4em;
  }
  #elementTitle {
    width: 100% !important;
    display: block !important;
    margin: -90px auto !important;
    padding: 10px 0 !important;
  }
 #frameasset {
    margin-top: 100px !important;
  }
}

@media (min-width: 640px) {
  #panWrapper {
    min-height: 640px !important;
  }
}
