/*!
Theme Name: topico-dev
Theme URI: http://underscores.me/
Author: Underscores.me
Author URI: http://underscores.me/
Description: Description
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: topico
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

topico is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Generic
	- Normalize
	- Box sizing
# Base
	- Typography
	- Elements
	- Links
	- Forms
## Layouts
# Components
	- Navigation
	- Posts and pages
	- Comments
	- Widgets
	- Media
	- Captions
	- Galleries
# plugins
	- Jetpack infinite scroll
# Utilities
	- Accessibility
	- Alignments

--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Layouts
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Components
--------------------------------------------------------------*/

/* Navigation
--------------------------------------------- */
.main-navigation {
  display: block;
  width: 100%;
}

.main-navigation ul {
  display: none;
  list-style: none;
  margin: 0;
  padding-left: 0;
}

.main-navigation ul ul {
  box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
  float: left;
  position: absolute;
  top: 100%;
  left: -999em;
  z-index: 99999;
}

.main-navigation ul ul ul {
  left: -999em;
  top: 0;
}

.main-navigation ul ul li:hover>ul,
.main-navigation ul ul li.focus>ul {
  display: block;
  left: auto;
}

.main-navigation ul ul a {
  width: 200px;
}

.main-navigation ul li:hover>ul,
.main-navigation ul li.focus>ul {
  left: auto;
}

.main-navigation li {
  position: relative;
}

.main-navigation a {
  display: block;
  text-decoration: none;
}

/* Small menu. */
.menu-toggle,
.main-navigation.toggled ul {
  display: block;
}

@media screen and (min-width: 37.5em) {
  .menu-toggle {
    display: none;
  }

  .main-navigation ul {
    display: flex;
  }
}

.site-main .comment-navigation,
.site-main .posts-navigation,
.site-main .post-navigation {
  margin: 0 0 1.5em;
}

.comment-navigation .nav-links,
.posts-navigation .nav-links,
.post-navigation .nav-links {
  display: flex;
}

.comment-navigation .nav-previous,
.posts-navigation .nav-previous,
.post-navigation .nav-previous {
  flex: 1 0 50%;
}

.comment-navigation .nav-next,
.posts-navigation .nav-next,
.post-navigation .nav-next {
  text-align: end;
  flex: 1 0 50%;
}

/* Posts and pages
--------------------------------------------- */
.sticky {
  display: block;
}

.post,
.page {
  margin: 0 0 1.5em;
}

.updated:not(.published) {
  display: none;
}

.page-content,
.entry-content,
.entry-summary {
  margin: 1.5em 0 0;
}

.page-links {
  clear: both;
  margin: 0 0 1.5em;
}

/* Comments
--------------------------------------------- */
.comment-content a {
  word-wrap: break-word;
}

.bypostauthor {
  display: block;
}

/* Widgets
--------------------------------------------- */
.widget {
  margin: 0 0 1.5em;
}

.widget select {
  max-width: 100%;
}

/* Media
--------------------------------------------- */
.page-content .wp-smiley,
.entry-content .wp-smiley,
.comment-content .wp-smiley {
  border: none;
  margin-bottom: 0;
  margin-top: 0;
  padding: 0;
}

/* Make sure logo link wraps around logo image. */
.custom-logo-link {
  display: inline-block;
}

/* Captions
--------------------------------------------- */
.wp-caption {
  margin-bottom: 1.5em;
  max-width: 100%;
}

