/*TIMELINE SECTION*/
.timeline-section {
  background-color: var(--white);
  background-image: var(--tribal4-pattern);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  margin: 0;
  margin-bottom: -300px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.timeline-title-section {
  font-family: Akatab-Bold;
  color: var(--black);
  background-color: var(--white);
  padding: 10px 20px;
  border-radius: 10px;
}
.timeline-container {
  background-color: var(--yellow);
  border-radius: 50%;
  --base-rotation: 0deg;
  --full-circle: 360deg;
  --radius: 35vw;
  --duration: 200ms;

  --timeline-container-size: calc(var(--radius) * 2.5);
  --timeline-container-padding: 3rem;

  --border-color: transparent;

  --label-offset: calc(var(--radius) * -1 - 1rem);
  --label-size: 30px;
  --label-color: #666;
  --label-color-hover: var(--black);
  --label-line-h: 1;
  --label-line-h-current: 3rem;
  --label-dot-size: 0px;

  --title-top: 1.5rem;
  --title-offset-y: 30px;

  --info-top: 5rem;
  --info-width: min(70%, 500px);
  --info-offset-y: 30px;

  box-sizing: content-box;
  position: relative;
  margin: 0 auto;
  width: var(--timeline-container-size);
  height: var(--timeline-container-size);
  padding: var(--timeline-container-padding);

  @media (width > 600px){
     clip-path: polygon(0 0, 100% 0, 100% 50%, 0 50%);
  }
  @media (min-width: 800px) {
      --radius: 25vw;
      --label-size: 100px;
      --label-dot-size: 10px;
      --label-line-h-current: 4rem;
      --title-top: 10rem;
      --info-top: 16rem;
  }
  @media (min-width: 1200px) {
      --label-size: 50px;
      --border-color: var(--label-color);
  }
}

.timeline-cards {
  position: absolute;
  inset: var(--timeline-container-padding);
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid var(--border-color);
  transition: transform 0.3s ease-in-out var(--duration);
  list-style: none;
  margin: 0;
  padding: 0;
}

.timeline-item {
  position: absolute;
  inset: 0;
  margin: 0;
  padding: 0;
  transform-origin: center;
  display: grid;
  place-content: center;
  transform: rotate(calc(var(--i) * 360deg / var(--items)));
  pointer-events: none;
}

.timeline-label {
  position: absolute;
  inset: 0;
  margin: auto;
  transform: translateY(var(--label-offset));
  width: var(--label-size);
  height: var(--label-size);
  cursor: pointer;
  pointer-events: initial;
  text-align: center;
  color: var(--label-color);
  font-size: clamp(.8rem, 3vw + .04rem, 1rem);
  font-family: Akatab-Medium;
  transition: var(--duration) ease-in-out;
}

.timeline-label::before{
    content: '';
    position: absolute;
    top: var(--timeline-container-padding);
    left: 50%;
    translate: -50% 0;
    width: var(--label-dot-size);
    height: var(--label-dot-size);
    aspect-ratio: 50%;
    border-radius: 50%;
    background-color: var(--label-color);
    transition: background-color var(--duration) ease-in-out;
}

.timeline-label::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  translate: -50% 5px;
  width: 2px;
  height: var(--label-line-h);
  background-color: var(--black);
  transition: height 300ms ease-in-out var(--label-line-delay,0ms);
}

.timeline-label:hover{
  --label-color: var(--label-color-hover);
}

.timeline-title,
.timeline-description{
  position: absolute;
  left: 50%;
  text-align: center;
  transform: translate(-50%, 0);
  transform-origin: center;
  font-family: Akatab-Regular;
}

.timeline-title{
  top: var(--title-top);
  opacity: var(--title-opacity,0);
  translate: 0 var(--title-offset-y);
  transition: var(--duration) ease-in-out var(--title-delay,0ms);
  font-size: clamp(1.2rem, 4vw + 0.1rem, 2rem);
  color: var(--black);
  font-family: Akatab-Bold;
}

.timeline-description{
  top: var(--info-top);
  margin: 0 auto;
  width: var(--info-width);
  z-index: 2;
  font-size: clamp(.8rem, 2.5vw + 0.05rem, .9rem);
  text-align: left;
  text-wrap: pretty;
  opacity: var(--info-opacity,0);
  transition: var(--duration) ease-in-out var(--info-delay,0ms);
  color: var(--black);
  font-family: Akatab-Regular;
}

