/** 1. Base */
/** 2. Layout: l-; 2.1. Home */
/** 3. Componente: c-; 3.1. Slider */
/** 4. Paginas: p- */

/** 1. Base */

body {
  background-color: var(--color-secondary);
}

@media (min-width: 991px) {
	body {
    background: var(--color-secondary) url(../images/background/bkg_home.jpg) no-repeat scroll right center;
    background-size: 60%;
  }
}

@media (min-width: 1440px) {
	body {
    background: var(--color-secondary) url(../images/background/bkg_home.jpg) no-repeat scroll right top;
    background-size: auto;
  }
}

/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++ */

/** 2. Layout */

.l-page {
  display: flex;
  flex-flow: column;
  justify-content: center;
}

.l-page::before {
  display: none;
}

.l-page__content {
  margin: auto 0;
}

.l-page__container {
  max-width: 138rem;
  width: 92%;
}

.l-page__info {
  margin-top: auto;
  padding: 2rem 0;
}

.l-page__info p {
  color: #ffffff;
  font-size: 1.2rem;
  text-align: center;
}

.l-header {
  background-color: transparent;
}

.l-header__top {
  background-color: var(--color-secondary);
}

.l-header__logo {
  width: 10rem;
}

@media (min-width: 991px) {
  .l-header__logo {
    width: 12rem;
  }
}

/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++ */

/** 4. Pagina */

.p-home__content {
  display: flex;
  flex-flow: column;
  gap: 2rem;
  justify-content: flex-start;
  margin: 0;
  max-width: 39.1rem;
  width: 100%;
}

.p-home__content h1,
.p-home__content h1 img {
  width: 100%;
}

.p-home__content p {
  color: #ffffff;
  font-size: 1.8rem;
}