.wp-caption img[class*="wp-image-"] {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.wp-caption .wp-caption-text {
  margin: 0.8075em 0;
}

.wp-caption-text {
  text-align: center;
}

/* Galleries
--------------------------------------------- */
.gallery {
  margin-bottom: 1.5em;
  display: grid;
  grid-gap: 1.5em;
}

.gallery-item {
  display: inline-block;
  text-align: center;
  width: 100%;
}

.gallery-columns-2 {
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.gallery-columns-3 {
  grid-template-columns: repeat(3, 1fr);
}

.gallery-columns-4 {
  grid-template-columns: repeat(4, 1fr);
}

.gallery-columns-5 {
  grid-template-columns: repeat(5, 1fr);
}

.gallery-columns-6 {
  grid-template-columns: repeat(6, 1fr);
}

.gallery-columns-7 {
  grid-template-columns: repeat(7, 1fr);
}

.gallery-columns-8 {
  grid-template-columns: repeat(8, 1fr);
}

.gallery-columns-9 {
  grid-template-columns: repeat(9, 1fr);
}

.gallery-caption {
  display: block;
}

/*--------------------------------------------------------------
# Plugins
--------------------------------------------------------------*/

/* Jetpack infinite scroll
--------------------------------------------- */

/* Hide the Posts Navigation and the Footer when Infinite Scroll is in use. */
.infinite-scroll .posts-navigation,
.infinite-scroll.neverending .site-footer {
  display: none;
}

/* Re-display the Theme Footer when Infinite Scroll has reached its end. */
.infinity-end.neverending .site-footer {
  display: block;
}

/*--------------------------------------------------------------
# Utilities
--------------------------------------------------------------*/

/* Accessibility
--------------------------------------------- */

/* Text meant only for screen readers. */
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
}

.screen-reader-text:focus {
  background-color: #f1f1f1;
  border-radius: 3px;
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  clip: auto !important;
  clip-path: none;
  color: #21759b;
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
}

/* Do not show the outline on the skip link target. */
#primary[tabindex="-1"]:focus {
  outline: 0;
}

/* Alignments
--------------------------------------------- */
.alignleft {
  /*rtl:ignore*/
  float: left;

  /*rtl:ignore*/
  margin-right: 1.5em;
  margin-bottom: 1.5em;
}

.alignright {
  /*rtl:ignore*/
  float: right;

  /*rtl:ignore*/
  margin-left: 1.5em;
  margin-bottom: 1.5em;
}

.aligncenter {
  clear: both;
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1.5em;
}

/* 
.site {
  padding-inline: 64px;
  max-width: 1440px;
  margin: auto;
} */

/* ------------------------------- */

/* home css */

body {
  color: var(--chumbo);
  font-family: "Barlow", sans-serif;
}

.hero-section_bg {
  top: 0;
  right: 0;
  z-index: -1;
}

.hero-section_bg.left {
  top: 0;
  left: 0;
  z-index: -1;
  transform: rotateY(180deg);
}

.hero-section {
  gap: 1.5rem;
  padding-top: 0 !important;
}

@media (min-width: 768px) {
  .hero-section {
    gap: 80px;
  }

  .hero-section_text {
    margin-bottom: 64px;
    padding-right: 64px;
    width: 54%;
  }

  .hero-section_img {
    width: 62%;
  }
}

.horizontal-image-with-text {
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .horizontal-image-with-text {
    gap: 5rem;
  }

  .horizontal-image-with-text_text {
    width: 62%;
  }

  .horizontal-image-with-text_img {
    width: 48%;
  }

  .horizontal-image-with-text_img {
    margin-bottom: 130px;
  }
}

/* section */

.produtos_card {
  max-width: 340px;
  min-width: 290px;
}

@media (min-width: 768px) {
  .produtos_card {
    min-width: 330px;
  }
} 

.produtos_card-bullet {
  padding-block: 16px;
  border-bottom: 1px solid #b9b9b9;
}

.produtos_grid {
  gap: 1.5rem;
  overflow-x: auto;
  overflow-y: hidden;
  padding-bottom: 1.5rem;
}

@media (min-width: 992px) {
  .produtos_grid {
    /* margin-top: 164px; */
    gap: 3rem;
    padding-bottom: 0;
  }
}

/* section */

.flexibility-card {
  --margin: 1.5rem;
}

@media (min-width: 992px) {
  .flexibility-card_text {
    max-width: 310px;
  }

  .flexibility-card_n1 {
    width: 32%;
  }

  .flexibility-card_n2 {
    margin-top: 220px;
    margin-right: 4%;
    width: 50%;
  }

  .flexibility-card_n3 {
    margin-top: 90px;

  }

  .flexibility-card_n4 {
    margin-top: 70px;
    width: 50%;
  }

  .flexibility-card_n5 {
    margin-top: 300px;
    width: 35%;
  }

  .flexibility_veja-todos {
    margin-top: 80px;
  }
}

/* section */

.points-wrap::after {
  content: "";
}

.points_img {
  margin-top: -160px;
  z-index: 1;
}

.pioneira_content-gap {
  gap: 6%;
}

