@import url(../Style/transition.css);

.cursor {
    position: fixed;
    height: 20px;
    width: 20px;
    border-radius: 100%;
    background-color: whitesmoke;
    z-index: 10000;
    margin-left: -8px;
    margin-top: -8px;
    backdrop-filter: grayscale(1);
    mix-blend-mode:exclusion;
    pointer-events: none;
    transition: transform 0.3s cubic-bezier(0.32, 0, 0.67, 0);
}

::-webkit-scrollbar {
    display: none;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body { 
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    font-family: "inter", sans-serif;
    background-color: #f6f6f6;
}

img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

a {
    text-decoration: none;
    color: #000;
    font-size: 13.5px;
    font-weight: 500;
}

nav {
    position: relative;
    width:100%;
    padding: 1em;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    z-index: 100000;
}

.cards {
    position: relative;
    top: 0;
    right: 0;
    width: max-content;
    height: max-content;
    z-index: 20000; 
}

.card {
    position: relative;
    width: 300px;
    height: 100px;
    display: flex;
    align-items: flex-start;
    margin: 1em;
    padding: 15px;
    font-size: 13px;
    background-color: #5858585b;
    color: #f6f6f6;
    backdrop-filter: blur(16px);
    border-radius: 8px;
    transition: background-color 0.5s, color 0.5s,transform 0.2s ease-out;
    cursor: pointer;
    
}

.card:hover {
    transform: scale(1.05);
}

.card-img {
    width: 70px;
    min-width: 70px;
    height: 70px;
    border-radius: 6px;
    overflow: hidden;
}

.card-img:hover {
    transform: scale(1.08);
    transition: transform 0.5s;

}

.card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: inline-block;
}

.card-text {
    width: 100%;
    margin-left: 16px;
}

.card-title {
    margin: 4px 0;
}

.card-info {
    color: #e6e6e6;
}

.toggle {
    position: relative;
    justify-content: flex-end;
    display: none;
}

.toggle button {
    border: none;
    outline: none;
    background: #2a2a2a;
    color: #f6f6f6;
    margin: 0 1em;
    padding: 10px 16px 12px 16px;
    border-radius: 20px;
    transition: background-color 0.5s, color 0.5s;
    font-family: "unica one", sans-serif;
    font-weight: 500;
    font-size: 1em;
    cursor: pointer;
    z-index: 2000000;
}

button:hover {
    background: #f6f6f6;
    color: #2a2a2a;
}

#card-1 {
    top: 0;
    z-index: 20000;
}

#card-2 {
    top: -100px;
    z-index: 20001;
}

#card-3 {
    top: -200px;
    z-index: 20002;
}

.container-card {
    position: fixed;
    top:0;
    right: 0;
    z-index: 20004;
}

.site-content {
    position: relative; 
    z-index: 1; 
    isolation: isolate;
}

.container {
    display: flex;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    position: relative;
    justify-content: center;
    align-items:flex-start
}

.items {
    width: 100%;
    display: flex;
}

.items-col {
    flex: 1;
    display: flex;
}

.item {
    position: relative;
    height: 300px;
    flex: 1;
    display: flex;
    flex-direction: column;
    transform: scale(0.80);
}

.item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}
.item-copy {
    padding: 0.5em;
    height: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.item-copy-wrapper {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
}

.item-copy-wrapper p {
    position: relative;
    margin-bottom: 0.25em;
    font-weight: 500;
    font-size: 13.5px;
    line-height: 100%;
    text-align: center;
}

.item-side .item-img {
    flex: 1;
    overflow: hidden;
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
}

.items-col:nth-child(2) {
    flex: 0 0 300px;
    display: flex;
    justify-content: center;
}

.item-main {
    position: relative;
    top: 2vh;
    width: 300px;
    height: 450px;
    overflow: hidden;
}

#secador {
    width: 450px;
    height: 600px;
}

.item-main .item-img {
    overflow: hidden;
}

