/* Importando fonte Poppins do Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/* Definindo a fonte Yanone Kaffeesatz */
@font-face {
  font-family: 'Yanone Kaffeesatz';
  src: url('../fonts/YanoneKaffeesatz-Bold.ttf') format('truetype');
  font-weight: bold;
  font-style: normal;
}

/* Estilos globais */
body {
  margin: 0;
  padding: 0;
  font-family: 'Poppins', sans-serif;
  /* Para usar Yanone Kaffeesatz, descomente a linha abaixo */
  /* font-family: 'Yanone Kaffeesatz', sans-serif; */
}

/* Seções */
section {
  padding: 70px 0;
  overflow: hidden;
}

.overlay {
  position: absolute;
  width: 100%;
  min-height: 90vh;
  top: 0;
  left: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  transition: all 1s;
}

.img-linx {
  position: absolute;
  bottom: 0;
  right: 0;
}

/* Estilos da seção principal */
.main-section {
  color: #fff;
  height: 90vh;
  background-image: url("IMG_6547.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}


/* Responsividade para dispositivos pequenos */
@media (max-width: 440px) {
  .main-section {
    background-attachment: unset;
    background-image: url('homeMobileBackground.png');
  }
}

.main-section .container {
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.main-section h1 {
  font-size: 3rem;
  text-align: center;
  font-weight: 700;
}

.main-section h1 span {
  font-size: 3rem;
}

/* Responsividade para h1 */
@media (max-width: 768px) {

  .main-section h1,
  .main-section h1 span {
    font-size: 2rem;
  }
}

.main-section h1 strong {
  color: #ea5e2d;
}

.main-section img {
  max-width: 100%;
}

/* Responsividade para img */
@media (max-width: 998px) {
  .main-section img {
    text-align: center;
  }
}

.cadastre-se-btn {
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
}

/* Botões */
.btn {
  display: flex;
  cursor: pointer;
  transition: 0.3s;
}

/* Seção 2 */
.section2 {
  display: flex;
  position: relative;
  align-items: center;
  background-image: url("bg-section-2.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  flex-direction: column;
}

.section2 .header {
  margin-bottom: 50px;
  text-align: center;
}

.section2 .header h1 {
  font-size: xx-large;
  color: #4a433e;
}

.section2 .footer {
  margin-top: 50px;
}

.section2 .container {
  display: flex;
  flex-direction: row;
}

.section2 .mini-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 33%;
}

@media (max-width: 568px) {
  .section2 .mini-section {
    width: 100%;
    margin-bottom: 10px;
  }

  .section2 .container {
    display: flex;
    flex-direction: column;
  }
}

.section2 .mini-section img {
  width: 30%;
}

.section2 .mini-section span {
  text-align: center;
  max-width: 300px;
}

.section2 .mini-section h1 {
  font-size: large;
  margin-bottom: 20px;
  text-align: center;
}

/* Adicionando bordas entre mini-seções */
.section2 .mini-section:nth-child(1),
.section2 .mini-section:nth-child(2) {
  border-right: 2px solid #000;
}

/* Footer */
.footer-container {
  padding-top: 70px;
  background: rgb(43, 42, 42);
}

.footer-container .footer-list {
  color: #fff;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  justify-content: center;
  gap: 1.2rem;
  list-style: none;
}

.footer-container .footer-list .logo {
  max-width: 200px;
  filter: brightness(0) invert(1);
}

/* Links do footer */
.footer-container .footer-list li .link {
  color: #fff;
  text-decoration: none;
  transition: 0.3s ease;
}

.footer-container .footer-list li .link:hover {
  text-decoration: underline;
  color: rgb(182, 181, 181);
}

/* Footer copyright */
.footer-container .footer-copyright {
  font-size: 18px;
  color: #888;
  padding: 20px 0;
}

/* Responsividade no footer */
@media (max-width: 768px) {
  .footer-container .footer-list {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-container .footer-copyright {
    text-align: center;
  }
}

/* Botão genérico */
.generic-button {
  border: none;
  outline: none;
  color: #fff;
  background-image: linear-gradient(90deg, #ea5e2d, #f7902f);
  padding: 20px;
  border-radius: 4px;
  width: 200px;
  cursor: pointer;
  transition: 0.5s ease;
  white-space: nowrap;
}

.generic-button.fWidth {
  width: 100%;
}

.generic-button.white {
  background: #fff;
  color: #ea5e2d;
}

.generic-button:hover {
  transform: scale(0.95);
  color: #000;
}

/* Container padrão */
.container {
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 768px) {
  .container {
    width: 750px;
  }
}

@media (min-width: 992px) {
  .container {
    width: 970px;
  }
}

@media (min-width: 1200px) {
  .container {
    width: 1170px;
  }
}

.inside-list {
  list-style: none;
  margin-left: -35px;
}