@media (min-width: 768px) {
  .points_img {
    max-width: 330px;
    margin-top: 120px;
    margin-left: 50px;
    margin-right: 24px;
  }

  .points-wrap {
    min-width: 410px;
  }
}

@media (min-width: 992px) {
  .points_img {
    max-width: 420px;
    margin-top: 130px;
    margin-left: 56px;
  }

  .pioneira-wrap {
    padding-top: 96px;
    padding-bottom: 112px;
  }

  .points-wrap {
    min-width: 588px;
    min-height: 588px;
  }
}

.topico-bullet_wrap {
  max-width: 554px;
}

.topico-bullet {
  padding: 24px 12px;
}

@media (min-width: 992px) {
  .topico-bullet {
    padding: 40px 20px;
  }
}

.topico-bullet.position-relative::after {
  content: " ";
  width: 50px;
  height: 50px;
  background-color: white;
  position: absolute;
  bottom: -25px;
  right: -25px;
  border-radius: 50%;
}

@media (min-width: 768px) {
  .topico-bullet.position-relative::after {
    background-color: var(--azul);
  }
}

.topico-bullet.right-border {
  border-right: 1px solid var(--laranja-80);
}

.topico-bullet.left-border {
  border-left: 1px solid var(--laranja-80);
}

.topico-bullet.bottom-border {
  border-bottom: 1px solid var(--laranja-80);
}

.topico-bullet.top-border {
  border-top: 1px solid var(--laranja-80);
}

/* section */

.specialist-wrap {
  padding-top: 60px;
  border-top: 2px solid var(--laranja-80);
  max-width: 1110px;
}

@media (min-width: 768px) {
  .specialist-wrap {
    gap: 96px;
  }
}

.specialist_newsletter-wrap {
  margin-top: 90px;
}

.specialist_newsletter-detail {
  left: -36px;
  margin-right: 24px;
}

@media (min-width: 768px) {
  .specialist_newsletter-detail {
    position: absolute;
  }

  .specialist_newsletter-wrap {
    margin-top: 180px;
  }
}

/* accordion */

.topico-accordion_config {
  --space-img-text: 80px;
  --pad-bottom-topico-accordion_block-btn: 8px;
  --pad-top-topico-accordion_block-btn: 12px;
}

.topico-accordion_wrap {
  flex-direction: column;
  overflow: visible;
  justify-content: center;
}

.topico-accordion_btn[aria-expanded="false"] {
  opacity: 0.3;
}

.topico-accordion_btn[aria-expanded="false"]:hover {
  opacity: 0.7;
}

.topico-accordion-text {
  right: calc(var(--space-img-text) * 2);
}

.topico-accordion_img {
  position: absolute;
  width: 80%;
  z-index: -1;
  right: var(--space-img-text);
  transition: opacity 0.9s ease;
  top: 0;
}

.topico-accordion_block-btn {
  padding-bottom: var(--pad-bottom-topico-accordion_block-btn);
  padding-top: var(--pad-top-topico-accordion_block-btn);
}

.topico-accordion_block-btn.with-ps {
  padding-left: 36px;
}

.topico-accordion_wrap.accordion-onde-estamos {
  padding-top: 32vh;
}

.topico-accordion_img.onde-estamos {
  top: 0;
  right: 0;
  margin: auto;
  width: auto;
  height: 40vh;
}

@media (min-width: 576px) {
  .topico-accordion_img.onde-estamos {
    max-width: 80%;
    height: auto;

  }
}

@media (min-width: 768px) {
  .topico-accordion_img.onde-estamos {
    max-width: 50%;
  }
}

@media (min-width: 991px) {
  .topico-accordion_wrap.accordion-onde-estamos {
    padding-top: unset;
  }
}

.topico-accordion_block-btn.onde-estamos {
  max-width: unset;
}

.topico-accordion_line {
  height: 2px;
  background-color: var(--low-black);
  opacity: 0.3;
  margin-bottom: calc(var(--pad-bottom-topico-accordion_block-btn) * -1px);
  position: relative;
  top: 8px;
  z-index: -2;
  -webkit-transition: max-width 1s ease-in-out;
  -moz-transition: max-width 1s ease-in-out;
  -o-transition: max-width 1s ease-in-out;
  transition: max-width 1s ease-in-out;
}

