/* PHOTOBOARD */

.photoboard {
  display: flex;
  flex-direction: column;     /* Elementos ficam um abaixo do outro */
  justify-content: center;    /* Centraliza verticalmente */
  align-items: center; 
  width: 100%;
  aspect-ratio: 16 / 9;
  background-color: #ccc;
  background-attachment: fixed;
  border-radius: 25px;
  box-sizing: border-box;
  padding: 50px 100px;
  text-align: center;
}

.photoboard * {
    text-align: center;
    margin-right: auto;
    margin-left: auto;
}

/* MARQUEES */

.marquee {
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  width: 100%;
}

.marquee-track {
  display: inline-flex;
  gap: 20px;
  white-space: nowrap;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.marquee-track span {
  flex: 0 0 auto;
  font-size: 20px;
  font-weight: 600;
  text-transform: uppercase;
}

.marquee span::before {
  content: '';
  display: inline-block;
  vertical-align: middle;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  width: 30px;
  height: 30px;
  margin-right: 10px;
}

.marquee-icon-1::before {
    background-image: url(../img/icon-snowflake-white.svg)
}

.marquee-icon-2::before {
    background-image: url(../img/icon-a-badge-white.svg)
}

.marquee-icon-3::before {
    background-image: url(../img/icon-snowflake-white.svg)
}

.marquee-icon-3::before {
    background-image: url(../img/icon-sparks.svg)    
}

.marquee-icon-4::before {
    background-image: url(../img/icon-calendar.svg)    
}

.marquee-icon-5::before {
    background-image: url(../img/icon-award.svg)    
}





.marquee-logos {
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  width: 100%;
  height: 200px;
}

.marquee-logos-track {
  display: inline-flex;
  gap: 20px;
  white-space: nowrap;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.marquee-logos-track span {
  flex: 0 0 auto;
  font-size: 20px;
  font-weight: 600;
  text-transform: uppercase;
}

.marquee-logos-track span img {
  max-height: 200px;
}

.marquee-logos span::before {
  content: '';
  display: inline-block;
  vertical-align: middle;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  width: 30px;
  height: 30px;
  margin-right: 10px;
}


/* ACCORDION */

.accordion {
  width: 100%;
  margin: 20px auto;
}

.accordion-question {
  width: 100%;
  padding: 15px 0;
  font-size: 16pX;
  background: none;
  border: none;
  border-bottom: 2px solid;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.accordion .accordion-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  background: none;
  font-weight: bold;
}

.accordion .accordion-answer p {
  padding: 15px 0;
  margin: 0;
}

.accordion .arrow {
  transition: transform 0.3s ease;
  background-image: url(../img/btn-arrow-down-red.svg);
  text-indent: -1000%;
  overflow: hidden;
  width: 30px;
  height: 30px;
}

.accordion .arrow.open {
  transform: rotate(180deg);
}


/* CAROUSEL */

    .carousel-wrapper {
        width: calc(100% - 110px);
        margin: 60px auto;
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    /* Arrows */
    .carousel-wrapper .arrow {
        background: none;
        text-indent: -1000%;
        overflow: hidden;
        background-repeat: no-repeat;
        background-position: center;
        border: none;
        width: 35px;
        height: 35px;
        cursor: pointer;
        transition: 0.3s;
        position: absolute;
        top: 50%;
        transform: translateY(calc(-50% - 20px));
    }

    .carousel-wrapper .arrow.left { left: -55px; background-image: url(../img/btn-arrow-left-blue.svg);}
    .carousel-wrapper .arrow.right { right: -55px; background-image: url(../img/btn-arrow-right-blue.svg);}

    .carousel-wrapper .arrow:hover {
        opacity: 0.5;
    }

    /* Container */
    .carousel-wrapper .carousel-container {
        overflow: hidden;
        width: 100%;
        position: relative;
    }

    .carousel-wrapper .inner {
        display: flex;
        transition: transform 0.45s ease;
    }

    /* Slides */
    .carousel-wrapper .slide {
        min-width: 100%;
        padding: 30px;
        border-radius: 20px;
        border: 2px solid var(--blue-blueberry);
        box-sizing: border-box;
    }

    .carousel-wrapper .slide .title {
        margin: 0;
        color: var(--blue-blueberry);
        font-weight: 800;
        text-transform: uppercase;
    }

    .carousel-wrapper .slide .avatar {
      max-width: 80px;
      height: auto;
    }

    .carousel-wrapper .slide .company {
        margin: 0 0 15px;
        color: white;
        font-weight: bold;
    }

    .carousel-wrapper .slide p {
        color: var(--blue-blueberry);
        line-height: 1.5;
    }

    /* Dots */
    .carousel-wrapper .dots {
        display: flex;
        gap: 15px;
        margin-top: 25px;
        justify-content: center;
    }

    .carousel-wrapper .dot {
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background: var(--blue-blueberry);
        cursor: pointer;
        transition: 0.3s;
    }

    .carousel-wrapper .dot.active {
        background: white;
    }

    

/* Grid Benefits */

.grid-benefits {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-column-gap: 50px;
    grid-row-gap: 50px;
    text-align: center;
}

.grid-benefits li::before {
  content: '';
  display: block;
  width: 100px;
  height: 100px;
  margin-bottom: 15px;
  background-position: center;
  background-repeat: no-repeat;
  margin-right: auto;
  margin-left: auto;
}

.grid-benefits li:nth-child(1)::before {
  background-image: url(../img/icon-scissor.svg);
}

.grid-benefits li:nth-child(2)::before {
  background-image: url(../img/icon-snowflake.svg);
}

.grid-benefits li:nth-child(3)::before {
  background-image: url(../img/icon-a-badge.svg);
}

.grid-benefits li:nth-child(4)::before {
  background-image: url(../img/icon-package.svg);
}

.grid-benefits li:nth-child(5)::before {
  background-image: url(../img/icon-ready.svg);
}

.grid-benefits li:nth-child(6)::before {
  background-image: url(../img/icon-calendar-02.svg);
}

/* Grid Beneftis 4 */

.grid-benefits-4 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-column-gap: 50px;
    grid-row-gap: 50px;
}

.grid-benefits-4 li::before {
  content: '';
  display: block;
  width: 80px;
  height: 80px;
  margin-bottom: 15px;
  background-position: left center;
  background-repeat: no-repeat;
  background-size: contain;
}

.grid-benefits-4 li:nth-child(1)::before {
  background-image: url(../img/icon-maps.svg);
}

.grid-benefits-4 li:nth-child(2)::before {
  background-image: url(../img/icon-calendar-blue.svg);
}

.grid-benefits-4 li:nth-child(3)::before {
  background-image: url(../img/icon-certified-blue.svg);
}

.grid-benefits-4 li:nth-child(4)::before {
  background-image: url(../img/icon-try.svg);
}

.grid-benefits-4 li:nth-child(5)::before {
  background-image: url(../img/icon-supervision.svg);
}

.grid-benefits-4 li:nth-child(6)::before {
  background-image: url(../img/icon-award-blue.svg);
}


/* Grid Benefits 3 */

.grid-benefits-3 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-column-gap: 50px;
    grid-row-gap: 50px;
    text-align: center;
}

.grid-benefits-3 li::before {
  content: '';
  display: block;
  width: 100px;
  height: 100px;
  margin-bottom: 15px;
  background-position: center;
  background-repeat: no-repeat;
  margin-right: auto;
  margin-left: auto;
}

.grid-benefits-3 li:nth-child(1)::before {
  background-image: url(../img/icon-scissor.svg);
}

.grid-benefits-3 li:nth-child(2)::before {
  background-image: url(../img/icon-snowflake.svg);
}

.grid-benefits-3 li:nth-child(3)::before {
  background-image: url(../img/icon-a-badge.svg);
}

.grid-benefits-3 li:nth-child(4)::before {
  background-image: url(../img/icon-package.svg);
}

.grid-benefits-3 li:nth-child(5)::before {
  background-image: url(../img/icon-ready.svg);
}

.grid-benefits-3 li:nth-child(6)::before {
  background-image: url(../img/icon-calendar-02.svg);
}

.grid-benefits-3 li:nth-child(7)::before {
  background-image: url(../img/icon-certified.svg);
}


.grid-benefits-3 li:nth-child(8)::before {
  background-image: url(../img/icon-heart.svg);
}

/* Grid Benefits 5 */

.grid-benefits-5 {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-column-gap: 50px;
    grid-row-gap: 50px;
}

.grid-benefits-5 li::before {
  content: '';
  display: block;
  width: 100px;
  height: 100px;
  margin-bottom: 15px;
  background-position: left center;
  background-repeat: no-repeat;
}

.grid-benefits-5 li:nth-child(1)::before {
  background-image: url(../img/icon-snowflake-blue.svg);
}

.grid-benefits-5 li:nth-child(2)::before {
  background-image: url(../img/icon-a-badge-blue.svg);
}

.grid-benefits-5 li:nth-child(3)::before {
  background-image: url(../img/icon-tracking.svg);
}

.grid-benefits-5 li:nth-child(4)::before {
  background-image: url(../img/icon-logistic.svg);
}

.grid-benefits-5 li:nth-child(5)::before {
  background-image: url(../img/icon-support.svg);
}

.grid-benefits-5 span {
  font-weight: normal;
  display: block;
  padding-top: 15px;
}


@media (max-width: 768px) {
  
  .grid-benefits-4 li::before {
    width: 100px;
    height: 100px;
  }

  .grid-benefits-4, .grid-benefits-5, .grid-benefits-3 {
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 50px;
    grid-row-gap: 50px;
  }

}

/* Grid Product */

.grid-product, .grid-product * {
  -webkit-transition: all 0.5s ease-in-out;
-moz-transition: all 0.5s ease-in-out;
-ms-transition: all 0.5s ease-in-out;
-o-transition: all 0.5s ease-in-out;
transition: all 0.5s ease-in-out;
}

.grid-product {
  border-top: 1px solid var(--yellow-beak);
  border-bottom: 1px solid var(--yellow-beak);
      display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-column-gap: 0;
}

.product-item {
  box-sizing: border-box;
  padding: 50px;
  cursor: pointer;
}

.product-item:hover {
  background-color: #b01d11;
}

.product-item:hover .image {
  transform: scale(0.9)
}

.product-item:hover button, .product-item:hover .grado {
  transform: scale(1.1)
}

.product-item:hover button {
  background-color: white;
  transform: rotate(180deg);
}

.product-item .title {
  font-size: 30px;
  line-height: 32px;
  max-width: 70%;
}

.product-item .weight {
  font-size: 20px;
}

.product-description .grado, .product-item .grado {
  overflow: hidden;
  position: relative;
  float: right;
  width: 100px;
  aspect-ratio: 1 / 1;
  background-image: url(../img/icon-a-badge-complete-2.png)
}

.product-description .grado span, .product-item .grado span {
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1;
  position: absolute;
  text-indent: -1000%;
  background-image: url(../img/icon-a-badge-complete.png);
  animation: turn 20s linear infinite;
}

.product-item .image {
  aspect-ratio: 1 / 1;
  width: 100%;
  background-image: url(../img/package.png);
  overflow: hidden;
  text-indent: -1000%;
}

.product-item button {
  margin-top: -25px;
  float: right;
  aspect-ratio: 1 / 1;
}

.grid-product a:nth-child(even) {
  border-left: 1px solid var(--yellow-beak);
  border-right: 1px solid var(--yellow-beak);
}

@keyframes turn {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* Column */

.columns {
  display: flex;              /* Torna as divs internas colunas lado a lado */
  align-items: center;
  gap: 50px;
}

.column {
  flex: 1;                    /* Faz as colunas ocuparem larguras iguais */
  align-items: center;        /* Alinha o conteúdo verticalmente */
  justify-content: center;    /* Alinha o conteúdo horizontalmente (opcional) */
}

.column-photo {
  border-radius: 25px;
  background-color: #ccc;
  overflow: hidden;
  height: 100%;
}

.column-photo img {
  object-fit: 110%;
  object-position: center;
  display: block;

  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

@media (max-width: 768px) {

.columns {
  display: table;              
  align-items: initial;
  gap: 0;
  width: 100%;
}

.column-photo-simple, .column-photo {
  display: none;
}

.column {
  flex: none;
  align-items: normal;
  justify-content: initial;
}

#inicio {
  padding-top: 0;
}

#inicio h2 {
  margin-top: 25px !important;
}

.highlight-mobile {
  width: 100%;
  border-radius: 25px;
  overflow: hidden;
  vertical-align: middle;
  object-fit: cover;
}

.highlight-mobile img {
  max-width: 100%;
  vertical-align: middle;
  object-fit: cover;
}

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

.grid-product a:nth-child(even) {
  border-top: 1px solid var(--yellow-beak);
  border-bottom: 1px solid var(--yellow-beak);
  border-left: none;
  border-right: none;
}

.grid-benefits {
  grid-template-columns: repeat(2, 1fr);
}

.carousel-wrapper {
    width: calc(100vw - 40px);
    margin: 0;
    margin-top: 25px;
}

.carousel-wrapper .arrow {
  display: none;
}

.photoboard {
  padding: 25px;
}

.photoboard h3 {
  font-size: 25px;
  line-height: 28px;
  padding-top: 100px;
}

.photoboard button {
  margin-bottom: 100px;
}

#sobre-nos .highlight-mobile {
  aspect-ratio: 16 / 9;
  margin-bottom: 25px;
    object-fit: cover;
    object-position: center;
    display: block;
}

#sobre-nos .highlight-mobile img {
    object-fit: cover;
    object-position: center;
    display: block;
}

