/* Reset */
@font-face {
    font-family: 'GT-America-Medium'; 
    src: url('fonts/GT-America-Medium.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  height: 100%;
  font-family:'GT-America-Medium', sans-serif;
  color: #fff;
  overflow: hidden;
}

/* Slider */
.slider {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}

.slide.active {
  opacity: 1;
}

/* Fondo versión desktop */
.slide:nth-child(1) { background-image: url('../img/fondo1.jpg'); }
.slide:nth-child(2) { background-image: url('../img/fondo2.jpg'); }
.slide:nth-child(3) { background-image: url('../img/fondo3.jpg'); }
/* Logos */

.logo-container {
  position: relative;
  width: 400px;
  height: 300px;
}



/* Overlay contenido */
.overlay {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: rgba(0,0,0,0.4);
  padding: 20px;
}

.content h1 {
  font-size: 3rem;
  font-weight: bold;
}

.content p {
  font-size: 17px;
  font-family:'GT-America-Medium', sans-serif;
  margin-bottom: 20px;
  color: #ffffff;
  text-decoration: none;
}



.logo {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.logo.active {
  opacity: 1;
}

/* Footer */
footer {
  position: absolute;
  bottom: 20px;
  font-size: 0.9rem;
  line-height: 1.4;
	width: 470px;
}
/* Fondo versión mobile */
@media (max-width: 768px) {
  .slide:nth-child(1) { background-image: url('../img/fondo1-mobile-opt.jpg'); }
  .slide:nth-child(2) { background-image: url('../img/fondo2-mobile-opt.jpg'); }
  .slide:nth-child(3) { background-image: url('../img/fondo3-mobile-opt.jpg'); }
	/* Logos */
.logo-container {
  position: relative;
  width: 250px;
  height: 250px;}
	/* Footer */
footer {
  position: absolute;
  bottom: 20px;
  font-size: 0.9rem;
  line-height: 1.4;
	width: 100%;
padding: 10px;
}
}
@media (max-width: 480px) {
  .slide:nth-child(1) { background-image: url('../img/fondo1-mobile-opt.jpg'); }
  .slide:nth-child(2) { background-image: url('../img/fondo2-mobile-opt.jpg'); }
  .slide:nth-child(3) { background-image: url('../img/fondo3-mobile-opt.jpg'); }
	/* Logos */
.logo-container {
  position: relative;
  width: 250px;
  height: 250px;
	}
	/* Footer */
footer {
  position: absolute;
  bottom: 20px;
  font-size: 0.9rem;
  line-height: 1.4;
	width: 100%;
padding: 10px;
}
}
