@import url(../fonts/stylesheet.css);

body {
  font-family: 'avenirbook', sans-serif;
  margin: 0;
  padding: 0;
  height: 100%;
  background-color: #d5d3d1;
  color: #231f20;
}

strong{
  font-family: 'avenirblack', sans-serif;
}

a {
  text-decoration: none;
}

img{
  max-width: 100%;
}

.w-full{
  width: 100%;
}

main {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100vh;
}

.page-banner {
  position: relative;
  background: url('../images/banner.jpg') no-repeat scroll right top transparent;
  width: 100%; 
  padding-top: 120px;
  padding-bottom: 10px;
}

.box-text {
  text-align: left;
  position: relative;
  z-index: 100;
}

.box-text h1 {
  font-size: 38px;
  margin-top: 100px;
  margin-bottom: 20px;
  color: #FFF;
  font-weight: normal;
}

.box-text h1 strong {
  font-size: 42px;
}

.logos{
  background-color: #383838;
  padding: 10px 0;
  position: relative;
  z-index: 100;
}

.logo-flex{
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.text{
  font-size: 20px;
}

.social-media {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.banner-lente{
  display: none;
}


/* Estilos responsivos */
@media (max-width: 768px) {
  .social-media p{
    width: 100%;
  }

  .page-banner{
    padding-bottom: 0;
  }

  .box-text {
    text-align: center;
  }

  .box-text h1{
    margin-bottom: 100px;
  }

  .social-media {
    margin-top: 30px;
    display: block;
    text-align: center;
  }

  .logo-flex{
    flex-direction: column;
    gap: 20px;
    padding: 10px 0;

  }

  br{
    display: none;
  }

  .container{
    width: auto !important;
  }
}

@media (max-width: 1200px) {
  .page-banner{
    background-image: url('../images/banner_mobile.jpg') !important;
  }

  .banner-lente{
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background-color: #0000008a;
  }

  .box-text h1 {
    font-size: 3.5rem;
    letter-spacing: -1px;
    line-height: normal;
  }
}


@media (min-width: 1201px) and (max-width: 1440px) {
  .social-media {
    right: 20px;
    top: 20px;
  }
}


/*==========CONTAINER =========*/
.container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}

@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}

@media (min-width: 1400px) {
  .container {
    max-width: 1320px;
  }
}
