/* ===== FUENTES ===== */
@font-face {
  font-family: tts;
  src: url(../fonts/tts/TT\ Lakes\ Neue\ Trial\ Compressed\ ExtraBold.ttf);
}

@font-face {
  font-family: PT_Serif;
  src: url(../fonts/PT_Serif/PTSerif-Regular.ttf);
}

@font-face {
  font-family: rubik;
  src: url(../fonts/rubik/Rubik-Regular.ttf);
}

@font-face {
  font-family: rubik-bold;
  src: url(../fonts/rubik/Rubik-Bold.ttf);
}
.loadingScreen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 1);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}
.loadingScreen img {
  width: 100%;
  max-width: 600px;
  height: auto;
  animation: brillocarga 1.5s ease-in-out infinite;
}
/* ===== RESET Y ESTILOS BASE ===== */
body {
  font-family: rubik;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
  background-color: #f9f9f9;
}


/* ===== HEADER PRINCIPAL ===== */
#main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: white;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
background-color: rgba(0, 0, 0, 0.2);
  overflow: hidden;
  height: 100vh;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

#main-header.visible {
  opacity: 1;
  transform: translateY(0);
}

#main-header video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}


#main-header::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: black;
  opacity: var(--after-opacity, 0.6); 
  pointer-events: none;
  z-index: 1;
  transition: opacity 0.3s ease;
}


.logo{
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 999 !important;
}

.logo i{
  text-align: center;
  opacity: 0 !important;
  transition: opacity 2s ease-in-out;
  color: white;
  font-size: 20px;
  
  
}
.logo img {
  height: 150px;
  transition: height 0.5s ease;
  max-width: 500px;
  width: auto;
   margin-top: 25px;
  margin-bottom: 50px;
}
#logo-img {
  opacity: 0;
  transition: opacity 2s ease-in-out;
}
.logo i.fade-in{
  opacity: 1 !important;
}


#logo-img.fade-in {
  opacity: 1;
}

