@font-face {
  font-family: 'Poppins';
  src: url('../FONT/Poppins/Poppins-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Poppins';
  src: url('../FONT/Poppins/Poppins-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: 'Poppins';
  src: url('../FONT/Poppins/Poppins-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: 'Poppins';
  src: url('../FONT/Poppins/Poppins-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: 'Poppins';
  src: url('../FONT/Poppins/Poppins-Italic.ttf') format('truetype');
  font-weight: 400;
  font-style: italic;
}

body {
  margin: 0;
  padding: 0;
  background-color: #000000;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

header {
  background-color: rgba(0, 0, 0, 0.06);
  backdrop-filter: blur(10px);
  display: flex;
  justify-content: space-between;
  width: 100%;
  box-sizing: border-box;
  align-items: center;
  padding: 0 12%;
  color: #D9352A;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  transition: top 0.4s ease-out;
}

header.oculto {
  top: -100px;
}

header.visible {
  top: 0px;
}

.icono {
  width: 80px;
  height: 70px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  font-family: 'Poppins', sans-serif;
  overflow: hidden;
  transition: width 0.3s ease-in-out;
  flex-shrink: 0;
}

.icono img {
  height: 100%;
  width: auto;
  object-position: left center;
  min-width: 350;
}

.icono:hover {
  width: 450px;
}

nav {
  display: flex;
  justify-content: flex-end;
  background-color: transparent;
  align-items: center;
}

ul {
  background-color: transparent;
  list-style: none;
  display: flex;
  gap: 20px;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: #F4F0EC;
}

li:hover {
  color: #D9352A;
}

h1 {
  align-self: center;
}

.container1 {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  padding-bottom: 100px;
  margin-top: -10%;
  margin-bottom: 3%;
}

.landscape-tittle {
  margin: 0 10%;
  max-width: none;
  min-height: none;
  min-width: none;
  max-height: none;
  font-size: 80px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  text-align: left;
  white-space: pre-wrap;
  letter-spacing: -1px;
}

.landscape-text {
  margin: 0 10%;
  max-width: none;
  font-size: 30px;
  font-family: 'Poppins', sans-serif;
  text-align: left;
}

figure {
  width: 100%;
  margin: 0;
}

.banner {
  width: 100%;
  max-width: 100%;
  height: auto;
}

main {
  margin: 0 0%;
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
}

h1 {
  margin: 3% 10%;
  font-family: 'Poppins', sans-serif;
  display: flex;
  align-self: flex-start;
  color: #F4F0EC;
  font-size: 50px;
  font-weight: 700;
}

.contenedor_juegos {
  margin: 0px 10%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  row-gap: 50px;
  column-gap: 50px;
}

section {
  opacity: 0;
  transform: translateY(30px);
  transition: all 1s ease-out;
  flex: 1 1 10%;
  background-color: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(10px);
  border: solid 2px rgba(244, 240, 236, 0.178);
  border-radius: 15px;
  display: flex;
  max-height: 200px;
  max-width: 600px;
  min-width: 550px;
  min-height: 235px;
  padding: 1% 0%;
}

section.aparecer {
  opacity: 1;
  transform: translateY(0);
}

.panel_img {
  padding: 0 2%;
  object-position: left center;
  max-width: 218px;
  min-width: 218px;
  max-height: 218px;
  min-height: 218px;
}

.panel_content {
  display: flex;
  flex-direction: column;
  gap: 0px;
  line-height: 23px;
}

h2 {
  color: #F4F0EC;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  object-position: top center;
  height: 5px;
}

p {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  color: #F4F0EC;
  max-width: 300px;
  text-align: justify;
  object-position: bottom center;
  line-height: 1.6;
}

button {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  object-position: bottom left;
  background-color: #D9352A;
  border: none;
  padding: 5px 10px;
  border-radius: 15px;
  width: 100%;
  cursor: pointer;
  text-align: center;
  box-sizing: border-box;
}

button:hover {
  background-color: #791e17;
}

.container2 {
  display: flex;
  flex-direction: column;
  position: relative;
  width: 100%;
  overflow: hidden;
  margin-top: 10%;
}

.sub-container2-1 {
  width: 100%;
  display: flex;
  position: absolute;
  margin: 0% 0%;
  -webkit-mask-image: linear-gradient(to bottom, #252525 0%, #252525 70%, transparent 98%, transparent 100%);
  -webkit-mask: cover;
  -webkit-mask-position: bottom;
}

.sub-container2-2 {
  display: flex;
  flex-direction: column;
  position: relative;
  width: 60%;
  margin: 35% 10%;
}

video {
  object-fit: cover;
  width: 100%;
}

.landscape-tittle2 {
  margin: 0 0%;
  max-width: none;
  min-height: none;
  min-width: none;
  max-height: none;
  font-size: 60px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  text-align: left;
}

.landscape-text2 {
  max-width: none;
  min-height: none;
  min-width: none;
  max-height: none;
  font-size: 20px;
  font-family: 'Poppins', sans-serif;
  text-align: justify;
}

.workers-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  row-gap: 20px;
  column-gap: 30px;
  background-color: #252525;
  margin: 0 0%;
  padding-left: 5%;
  padding-right: 5%;
  padding-bottom: 5%;
}

.p_equipo_tittle {
  background-color: #252525;
  display: block;
  width: 100%;
  max-width: 100%;
  font-size: 70px;
  text-align: left;
  margin-top: -30%;
  margin-bottom: -1%;
  padding-top: 5%;
  padding-bottom: 5%;
  padding-left: 10%;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
}

.container3 {
  width: 350px;
  background-color: #000000;
  border: solid 2px rgba(244, 240, 236, 0.1);
  border-radius: 10px;
  overflow: hidden;
  font-family: 'Poppins', sans-serif;
  color: #F4F0EC;
  margin-left: 1%;
}

.perfil_img {
  width: 100%;
  height: auto;
  display: block;
}

.perfil_padding_content {
  padding: 20px;
}

.perfil_name {
  margin: 0 0 60px 0;
  font-size: 28px;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
}

.content_perfil_cube {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.perfil_row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.perfil_label {
  background-color: #D9352A;
  color: white;
  padding: 2px 10px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 20px;
  white-space: nowrap;
  font-family: 'Poppins', sans-serif;
}

.perfil_data {
  font-size: 18px;
  line-height: 1.4;
  color: #F4F0EC;
  font-family: 'Poppins', sans-serif;
}

.perfil_social_media {
  display: flex;
  gap: 30px;
  margin-top: 15px;
  justify-content: center;
}

.perfil_social_media img {
  transform: scale(1.3);
  width: 25px;
  height: 25px;
  object-fit: contain;
  transition: transform 0.2s, filter 0.2s;
  filter: drop-shadow(0 0 1px #FFFFFF);
}

.perfil_social_media img:hover {
  transform: scale(1.7);
  filter: drop-shadow(0 0 3px #FFFFFF);
}

footer {
  background-color: #000000;
  margin-top: 3%;
  height: 100px;
  align-items: center;
  display: flex;
  width: 100;
  flex-direction: column;
}

.footer-p {
  align-self: center;
  font-family: 'Poppins', sans-serif;
}