.topico-accordion_block-btn:has(a[aria-expanded="true"]) .topico-accordion_line {
  background-color: var(--laranja-80);
  opacity: 1;
  z-index: 1;
}

.topico-accordion_block-btn.onde-estamos:has(a[aria-expanded="true"]) .topico-accordion_line {
  width: 50%;
}

@media (min-width: 992px) {
  .topico-accordion_block-btn {
    max-width: 280px;
  }

  .topico-accordion-text {
    max-width: 510px;
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    right: 80px;
    height: fit-content;
  }

  .topico-accordion_wrap {
    min-height: 600px;
  }

  .topico-accordion_line {
    width: 320px;
  }
}

/* custom details */
.img-detail {
  position: relative;
}

@media (min-width: 992px) {
  .img-detail::after {
    content: "";
    position: absolute;
    width: 22px;
    height: 22px;
  }

  .img-detail.right::after {
    background-image: url(/wp-content/themes/site-topico/assets/icons/img-detail-right.svg);
    background-repeat: no-repeat;
    bottom: -22px;
    right: -22px;
  }

  .img-detail.left::after {
    background-image: url(/wp-content/themes/site-topico/assets/icons/img-detail-left.svg);
    background-repeat: no-repeat;
    bottom: -22px;
    left: -22px;
  }

  .img-detail.home::after {
    background-image: url(/wp-content/themes/site-topico/assets/icons/img-detail-right.svg);
    background-repeat: no-repeat;
    bottom: -22px;
  }
}

/* page segmentos */

@media (min-width: 992px) {
  .flexibility-card-segmentos_n1 {
    margin-top: 190px;
  }

  .flexibility-card-segmentos_n2 {
    max-width: 560px;
  }

  .flexibility-card-segmentos_n1.margin-reduced {
    margin-top: 280px;
  }

  .flexibility-card-segmentos_n3 {
    max-width: 657px;
    margin-right: 68px;
  }

  .flexibility-card-segmentos_n4 {
    margin-top: 60px;
    max-width: 1110px;
  }
}

@media (min-width: 1240px) {
  .flexibility-card-segmentos_n2 {
    margin-top: -180px;
    max-width: 480px;
  }

  .flexibility-card-segmentos_n2.margin-reduced {
    margin-top: 0;
  }

  .flexibility-card-segmentos_n3.margin-reduced {
    margin-top: 80px;
  }
}

@media (min-width: 1400px) {
  .flexibility-card-segmentos_n2 {
    max-width: 560px;
  }
}

/* page segmentos especificos */

.content-navigator_link {
  padding-block: 8px;
  padding-inline: 12px;
}

.content-navigator {
  border: 2px solid var(--laranja-80);
  padding: 24px;
}

.content-navigator_link:hover {
  box-shadow: 0 2px 0 0px var(--laranja-80);
  /* emulate the border */
}

.topico-accordion-segmentos_img {
  position: absolute;
  width: 54%;
  z-index: -1;
}

.topico-accordion_btn.segmento {
  display: inline-block;
  margin-left: 40px;
}

.topico-accordion-segmentos-text {
  margin-left: 40px;
}

@media (min-width: 992px) {
  .topico-accordion_line.segmento-line {
    width: 90%;
    margin-left: auto;
    top: 24px;
    opacity: 0.1;
  }

  .topico-accordion_block-btn.segmento {
    max-width: 100%;
    padding-bottom: 32px;
  }

  .topico-accordion_btn.segmento {
    display: inline-block;
    margin-left: 66%;
  }

  .topico-accordion-segmentos-text {
    width: 300px;
    margin-left: 66%;
  }

  .segmento-title-num {
    position: absolute;
    left: -60px;
  }
}

.galpoes-topico-table_li {
  max-width: 848px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: 1fr;
}

.galpoes-topico-table_li.with-border {
  border-bottom: 1px solid var(--cinza-escuro);
  padding-block: 24px;
}

.galpoes-topico-table-margin {
  margin-left: 20%;
}

@media (min-width: 768px) {
  .galpoes-topico-table_wrap {
    max-width: 970px;
    border: 10px solid var(--azul);
    outline: 2px solid #CCCCCC;
    padding: 60px;
    background-color: #46575D;
    position: relative;
    z-index: 99;
  }
}