/* ===== SECCIÓN DE CONTENIDO PRINCIPAL ===== */
.contenido {
  max-width: 1500px;
  padding: 10px;
  margin: 40vh auto 0;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.contenido.visible {
  opacity: 1;
  transform: translateY(0);
}

.titulo {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.titulo.visible {
  opacity: 1;
  transform: translateY(0);
}

.titulo h1 {
  font-size: 2.5rem;
  text-align: center;
  margin: 60px 0 30px;
  color: #0b75ea;
  position: relative;
  display: inline-block;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.titulo h1::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  width: 60%;
  height: 4px;
  background-color: #353a41;
  transform: translateX(-50%);
  border-radius: 2px;
}

/* ===== SECCIÓN QUIÉNES SOMOS ===== */
.quienesomos {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: start;
  gap: 40px;
  margin: 80px 0;
}


.texto {
  text-align: justify;
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  padding: 20px;
  border-radius: 8px;
  max-width: 100%;
  position: relative;
  overflow: hidden;
  font-family: rubik;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.texto.visible {
  opacity: 1;
  transform: translateY(0);
}

.texto::before,
.texto::after {
  content: '';
  position: absolute;
  background: #0b75ea;
  z-index: 2;
  opacity: 0;
}

.texto::before {
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
}

.texto::after {
  top: 0;
  right: 0;
  width: 3px;
  height: 0;
}

.texto.visible.horizontal::before {
  animation: drawHorizontal 1.2s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

.texto.visible.vertical::after {
  animation: drawVertical 1.2s cubic-bezier(0.23, 1, 0.32, 1) forwards;
  animation-delay: 0.6s;
}

.texto strong {
  color: #0b75ea;
  font-family: rubik-bold;
}

.flecha {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 80%;
  opacity: 0;
}

.flecha img {
  width: 300px;
  height: auto;
  opacity: 0;
  
}

/* ===== GALERÍA DE IMÁGENES ===== */

.quienesomos .slider {
  display: flex;
  transition: transform .6s ease-in-out;

}



.quienesomos .slider img {
  flex: 0 0 100%;
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.quienesomos .slider-wrapper {
  position: relative;
  overflow: hidden;
  width: 100%;
  border-radius: 12px;
  margin-top: 100px;
}

.quienesomos .slider-nav {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  pointer-events: auto;
}

.quienesomos .slider-nav a {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .55);
  transition: background .3s;
}

.quienesomos .slider-nav a.active,
.quienesomos .slider-nav a:hover {
  background: #0b75ea;
}




/* ===== SECCIÓN "SIGUE VIENDO" ===== */
.siganviendo {
  width: 100%;
  position: fixed;
  bottom: 0;
  left: 0;
  height: auto;
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: floating 5s cubic-bezier(0.37, 0, 0.63, 1) infinite;
  flex-direction: column;
  z-index: 10;
}

.siganviendo img {
  width: 50px;
  height: auto;
  margin-bottom: 20px;
}

/* ===== SECCIÓN DE CUBOS ===== */
.cubos {
  display: flex;
  flex-direction: row;
  gap: 20px;
}

.cubo {
  height: 300px;
  width: 100px;
  top: 20px;
  border-radius: 5px;
  border: 1px solid black;
  position: relative;
  background-color: white;
  -webkit-animation-name: pulse;
  animation-name: pulse;
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  opacity: 0;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

.cubo-contenedor:nth-child(1) .cubo {
  animation-delay: 1.5s;
}

.cubo-contenedor:nth-child(2) .cubo {
  animation-delay: 2s;
}

.cubo-contenedor:nth-child(3) .cubo {
  animation-delay: 2.5s;
}

.cubo-contenedor:nth-child(4) .cubo {
  animation-delay: 3s;
}

.cubo-contenedor {
  transition: 0.3s;
}

.cubo-contenedor:hover {
  transform: scale(1.5);
  cursor: pointer;
  z-index: 999;
}

/* ===== SECCIÓN DE PERIÓDICOS ===== */

.grid-periodicos {
  display: grid;
  gap: 20px;
  max-width: 1250px; 
  margin: 0 auto;
  grid-template-columns: repeat(3, 1fr); 
}

.grid-periodicos2 {
  display: grid;
  gap: 20px;
  max-width: 850px; 
  margin: 0 auto;
  grid-template-columns: repeat(2, 1fr); 
}




.periodico-card {
   padding: 40px;
  text-align: center;
  perspective: 1000px;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.periodico-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.card-inner {
  position: relative;
  width: 100%;
  height: 340px;

  transition: transform 0.6s;
  transform-style: preserve-3d;
}

.periodico-card:hover .card-inner {
  transform: rotateY(180deg);
}

.card-front,
.card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 16px;
  backface-visibility: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: white;
  padding: 30px;
  box-sizing: border-box;
}

.card-back {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}


.card-front img {
  height: 100px;
  max-width: 100%;
  object-fit: contain;
  margin-top: 20px;
}



.card-back {
  transform: rotateY(180deg);
  text-align: center;
   pointer-events: auto;
  z-index: 2;
}

.card-back p {
  font-size: 17px;
  color: #333;
  font-family: 'PT_Serif';
  line-height: 1.6;
}

.periodico-card {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.periodico-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.card-front,
.card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 16px;
  backface-visibility: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
  box-sizing: border-box;
  color: white;
  background-image: var(--bg-front);
  
}

.card-front::after,
.card-back::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 16px;
  background-size: cover;
  background-position: center;
  background-color: rgba(0, 0, 0, 0.5);
  pointer-events: none !important;
  z-index: 1 !important;
}

.card-back {
  transform: rotateY(180deg);
  background-image: var(--bg-back);
  
}

.overlay-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  width: 100%;
  z-index: 2;
  position: relative;
  pointer-events: auto;
  padding: 20px;
  box-sizing: border-box;
}
.overlay-content img {
  height: 175px;
  object-fit: contain;

}

.overlay-content h3 {
  font-size: 20px;
  margin: 0;
  font-family: 'rubik';
  color: #fff;
}

.overlay-content p {
  font-size: 16px;
  color: #f0f0f0;
  margin-bottom: 20px;
}

.ver-mas-btn {
  display: inline-block;
  background: #0b75ea;
  color: white;
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
  font-family: 'PT_Serif';
   z-index: 10000 !important;
}

.ver-mas-btn:hover {
  background: #0956b3;
}


/* ===== EVENTOS===== */
.cards-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 100px;
  padding: 20px;
  max-width: 1200px;
  margin: auto;
  animation: fadeInDownSlow 1s cubic-bezier(.23, 1, .32, 1) forwards;
}


.evento-card {
  width: 100%;
  height: 200px;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  transition: all 0.5s ease;
  cursor: pointer;
  position: relative;
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
opacity: 0;
transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;


}



.evento-card:not(.expanded)::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
  border-radius: 16px;
}

.logo {
  max-height: 100px;
  transition: all 0.3s ease;
}


.evento-card:not(.expanded) .logo {
  position: static;
  margin-bottom: 1rem;
  z-index: 2;


}

.evento-card:not(.expanded) .descripcion {
  display: none;
}

.e1 {
  background-image: url(../img/libros.png);
}

.e2 {
  background-image: url(../img/editada.png);
}

.e2 .logo {
  max-height: 70px;
}
.e3 {
  background-image: url(../img/padel.png);
}

.e4 {
  background-image: url(../img/gofl.png);
}

.e5 {
  background-image: url(../img/saludyempresa.png);
}

.e6 {
  background-image: url(../img/goflito.png);
}

.e6 .logo {
  max-height: 200px;
}
.e7 {
  background-image: url(../img/hriss.png);
}

.e8 {
  background-image: url(../img/compoesa.png);
}

.e9 {
  background-image: url(../img/compensacio.png);
}

.e10 {
  background-image: url(../img/comoseve.png);
}

.e11 {
  background-image: url(../img/awards.png);
}

.e12 {
  background-image: url(../img/ech.png);
}


.evento-card.expanded .logo {
  position: absolute;
  top: 1rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  opacity: 1;
  pointer-events: none;
  background: rgba(0, 0, 0, 0.9);
  padding: 0.5rem 1rem;
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.slider-container {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
  width: 100%;
  position: relative;
}

.slider2 {
  display: flex;
  /* width: 300%; */
  height: 100%;
  transition: transform 0.5s ease;
}

.slider2 img {
  width: 100%;
  height: 200px;
  object-fit: contain;
  flex: 0 0 100%;
  border-radius: 12px;
}

.evento-card.expanded .slider-container {
  max-height: calc(100vh - 200px);
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1;
}

.evento-card.expanded .slider2 {
  height: 100%;
}

.evento-card.expanded .slider2 img {
  height: 100%;
  border-radius: 16px;
}

.descripcion {
  text-align: center;
  font-size: 1.2rem;
  color: #444;
  margin: 0.5rem;
}

.evento-card.expanded {
  position: fixed;
  top: 8%;
  left: 15%;
  transform: translate(-50%, -50%);
  width: 90vw;
  max-width: 1500px;
  height: auto;
  max-height: 90vh;
  z-index: 9999;
  background: white;
  display: flex;
  flex-direction: column;
  padding: 2rem 1.5rem;
  align-items: center;
  justify-content: flex-start;
  overflow: auto;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);

}

.nav-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  font-size: 2rem;
  padding: 0.5rem 1rem;
  cursor: pointer;
  z-index: 10;
  user-select: none;
  height: 100%;
}