.frozen-strawberries-photo {
  background-attachment: scroll;
}

}

.frozen-strawberries-photo {
  background-image: url(../img/frozen-strawberries-photo.jpg);
  background-position: center;
  background-size: cover;
}

/* O wrapper é onde o círculo será criado */
.photo-wrapper {
    vertical-align: middle;
  position: relative;
  display: inline-block; /* Ou block, se preferir */
  
}

/* O círculo centralizado */
.photo-wrapper::after {
  content: "";
/*  content: "Play";
  padding-top: 90px;
  margin-top: 30px; /*/
  text-transform: uppercase;
  color: white;
  font-weight: bold;
  text-align: center;
  position: absolute;

  width: 80px;   /* tamanho do círculo */
  height: 80px;
  background-image: url(../img/btn-arrow-right-white.svg);
  background-position: center top;
  background-size: contain;
  background-repeat: no-repeat;

  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.8;

  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  cursor: pointer;
}

.photo-wrapper:hover img {
  transform: scale(1.1);
}

.photo-wrapper:hover::after {
  opacity: 1;
}

/* STRAWBERRIES */

/* Container das divs flutuantes */
.float-container {
    position: relative;
    background: transparent;
    overflow: visible;
    z-index: 999;
}

/* Divs flutuantes */
.float-item {
  position: absolute;
  width: 100px;
  height: auto;
  animation: float 6s ease-in-out infinite;
  margin-top: -66.9px;
  margin-left: 25px;
}
.float-item img {
  width: 100%;
  height: auto;
}
.float-item-right {
  float: right;
  text-align: right;
  right: 25px;
}
.float-item-right img {
  transform: rotate(25deg);
}
.float-bigger {
  width: 150px;
}