.check-icon-table {
  position: absolute;
  left: -28px;
  width: 14px;
  height: auto;
}

.versus-table {
  right: 0;
  left: 0;
  width: 12px;
  height: auto;
  margin-block: auto;
  top: 0;
  bottom: 0;
  margin-inline: auto;
}

@media (min-width: 768px) {
  .check-icon-table {
    width: 27px;
    height: auto;
    left: -48px;
  }

  .versus-table {
    height: 30px;
    width: auto;
  }

  .galpoes-topico-table-margin {
    margin-left: 26%;
  }
}

.burocracia-bg-1 {
  bottom: 60px;
  left: 0;
}

.burocracia-bg-2 {
  top: 120px;
  right: 0;
}

.tag-wrap {
  padding: 8px;
  background-color: #e6e6e6;
  line-height: 1;
}

.cases_title-wrap {
  border-bottom: 2px solid var(--laranja-80);
  position: relative;
  z-index: 2;
}

@media (min-width: 768px) {
  .cases_title-wrap {
    margin-right: -60px;
  }
}

.case-title_wrap {
  display: grid;
  grid-template-columns: 1fr;

  grid-template-rows: 1fr;
  grid-column-gap: 60px;

  grid-row-gap: 48px;
}

@media (min-width: 991px) {
  .case-title_wrap {
    grid-template-columns: repeat(2, 1fr);
    grid-row-gap: 0px;
  }

  .case_banner-img {
    grid-column: span 2;
    order: 1;
  }
}

/* backgrounds */

.z-index-1 {
  z-index: -1;
}

.z-index-2 {
  z-index: -2;
}

.home-bg-1 {
  bottom: -50%;
  left: 0;
}

.sobre-nos-1 {
  bottom: 165px;
  left: 0;
}

.home-bg-2 {
  bottom: 40%;
  right: 0;
}

.home-bg-3 {
  top: -2%;
  right: 0;
}

.home-bg-4 {
  top: 0;
  right: 0;
  height: 882px;
}

.home-bg-5 {
  top: -60px;
  left: -80px;
  height: 900px;
  opacity: 0.6;
}

.home-bg-6 {
  right: 0;
  top: 0;
}

.home-bg-7 {
  left: 0;
  top: 36%;
}

.home-bg-8 {
  bottom: -66px;
  right: 0;
}

.segmentos-bg-1 {
  top: 52%;
}

.segmentos-bg-2 {
  top: -48%;
}

.segmento-esepecifico-bg-2 {
  right: 0;
  top: -10%;
}

.segmento-esepecifico-bg-4 {
  right: 0;
  top: -10%;
}

.produtos-bg-1 {
  top: 0;
  right: 0;
}

.diferenciais-bg-2 {
  top: 0%;
}

/* produtos page */

.vantagens-orange_box {
  min-height: 210px;
  max-width: 348px;
  border: 2px solid var(--laranja-80);
  background-repeat: no-repeat;
  background-size: contain;
  background-color: white;
  position: relative;
}

.vantagens-orange_box.material-rico {
  min-height: auto;
  max-width: none;
}

@media (min-width: 991px) {
  .vantagens-orange_box.material-rico {
    min-height: 440px;
    max-width: none;
  }
}

.vantagens-orange_box::after {
  content: "";
  background-color: inherit;
  width: 66px;
  height: 5px;
  position: absolute;
  top: 18px;
  right: -12px;
  transform: rotate(45deg);
  z-index: 2;
  border-bottom: inherit;
}

.vantagens-orange_box::before {
  content: "";
  background-color: white;
  width: 48px;
  height: 48px;
  position: absolute;
  top: -4px;
  right: -4px;
  z-index: 1;
}

.square-orange_post {
  position: relative;
  height: 420px;
  min-width: 310px;
  border: 2px solid var(--laranja-80);
  padding: 0rem;
}

.square-orange_box {
  position: relative;
  height: 340px;
  border: 4px solid var(--laranja-80);
  padding: 2rem;
}

@media (min-width: 768px) {
  .square-orange_box {
    height: 420px;
    min-width: 310px;
  }
}

.square-orange_icon {
  position: absolute;
  top: 20px;
  right: 20px;
}

.vantagens-orange_wrap {
  display: grid;
  grid-template-columns: 1fr;
  grid-column-gap: 32px;
  grid-row-gap: 32px;
}