.item-main .item-img img {
    transform: scale(0.5);
    clip-path: polygon(50% 50%, 50% 50%, 50% 50%, 50% 50%);
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.header {
    position: absolute;
    top: 50%;
    transform-origin: center center;
    width: 100%;
    display: flex;
    color: rgb(4, 97, 46);
}

.header-item {
    position: relative;
    flex: 1;
    display: flex;
    justify-content: center;
    transform: scale(0.25);
}

.header-item-1 {
    left: 18vw;
}

.header-item-2 {
    right: 18vw;
}

.letter {
    flex: 1;
    font-size: 5vw;
    font-weight: 300;
    display: flex;
    justify-content: center;
    align-items: center;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
}



.timeline {
  position: relative;
  bottom: 0;
  left: 0;
  width: 100vw;
  height: 10vh;
  padding: 2.25em 1em;
  display: flex;
  justify-content: space-around;
}

.marker {
  width: 2px;
  height: 100%;
  background: #333;
}

.scroller {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0%, -50%);
  text-transform: uppercase;
  color: #ffffff;
  background: linear-gradient(to right, #216f04, #2a2a2a);
  cursor: pointer;
  padding: 15px 25px;
  border-radius: 25px;
  line-height: 120%;
}

.container-galeria {
  position: relative;
  top: 0;
  left: 0;
  width: 500vw;
  height: fit-content;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.container-galeria section {
  position: relative;
  width: 100vw;
  height: 100%;
  padding: 6em 2em 0 2em;
  display: flex;
  gap: 2em;
  overflow: hidden;
}

.img {
  width: 100%;
  height: 100%;
}
#section-1,
#section-4 {
  display: flex;
  justify-content: center;
  align-items: center;
}

#section-1 {
    width: 50vw;
}

#section-1 p {
    font-size: 15px;
    text-align: justify;
}

#section-1 img {
    width: 40%;
    object-fit: contain;
}

#section-1 .divider {
    width: 2px;
    height: 25%;
    background-color: #2a2a2a;
}


#section-2 {
    display: flex;
    flex-direction: row;
    width: 50vw;
    height: auto;
}

#section-2 img {
    height: 300px;
    width: auto;
    object-fit: contain;
}

#section-3 video {
    width: 50%;
    height: auto;
    object-fit: contain;
}

#section-3 {
  width: 100vw;
  padding: 0;
  background: transparent;
}

#section-4 {
    display: flex;
    flex-direction: column;
    width: 75vw;
    padding: 40px;
    background: transparent;
}

#section-4 img {
    width: 300px;
    height: auto;
    object-fit: contain;
}

#section-4 p {
    font-size: 15px;
    text-align: justify;
    width: 50%;
}

#section-4 svg {
    height: 200px;
    width: auto;
    object-fit: contain;
}

/* ...existing code... */

.product-grid {
    height: fit-content;
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 cards por linha */
  grid-template-rows: repeat(2, auto);   /* 2 linhas */
  grid-auto-flow: column;
  gap: 2em;
  padding: 2em;
  width: 100%;
  background: linear-gradient(to right, #585858, #2a2a2a);
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
}

#product-grid-two {
      background: linear-gradient(to right, #216f04, #2a2a2a);
}

.product-card {
  background: #f6f6f6;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.2s;
  padding: 1em;
}

.product-card:hover {
  transform: scale(1.04);
  box-shadow: 0 6px 24px rgba(33,95,4,0.12);
}

.product-card img {
  width: 100%;
  max-width: 220px;
  height: 160px;
  object-fit: contain;
}

.product-info {
  text-align: center;
}

.product-info h3 {
  font-size: 1.1em;
  color: #216f04;
  margin-bottom: 0.5em;
}

.product-info p {
  font-size: 0.95em;
  color: #333;
  margin-bottom: 1em;
}


/* ...existing code... */

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 5vh;
    padding: 3%;
}

@media screen and (max-width: 480px) {
    header {
        padding: 0 3%;
    }

    .logo img {
        height: 6vh;
        max-height: 40px;
    }
}


