/*-----------------------------------*\
  #RESET
\*-----------------------------------*/

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html:focus-within {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
  font-family: system-ui, sans-serif;
  background-color: #fff;
  color: #000;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

input,
button,
textarea,
select {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
}

button {
  cursor: pointer;
}

a {
  text-decoration: none;
  color: inherit;
}

ul,
ol {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 2px;
}

::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 10px;
}

/*-----------------------------------*\
  #BODY
\*-----------------------------------*/

body {
  display: flex;
  flex-direction: column;
  background-image: url("./assets/background.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  position: relative;
  filter: sepia(30%);
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: inherit;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  filter: blur(1px);
  z-index: -1;
  box-shadow: 0 0 1000px rgba(0, 0, 0, 0.9) inset;
}

main {
  display: flex;
  flex-direction: column;
  flex: 1 0 auto; 
  min-height: 0; 
}

#main-page {
  width: 100%;

  overflow: hidden;
}

.logo-section {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 5vh;
}

.logo {
  max-width: 350px;
  height: auto;
  padding: 0 20px;
}

.menu-section {
  color: #fff;
  display: flex;
  flex-grow: 1;
  align-items: center;
  justify-content: center;
}

.menu {
  display: flex;
  flex-direction: column;
  align-items: center;
}

a {
  background-image: url("./assets/btn-background.jpg");
  filter: sepia(80%);
  opacity: 80%;
  background-size: contain;
  background-repeat: no-repeat;
  font-family: 'Caudex', serif;
  font-size: 1.5rem;
  min-width: 220px;
  min-height: 50px;
  display: inline-block;
  text-align: center;
  line-height: 45px;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: all 0.3s ease-in-out;
  color: #c9c9c9;
  text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
  margin: 5px;
}

a::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgb(93, 8, 8), rgb(85, 16, 16));
  mix-blend-mode: lighten;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  z-index: -1;
  box-shadow: 0 0 15px rgba(255, 0, 0, 0.8), 0 0 30px rgba(255, 140, 0, 0.6);
}

a::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: rgba(255, 255, 255, 0.1);
  transform: rotate(45deg) translate(-100%, -100%);
  transition: transform 0.4s ease-in-out;
  z-index: 0;
}

a:hover {
  filter: sepia(60%);
  opacity: 100%;
  color: #fff;
  text-shadow: 0 0 10px #fff, 0 0 20px #ff0000;
  transform: scale(1.05);
  border: 1px solid red;
  box-shadow: 0 0 10px rgba(255, 0, 0, 0.7);
}

a:hover::before {
  opacity: 1;
}

a:hover::after {
  transform: rotate(45deg) translate(0%, 0%);
}

.footer {
  display: flex;
  justify-content: center;
}

.author {
  color: #fff;
  opacity: 15%;
  margin: 5px;
  font-family: 'Homenaje', 'serif';
  font-size: 1rem;
  text-align: center;
}

.content-page {
  display: flex;
  flex-grow: 1;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.swiper {
  width: 80%;
  height: 80%;
}

.swiper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: 0 0 500px rgba(0, 0, 0, 0.573) inset;
  z-index: 2;
  pointer-events: none;
}

.content-btn {
  margin-top: 20px;
}

@media (max-width: 767px) {
  body {
    min-height: calc(100vh - 52px);
    overflow-y: hidden;
  }
}

@media (min-width: 768px) {
  .swiper {
    width: 25%;
    height: 25%;
  }

  .logo-section {
    padding-top: 9vh;
  }
}



