@media (max-width: 576px) {
  .vantagens-orange_box.col-1-tpc {
    max-width: none;
  }

  .vantagens-orange_wrap.col-1-tpc {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 576px) {
  .vantagens-orange_wrap {
    width: 90%;
  }

  .vantagens-orange_box {
    min-height: 280px;
  }

  .vantagens-orange_box::before {
    width: 72px;
    height: 72px;
  }

  .vantagens-orange_box::after {
    width: 101px;
    height: 5px;
    position: absolute;
    top: 30px;
    right: -17px;
  }
}

@media (min-width: 768px) {
  .vantagens-orange_wrap {
    grid-column-gap: 72px;
    grid-row-gap: 80px;
    grid-template-columns: repeat(2, 1fr);
  }

  .vantagens-orange_box {
    border: 4px solid var(--laranja-80);
    min-height: 340px;

  }
}

@media (min-width: 992px) {
  .vantagens-orange_wrap {
    grid-template-columns: repeat(3, 1fr);
  }
}

/*.vantagens-orange_wrap.dual {
  grid-template-columns: repeat(2, 1fr);
  width: 100%;
  justify-items: center;
} */

.square-orange_box_logos {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 320px;
  border: 4px solid var(--laranja-80);
  padding: 2rem;
  aspect-ratio: 1;
}

.vantagens-orange_wrap.dual {
  grid-template-columns: repeat(2, 1fr);
  width: 100%;
  justify-items: center;
}

@media (min-width: 768px) {
  .vantagens-orange_wrap {
    grid-column-gap: 72px;
    grid-row-gap: 80px;
  }

  .vantagens-orange_box {
    border: 4px solid var(--laranja-80);
  }
}

.max-width-768 {
  max-width: 768px;
}

.estrutura-card {
  width: 100%;
}

@media (min-width: 576px) {
  .estrutura-card {
    width: 46%;
  }
}

.image-container {
  position: center;
  width: 100%;
  max-width: 1440px;
}

.image-container img {
  width: 100%;
  height: auto;
}

.overlay-text {
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  padding: 10px;
  border-radius: 5px;
}

.vertical-line {
  border-left: 2px solid var(--laranja-80);
  width: 25%;
  position: relative;
  left: 2;
  top: 0;
}

.vertical-line-end {
  position: relative;
  display: inline-block;
}

.vertical-line-end::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: -1px;
  width: 1px;
  border-left: 2px solid var(--laranja-80);
  /* Cor da linha vertical */
}

.grid-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.bg-topico-icone {
  position: absolute;
  transform: translate(-50%, -50%);
  z-index: 1;
  top: 50%;
  left: 50%;
  width: 96px;
}


.parallax {
  position: relative;
  min-height: 60vh;
  background-repeat: no-repeat;
  background-position-x: center;
  width: 100%;
  background-size: cover;
}

.parallax.floresta {

  background-repeat: no-repeat;
  background-position-x: center;
  background-size: cover;
}

@media (min-width: 768px) {
  .parallax {
    min-height: 75vh;
    background-attachment: fixed;
  }

  .parallax.floresta {
    background-attachment: fixed;
  }

  .bg-topico-icone {
    width: unset;
  }
}

/* sobre a topico */

.about-topico_wrap {
  border-top: 2px solid var(--laranja-80);
  padding-top: 64px;
}

@media (min-width: 768px) {
  .about-topico_wrap {
    max-width: 90%;
  }
}

.horizontal-line {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--laranja-80);
}

.horizontal-line-end {
  position: relative;
  display: inline-block;
}

.hero-section_about-topico {
  min-height: 60vh;
}