.container-2 {
      background: linear-gradient(to right, #e9f3fa, #ffffff);
      border-radius: 20px;
      display: flex;
      padding: 40px;
      max-width: 900px;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
      height: fit-content;
      justify-content: center;
      align-items: center;
      position: relative;
      top: 50%;
    
    }

    .left {
      flex: 1;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .left h1 {
      font-size: 36px;
      margin: 0;
      font-weight: 900;
      line-height: 1.1;
      color: #333;
    }

    .logo-img {
      margin-top: 20px;
      max-width: 200px;
      height: auto;
    }

    .right {
      flex: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .right p {
      font-size: 14px;
      color: #333;
      line-height: 1.6;
    }

    .btn {
        margin-top: 20px;
      padding: 12px 20px;
      border: 2px solid #29aa59;
      border-radius: 25px;
      background-color: #ffffff;
      color: #29aa59;
      font-weight: bold;
      text-transform: uppercase;
      text-decoration: none;
      width: fit-content;
      transition: all 0.3s ease;
    }

    .btn:hover {
      background-color: #29aa59;
      color: white;
    }


    section.segunda {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: row;
        padding: 2em;
        gap: 1em;
    }

    .container-3 {
        justify-content: center;
        align-items: center;
        position: relative;
        top: 50%;
    }

    .container-3 video {
        width: 100%;
        border-radius: 25px;

    }




#open {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.85em 2.5em;
  background: linear-gradient(90deg, #216f04 0%, #29aa59 100%);
  color: #fff;
  font-family: 'Unica One', 'Inter', sans-serif;
  font-size: 1.18em;
  font-weight: 700;
  letter-spacing: 1.5px;
  border: none;
  border-radius: 0 0 32px 32px / 0 0 24px 24px;
  box-shadow: 0 8px 32px rgba(33,95,4,0.13);
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  z-index: 100;
  cursor: pointer;
  min-width: 180px;
}

#open::before {
  content: "";
  display: block;
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 8px;
  background: linear-gradient(90deg, #29aa59 0%, #216f04 100%);
  border-radius: 0 0 16px 16px;
  opacity: 0.18;
  z-index: -1;
}

#open:hover,
#open:focus {
  color: #fff;
  transform: scale(1.06) translateX(-50%) translateY(-2px);
  box-shadow: 0 12px 36px rgba(33,95,4,0.22);
  text-decoration: none;
  outline: none;
}


.logo {
    position: fixed;
    left: 5%;
    top: 0;
    z-index: 10000; /* Mantido */
}

.menu-banner {
    z-index: 10000;
}

@media (max-width: 768px) {

    .cursor {
        display: none;
    }
}

@media (max-width: 920px) {

    .cursor {
        display: none;
    }
}








.section-resource {
  padding: 4em;
  justify-content: center;
  align-items: center;
  height: 100svh;
  display: flex;
  position: relative;
  background-color: #004E53;
}

.heavy-icon__link {
  color: currentColor;
  text-decoration: none;
  position: absolute;
}

.heavy-duty-icon {
  width: 15em;
}

.dots-wrap {
  width: 100%;
  height: 100%;
  position: relative;
}

.dots-container {
  grid-column-gap: 2em;
  grid-row-gap: 2em;
  pointer-events: none;
  flex-flow: wrap;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
  inset: 0em;
}

.dot {
  will-change: transform, background-color;
  transform-origin: center;
  background-color: #efeeec;
  border-radius: 50%;
  width: 1em;
  height: 1em;
  position: relative;
  transform: translate(0);
}





.custom-shape-divider-bottom-1754919285 {
    position: relative;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.custom-shape-divider-bottom-1754919285 svg {
    position: relative;
    display: block;
    width: calc(139% + 1.3px);
    height: 128px;
}

.custom-shape-divider-bottom-1754919285 .shape-fill {
    fill: #004E53;
}



/* ...existing code... */

#coair-equipamentos {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  width: 100vw;
  padding: 4.5em 2em;
  background: #004E53;
  text-align: center;
}

.logo-svg{
    width: 200px;
    height: auto;
    margin-bottom: 1em;
}

.coair-title {
  font-size: 2.5em;
  color: #f6f6f6;
  font-family: 'Unica One', sans-serif;
}

.coair-description {
    margin-top: 1em;
  font-size: 1.5em;
  color: #f6f6f6;
  opacity: 0.85;
  text-align: justify;
  width: 75%;
}

.coair-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2em;
  padding: 2em;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}

.coair-card {
  background: #f6f6f6;
  /* Border-radius invertido nos cantos superiores */
  border-radius: 35px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.10);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2em 1em 1.5em 1em;
  user-select: none;
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
  overflow: hidden;
}

.coair-card:hover {
  transform: scale(1.04) translateY(-4px);
  box-shadow: 0 12px 36px rgba(33,95,4,0.18);
}

.coair-card img {
  width: 100%;
  max-width: 220px;
  height: 160px;
  object-fit: contain;
  border-radius: 0 0 24px 24px / 0 0 16px 16px;
  margin-bottom: 1em;
  box-shadow: 0 2px 12px rgba(33,95,4,0.07);
}

.coair-card-info h3 {
  font-size: 1.15em;
  color: #216f04;
  margin-bottom: 0.5em;
  font-family: 'Unica One', sans-serif;
  letter-spacing: 0.5px;
}

.coair-card-info p {
  font-size: 0.95em;
  color: #333;
  opacity: 0.85;
  margin-bottom: 0.5em;
}

/* Responsivo para telas menores */
@media (max-width: 1200px) {
  .coair-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 700px) {
  .coair-grid {
    grid-template-columns: 1fr;
  }
}

/* ...existing code... */









