/* RESET */

* {
  box-sizing: border-box;
}

html {
  margin: 0;
  padding: 0;
}

body {
  margin: 0;
  padding: 0;
  background: #ffffff;
  color: #333333;
  font-family: Arial, Helvetica Neue, Helvetica, sans-serif;
  line-height: 1.6;
}


/* IMAGES */

img {
  max-width: 100%;
  height: auto;
  display: block;
}


/* LINKS */

a {
  color: inherit;
}


/* MAIN */

#main-content {
  width: 100%;
}


/* HOME HERO */

.home-hero {
  position: relative;
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
}

.home-hero-image {
  width: 100%;
  height: auto;
}

.home-hero-text {
  position: absolute;
  right: 40px;
  bottom: 40px;
  background: rgba(255,255,255,0.35);
  padding: 16px 22px;
}

.home-hero-text p {
  margin: 0;
  font-size: 17px;
}





/* SITE HEADER */

.site-header {
  text-align: center;
  padding: 55px 20px 28px;
  background: #ffffff;
}

.site-logo {
  display: inline-block;
  margin-bottom: 45px;
}

.site-logo img {
  width: 450px;
  height: auto;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 44px;
  font-family: Arial, Helvetica Neue, Helvetica, sans-serif;
  font-size: 14px;
  letter-spacing: 0.04em;
}

.site-nav a {
  color: #555555;
  text-decoration: none;
}

.site-nav a:hover {
  text-decoration: underline;
}




/* HOME SOCIAL */

.home-social {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  padding: 42px 20px 24px;
}

.home-social a {
  transition: opacity 0.2s ease;
}

.home-social a:hover {
  opacity: 0.75;
}

.home-social img {
  width: 52px;
  height: 52px;
}




/* HOME INTRO */

.home-intro {
  padding: 10px 20px 80px;
}

.home-intro {
  max-width: 1920px;
  margin: 0 auto;
  padding: 10px 20px 80px;
}
}

.home-intro p {
  margin: 0 0 24px;
  font-size: 16px;
  line-height: 1.9;
  color: #444444;
}







/* CONTACT */

  .contact-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    font-family: Arial, sans-serif;
    padding: 20px;
	margin-top: 80px;
  }

  .contact-image {
    max-width: 100%;
    width: 460px;
    margin-bottom: 20px;
  }

  .contact-info {
    max-width: 100%;
    width: 256px;
    display: flex;
    flex-direction: column;
    margin-left: 0;
  }

  .contact-title {
    font-size: 16px;
    font-weight: thin;
    margin-bottom: 20px;
    margin-top: 40px;
    padding-left: 6px;
  }

  .contact-link {
    display: flex;
    align-items: flex-start;
    text-decoration: none;
    color: inherit;
    margin-bottom: 15px;
  }

  .contact-link .desc {
    width: 190px;
    padding-left: 0;
    text-align: left;
  }
  .contact-link img {
    width: 50px;
    height: 50px;
    margin-right: 10px;
	object-fit: contain;
  }


  @media (min-width: 700px) {
    .contact-section {
      flex-wrap: nowrap;
      align-items: flex-start;
    }

    .contact-info {
      margin-left: 40px;
    }
  }





/* SITE FOOTER */

.site-footer {
  background: #f5f5f5;
  padding: 32px 20px;
}

.site-footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

.site-footer-address {
  font-size: 14px;
  line-height: 1.7;
  color: #666666;
}

.site-footer-address p {
  margin: 0;
}

.site-footer-logo img {
  width: 190px;
  height: auto;
}

@media (max-width: 700px) {
  .site-footer-inner {
    display: block;
    text-align: center;
  }

  .site-footer-logo {
    margin-top: 24px;
  }

  .site-footer-logo img {
    margin: 0 auto;
  }
}





/* MEDIA */