/* Animação de flutuação */
@keyframes float {
    0%   { transform: translateY(20px); }
    50%  { transform: translateY(-20px); }
    100% { transform: translateY(20px); }
}

@media (max-width: 768px) {

.float-bigger {
  width: 100px;
}

}

/* Carousel B2B */

.carousel-b2b {
  background-image: url(../img/carousel-b2b.png),
                    url(../img/mimo-floor-lilac-snow.png);
  background-position: center,
                      right center,
                      center;
  background-size: cover, cover;
}

.carousel-b2b2 {
  background-image: url(../img/mimob2b.png),
                    url(../img/badge-blue-berry.svg);
  background-position: right 10% center,
                      right center;
  background-size: 40%,
                    50%;
}

.carousel-b2c {
  background-image: url(../img/mimao4.png),
                    url(../img/mimo-floor-white.png),
                    url(../img/background-net.jpg);
  background-position: right 10% center, center, center;
  background-size: 40%, cover, cover;
}

.carousel-intro {
/*  background-image: url(../img/mimo-menu.svg);
  background-position: right -35% center;
  background-size: 65%; */
  background-image: url(../img/mimao.png), url(../img/mimo-floor.png), url(../img/frozen-strawberries-photo.jpg);
  background-position: right 10% center, center, center;
  background-size: 40%, cover, cover;  
}