.hero-section_about-topico-gradient {
  background: rgb(97, 171, 255);
  background: -moz-linear-gradient(0deg, var(--azul) 60%, white 60%);
  background: -webkit-linear-gradient(0deg, var(--azul) 60%, white 60%);
  background: linear-gradient(0deg, var(--azul) 60%, white 60%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#61abff", endColorstr="#9e38d7", GradientType=1);
}

@media (max-width: 767px) {
  .hero-section_about-topico-gradient .container-xl {
    padding: 0;
  }
}

.about-topico_cultura-wrap {
  margin-left: 40px;
}

@media (min-width: 768px) {
  .about-topico_cultura-wrap {
    width: 40%;
  }
}

/* sustentabilidade */

.bg-banner-floresta {
  position: relative;
  background-size: cover;
  max-width: 100%;
  background-position: center;
  height: auto;
  padding: 5rem 0;
  min-height: 80vh;
}

.bg-banner-agricultura {
  position: relative;
  background-size: cover;
  max-width: 100%;
  background-position-x: 75%;
  height: auto;
  padding: 72px 0;
}

@media (min-width: 768px) {
  .bg-banner-agricultura {
    background-position: center;
  }

  .bg-banner-agricultura {
    padding: 100px 0;
    min-height: 80vh;
  }
}

.icone-floresta {
  position: absolute;
  width: 22px;
}

.icone-floresta.left {
  left: -20px;
  bottom: 0;
}

.icone-floresta.right {
  right: -20px;
  top: 0;
  transform: rotate(-90deg);
}

@media (max-width: 768px) {
  .parent {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 1fr;
    grid-column-gap: 0px;
    grid-row-gap: 0px;
  }

  .parent-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    grid-column-gap: 22px;
    grid-row-gap: 25px;
    margin-right: 20px;
    margin-bottom: 105px;
  }
}

@media (min-width: 768px) {
  .banner-floresta_conteudo-text {
    width: 50%;
  }
}

@media (min-width: 576px) {
  .banner-floresta_conteudo-img {
    width: 50%;
  }
}

@media (min-width: 992px) {
  .banner-floresta-title-wrap {
    margin-top: 20vh;
  }

  .bg-banner-floresta {
    padding: 100px 0;
  }
}

/* produtos específicos */

.swiper-controls_wrap {
  display: flex;
  height: 60px;
}

.swiper-pagination-bullet-active {
  background: var(--laranja) !important;
}

@media (min-width: 1400px) {

  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    min-width: 1320px;
  }
}

@media (min-width: 1560px) {

  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    min-width: 1440px;
  }
}

/* duvidas frequentes */

.accordion-item-topico {
  border-radius: 0;
  border: 1px solid var(--chumbo-75);
}

.accordion-button:focus {
  z-index: 3;
  outline: 0;
  box-shadow: none;
}

.accordion-button:not(.collapsed) {
  color: var(--chumbo);
  background-color: unset;
  box-shadow: unset;
  border: 0;
}

/* topico pioneira */

.point {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--laranja);
}

.point-wrap {
  position: absolute;
  padding: 4px;
  transition: padding 200ms;
  border-radius: 50%;
  border: 1px solid var(--laranja);
  width: fit-content;
}

.point-wrap:hover {
  padding: 6px;
}

.point-wrap.point-1 {
  bottom: 50%;
  left: 56%;
}

.point-wrap.point-2 {
  top: 25%;
  left: 26%;
}

.point-wrap.point-3 {
  top: 20%;
  left: 74%;
}

.point-wrap.point-4 {
  bottom: 130px;
  right: 60px;
}

@media (min-width: 768px) {
  .point-wrap.point-1 {
    bottom: 60px;
    left: 60px;
  }

  .point-wrap.point-2 {
    top: 60px;
    left: 180px;
  }

  .point-wrap.point-3 {
    top: 160px;
    left: 60px;
  }

  .point-wrap.point-4 {
    bottom: 120px;
    right: 40px;
  }
}

/* por que galpoes flexiveis */

.pque-galpoes_wrap {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.pque-galpoes_row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  border-bottom: 2px solid var(--laranja-80);
  padding-bottom: 32px;
}

.pque-galpoes_row.no-border {
  border-bottom: 0;
}

.pque-galpoes_block {
  position: relative;
}

@media (min-width: 768px) {
  .pque-galpoes_row {
    grid-template-columns: repeat(2, 1fr);
    padding-bottom: 0px;
  }

  .pque-galpoes_wrap {
    gap: 0;
  }

  .pque-galpoes_block {
    padding: 64px;
  }

  .pque-galpoes_block.with-border-right {
    border-right: 2px solid var(--laranja-80);
  }

  .pque-galpoes_block.with-border-right::after {
    content: "";
    height: 80px;
    width: 80px;
    position: absolute;
    margin-inline: auto;
    background-color: #ffffff;
    bottom: -40px;
    right: -40px;
    z-index: 2;
  }

  .pque-galpoes_block.order--md-1 {
    order: -1;
  }
}