@media (max-width: 700px) {

  .site-header {
    padding: 42px 18px 28px;
  }

  .site-logo {
    margin-bottom: 36px;
  }

  .site-logo img {
    width: 340px;
  }

  .site-nav {
    gap: 28px;
    font-size: 15px;
    letter-spacing: 0.08em;
  }

  .home-hero-text {
    left: auto;
    right: 24px;
    bottom: 42px;
    padding: 12px 16px;
    text-align: left;
    background: rgba(255,255,255,0.28);
  }

  .home-hero-text p {
    font-size: 16px;
    line-height: 1.4;
  }

.home-intro {
  padding: 0 24px 56px;
}

.home-intro p {
  font-size: 16px;
  line-height: 1.85;
}

  .site-footer {
    padding: 44px 20px 56px;
  }

  .site-footer-address {
    font-size: 16px;
    line-height: 1.7;
  }

  .site-footer-logo img {
    width: 160px;
  }
}




/* PAGE DIVIDER */

.page-divider {
  max-width: 1920px;
  margin: 0 auto;
  border-bottom: 1px solid #e9e9e9;
}



/* PAGE HEADER */

.page-header {
  max-width: 1920px;
  margin: 0 auto;
  padding: 54px 20px 10px;
}

.page-header-content {
  max-width: 840px;
  margin: 0 auto;
}

.breadcrumb {
  margin-bottom: 22px;
  font-size: 16px;
  color: #666666;
}

.breadcrumb a {
  color: #666666;
  text-decoration: none;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.page-header h1 {
  margin: 0 0 22px;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.25;
  color: #222222;
}

.page-header p {
  margin: 0;
  font-size: 16px;
  line-height: 1.9;
  color: #444444;
}



/* CONTENT SECTION */

.content-section {
  max-width: 1920px;
  margin: 0 auto;
  padding: 10px 20px 0px;
}

.content-section-content {
  max-width: 840px;
  margin: 0 auto;
}

.content-section p {
  margin: 0 0 28px;
  font-size: 16px;
  line-height: 1.9;
  color: #444444;
}

.content-section h2 {
  margin: 54px 0 22px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.35;
  color: #222222;
}




/* BLOG */

.blog-feature-image {
  max-width: 840px;
  margin: 20px auto 0px;
}

.blog-feature-image img {
  width: 100%;
  height: auto;
  display: block;
}

.blog-list-item p {
  margin-bottom: 22px;
}

.blog-article-image {
  max-width: 840px;
  margin: 26px auto -10px;
  box-sizing: border-box;
}

.blog-article-image img {
  width: 100%;
  height: auto;
  display: block;
}

.blog-article-image figcaption {
  font-size: 14px;
  font-style: italic;
  margin-top: 8px;
  color: #666;
}


.blog-article-image-middle {
  max-width: 840px;
  margin: 32px auto 24px;
}

.blog-article-image-middle img {
  width: 100%;
  height: auto;
  display: block;
}

.blog-article-image-middle figcaption {
  font-size: 14px;
  font-style: italic;
  margin-top: 8px;
  color: #666;
}


.blog-related-links {
  max-width: 840px;
  margin: 50px auto 0;
  box-sizing: border-box;
}

.blog-related-links-title {
  font-size: 16px;
  margin-bottom: 18px;
}

.blog-related-links a {
  display: block;
  margin-bottom: 14px;
  text-decoration: underline;
  line-height: 1.5;
}



@media (max-width: 900px) {
  
  .blog-article-image {
    padding: 0 18px;
  }

  .blog-article-image-middle {
    padding: 0 0;
  }

.blog-related-links a {
  font-size: 16px;
  line-height: 1.45;
  display: block;
}
  
  .blog-related-links {
  padding: 0 18px;
}

}




/* BLOG OLD ARTICLES */

.desc {
  font-family: Arial, Helvetica Neue, Helvetica, sans-serif;
  font-weight: thin;
  font-size: 14px;
  line-height: 1.8;
  max-width: 840px;
  margin: 0 auto;
  padding-left: 20px; /* Adicionando espaço à esquerda */
  padding-right: 20px; /* Adicionando espaço à direita */
}