.cloneable {
  padding: 4rem;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  display: flex;
  position: relative;
  font-size: 1.1vw;
  background-color: #004e53;
}

.overlay {
  z-index: 2;
  background-image: linear-gradient(90deg, #004e53 85%, #0000);
  justify-content: flex-start;
  align-items: center;
  width: 37.5em;
  height: 100%;
  padding-left: 2em;
  display: flex;
  position: absolute;
  inset: 0% auto 0% 0%;
}

.overlay-inner {
  flex-flow: column;
  justify-content: space-between;
  align-items: flex-start;
  height: 28.125em;
  display: flex;
}

.overlay-count-row {
  grid-column-gap: .2em;
  grid-row-gap: .2em;
  flex-flow: row;
  justify-content: flex-start;
  align-items: center;
  font-size: 5.625em;
  font-weight: 700;
  display: flex;
}

.count-column {
  height: 1em;
  overflow: hidden;
}

.count-heading {
  width: 2ch;
  font-size: 1em;
  line-height: 1;
  margin: 0px;
  color: #f6f6f6;
}

.count-row-divider {
  background-color: #fff;
  width: 2px;
  height: .75em;
  transform: rotate(15deg);
}

.overlay-nav-row {
  grid-column-gap: 2em;
  grid-row-gap: 2em;
  display: flex;
}

.button {
  background-color: #0000;
  color: #fff;
  border: 1px solid #fff3;
  border-radius: .4em;
  justify-content: center;
  align-items: center;
  width: 4em;
  height: 4em;
  padding: 0;
  display: flex;
  position: relative;
  font-size: inherit;
}

.button-arrow {
  flex: none;
  width: 1em;
  height: .75em;
}

.button-arrow.next {
  transform: rotate(180deg);
}

.button-overlay {
  z-index: 2;
  position: absolute;
  inset: -1px;
}

.overlay-corner {
  border-top: 1px solid #fff;
  border-left: 1px solid #fff;
  border-top-left-radius: .4em;
  width: 1em;
  height: 1em;
}

.overlay-corner.top-right {
  position: absolute;
  inset: 0% 0% auto auto;
  transform: rotate(90deg);
}

.overlay-corner.bottom-left {
  position: absolute;
  inset: auto auto 0% 0%;
  transform: rotate(-90deg);
}

.overlay-corner.bottom-right {
  position: absolute;
  inset: auto 0% 0% auto;
  transform: rotate(180deg);
}

.button, .button-overlay{ transition: transform 0.475s ease-in, opacity 0.475s ease-in-out}

.button:hover .button-overlay{ transform: scale(1.4); }
.overlay-nav-row:hover:has(.button:hover) .button{ opacity: 0.4; }
.button:hover{ transform: scale(0.85); opacity: 1 !important; }

.main {
  z-index: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
  overflow: hidden;
}

.slider-wrap {
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
}

.slider-list {
  flex-flow: row;
  justify-content: flex-start;
  align-items: stretch;
  display: flex;
  position: relative;
}

.slider-slide {
  flex: none;
  width: 42.5em;
  height: 28em;
  padding-left: 1.25em;
  padding-right: 1.25em;
  transition: opacity .4s;
  position: relative;
}

[data-slider="slide"]{ opacity: 0.2; }
[data-slider="slide"].active { opacity: 1; } 
[data-slider="slide"].active .slide-caption{ transition-delay:0.3s;} 

.slide-inner {
  border-radius: .5em;
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  background-color: #F6F6F6;
}

img{
  width:100%;
  height:100;
  object-fit: cover;
}

.slide-caption {
  z-index: 2;
  grid-column-gap: .4em;
  grid-row-gap: .4em;
  background-color: #e6e6e6;
  color: #004E53;
  white-space: nowrap;
  border-radius: .25em;
  justify-content: flex-start;
  align-items: center;
  padding: .4em .75em .4em .5em;
  display: flex;
  position: absolute;
  top: 1.25em;
  left: 1.25em;
  overflow: hidden;
}

.caption-dot {
  background-color: #29aa59;
  border-radius: 10em;
  flex: none;
  width: .5em;
  height: .5em;
}

.caption {
  font-size: 1.5em;
  font-family: 'Unica One', sans-serif;
  margin: 0px;
}

.slide-caption{ transition: transform 0.525s ease-in, opacity 0.525s ease-out; transition-delay:0s; }

html:not(.wf-design-mode) .slide-caption{ opacity: 0; transform:translate(-25%, 0px) }
html:not(.wf-design-mode) [data-slider="slide"].active .slide-caption{ opacity: 1; transform:translate(0%, 0px) }