.nav-left {
  left: 0px;
}

.nav-right {
  right: 0px;
}

.evento-card.entrada-izquierda {
  opacity: 1;
  animation: slideInLeftSlow 1s cubic-bezier(.23, 1, .32, 1) forwards;
}


.evento-card.entrada-cascada {
  opacity: 1;
  transform: translateY(0);
  animation: fadeInDownSlow 1s cubic-bezier(.23, 1, .32, 1) forwards;
}


/* ===== SECCIÓN DE CONTACTO ===== */
.contacto {
  display: flex;
  flex-wrap: nowrap;
  gap: 80px;
  justify-content: center;
  align-items: flex-start;
  margin: 60px auto;
  max-width: 100%;
  box-sizing: border-box;
  overflow-x: hidden;
  background-color: #0b75ea;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  padding: 40px 20px;
  border-radius: 12px;
}

.contacto.visible {
  opacity: 1;
  transform: translateY(0);
}

.mapa {
  flex: 1 1 50%;
  max-width: 50%;
  min-width: 300px;
  height: 500px;
  border-radius: 12px;
  overflow: hidden;
  margin-top: 50px;
  border: none;
}

.formulario {
  flex: 1 1 50%;
  max-width: 30%;
  min-width: 300px;
  background: #ffffff;
  border-radius: 12px;
  padding: 50px 80px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  font-family: 'Roboto', sans-serif;
  box-sizing: border-box;
  animation: floating 5s cubic-bezier(0.37, 0, 0.63, 1) infinite;
  margin-bottom: 20px;
}

