@charset "UTF-8";


@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Josefin+Sans:ital,wght@0,100..700;1,100..700&family=Urbanist:ital,wght@0,100..900;1,100..900&display=swap');


:root {   
  --fonte1: Verdana, Geneva, Tahoma, sans-serif;
  --fonte2: "Bebas Neue", serif;
  --fonte3: "Josefin Sans", serif;
  --fonte4: "Urbanist", serif;
}

html, body {
  height: 100%;
  margin: 0; 
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  display: flex;
  flex-direction: column;
  background-image: linear-gradient(to right, rgb(2, 2, 2), rgb(43, 19, 38));
  margin: 0;
  height: 100%;
  background-repeat:initial;
  background-size: 100%;
}

.content {
  display: flex;
  align-items: center; 
  gap: 20px; 
  max-width: 600px; 
  margin: 0 auto; 
  flex-grow: 1;
  min-height: 80vh;
  padding: 20px;
}

/* Estilo da barra de menu */
.menu {
  font-family: var(--fonte4);
}

/* Estilo dos links no menu */
.menu a {
  color: white;
  padding: 14px 20px;
  text-decoration: none;
  display: inline-block;
}

/* Estilo ao passar o mouse sobre os links */
.menu a:hover {
  background-color: #ddd;
  color: black;
}

/*Começo slider*/
.container-slider {
  display: flex;
  width: 100%;
  min-height: 100vh;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.container-images {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1400px;
}

.slider {
  opacity: 0;
  transition: opacity .2s;
  position: absolute;
  width: 100%;
  border-radius: 10px;
}

.on {
  opacity: 1;
}

#prev-button, #next-button {
  width: 30px;
  height: 30px;
  border: none;
  background-color: transparent;
  cursor: pointer;
}

#prev-button img, #next-button img {
  width: 100%;
  height: 100%;
}

#prev-button {
  transform: rotate(180deg);
}
  /*Fim sliders*/
  /*Informações*/
.mileena {
  float: left;
  margin-right: 15px;
}

.info {
  margin: 150px auto;
  width: 70%;
  font-family: var(--fonte4);
}

.lore {
  color: #fff;
  font-size: 20px;
  font-family: var(--fonte4);
  margin-top: 30px;
  margin-bottom: 30px;
}

.lore h2 {
  margin-top: 10rem;
}

.info h2{
  font-family: var(--fonte2);
  font-size: 60px;
}

.lore2 {
  color: #fff;
  font-size: 20px;
  font-family: var(--fonte4);
  text-align: right;
  margin-bottom: 30rem;
  margin-top: 20rem;
}

.lore2 h3 {
  margin-top: 10rem;
}

.mileena2 {
  float: right;
  margin-left: 15px;
  width: 400px;
  margin-bottom: 20rem;
}

.mileena3 {
  float: left;
  margin-right: 15px;
  margin-top: -150px;
}

.lore3 {
  color: #fff;
  font-size: 20px;
  font-family: var(--fonte4);
}

.icon {
  width: 50%;
  display: flex;
  justify-content: center;
  margin-top: 500px;
  margin-left: 450px;
}

.luta {
  padding: 30px;
  color: #fff;
  font-family: var(--fonte4);
}

.luta h2 {
  display: flex;
  text-align: center;
  font-family: var(--fonte2);
  font-size: 60px;
  margin-left: 64rem;
}

.main-text {
  padding: 20px 0;
  content: "";
  clear: both;
  display: table;
  font-size: 20px;
}

.main-text img {
  width: 500px;
}

.main-text .column {
  margin-left: 20px;
}

.column {
float: left;
width: 55%;
padding: 5px;
}

.main-text p {
  text-align: center;
}

  /*Começo rodapé*/
.interface{
  max-width: 1280px;
  margin: 0 auto;
}

footer {
  background-color: black;
  color: #fff;
  padding: 40px 0;
  font-family: var(--fonte3);
}

footer .line-footer1 {
  text-align: center;
  border-bottom: 1px solid #fff;
  padding-bottom: 20px;
}

.line-footer1 h2 {
  font-family: var(--fonte4);
}

.line-footer1 p {
  font-size: 1rem;
  margin: 0 0 10px 0;
}

footer .line-footer2 {
  padding: 40px 0;
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #fff;
}

footer .line-footer2 .box-line-footer {
  max-width: calc(100% / 5);
}

footer .box-line-footer img {
  max-width: 100px;
  margin-bottom: 10px;
}

.line-footer2 .box-line-footer h3 {
  color: #fff;
  margin-bottom: 10px;
}

.line-footer2 .box-line-footer a {
  color: rgb(114, 7, 114);
  display: block;
  margin-bottom: 10px;
  text-decoration: none;
  font-size: 16px;
}

footer .line-footer3 {
  padding-top: 20px;
  text-align: center;
}
/*Fim rodapé*/