/* Hide radio buttons */
.timeline-item input[type="radio"] {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* update custom properties for checked item */
.timeline-item:has(input:checked){
    --label-opacity: 1;
    --label-color: var(--label-color-hover);
    --label-line-h: var(--label-line-h-current);
    --label-line-delay: calc(var(--duration) * 2);

    --title-opacity: 1;
    --title-offset-y: 0;
    --title-delay: calc(var(--duration) * 3);

    --info-opacity: 1;
    --info-offset-y: 0;
    --info-delay: calc(var(--duration) * 4);
}

/* rotate container based on checked radio */
.timeline-cards:has(input:checked) {
  transform: rotate(calc(var(--base-rotation) - (var(--index) * var(--full-circle) / var(--items))));
}

.timeline-cards:has(.timeline-item:nth-child(1)>input:checked) { --index: 0; }
.timeline-cards:has(.timeline-item:nth-child(2)>input:checked) { --index: 1; }
.timeline-cards:has(.timeline-item:nth-child(3)>input:checked) { --index: 2; }
.timeline-cards:has(.timeline-item:nth-child(4)>input:checked) { --index: 3; }
.timeline-cards:has(.timeline-item:nth-child(5)>input:checked) { --index: 4; }
.timeline-cards:has(.timeline-item:nth-child(6)>input:checked) { --index: 5; }
.timeline-cards:has(.timeline-item:nth-child(7)>input:checked) { --index: 6; }
.timeline-cards:has(.timeline-item:nth-child(8)>input:checked) { --index: 7; }
.timeline-cards:has(.timeline-item:nth-child(9)>input:checked) { --index: 8; }
.timeline-cards:has(.timeline-item:nth-child(10)>input:checked) { --index: 9; }
.timeline-cards:has(.timeline-item:nth-child(11)>input:checked) { --index: 10; }
.timeline-cards:has(.timeline-item:nth-child(12)>input:checked) { --index: 11; }
.timeline-cards:has(.timeline-item:nth-child(13)>input:checked) { --index: 12; }
.timeline-cards:has(.timeline-item:nth-child(14)>input:checked) { --index: 13; }
.timeline-cards:has(.timeline-item:nth-child(15)>input:checked) { --index: 14; }
.timeline-cards:has(.timeline-item:nth-child(16)>input:checked) { --index: 15; }
.timeline-cards:has(.timeline-item:nth-child(17)>input:checked) { --index: 16; }
.timeline-cards:has(.timeline-item:nth-child(18)>input:checked) { --index: 17; }
.timeline-cards:has(.timeline-item:nth-child(19)>input:checked) { --index: 18; }
.timeline-cards:has(.timeline-item:nth-child(20)>input:checked) { --index: 19; }
.timeline-cards:has(.timeline-item:nth-child(21)>input:checked) { --index: 20; }
.timeline-cards:has(.timeline-item:nth-child(22)>input:checked) { --index: 21; }
.timeline-cards:has(.timeline-item:nth-child(23)>input:checked) { --index: 22; }
.timeline-cards:has(.timeline-item:nth-child(24)>input:checked) { --index: 23; }
.timeline-cards:has(.timeline-item:nth-child(25)>input:checked) { --index: 24; }
.timeline-cards:has(.timeline-item:nth-child(26)>input:checked) { --index: 25; }

/*TIMELINE SECTION*/


body {
 margin: 0;
 background-color: var(--yellow);
}

.img_hero_container {
  width: 100%;
}

/*SECCION HERO*/
.main_container{
display: flex;
flex-direction: column;
background-color: var(--yellow);
height: 100vh;
gap: 90px;
position: relative;
}

.hero_img {
position: absolute;
right: 43%;
top: 10%;
}

.hero_img1 {
position: absolute;
right: 4%;
top: 20%;
rotate: 5deg;
}

.hero_img2 {
position: absolute;
right: 75%;
top: 35%;
rotate: 5deg;
}
.hero_img3 {
position: absolute;
right: 80%;
top: 70%;
rotate: 50deg;
}

.hero_img4 {
position: absolute;
right: 85%;
top: 15%;
rotate: 10deg;
}

.hero_img5 {
position: absolute;
right: 1%;
top: 70%;
rotate: 5deg;
}

.hero_img6 {
position: absolute;
right: 0.8%;
top: 10%;
rotate: -8deg;
}

.hero_img7 {
position: absolute;
right: 20%;
top: 60%;
rotate: -5deg;
}

.hero_img8 {
position: absolute;
right: 65%;
top: 65%;
rotate: 10deg;
}

.hero_img9 {
position: absolute;
right: 42%;
top: 67%;
rotate: 5deg;
}

.anim_obj {
  animation: float 3s ease-in-out infinite;
  transition: rotate 0.3s;
}

.anim_obj:hover {
  rotate: -10deg;
  animation-play-state: running;
}


@keyframes float {
  0% {
    transform: translatey(0);
  }
  50% {
    transform: translatey(-10px);
  }
  100% {
    transform: translatey(0);
  }
}


.navbar {
display: flex;
justify-content: center;
font-family: Akatab-Regular;
padding: 10px;
}

.title_container {
text-decoration: none;
color: black;
padding: 20px;
}

.logo_text {
  font-family: Akatab-Bold;
  font-size: 24px;
}

.nav_list {
list-style-type: none;
display: flex;
align-items: center;
gap: 45px;
}

.nav_item::after {
  content: '';
  display: block;
  width: 0;
  height: 2px;
  background: black;
  transition: width 0.4s cubic-bezier(0.4,0,0.2,1);
}


.nav_item:hover::after {
  width: 100%;
}
.nav_link{
text-decoration: none;
color: black;
}

.hero {
display: flex;
flex-direction: column;
align-items: center;
}

.hero_text {
max-width: 55%;
font-family: Akatab-Medium;
}

.hero_text span {
  position: relative;
  cursor: pointer;
  text-decoration: underline;
}

.hero_text span::after {
  content: '';
  display: block;
  width: 0;
  height: 5px;
  background: white;
  transition: width 0.4s cubic-bezier(0.4,0,0.2,1);
  position: absolute;
  left: 0;
  bottom: 0;
}
div{
    transition: all 0.3s ease;
}
.hero_text span:hover {
  color: white;
  text-decoration: none;
}

.hero_text span:hover::after {
  width: 100%;
}

.hero_text div:hover span {
  color: white;
}
.hero_text div:hover span::after {
  width: 100%;
}

.hero_cta {
text-decoration: none;
color: black;
font-family: Akatab-Bold;
border: 3px solid black;
padding: 15px 65px;
border-radius: 5px;
font-size: 20px;
}

.hero_cta:hover {
background-color: black;
color: white;
}
/*SECCION HERO*/

/*SOBRE NOSOTROS SECCIÓN*/
.about_us {
  display: flex;
  justify-content: center;
  background-color: var(--black);
  color: white;
}

.about_img {
width: 50%;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 50px;
}

.about_container{
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about_img:hover {
  transform: scale(1.05);
  transition: transform 0.3s ease;
}

.about_title {
  font-family: Akatab-Bold;
  margin-bottom: 15px;
  width: 50%;
}

.about_text {
  max-width: 80%;
  font-family: Akatab-Regular;
  font-size: 18px;
}
/*SOBRE NOSOTROS SECCIÓN*/

/*BREVE BIOGRAFIA SECCION*/
.brief_biography {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: var(--yellow);
  background-image: var(--tribalF-pattern);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.brief_bio_img {
  width: 700px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 30px;
  will-change: transform;
  transition: transform 0.3s cubic-bezier(0.4,0,0.2,1);
}

.brief_bio_text {
  will-change: transform, opacity;
  transition: transform 0.3s cubic-bezier(0.4,0,0.2,1), opacity 0.3s cubic-bezier(0.4,0,0.2,1);
}

.brief_bio_text {
  max-width: 60%;
  font-size: 25px;
  text-align: center;
  font-family: Akatab-Medium;
  border-radius: 15px;
  padding: 10px;
  z-index: 1;
  position: relative;
  background-color: var(--white);
}
/*BREVE BIOGRAFIA SECCION*/
.values_section {
  display: flex;
  flex-direction: column;
  background-color: var(--white);
  background-image: var(--tribal2-pattern);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  color: black;
  gap: 30px;
  width: 100%;
  padding: 50px 100px;
  box-sizing: border-box;
  margin-bottom: 20px;
  margin-top: -400px;
}

.values_container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  gap: 30px;
  width: 100%;
}

.values_main_title {
  font-family: Akatab-Bold;
  color: var(--black);
  background-color: var(--white);
  padding: 10px 20px;
  border-radius: 10px;

  text-align: center;
  margin: 0 auto;
  z-index: 100;
}

.values_item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
  padding: 0 20px;
  font-family: Akatab-Regular;
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  min-width: 280px;
  max-width: 350px;
  transition: transform 0.3s, filter 0.3s, opacity 0.3s;
  position: relative;
  z-index: 1;
}

.values_item:hover {
  transform: scale(1.07) translateY(-10px);
  z-index: 2;
}

/* Blur a las hermanas cuando una está en hover */
.values_item:hover ~ .values_item,
.values_item:has(~ .values_item:hover) {
  filter: blur(4px) brightness(0.95);
  opacity: 0.9;
  transform: scale(0.95);
}

/*REPO HERO*/ 
.repo_hero {
  display: flex;
  justify-content: center;
  padding: 15px;
  background-image: var(--zebra-pattern);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.repo_info {
  transition: background-color 0.3s, color 0.3s;
  max-width: 40%;
  background-color: var(--black);
  color: var(--white);
  padding: 20px;
  border-radius: 15px;
  font-family: Akatab-Regular;
  margin-right: 0px;
}


.repo_images {
  max-width: 50%;
  display: flex;
  justify-content: center;
  gap: 15px;
}
.repo_img {
  width: 20%;
  border-radius: 15px;
  object-fit: cover;
}
.repo_link {
  text-decoration: none;
  color: var(--black);
  font-family: Akatab-Bold;
  border: 3px solid var(--black);
  padding: 10px 40px;
  border-radius: 5px;
  font-size: 18px;
  background-color: var(--white);
  transition: background-color 0.3s, color 0.3s;
}
.repo_link:hover {
  background-color: var(--yellow);
  
}

/*BLOG HERO & FORO HERO*/
.blog_foro_hero{
  display: flex;
  justify-content: center;
  padding: 15px;
  background-image: var(--tribal-pattern);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.blog_hero {
  display: flex;
  flex-direction: column;
  width: 35%;
  border-radius: 15px;
  background-color: var(--white);
  padding: 20px;
  margin-right: 30px;
  font-family: Akatab-Regular;
    transition: background-color 0.3s, color 0.3s;
}

.foro_hero {
  display: flex;
  flex-direction: column;
  width: 35%;
  border-radius: 15px;
  background-color: var(--white);
  padding: 20px;
  font-family: Akatab-Regular;
  color: var(--black);
  margin-left: 30px;
  transition: background-color 0.3s, color 0.3s;
}

.blog_img {
  border-radius: 15px;
  object-fit: contain;
  margin-bottom: 15px;
  align-self: center;
  width: 100%;
}

.foro_img {
  width: 90%;
  border-radius: 15px;
  object-fit: contain;
  margin-bottom: 15px;
  align-self: center;
}


.blog_title, .foro_title {
  font-family: Akatab-Bold;
  margin-bottom: 10px;
}
.blog_text, .foro_text {
  font-family: Akatab-Regular;
  font-size: 18px;
  margin-bottom: 15px;
}

.blog_link, .foro_link {
  text-decoration: none;
  color: var(--black);
  font-family: Akatab-Bold;
  border: 3px solid var(--black);
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-sizing: border-box;
  font-size: 22px;
  background-color: var(--white);
  transition: background-color 0.3s, color 0.3s;
  border-radius: 50%;
  align-self: flex-end;
  overflow: hidden;
}

.blog_link::after, .foro_link::after {
  content: '';
  display: block;
  position: absolute;
  right: 40%;
  top: 50%;
  transform: translateY(-50%) rotate(0deg);
  width: 10px;
  height: 10px;
  border-right: 3px solid black;
  border-bottom: 3px solid black;
  border-radius: 1px;
  background: none;
  /* Flecha tipo '>' */
  transform: translateY(-50%) rotate(-45deg);
  transition: transform 0.3s;
}
.blog_link:hover  {
  background-color: var(--yellow);
  color: var(--white);
}
.foro_link:hover{
  background-color: var(--yellow);
  color: var(--white);
}

.blog_link:hover::after, .foro_link:hover::after {
  transform: translateY(-50%) rotate(-90deg);
}

/*WIKI HERO*/
.wiki_hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 15px;
  background-color: var(--white);
  background-image: var(--tribalF-pattern);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.wiki_info {
  transition: background-color 0.3s, color 0.3s;
  max-width: 90%;
  background-color: var(--yellow);
  color: var(--black);
  padding: 20px;
  border-radius: 15px;
  font-family: Akatab-Regular;
  margin-right: 0px;
}

.wiki_images {
  max-width: 100%;
  display: flex;
  padding: 20px;
  gap: 15px;
  justify-content: center;
}

.wiki_img1 {
  width: 425px;
  height: 200px;
  object-fit: cover;
  border-radius: 15px;
  border: 8px dotted var(--white);
}
.wiki_img2 {
  width: 625px;
  border-radius: 15px;
  height: 200px;
  object-fit: cover;
  border: 8px dotted var(--white);
}
.wiki_title {
  width: 80%;
  font-family: Akatab-Bold;
  margin-bottom: 10px;
}
.wiki_text {
  max-width: 60%;
  font-family: Akatab-Regular;
  font-size: 20px;
  margin: 20px 0;
}
.wiki_link {
  text-decoration: none;
  color: var(--black);
  font-family: Akatab-Bold;
  padding: 10px 40px;
  border-radius: 5px;
  font-size: 18px;
  background-color: var(--white);
  transition: background-color 0.3s, color 0.3s;
}
.wiki_link:hover {
  background-color: var(--black);
  color: var(--white);
}

/*NOTICIAS, JUEGOS, VR HERO*/
.noticias_juegos_hero {
  display: flex;
  padding: 15px;
  background-image: var(--tribalF-pattern);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  gap: 30px;
  margin: 10px;

}

.noticias_hero {
  display: flex;
  flex-direction: column;
  width: 50%;
  background-color: var(--yellow);
  border-radius: 15px;
  padding: 20px;
  gap: 15px;
}
.juegos_hero {
  display: flex;
  flex-direction: column;
  width: 50%;
  gap: 30px;
  padding: 20px;

}
.juegos_educ_container {
  display: flex;
  flex-direction: column;
  background-color: var(--white);
  border-radius: 15px;
  padding: 15px;
  gap: 15px;
}
.juegos_vr_container {
  display: flex;
  flex-direction: column;
  background-color: var(--black);
  border-radius: 15px;
  color: var(--white);
  padding: 15px;
  gap: 15px;
}

.noticias_img, .juegos_img, .juegos_vr_img {
  width: 100%;
  border-radius: 15px;
  object-fit: cover;
  height: 200px;
  margin-bottom: 15px;
}
.juegos_vr_img {
object-fit: cover;
height: 400px;
}
.noticias_title, .juegos_title, .juegos_vr_title {
  font-family: Akatab-Bold;
  margin-bottom: 10px;
}
.noticia_text, .juegos_text, .juegos_vr_text {
  font-family: Akatab-Regular;
  font-size: 18px;
  margin-bottom: 15px;
    width: 90%;
}

.noticias_link {
  width: 35%;
  text-decoration: none;
  color: var(--black);
  font-family: Akatab-Bold;
  padding: 10px 40px;
  border-radius: 5px;
  font-size: 18px;
  background-color: var(--white);
  transition: background-color 0.3s, color 0.3s;
}
.noticias_link:hover {
  background-color: var(--black);
  color: var(--white);
}
 .juegos_link {
    width: 35%;
  text-decoration: none;
  color: var(--white);
  font-family: Akatab-Bold;
  padding: 10px 40px;
  border-radius: 5px;
  font-size: 18px;
  background-color: var(--black);
  transition: background-color 0.3s, color 0.3s;
}
.juegos_link:hover {
  background-color: var(--yellow);
  color: var(--white);
}
.juegos_vr_link {
    width: 35%;
  text-decoration: none;
  color: var(--black);
  font-family: Akatab-Bold;
  padding: 10px 40px;
  border-radius: 5px;
  font-size: 18px;
  background-color: var(--white);
  transition: background-color 0.3s, color 0.3s;
}
.juegos_vr_link:hover {
  background-color: var(--yellow);
  color: var(--black);
}

/*TRADUCTOR HERO*/
.traductor_hero {
  display: flex;
  flex-direction: column;
  background-image: var(--tribal3-pattern);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 10px;
}
.traductor {
  display: flex;
  padding: 20px;
  margin: 20px;
  gap: 15px;
  background-color: var(--yellow);
  border-radius: 15px;
}

.ES_info, .GA_info {
  font-family: Akatab-Regular;
}

.ES_container, .GA_container {
  display: flex;
  flex-direction: column;
  background-color: whitesmoke;
  border-radius: 15px;
  padding: 10px;
}

.ES, .GA{
  font-family: Akatab-Bold;
  background-color: whitesmoke;
  border-radius: 15px;
  box-shadow: 0 0 2px 0;
  position: relative;
}
.ES::before, .GA::before{
  content: '';
  display: block;
  position: absolute;
  transform: translateY(-50%) rotate(42deg);
  width: 10px;
  height: 10px;
  border-right: 3px solid black;
  border-bottom: 3px solid black;
  border-radius: 1px;
  background: none;
  z-index: 100;
  top: 50%;
  left: 95%;
}

.icon_container {
  align-self: flex-end;
}

.traductor_link {
  width: 20%;
  text-decoration: none;
  color: var(--black);
  font-family: Akatab-Bold;
  padding: 10px 40px;
  border-radius: 5px;
  font-size: 18px;
  background-color: var(--white);
  border: 5px solid black;
  transition: background-color 0.3s, color 0.3s;
}
.traductor_link:hover {
  background-color: var(--black);
  color: var(--white);
}

.traductor_title {
  align-self: center;
  width: 50%;
  text-align: center;
  background-color: white;
  border-radius: 15px;
  font-family: Akatab-Bold;
}

/*CONTAC FORM*/

.contacto {
  display: flex;
  justify-content: center;
  background-color: whitesmoke;
  padding: 20px;
  margin: 10px;
  gap: 30px;
  margin-bottom: -100px;
  border-radius: 15px;
}
.contact_image {
  width: 50%;
  height: 450px;
}

.contact_form {
  width: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 5px solid rgb(255, 255, 255);
  border-radius: 15px;
  padding: 10px;
  height: min-content;
  background-color: var(--black);
  background-image: var(--olas-pattern);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.two_container {
  display: flex;
}

input {
  font-family: Akatab-Regular;
  width: 100%;
  box-sizing: border-box;
  padding: 5px;
  margin: 10px;
  border-radius: 3px;
  outline: none;
  border-color: transparent;
  transition: all 0.3s ease;
}

input:focus, .message_area:focus {
  border-color: var(--yellow);
}

.contact_title {
  color: rgb(0, 0, 0);
  font-family: Akatab-Bold;
  text-align: center;
  background-color: white;
  border-radius: 15px;
  padding: 5px;
}

.message_area {
  border-color: transparent;
  font-family: Akatab-Regular;
  resize: none;
  width: 100%;
  height: 150px;
  outline: none;
  border-radius: 15px;
}

.contact_submit {
  width: 50%;
  background-color: var(--white);
  transition: background-color, 0.3s ease;
}

.contact_submit:hover {
  background-color: var(--yellow);
}
/*CONTACT FORM FINAL*/

/*REDES SOCIALES*/
.card {
  position: relative;
  width: 40%;
  background: lightgrey;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  transition: all 1s ease-in-out;
  border: 2px solid rgb(255, 255, 255);
}

.background {
  position: absolute;
  inset: 0;
  background-image: var(--eyes-pattern);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.logo {
  position: absolute;
  right: 47%;
  bottom: 50%;
  transform: translate(50%, 50%);
  transition: all 0.6s ease-in-out;
  color: #ffffff;
  font-size: 15px;
  font-family: Akatab-Regular;
}
.logo .logo-svg {
  fill: white;
  width: 30px;
  height: 30px;
}

.logo_title {
  background-color: white;
  color: black;
  border-radius: 15px;
  padding: 5px;
}

.icon {
  display: inline-block;
  width: 30px;
  height: 30px;
}

.icon .svg {
  fill: rgba(255, 255, 255, 0.797);
  width: 100%;
  transition: all 0.5s ease-in-out;
}

.box {
  position: absolute;
  padding: 10px;
  text-align: right;
  background: rgba(255, 255, 255, 0.389);
  border-top: 2px solid rgb(255, 255, 255);
  border-right: 1px solid white;
  border-radius: 10% 13% 42% 0%/10% 12% 75% 0%;
  box-shadow: rgba(100, 100, 111, 0.364) -7px 7px 29px 0px;
  transform-origin: bottom left;
  transition: all 1s ease-in-out;
}

.box::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  opacity: 0;
  transition: all 0.5s ease-in-out;
}

.box:hover .svg {
  fill: white;
}

.box1 {
  width: 70%;
  height: 70%;
  bottom: -70%;
  left: -70%;
}

.box1::before {
  background:  #ff53d4;
}

.box1:hover::before {
  opacity: 1;
}

.box1:hover .icon .svg {
  filter: drop-shadow(0 0 5px white);
}

.box2 {
  width: 50%;
  height: 50%;
  bottom: -50%;
  left: -50%;
  transition-delay: 0.2s;
}

.box2::before {
  background: #00ACEE 90%;
}

.box2:hover::before {
  opacity: 1;
}

.box2:hover .icon .svg {
  filter: drop-shadow(0 0 5px white);
}

.box3 {
  width: 30%;
  height: 30%;
  bottom: -30%;
  left: -30%;
  transition-delay: 0.4s;
}

.box3::before {
  background: black;
}

.box3:hover::before {
  opacity: 1;
}

.box3:hover .icon .svg {
  filter: drop-shadow(0 0 5px white);
}

.box4 {
  width: 10%;
  height: 10%;
  bottom: -10%;
  left: -10%;
  transition-delay: 0.6s;
}

.card:hover {
  transform: scale(1.1);
}

.card:hover .box {
  bottom: -1px;
  left: -1px;
}

.card:hover .logo {
  transform: translate(70px, -90px);
  letter-spacing: 0px;
}
/*FIN REDES SOCIALES */

/*FOOTER */
.img_container{
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  padding: 0;
  margin: 0;
  margin-bottom: -110px;
  position: relative;
  z-index: -100;
}

.isf_img{
  width: 40%;
  object-fit: contain;
}

.isf_img{
  width: 40%;
  object-fit: contain;
}

footer {
  width: 100%;
  background-color: #000000;
  margin-top: 0;
  position: relative;
  z-index: 1;
  padding-top: 20px;
}

.f_s {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto 40px auto;
  flex-wrap: wrap;
  gap: 30px;
}

.f_ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.f_ul li {
  color: #ffffff;
  font-family: Akatab-Regular;
  font-size: 16px;
  transition: all 0.3s ease;
}

.f_subtitle {
  font-family: Akatab-Bold;
  font-weight: 600;
  font-size: 18px;
  color: var(--yellow);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.f_ul li a {
  color: #ffffff;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
}

.f_ul li a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--yellow);
  transition: width 0.3s ease;
}

.f_ul li a:hover::after {
  width: 100%;
}

.f_ul li a:hover {
  color: var(--yellow);
  transform: translateX(5px);
}

.f_ul li:hover {
  transform: translateX(5px);
}

.f_st {
  text-align: center;
  padding-top: 20px;
  border-top: 2px solid rgba(255, 255, 255, 0.1);
}

.f_t {
  font-family: Akatab-Black;
  font-size: 100px;
  color: white;
  text-align: center;
  margin: 0;
  transition: all 0.3s ease;
}
/* ================== FIN FOOTER ================== */
.hamburger {
  display: none;
}
.img_prov {
  display: none;
}

/*ADAPTACION MOVIL - MEDIAQUERIES*/
  @media (max-width: 600px) {
  /* NAVBAR + MENÚ HAMBURGUESA */

  .img_prov {
    display: inline-flex;
    width: 70%;
    margin-top: -20%;
    margin-left: 15%;
  }

  .navbar {
    position: relative;
    justify-content: space-between;
    align-items: center;
    padding: 10px 14px;
  }
  .title_container {
    position: static;
  }
  .logo_text {
    font-size: 20px;
  }
  .nav_list {
    display: none;
  }
  .hamburger {
    display: flex;
    flex-direction: column;
    width: 36px;
    height: 36px;
    align-items: center;
    justify-content: center;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    position: absolute;
    right: 14px;
    top: 10px;
    z-index: 1002;
  }
  .hamburger span {

    width: 24px;
    height: 2px;
    background: var(--white);
    transition: transform 0.3s ease, opacity 0.3s ease;
  }
  .hamburger.is-active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .hamburger.is-active span:nth-child(2) {
    opacity: 0;
  }
  .hamburger.is-active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
  .nav_overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.96);
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateY(-100%);
    transition: transform 0.35s ease;
    z-index: 1001;
  }
  .nav_overlay.open {
    transform: translateY(0);
  }
  .nav_overlay_list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
    margin-right: 1%;
  }
  .nav_overlay_link {
    color: #fff;
    text-decoration: none;
    font-family: Akatab-Bold;
    font-size: 22px;
    text-align: center;
  }

  /* HERO: título y SVGs adaptados */
  .main_container {
    max-width: 100%;
    height: auto;
    gap: 40px;
    padding-bottom: 40px;
  }
  .hero {
    padding: 10px 14px;
  }
  .hero_text {
    max-width: 95%;
    text-align: center;
    font-size: 18px;
  }
  .hero_cta {
    padding: 12px 32px;
    font-size: 18px;
  }
  .img_hero_container {
    position: relative;
    min-height: 200px;
  }
  .anim_obj {
    animation: float 3s ease-in-out infinite;
  }
  /* Reubicar SVGs para móvil conservando composición */
  .hero_img { display: none;}
  .hero_img1,
  .hero_img2,
  .hero_img3, 
  .hero_img4, 
  .hero_img5, 
  .hero_img6, 
  .hero_img7,
  .hero_img8, 
  .hero_img9 { display: none; }
  /* Escalar SVGs para pantallas pequeñas */
  .img_hero_container object { transform: scale(0.8); transform-origin: center; }
  
  /* SOBRE NOSOTROS */
  .about_us {
    flex-direction: column;
    padding: 14px;
    gap: 10px;
  }
  .about_img { display: none; }
  .about_container { width: 100%; }
  .about_title { width: 100%; font-size: 20px; }
  .about_text { max-width: 100%; font-size: 16px; }

  /* BREVE BIOGRAFÍA */
  .brief_biography { padding: 14px; }
  .brief_bio_text { max-width: 100%; font-size: 18px; }
  .brief_bio_img { width: 90%; max-width: 420px; }

  /* TIMELINE: tamaño cómodo sin romper layout */
  .timeline-section { margin-bottom: 0; }
  .timeline-container { 
    --radius: 30vw; 
    --timeline-container-size: calc(var(--radius) * 2.2); 
    --timeline-container-padding: 60px;
  }
  .timeline-title-section { font-size: 20px; }

  .timeline-label::after {
  height: 0;
}

  /* VALORES: apilar en columna y simplificar */
  .values_section { padding: 10px; margin-top: 0; gap: 16px; }
  .values_container { flex-direction: column; align-items: stretch; gap: 16px; }
  .values_item { max-width: none; width: 90%; transform: none !important; filter: none !important; opacity: 1 !important; box-shadow: 0 2px 12px rgba(0,0,0,0.06); }
  .values_item:hover { transform: none; }
  .values_item:hover ~ .values_item, .values_item:has(~ .values_item:hover) { filter: none; opacity: 1; transform: none; }

  /* REPO HERO */
  .repo_hero {
    flex-direction: column;
    padding: 14px;
    gap: 20px;
  }
  .repo_info {
    max-width: 90%;
    width: 100%;
    padding: 16px;
  }
  .repo_images {
    max-width: 100%;
    width: 100%;
    gap: 10px;
  }
  .repo_img {
    width: 100%;
  }
  .repo_images img[alt="grupo garifuna"] {
    display: none;
  }
  .repo_images img[alt="belice_garifuna"]{
    display: none;
  }
  .repo_images  img[alt="lanchas_banderas"]{
    display: none;
  }

  /* BLOG HERO Y FORO HERO */
  .blog_foro_hero {
    flex-direction: column;
    padding: 14px;
    gap: 20px;
  }
  .blog_hero, .foro_hero {
    width: 90%;
    margin: 0;
    padding: 16px;
  }
  .blog_img, .foro_img {
    width: 100%;
    height: 200px;
    object-fit: cover;
  }

  /* WIKI HERO */
  .wiki_hero {
    padding: 14px;
  }
  .wiki_info {
    max-width: 90%;
    width: 100%;
    padding: 16px;
    border: 5px solid white;
  }
  .wiki_title {
    width: 100%;
    font-size: 20px;
  }
  .wiki_text {
    max-width: 100%;
    font-size: 16px;
  }
  .wiki_images {
    flex-direction: column;
    padding: 10px;
    width: 90%;
    margin-right: 15px;
  }
  .wiki_img1 {
    width: 100%;
  }
  .wiki_img2 {
    display: none;
  }

  /* NOTICIAS, JUEGOS, VR HERO */
  .noticias_juegos_hero {
    flex-direction: column;
    padding: 14px;
    gap: 20px;
    margin: 0;
  }
  .fb {
    display: none;
  }
  .fb_page {
    display: none;
  }

  .noticias_hero, .juegos_hero {
    width: 90%;
    padding: 16px;
  }
  .juegos_educ_container, .juegos_vr_container {
    padding: 16px;
    margin-bottom: 15px;
  }
  .juegos_img, .juegos_vr_img {
    height: 200px;
  }
  .noticias_link, .juegos_link, .juegos_vr_link {
    width: 60%;
  }

  /* TRADUCTOR HERO */
  .traductor_hero {
    padding: 14px;
  }
  .traductor {
    flex-direction: column;
    padding: 16px;
    margin: 14px;
    gap: 20px;
  }
  .ES_container, .GA_container {
    width: 90%;
    padding: 16px;
  }
  .traductor_title {
    width: 90%;
    font-size: 18px;
    padding: 10px;
  }
  .traductor_link {
    width: 50%;
  }

  /* CONTACTO */
  .contacto {
    flex-direction: column;
    padding: 14px;
    gap: 20px;
    margin: 0;
  }
  .contact_form {
    width: 90%;
    order: 1;
    padding: 16px;
  }
  .card {
    display: none;
  }
  .two_container {
    flex-direction: column;
  }
  input, .message_area {
    margin: 8px 0;
  }
  .contact_submit {
    width: 70%;
  }

  .f_t {
    font-size: 50px;
  }

}