/* blog post */

.img-list-post {
  gap: 32px;
}

@media (max-width: 576px) {
  .img-list-post {
    gap: 48px;
  }
}

.blog-content p {
  margin-bottom: 10px;
}

/* onde estamos */

.depoimentos_div-line-autor {
  width: 2px;
  background-color: var(--cinza-escuro);
}

/* fale conosco */

.fale-conosco_contatos img {
  position: absolute;
  left: 0;
}

/*bootstrap update*/

.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
  padding-right: calc(var(--bs-gutter-x) * 1);
  padding-left: calc(var(--bs-gutter-x) * 1);
}

/* orcamento */

.orcamento_group div {
  width: 100%;
}

.orcamento_input {
  border: 2px solid #dee2e6;
  border-radius: 4px;
  min-height: 32px;
  padding: 6px 12px;
}

.orcamento_input:focus,
.orcamento_input:active {
  border: 2px solid var(--laranja-80) !important;
  border-color: var(--laranja-80);
  outline: 0;
  box-shadow: 0 0 0 0.1rem rgba(255, 80, 0, 0.25);
}

.absolute-img {
  position: absolute;
  inset: 0;
}

.grid-sobre-a-topico {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  column-gap: 6rem;
  margin: auto;
  row-gap: 2rem;
}

@media (min-width: 576px) {
  .grid-sobre-a-topico {
    grid-template-columns: repeat(2, 1fr);
  }

  .sobre-a-topico-point {
    max-width: 330px;
  }
}

@media (min-width: 768px) {
  .grid-sobre-a-topico {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    max-width: 90%;
  }
}

.post-thumbnail {
  aspect-ratio: 6/3;
  /* Defina a altura que deseja para todas as imagens */
  overflow: hidden;
  /* Esconde o excesso da imagem que ultrapassar as dimensões do contêiner */
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #f8f8f8;
  /* Cor de fundo caso a imagem não ocupe todo o espaço */
}

.post-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Mantém a proporção da imagem e cobre todo o contêiner */
  object-position: center;
  /* Centraliza a imagem dentro do contêiner */
}

/* single post */

/* style-blog-post.css */

/* Estilização personalizada para redimensionar a imagem principal do post */
.custom-thumbnail {
  max-width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  /* Mantém a proporção da imagem em 16:9 */
  object-fit: cover;
  /* Faz com que a imagem cubra completamente o espaço */
  margin-bottom: 2rem;
  /* Espaçamento abaixo da imagem */
}

/* Estilização para a seção de posts relacionados */
.related-posts {
  margin-top: 4rem;
}

.related-posts h3 {
  margin-bottom: 2rem;
}

.related-posts .row>div {
  margin-bottom: 2rem;
}

.related-posts img {
  border-radius: 8px;
  /* Bordas arredondadas nas imagens dos posts relacionados */
  aspect-ratio: 16/9;
  /* Mantém a proporção das imagens em 16:9 */
  object-fit: cover;
  /* Faz com que a imagem cubra completamente o espaço */
}

.related-posts h4 {
  margin-top: 1rem;
  font-size: 1.25rem;
}

.related-posts p.body {
  margin-top: 0.5rem;
  color: #6c757d;
  /* Cor de texto chumbo */
}

.related_posts {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 3rem;
  grid-row-gap: 1, 5rem;
}

@media (min-width: 768px) {
  .related_posts {
    grid-template-columns: repeat(3, 1fr);
    grid-column-gap: 3rem;
  }
}

/* recaptcha ajuste */

.grecaptcha-badge { 
  visibility: hidden; 
}

/* cookie banner */

  .cc-window, .cc-message{
    font-family: 'Barlow', sans-serif;
  }
   .cc-compliance a{
    text-decoration: none;
    font-family: 'Barlow', sans-serif;
    font-weight: 500;
  }

@media (max-width: 768px) {
  .cc-window.cc-floating.cc-type-info{
    max-width: 70%;
    bottom: 20px;
    margin: auto;
    right: 0;
    left: 0;
  }
  
  .cc-window, .cc-message{
    font-size: .875rem !important;
  }

  .cc-compliance{
    padding-top: 16px !important;
  }
}