@media (max-width: 768px) {

.carousel-intro {
  background-image: none, none, none;
  background-position: none, none, center;
  background-size: none, none, cover;  
}

.carousel-b2b {
  background-image: none;
}

.carousel-b2b2 {
  background-image: url(../img/mimob2b.png),
                    url(../img/badge-blue-berry.svg);
  background-position: right 10% center,
                      right center;
  background-size: 40%,
                    50%;
}

.carousel-b2c {
  background-image: none;
  background-position: none;
  background-size: none;
}


}



/* Product */

.product-description .grado {
  overflow: hidden;
  position: relative;
  float: right;
  width: 150px;
  right: 50px;
  position: absolute;
}

.product-description .weight {
  font-size: 26px;
  font-weight: normal;
}

.description-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 100px;
}

.title-description, .title-information {
    padding-left: 45px;
    background-position: top left;
    background-size: 30px;
    height: 40px;
    border-bottom: 1px solid var(--pink-raspberry);
}

.title-description {
  background-image: url(../img/icon-book.svg);
}

.title-information {
  background-image: url(../img/icon-info.svg);
}

.area-produtos {
  padding: 40px 0;
}

.photo-list {
  display: flex;
  gap: 25px;
  overflow-x: auto;
  overflow-y: hidden;
  padding-bottom: 25px;
  scroll-behavior: smooth;
  padding-left: 25px;
  padding-right: 25px;
}