.formulario h1 {
  font-size: 28px;
  color: #0b75ea;
  text-align: center;
  margin-bottom: 30px;
  border-bottom: 2px solid #353a41;
  padding-bottom: 10px;
}

.formulario label {
  display: block;
  font-size: 16px;
  font-weight: 500;
  color: #333;
  margin-bottom: 8px;
  margin-top: 20px;
}

.formulario input,
.formulario textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 15px;
  transition: all 0.3s ease;
  outline: none;
  background: #f9f9f9;
}

.formulario input:focus,
.formulario textarea:focus {
  border-color: #0b75ea;
  background: #fff;
  box-shadow: 0 0 5px rgba(11, 117, 234, 0.3);
}

.formulario textarea {
  min-height: 140px;
  resize: vertical;
}

.formulario button {
  width: 100%;
  padding: 14px;
  margin-top: 30px;
  background-color: #0b75ea;
  color: white;
  font-size: 16px;
  font-weight: bold;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
}

.formulario button:hover {
  background-color: #0956b3;
  transform: scale(1.02);
}

/* ===== FOOTER ===== */
footer {
  background-color: #ffffff;
  color: #333;
  padding: 40px 20px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  border-top: 2px solid #f1f1f1;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}


footer.visible {
  opacity: 1;
  transform: translateY(0);
}

footer img {
  width: 200px;
  margin-bottom: 20px;
}

footer .izquierda,
footer .centro,
footer .derecha {
  flex: 1;
  min-width: 250px;
  padding: 10px;
}

footer h1 {
  font-size: 18px;
  font-weight: bold;
  color: #0b75ea;
  margin-bottom: 10px;
}

footer h3 {
  font-size: 14px;
  font-weight: normal;
  color: #777;
  margin-bottom: 5px;
}

footer a {
  color: #0b75ea;
  text-decoration: none;
  transition: color 0.3s ease;
}

footer a:hover {
  color: #ff6b6b;
}

footer .centro h1 {
  margin-top: 20px;
}

footer .izquierda,
footer .derecha {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

footer .centro {
  text-align: center;
}

.xd{
  margin-top: -15px;
  text-align: left;
}

.inferior{
  margin-top: -16px;
}

/* ===== ANIMACIONES ===== */
@keyframes floating {
  0% {
    transform: translate(0, 0);
  }

  50% {
    transform: translate(0, 5vh);
  }

  100% {
    transform: translate(0, 0);
  }
}

@keyframes drawHorizontal {
  0% {
    width: 0;
    opacity: 1;
  }

  100% {
    width: 100%;
    opacity: 1;
  }
}

@keyframes drawVertical {
  0% {
    height: 0;
    opacity: 1;
  }

  100% {
    height: 100%;
    opacity: 1;
  }
}

@keyframes evento-despliegue {
  0% {
    transform: translateY(40px) scale(0.95);
    opacity: 0;
    max-height: 0;
    filter: blur(2px);
  }

  70% {
    transform: translateY(-5px) scale(1.02);
    filter: blur(0);
  }

  100% {
    transform: translateY(0) scale(1);
    opacity: 1;
    min-height: 180px;
  }
}

@-webkit-keyframes pulse {
  0% {
    opacity: 0;
  }

  10% {
    opacity: .50;
    transform-origin: 50% 50%;
    transform: rotate(-2deg) scale(5);
    transition: all .3s cubic-bezier(0.6, 0.04, 0.98, 0.335);
  }

  100% {
    opacity: 1;
  }
}

@keyframes despliegue {
  0% {
    transform: scaleX(0);
    transform-origin: left;
    opacity: 0;
  }

  70% {
    opacity: 0.7;
  }

  100% {
    transform: scaleX(1);
    opacity: 1;
  }
}

@keyframes fadeInGrid {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}


@keyframes slideInLeftSlow {
  0% {
    opacity: 0;
    transform: translateX(-80px);
  }

  60% {
    opacity: .7;
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInDownSlow {
  0% {
    opacity: 0;
    transform: translateY(-40px);
  }

  60% {
    opacity: .7;
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes brillocarga {
  0% {
    filter: brightness(1.50);
  }

  50% {
    filter: brightness(1.0);
  }

  100% {
    filter: brightness(1.50);
  }
}
/* ===== MEDIA QUERIES ===== */

@media (max-width: 1024px) {


  .quienesomos {
    grid-template-columns: 1fr;
    gap: 20px;
    text-align: center;
  }

  .flecha {
    display: none;
  }

  .slider-wrapper img {
    height: 220px;
  }

  .evento-card {
    width: 100%;
  }

  .evento-card.expanded {
    width: 90vw;
    max-width: 1200px;
    height: auto;
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
  }
}

@media (max-width: 768px) {
  .titulo h1 {
    font-size: 1.8rem;
  }

  .texto {
    padding: 10px;
    font-size: 15px;
  }

  .grid-periodicos {
    padding: 30px 10px;
    gap: 20px;
  }

  .card-inner {
    height: 280px;
  }

  .overlay-content img {
    height: 60px;
  }

  .evento-card {
    border-radius: 10px;
  }

  .evento-slider .slider img {
    height: 300px;
  }

  .formulario {
    padding: 30px;
    max-width: 90%;
  }

  .mapa {
    max-width: 100%;
    height: 300px;
  }

  .contacto {
    flex-direction: column;
    gap: 40px;
    padding: 20px;
  }

  .evento-card.expanded {
    width: 95vw;
    max-width: 100%;
    height: auto;
    left: 0%;
    transform: translateX(-50%);
    padding: 1rem;
  }

  .evento-card:not(.expanded) .logo {
    max-width: 100%;
  }


}


@media (max-width: 480px) {
  .logo img {
height: 70px;
  }

  .slider-wrapper img {
    height: 180px;
  }

  .evento-header h3 {
    font-size: 1.2rem;
  }

  .evento-header p {
    font-size: 0.8rem;
  }

  .prev-btn,
  .next-btn {
    width: 30px;
    height: 30px;
    font-size: 20px;
  }

  .ver-mas-btn {
    padding: 8px 14px;
    font-size: 14px;
  }

  footer {
    flex-direction: column;
    text-align: center;
  }

  .evento-card.expanded {
    width: 95vw;
    max-width: 100%;
    height: 900px;
    top: 10%;
    left: 0%;
    transform: translateX(-50%);
    padding: 1rem;
  }
  .logo{
    max-width: 90%;
  }


}