/* 
Importa la fuente Anton
*/
@import url('https://fonts.googleapis.com/css2?family=Anton&display=swap');

/* 
Fondo general
*/
.inicio-header,
.volver-contenedor,
.contacto-principal {
  position: relative;
  z-index: 2;
}

body {
  font-family: 'Anton', sans-serif;
  margin: 0;
  padding: 0;
  min-height: 100vh;
  background: url('/img/fondo3.png') no-repeat center center fixed;
  background-size: cover;
  position: relative;
  overflow-x: hidden;
}

/* 
Capa de transparencia
*/
body::after {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: rgba(0, 0, 0, 0);
    z-index: 0;
  }
  
  /* 
  Animación de planeo suave en inicio 
  */
  .animacion-inicio {
    animation: deslizar 1s ease forwards;
  }
  
  /* 
  Definición de la animación deslizar
  */
  @keyframes deslizar {
    0% {
      transform: translateY(100px);
      opacity: 0;
    }
    100% {
      transform: translateY(0);
      opacity: 1;
    }
  }
  
  /* 
  HEADER: Encabezado principal (logo + horarios)
  */
  .inicio-header {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 2rem 1rem;
  }
  
  /* 
  Imagen del logo 
  (ATENCIÓN: corregí tu selector porque tenías mal ".LOGOT.img", que no aplicaba)
  */
  .logo-img {
    width: 30%;
    height: auto;
    margin-bottom: 1rem;
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
  

/* 
Botón de volver centrado
*/
.volver-contenedor {
  display: flex;
  justify-content: center;
  margin: 2rem 0;
}

.boton-volver {
  background-color: #ffffff;
  color: #000000;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.8rem;
  padding: 1rem 3rem; /* Más ancho */
  border-radius: 30px;
  border: 3px solid #000000;
  transition: 0.3s ease;
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.4);
}

.boton-volver:hover {
  background-color: #ffffff;
  color: rgb(255, 0, 0);
  transform: scale(1.05);
}

/* 
Sección principal
*/
.contacto-principal {
  text-align: center;
  padding: 2rem;
}

.contacto-principal h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
}

/* 
Columna de botones de redes
*/
.redes-column {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.boton-red {
  background-color: #ffffff;
  color: #333;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.5rem;
  padding: 1rem 2rem;
  border-radius: 20px;
  border: 3px solid #000000;
  transition: all 0.3s ease;
  width: 300px; /* Más anchos y accesibles */
  text-align: center;
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.5);
}

.boton-red:hover {
  background-color: #ff0000;
  color: white;
  transform: scale(1.05);
}