.photo-list::-webkit-scrollbar {
  height: 1px;
  background: var(--pink-raspberry);
}

.photo-list::-webkit-scrollbar-thumb {
  background: white;
  border-radius: 10px;
}

.item-produto {
  flex: 0 0 220px;
  height: 220px;
  background-color: #ffffff;
  border-radius: 25px;
  overflow: hidden;

  display: flex;
  align-items: center;
  justify-content: center;
}

/* Imagem */
.item-produto img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  cursor: pointer;
}

.mimo-tip {
  width: 100%;
  border-radius: 25px;
  margin-top: 25px;
}

@media (max-width: 768px) {

.product-description .grado {
  width: 100px;
  right: 25px;
}

.description-grid {
    grid-template-columns: repeat(1, 1fr);
    grid-row-gap: 25px;
}

.area-produtos {
  padding: 0;
}

.item-produto {
  flex: 0 0 110px;
  height: 110px;
  border-radius: 15px;
}

}

/* Form */

.custom-form {
  padding: 0;
  margin: 0;
}

.custom-form input[type="text"], .custom-form input[type="email"], .custom-form input[type="tel"], .custom-form select {
  border-radius: 25px;
  font-size: 16px;
  box-sizing: border-box;
  border: none;
  padding: 10px;
  width: 100%;
  margin-bottom: 15px;
  font-family: inherit;
}

.custom-form label {
  font-weight: bold;
}

.custom-form select {
  appearance: none;        /* Standard */
  -webkit-appearance: none; /* Chrome / Safari */
  -moz-appearance: none;    /* Firefox */
  background-image: url(../img/btn-arrow-bottom-red.svg);
  background-size: 20px;
  background-position: right 15px center;
}

.custom-form button {
  color: inherit;
}

.custom-form i {
  font-size: 12px;
  line-height: 12px;
}

.custom-form .form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 15px;
}

.custom-form,
.success-message {
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.success-message {
  opacity: 0;
  visibility: hidden;
}

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

/* Photo Grid */

.photo-grid img {
  max-width: 100%;
  height: auto;
}