* {
  padding: 0;
  margin: 0;
  list-style: none;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
  outline: none;
}

body {
  background-color: var(--grey);
}

a {
  text-decoration: none;
  color: var(--dark-primary);
}

ul {
  padding: 0;
}

/*colors*/
:root {
  --dark-primary: #000;
  --dark-secordary: #767676;
  --green-primary: #009b00;
  --green-hover: #02b602;
  --green-secordary: #97be15;
  --grey: #e9e9e9;
  --red: #da0202;
}

.container {
  margin-left: auto;
  margin-right: auto;
  width: 81.25rem;
  display: flex;
  align-self: center;
  justify-content: center;
}

header {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 5rem;
  background-color: #fff;
}

.logo-container {
  display: flex;
  flex: 1;
}
.logo-container a {
  width: 100%;
  display: flex;
  align-items: center;
}

.logo-container a img {
  max-width: 100%;
  margin-right: 0.5rem;
}

.menu-container {
  display: flex;
  align-items: center;
  width: 80%;
}

nav.menu {
  display: flex;
  flex: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.563rem;
}

nav.menu .link-item {
  display: flex;
  flex-direction: column;
  position: relative;
}

nav.menu .link-item ul.dropdown {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  position: absolute;
  left: 0;
  top: 1.25rem;
  width: 18.75rem;
  z-index: 1;
}

nav.menu .link-item ul.dropdown li {
  display: flex;
  flex-direction: column;
  flex: 1;
}

nav.menu .link-item ul.dropdown li h6 {
  color: #fff;
  font-size: 1.2rem;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
  display: flex;
  align-items: center;
}

nav.menu .link-item ul.dropdown li a {
  color: #fff;
  font-weight: normal;
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
}

nav.menu .link-item ul.dropdown li a:hover {
  text-decoration: underline;
  transition: 0.3s;
}

/*hamburger menu*/
.hamburger {
  display: none !important;
}

.link-item span {
  background-color: var(--green-primary);
  width: 100%;
  max-height: 100%;
  padding: 1rem 1.8rem;
  margin-top: 1rem;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.157);
  border-radius: 0.3rem;
}

.link-item #food,
.link-item #hygiene,
.link-item #cleaning {
  display: none;
}

.link-item.show-menu:hover #food,
.link-item.show-menu:hover #hygiene,
.link-item.show-menu:hover #cleaning {
  display: flex;
  animation-name: dropdownhover;
  animation-duration: 0.5s;
}

@keyframes dropdownhover {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

nav.menu a {
  color: var(--dark-primary);
  font-size: 1.125rem;
  font-weight: 600;
}

.menu-container ul {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.menu-container ul a img {
  max-width: 100%;
  height: 2.3rem;
  border-radius: 0.3rem;
  margin-top: 0.6rem;
}

.menu-container ul a img:hover {
  filter: brightness(80%);
  transition: 0.5s;
}

.menu-container ul a:not(:last-child) {
  margin-right: 0.7rem;
}

main {
  display: flex;
  flex-direction: column;
}

.hero {
  background-image: url("../svg/hero-home.svg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  height: 55vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-container {
  width: 45rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.hero-container h2 {
  color: #fff;
  font-size: 2.4rem;
  margin-bottom: 2rem;
}

.search-container {
  background-color: #fff;
  display: flex;
  width: 100%;
  padding: 0.25rem;
  border-radius: 0.25rem;
  height: 3.813rem;
}

.search-container form {
  display: flex;
  align-items: center;
  width: 100%;
}

.search-container input {
  border: none;
  width: 92%;
  padding: 0 1.563rem;
  font-size: 1.1rem;
}

.search-container ::placeholder {
  color: #989797;
  font-size: 1.1rem;
}

.search-container .btn-search {
  background-color: var(--green-primary);
  border: none;
  flex: 1;
  border-radius: 0.25rem;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 3.3rem;
}

.search-container .btn-search:hover {
  cursor: pointer;
  background-color: var(--green-hover);
  transition: 0.3s;
}

.card-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin: 2.5rem 0;
}

.column {
  display: flex;
  flex-direction: column;
}

.card-row {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.card-row:not(:last-child) {
  margin-bottom: 2rem;
}

.card-header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.4rem;
}

.card-header h2 {
  font-size: 1.875rem;
  color: var(--dark-primary);
}

.card-header .view-all {
  text-align: center;
  border: none;
  background-color: var(--green-primary);
  color: #fff;
  border-radius: 0.25rem;
  font-size: 0.9rem;
  width: 7rem;
  padding: 0.2rem 0;
}

.card-header .view-all:hover {
  background-color: var(--green-hover);
  cursor: pointer;
  transition: 0.3s;
}

.card-itens {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin-bottom: 2rem;
}

.card-itens a {
  width: 100%;
}

.card-itens a ul.item {
  background-color: #fff;
  flex: 1;
  border-radius: 0.625rem;
}

.card-itens a ul.item:hover {
  box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.116);
  transition: 0.3s;
}

.card-itens a ul.item img {
  border-top-left-radius: 0.625rem;
  border-top-right-radius: 0.625rem;
  object-fit: cover;
  object-position: top;
  width: 100%;
  height: 15rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.img-thumbnail {
  border-bottom: 0.063rem solid rgba(0, 0, 0, 0.06);
}

.card-itens a ul.item ul {
  display: flex;
  flex-direction: column;
  padding: 1.8rem;
}

.card-itens a a ul.item ul strong {
  font-size: 1rem;
}

.card-itens a ul.item ul p {
  font-size: 1.1rem;
}

.card-itens a ul.item ul span {
  color: #838383;
  font-size: 0.938rem;
}

.card-itens a ul.item ul ul {
  display: flex;
  padding: 0;
  flex-direction: row;
  gap: 0.4rem;
}

.card-itens a ul.item ul.vegetable-description ul {
  width: 66%;
}

.card-itens a ul.item ul.vegetable-description ul li:nth-child(2n) p {
  background-color: var(--dark-secordary);
}

.card-itens a ul.item ul ul li {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #dfdfdf;
  margin-top: 0.7rem;
  border-radius: 0.3rem;
  flex: 1;
  flex-wrap: wrap;
}

.card-itens a ul.item ul ul li p {
  background-color: var(--green-primary);
  color: #fff;
  font-size: 0.7rem;
  padding: 0.2rem 0.5rem;
  border-radius: 0.3rem;
  font-weight: 500;
  flex: 1;
  text-align: center;
  height: 1.5rem;
  display: flex;
  align-items: center;
}

.card-itens a ul.item ul ul li:nth-child(2n) p {
  background-color: var(--green-secordary);
}

.card-itens a ul.item ul ul li:nth-child(3n) p {
  background-color: var(--dark-secordary);
}

.card-itens a ul.item ul ul li span {
  font-size: 0.8rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #5c5c5c;
  flex: 1;
}

/*download hero"*/
.download-hero {
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: url("../svg/download-hero.svg");
  background-size: cover;
  background-repeat: no-repeat;
  padding: 5rem 0;
  margin-top: 2.5rem;
}

.hero-download-container {
  width: 68.75rem;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.download-hero .text {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  padding-right: 5rem;
  flex: 2;
}

.download-hero .text h2 {
  font-size: 3.5rem;
  line-height: 4rem;
  color: #fff;
  margin-bottom: 1.6rem;
}

.download-hero .text ul {
  display: flex;
  flex-direction: column;
}

.download-hero .text ul p {
  color: #fff;
  font-size: 1.2rem;
}
.download-hero .text ul p:not(:last-child) {
  margin-bottom: 0.3rem;
}

.download-hero .text ul li {
  display: flex;
  margin-top: 2.3rem;
  gap: 0.625rem;
}

.download-hero .text ul li a img {
  width: 100%;
  height: 3.063rem;
  object-fit: cover;
  object-position: top;
  border-radius: 0.3rem;
  filter: drop-shadow(0px 0px 20px rgba(0, 0, 0, 0.15));
}

.download-hero .text ul li a img:hover {
  filter: brightness(80%);
  transition: 0.5s;
}

.download-hero .text ul li img:not(:last-child) {
  margin-right: 1.4rem;
}

.download-hero .image {
  display: flex;
  justify-content: center;
  flex: 1;
  filter: drop-shadow(0px 100px 80px rgba(0, 0, 0, 0.07))
    drop-shadow(0px 41.7776px 33.4221px rgba(0, 0, 0, 0.0503198))
    drop-shadow(0px 22.3363px 17.869px rgba(0, 0, 0, 0.0417275))
    drop-shadow(0px 12.5216px 10.0172px rgba(0, 0, 0, 0.035))
    drop-shadow(0px 6.6501px 5.32008px rgba(0, 0, 0, 0.0282725))
    drop-shadow(0px 2.76726px 2.21381px rgba(0, 0, 0, 0.0196802));
}

/*listagem*/
.hero-page {
  background-color: var(--green-primary);
  display: flex;
  justify-content: center;
  align-items: center;
  height: 14rem;
}

.hero-search {
  box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.123);
}

.header-page {
  width: 100%;
  display: flex;
  flex-direction: column;
  z-index: 1;
}

.header-page ul {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.4rem 0;
}

.header-page ul span {
  font-size: 0.938rem;
}

.header-page ul span strong {
  color: var(--green-primary);
  font-weight: 500;
}

.header-page .title-container {
  padding: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-page .title-container h2 {
  font-size: 2rem;
}

.header-page .title-container li {
  display: flex;
  align-items: center;
  border-radius: 1.25rem;
}

.results-for {
  color: var(--green-primary);
  font-size: 1.9rem;
  font-weight: 700;
  margin: 0.7rem 0;
}

.share {
  display: flex;
  flex-direction: column;
  position: relative;
}

ul.share-container {
  position: absolute;
  display: flex;
  flex-direction: column;
  top: 2.5rem;
  right: 0;
  width: 18.75rem;
  background-color: rgb(251, 251, 251);
  border-radius: 0.625rem;
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.04), 0px 2px 6px rgba(0, 0, 0, 0.04),
    0px 0px 1px rgba(0, 0, 0, 0.04);
  animation-name: toggle-share;
  animation-duration: 0.5s;
}

@keyframes toggle-share {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

ul.share-container li {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.9rem;
  padding: 0.5rem 0;
}

ul.share-container li a i {
  font-size: 1.6rem;
}

ul.share-container li a i:hover {
  color: var(--green-primary);
  transition: 0.2s;
}

.header-page .title-container li button {
  background: linear-gradient(
    235.37deg,
    rgba(2, 238, 2, 0) -52.96%,
    #009b00 56.75%
  );
  font-size: 1.05rem;
  color: #fff;
  border-radius: 1.25rem;
  border: 0;
  width: 11rem;
  height: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

#close-button {
  width: 1.875rem;
  height: 1.875rem;
  border-radius: 0.25rem;
}

.header-page .title-container li button img {
  max-width: 100%;
  height: 1.188rem;
  margin-left: 0.5rem;
}

.header-page .title-container li button:hover {
  background: linear-gradient(100deg, rgb(0, 173, 0) -70%, #009b00 50%);
  transition: 1s;
  cursor: pointer;
}

.filter-tags {
  display: flex;
  width: 100%;
  justify-content: center;
  margin-top: 1rem;
}

.filter-tags select {
  width: 100%;
  border: 0.063rem solid rgba(204, 204, 204, 0.671);
  border-radius: 0.313rem;
  padding: 0.438rem;
  font-weight: 600;
  font-size: 0.938rem;
}

.filter-tags select option {
  font-size: 0.938rem;
}

.page-content {
  margin: 1.5rem 0 5rem 0;
}

.page-container {
  display: flex;
  flex-direction: column;
  gap: 1.7rem;
}

/*product page*/
.single {
  margin-top: 0.5rem;
}

.single .product-container {
  display: flex;
  background-color: #fff;
  padding: 3.125rem;
  border-radius: 0.625rem;
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.04), 0px 2px 6px rgba(0, 0, 0, 0.04),
    0px 0px 1px rgba(0, 0, 0, 0.04);
  position: relative;
}

.product-share {
  position: absolute;
  right: 3.625rem;
}

.product-share button {
  background: linear-gradient(
    235.37deg,
    rgba(2, 238, 2, 0) -52.96%,
    #009b00 56.75%
  );
  font-size: 1.05rem;
  color: #fff;
  border-radius: 1.25rem;
  border: 0;
  width: 11rem;
  height: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.product-share button img {
  max-width: 100%;
  height: 1.188rem;
  margin-left: 0.5rem;
}

.product-share button:hover {
  background: linear-gradient(100deg, rgb(0, 173, 0) -70%, #009b00 50%);
  transition: 1s;
  cursor: pointer;
}

.product-share ul.share-container {
  align-items: center;
  background-color: #fff;
  padding: 1.3rem;
  border: 0.063rem solid rgba(238, 238, 238, 0.561);
}

.single .product-container .product-image {
  width: 35%;
  margin-right: 2.563rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.single .product-container .product-image img {
  width: 100%;
  height: 16rem;
  object-fit: cover;
  object-position: top;
  border-radius: 0.625rem;
  border: 0.063rem solid #e2e2e2;
}

.single .product-container .product-image button.attachment {
  background-color: #f1f1f1;
  border-radius: 0.438rem;
  width: 12.125rem;
  height: 2.4rem;
  font-size: 1.1rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-top: -1.188rem;
  border: 0.063rem solid var(--green-primary);
}

.single .product-container .product-image button.attachment:hover {
  cursor: pointer;
  background-color: rgb(223, 223, 223);
  transition: 0.3s;
}

.single .product-container .product-image li {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 1.4rem;
}

.single .product-container .product-image li button.analyze,
.single .product-container .product-image li button.comment {
  border: 0;
  border-radius: 0.438rem;
  width: 12.125rem;
  height: 2.4rem;
  font-size: 1.1rem;
  font-weight: 500;
  background-color: var(--green-primary);
  color: #fff;
}

.single .product-container .product-image li button.analyze:hover,
.single .product-container .product-image li button.comment:hover {
  background-color: var(--green-hover);
  transition: 0.3s;
  cursor: pointer;
}

.single .product-container .product-image button.attachments::after {
  content: "";
  background-image: url("../svg/eye.svg");
  background-size: cover;
  width: 0.875rem;
  height: 0.625rem;
}

.single .product-container .product-detalls {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.single .product-container .product-detalls h2 {
  font-size: 1.688rem;
}
.single .product-container .product-detalls span {
  font-size: 1.125rem;
}

.single .product-container .product-detalls .opinions {
  display: flex;
  flex-direction: column;
  margin: 0.5rem 0 0.7rem 0;
  gap: 0.2rem;
}

.single .product-container .product-detalls .opinions small {
  color: #7c7c7c;
  display: flex;
  align-items: center;
}

.single .product-container .product-detalls .opinions small span {
  font-size: 1.08rem;
}

.single .product-container .product-detalls .opinions small img {
  margin-right: 0.8rem;
}

.single .product-container .product-detalls .opinions small img.comment-icon {
  margin-left: -0.01rem;
  margin-right: 0.9rem;
}

.single
  .product-container
  .product-detalls
  .opinions
  small
  img:not(:nth-child(1n)) {
  max-width: 100%;
  height: 1.1rem;
}

.single .product-container .product-detalls .tags {
  display: flex;
  flex-direction: column;
  margin-top: 0.4rem;
}
.single .product-container .product-detalls .tags span {
  font-size: 1.2rem;
  font-weight: 500;
}

.single .product-container .product-detalls .tags li {
  display: flex;
  padding: 0.5rem 0;
  flex-wrap: wrap;
  position: relative;
  gap: 0.9rem 0;
}

.single .product-container .product-detalls .tags li .tag-text a {
  border: 0.063rem solid #d1d1d1;
  border-radius: 0.438rem;
  padding: 0.3rem 1rem;
  font-size: 0.938rem;
  color: #3b3b3b;
}

.single .product-container .product-detalls .tags li .tag-text a:hover {
  background-color: var(--green-primary);
  color: #fff;
  border-color: var(--green-primary);
  transition: 0.3s;
}

.single .product-container .product-detalls .tags li .tag-text::after {
  content: ">";
  color: #b0b0b0;
  margin-left: 0.1rem;
  margin-right: 0.5rem;
}

.single
  .product-container
  .product-detalls
  .tags
  li
  .tag-text:last-child::after {
  display: none;
}

.comments .product-container {
  margin-top: -3rem;
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.04), 0px 2px 6px rgba(0, 0, 0, 0.04),
    0px 0px 1px rgba(0, 0, 0, 0.04);
  background-color: #fff;
  padding: 3.125rem;
  border-radius: 0.625rem;
  z-index: 1;
}

.comments .header-comments {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.75rem;
}

.comments .header-comments h3 {
  font-size: 1.5rem;
  font-weight: 600;
}

.comments .header-comments li label {
  color: #303030;
  font-size: 1.125rem;
  margin-right: 0.188rem;
}
.comments .header-comments li select {
  border: 0.063rem solid #c7c3c3;
  border-radius: 0.25rem;
  padding: 0 0 0 0.5rem;
  height: 1.8rem;
  font-size: 0.9rem;
}

.comment-container {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.comment-container .comment-item {
  border: 0.063rem solid #dddddd;
  border-radius: 0.625rem;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.comment-container div ul {
  display: flex;
  justify-content: flex-start;
  gap: 1.2rem;
}

.comment-container div ul img {
  width: 4rem;
  height: 4rem;
  object-fit: cover;
  object-position: top;
  border-radius: 2rem;
}
.comment-container div ul small {
  color: #787878;
  font-size: 0.875rem;
}
.comment-container div ul h5 {
  font-size: 1.2rem;
  font-weight: 600;
}
.comment-container div ul p {
  font-size: 1rem;
  font-weight: normal;
  line-height: 1.5rem;
  color: #696767;
}

.comment-container div ul span {
  color: #fff;
  font-size: 0.938rem;
  width: 17.5rem;
  text-align: center;
  height: 1.563rem;
  padding: 0 1rem;
  border-radius: 0.188rem;
}

.comment-container div ul span.vegan {
  background-color: var(--green-primary);
}

.comment-container div ul span.vegetable {
  background-color: var(--green-secordary);
}

.comment-container div ul span.no-vegan {
  background-color: var(--red);
}

.comment-container div li.actions {
  display: flex;
  align-items: center;
  margin-left: 5.2rem;
  gap: 0.8rem;
}
.comment-container div li.actions span {
  font-size: 0.938rem;
  font-weight: 500;
}

.comment-container div li.actions span:hover {
  cursor: pointer;
}

.comment-container div li.actions i {
  color: var(--green-primary);
  margin-right: 0.5rem;
}

.comment-item .answers {
  border: 0.063rem solid #dddddd;
  border-radius: 0.625rem;
  padding: 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-left: 5.2rem;
  max-width: 55rem;
  animation-name: answers;
  animation-duration: 1s;
}

@keyframes answers {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.comment-item .answers img {
  width: 3rem;
  height: 3rem;
}

.comment-item .answers small {
  font-size: 0.79rem;
}
.comment-item .answers h5 {
  font-size: 1.063rem;
}
.comment-item .answers p {
  font-size: 0.96rem;
  line-height: 1.5rem;
}

.comment-item .answers li.actions {
  margin-left: 4.3rem;
}

.comment-item .answers-container {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.comment-item .load-more {
  width: 12rem;
  align-self: center;
  margin-top: 1rem;
  background-color: #eeeeee;
  border: none;
  border-radius: 0.313rem;
  font-size: 0.938rem;
  font-weight: 500;
  padding: 0.2rem 0;
  color: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  border: 0.063rem solid #eee;
}

.comment-item .load-more .load {
  width: 1.4rem;
  display: none;
}

.comment-item .load-more:hover {
  cursor: pointer;
  border: 0.063rem solid var(--green-hover);
  color: #fff;
  transition: 0.3s;
  color: #000;
}

.list-item {
  background-color: #fff;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.04), 0px 2px 6px rgba(0, 0, 0, 0.04),
    0px 0px 1px rgba(0, 0, 0, 0.04);
  border-radius: 0.625rem;
}

.list-item:hover {
  box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.116);
  transition: 0.3s;
}

.list-item img {
  border-top-left-radius: 0.625rem;
  border-bottom-left-radius: 0.625rem;
  margin-right: 2.75rem;
  border-right: 0.063rem solid #e2e2e2;
  max-width: 100%;
  width: 20rem;
  height: 12rem;
  object-fit: cover;
  object-position: top;
}

.list-item li {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.list-item li span.category {
  font-size: 1rem;
  font-weight: 500;
  color: rgb(70, 70, 70);
}

.list-item li h5 {
  font-size: 1.5rem;
  font-weight: 600;
}

.list-item li small {
  font-size: 0.938rem;
  color: #838383;
}

.list-item li ul {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  max-width: 60%;
  margin-top: 1.25rem;
}

.list-item li ul.no-vegetable-list {
  max-width: 50%;
}

.list-item li ul li {
  background-color: #dedede;
  display: flex;
  flex-direction: row;
  flex: 1;
  border-radius: 0.3rem;
}

.list-item li ul li p {
  padding: 0.2rem 0.5rem;
  background-color: var(--green-primary);
  color: #fff;
  border-radius: 0.3rem;
  width: 60%;
  text-align: center;
}

.list-item li ul p.vegetable-description {
  background-color: var(--green-secordary);
}

.list-item li ul p.no-vegan {
  background-color: var(--red);
}

.list-item li ul p.no-comment {
  background-color: var(--dark-secordary);
}

.list-item li ul li span {
  font-size: 0.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #5c5c5c;
  flex: 1;
}

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 1.875rem;
}

.pagination ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.4rem;
}

.pagination .btn {
  background-color: #fff;
  border-radius: 0.313rem;
  padding: 0.2rem 0.8rem;
  font-size: 1rem;
  font-weight: 600;
  border: none;
}

.pagination .btn:hover {
  background-color: var(--green-primary);
  transition: 0.3s;
  cursor: pointer;
  color: #fff;
}

.pagination .active {
  background-color: var(--green-primary);
  color: #fff;
}

.hide {
  display: none !important;
}

.show {
  display: flex;
}

/*Ver anexos (pop up)*/
.attachments {
  background-color: rgba(0, 0, 0, 0.568);
  position: fixed;
  width: 100%;
  z-index: 1;
  height: 100vh;
  top: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  animation-name: attachments;
  animation-duration: 0.2s;
}

@keyframes attachments {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.popup {
  width: 37.5rem;
  height: auto;
  background-color: #fff;
  border-radius: 0.5rem;
  display: flex;
  flex-direction: column;
  padding: 2.2rem;
  transition: all 0.3s;
}

.large-popup {
  width: 60%;
  height: auto;
  transition: all 0.3s;
}

.header-popup {
  display: flex;

  align-items: center;
  justify-content: space-between;
}

.header-popup li {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.header-popup img {
  width: 3.75rem;
  border-radius: 1.875rem;
}

.header-popup span {
  display: flex;
  flex-direction: column;
}

.header-popup span h5 {
  font-size: 1.2rem;
}
.header-popup span small {
  font-size: 0.8rem;
}

.pop-carousel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 1.2rem;
  position: relative;
}

.btn-zoom {
  position: absolute;
  z-index: 2;
  top: 1.5rem;
  right: 1.5rem;
}

.btn-zoom i {
  color: #fff;
  font-size: 1.5rem;
  font-weight: 600;
}

.pop-carousel img {
  border-radius: 0.5rem;
}

.popup .add {
  width: 12.5rem;
  margin: 1.6rem auto auto auto;
  border: none;
  border-radius: 0.3rem;
  background-color: var(--green-primary);
  color: #fff;
  padding: 0.4rem 0;
  font-size: 0.9rem;
  font-weight: 600;
  text-align: center;
}

.popup .add:hover {
  background-color: var(--green-hover);
  cursor: pointer;
  transition: 0.5s;
}

/*Swiper*/
.swiper {
  width: 100%;
  max-height: 100%;
}

.swiper-slide {
  text-align: center;
  font-size: 1rem;
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}

.swiper-pagination-bullet {
  background-color: rgb(0, 0, 0) !important;
  opacity: 1 !important;
}

.swiper-pagination-bullet-active {
  background-color: var(--green-hover) !important;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/*footer*/

footer {
  background-color: #000;
  padding: 2.5rem 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

footer h3 {
  color: #fff;
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

footer li {
  display: flex;
  gap: 1.1rem;
}

/*Resposnsive breakpoints*/
@media (max-width: 1024px) {
  .container {
    width: 90%;
  }

  /*home*/
  .logo-container a img {
    max-width: 25%;
    margin-right: 0.3rem;
  }

  .logo-container h1 {
    font-size: 1.6rem;
  }

  .menu-container ul a img {
    height: 1.76rem;
  }

  nav.menu {
    gap: 1rem;
  }

  .card-itens {
    gap: 1.3rem;
    margin-bottom: 1.3rem;
  }

  .card-itens a ul.item ul {
    padding: 0.8rem;
  }

  .card-itens a ul.item img {
    width: 100%;
    height: 10rem;
  }

  .card-itens a ul.item ul ul {
    gap: 0.4rem;
    width: 100%;
  }

  .card-itens a ul.item ul.vegetable-description ul {
    width: 100%;
  }

  .card-itens a ul.item ul ul li {
    flex-wrap: nowrap;
  }

  .card-itens a ul.item ul ul li p {
    flex: 1.5;
    height: 1.3rem;
    align-items: center;
    justify-content: center;
    font-size: 0.563rem;
    padding: 0;
  }

  .card-itens a ul.item ul ul li span {
    font-size: 0.563rem;
    flex: 1;
  }

  .download-hero .text {
    padding-right: 0rem;
  }

  .download-hero .text h2 {
    font-size: 2.8rem;
    line-height: 3.2rem;
  }

  .download-hero .text ul p {
    font-size: 1.1rem;
  }

  .download-hero .text ul li a img {
    height: 2.7rem;
  }

  .download-hero .image img {
    height: 30rem;
  }

  /*listagem*/
  .page-content {
    margin: 1.2rem 0 5rem 0;
  }

  .page-container {
    gap: 1.3rem;
  }

  .list-item li ul {
    max-width: 70%;
  }

  .list-item li ul li p {
    width: auto;
    font-size: 0.75rem;
  }

  .list-item li ul li span {
    font-size: 0.75rem;
  }

  /*pop up*/
  .large-popup {
    width: 90%;
  }
}

@media (max-width: 768px) {
  .hamburger {
    display: flex !important;
    z-index: 9999;
  }

  .hamburger.is-active {
    position: fixed;
    right: 2.5rem;
    top: 0.625rem;
  }

  #menu-conteiner {
    display: none;
  }

  /*responsive menu*/
  #menu-conteiner.toggle {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 0;
    background-color: var(--green-primary);
    position: fixed;
    top: 0;
    right: 0;
    width: 35%;
    height: 100vh;
    animation-name: toggle;
    animation-duration: 0.4s;
    transition: all;
    z-index: 10;
  }

  @keyframes toggle {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }

  #menu-conteiner.toggle .menu {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex: 0;
    margin-top: 5rem;
    gap: 0.4rem;
  }

  #menu-conteiner.toggle .menu a {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 500;
  }

  #menu-conteiner.toggle .menu a i {
    font-size: 0.85rem;
  }

  #menu-conteiner.toggle ul {
    flex: 0;
  }
  #menu-conteiner.toggle ul a img {
    max-width: 100%;
  }

  .link-item.show-mobile-menu #food,
  .link-item.show-mobile-menu #hygiene,
  .link-item.show-mobile-menu #cleaning {
    display: flex;
    animation-name: dropdownhover;
    animation-duration: 0.5s;
  }

  nav.menu .link-item ul.dropdown {
    position: relative;
    top: 0;
    width: auto;
  }

  nav.menu .link-item ul.dropdown span {
    padding: 0;
    box-shadow: none;
    margin-top: -1.25rem;
    border-radius: 0;
  }

  nav.menu .link-item ul.dropdown span li {
    margin: 0.7rem 0 1.8rem 0;
  }

  nav.menu .link-item ul.dropdown span li a {
    font-size: 0.9rem;
    font-weight: 500;
  }

  .store-links {
    margin-top: 1.4rem;
  }

  .hero-container {
    width: 75%;
  }
  .hero {
    height: 40vh;
  }

  .hero-container h2 {
    font-size: 2rem;
  }

  .search-container input {
    width: 90%;
  }

  .card-row:not(:last-child) {
    margin-bottom: 1rem;
  }

  .card-itens {
    gap: 1.4rem;
    flex-direction: column;
    margin-bottom: 1.1rem;
  }

  .card-itens a ul.item {
    display: flex;
    align-items: center;
    height: auto;
    gap: 0.7rem;
  }

  .card-itens a ul.item img {
    object-fit: cover;
    object-position: top;
    width: 17rem;
    height: 11rem;
    border-top-right-radius: 0;
    border-right: 0.06rem solid rgba(238, 238, 238, 0.74);
    border-radius: 0.3rem;
  }

  .img-thumbnail {
    border: 0;
  }

  .card-itens a ul.item ul ul {
    margin-top: 0.6rem;
  }

  .card-itens a ul.item ul span {
    font-size: 0.875rem;
  }

  .card-itens a ul.item ul ul li {
    margin: 0.25rem 0;
  }
  .card-itens a ul.item ul ul li p {
    width: 5rem;
    height: 1.2rem;
    font-size: 0.6rem;
  }

  .card-itens a ul.item ul ul li span {
    font-size: 0.6rem;
    flex: 1;
  }

  .download-hero .text h2 {
    font-size: 2.1rem;
    line-height: 2.4rem;
  }

  .download-hero .text ul p {
    font-size: 1rem;
  }
  .download-hero .text ul li a img {
    height: 2.2rem;
  }

  .download-hero .image img {
    height: 25rem;
  }

  .download-hero {
    margin-top: 0;
  }

  /*listagem*/
  .hero-page {
    height: 10rem;
  }

  .header-page .title-container h2 {
    font-size: 1.6rem;
  }

  .header-page .title-container li button {
    font-size: 0.9rem;
    width: 10rem;
    height: 1.8rem;
  }

  .header-page .title-container li button img {
    height: 1rem;
  }

  .list-item li h5 {
    font-size: 1.1rem;
  }

  .list-item img {
    margin-right: 1.2rem;
    height: 11rem;
  }

  .list-item li ul {
    max-width: 90%;
    gap: 0.6rem;
  }

  .list-item li ul.no-vegetable-list {
    max-width: 70%;
  }

  .list-item li ul li p {
    font-size: 0.62rem;
  }

  .list-item li ul li span {
    font-size: 0.62rem;
  }

  #pagination {
    margin-top: 0.8rem;
  }

  /*busca*/
  .results-for {
    font-size: 1.6rem;
  }

  /*produto*/
  .header-page ul {
    padding: 1rem 0 0 0;
  }

  .single .product-container {
    padding: 1.8rem;
  }

  .single .product-container .product-image {
    width: 45%;
    margin-right: 1.5rem;
  }

  .single .product-container .product-image button.attachment {
    font-size: 0.9rem;
    width: 10rem;
    height: 2rem;
    margin-top: -1rem;
  }

  .single .product-container .product-image li {
    margin-top: 1.1rem;
  }

  .single .product-container .product-image li button.analyze,
  .single .product-container .product-image li button.comment {
    font-size: 0.9rem;
    width: 10rem;
    height: 2rem;
  }

  .single .product-container .product-image img {
    width: 100%;
    height: 12.5rem;
    object-fit: cover;
    object-position: top;
  }

  .product-container .product-detalls span:not(.tags span, .opinions span) {
    font-size: 0.9rem;
  }

  .single .product-container .product-detalls h2 {
    font-size: 1.2rem;
  }

  .product-share {
    right: 1rem;
  }

  .product-share button {
    width: 8rem;
    font-size: 0.8rem;
    height: 1.6rem;
  }

  .product-share button img {
    height: 0.9rem;
  }

  .single .product-container .product-detalls .opinions {
    gap: 0rem;
    margin: 0.2rem 0 0 0;
  }

  .single .product-container .product-detalls .opinions small img {
    width: 1.3rem;
    margin-right: 0.4rem;
  }

  .single .product-container .product-detalls .opinions small img.comment-icon {
    margin-right: 0.5rem;
  }

  .single .product-container .product-detalls .opinions small span {
    font-size: 0.9rem;
  }

  .single .product-container .product-detalls .tags span {
    font-size: 1rem;
  }

  .single .product-container .product-detalls .tags li {
    margin-top: -0.1rem;
    gap: 0.5rem 0;
  }

  .single .product-container .product-detalls .tags li .tag-text a {
    padding: 0.15rem 0.8rem;
    font-size: 0.8rem;
  }

  .comments .product-container {
    padding: 1.8rem;
  }

  .comments .product-container h3 {
    font-size: 1.4rem;
  }

  .comments .product-container li label {
    font-size: 1rem;
  }

  .comments .header-comments li select {
    font-size: 0.8rem;
  }

  .comment-container .comment-item {
    padding: 1.8rem;
  }

  .comment-container div ul p {
    font-size: 0.96rem;
  }

  .comment-item .answers {
    padding: 1.3rem;
  }

  .comment-item .answers p {
    font-size: 0.9rem;
  }

  /*pop up*/
  .large-popup {
    width: 95%;
  }
}

@media (max-width: 425px) {
  /*Home*/
  .hero {
    height: 30vh;
  }

  .hero-container h2 {
    font-size: 1.6rem;
    text-align: center;
    line-height: 2rem;
  }

  .search-container {
    height: 2.7rem;
    margin-top: -0.5rem;
  }

  .search-container input {
    width: 87%;
  }

  .search-container ::placeholder {
    font-size: 1rem;
  }

  .search-container .btn-search {
    height: 2.3rem;
  }

  .search-container .btn-search img {
    max-width: 70%;
  }

  .card-container {
    margin: 1.7rem 0 0.4rem 0;
  }

  .card-container h2 {
    font-size: 1.2rem;
  }

  .card-itens {
    margin-bottom: 1.6rem;
  }

  .card-header .view-all {
    font-size: 0.7rem;
    width: 5rem;
  }

  .card-itens {
    flex-direction: column;
  }
  .card-itens a ul.item {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
  }

  .card-itens a ul.item ul {
    width: 95%;
  }

  .img-thumbnail {
    width: 100%;
  }

  .card-itens a ul.item img {
    width: 100%;
    height: 100%;
  }

  .download-hero {
    padding: 3.5rem 0;
  }

  .download-hero .hero-download-container {
    flex-direction: column-reverse;
  }

  .download-hero .hero-download-container .text {
    align-items: center;
    margin-top: 2.3rem;
  }

  .download-hero .hero-download-container .text h2 {
    font-size: 1.9rem;
  }

  .download-hero .hero-download-container .text p {
    padding-bottom: 0.5rem;
    line-height: 1.4rem;
    max-width: 80%;
    margin-left: auto;
    margin-right: auto;
  }

  .download-hero .hero-download-container .text ul li {
    align-items: center;
    justify-content: center;
  }

  .download-hero .hero-download-container .text ul li a img {
    height: 2.5rem;
  }

  .download-hero .hero-download-container .image img {
    max-height: 90%;
  }

  footer {
    padding: 1rem 0;
  }
  footer h3 {
    font-size: 1.4rem;
  }

  #menu-conteiner.toggle {
    width: 62%;
  }

  /*listagem*/
  .hero-page {
    height: 7rem;
  }

  .header-page ul:first-child {
    padding: 0.9rem 0 1rem 0;
  }

  .header-page ul:first-child span {
    font-size: 0.8rem;
  }

  .header-page .title-container {
    margin-bottom: 0.5rem;
  }

  .header-page .title-container h2 {
    font-size: 1.1rem;
  }

  .header-page .title-container li button {
    font-size: 0.7rem;
    width: 7rem;
    height: 1.5rem;
  }

  .header-page .title-container li button img {
    height: 0.9rem;
  }
  .filter-tags {
    margin-bottom: 0.5rem;
  }

  .list-item {
    flex-direction: column;
    border-radius: 0.3rem;
  }

  .list-item img {
    margin: 0;
    width: 100%;
    height: 13rem;
    object-fit: cover;
    object-position: top;
    border-bottom-left-radius: 0;
    border-top-right-radius: 0.3rem;
    border-top-left-radius: 0.3rem;
  }

  .list-item li {
    width: 90%;
    margin: 0.7rem 0;
  }

  .list-item li ul {
    max-width: 100%;
    margin-top: 0.7rem;
  }

  .list-item li ul.no-vegetable-list {
    max-width: 70%;
  }

  .results-for {
    font-size: 1.2rem;
    margin: 0.5rem 0;
  }

  .filter-tags {
    margin-top: 0.5rem;
  }

  /*produto*/
  .page-content {
    margin: 0.3rem 0 5rem 0;
  }

  .single .product-container {
    padding: 1.3rem;
    flex-direction: column;
  }

  .single .product-container .product-detalls h2 {
    font-size: 1.3rem;
  }

  .single .product-container .product-image {
    width: 100%;
    margin-right: 0;
  }

  .single .product-container .product-image img {
    height: 14rem;
  }

  .product-share {
    top: 1.9rem;
    right: 1.9rem;
  }

  .single .product-container .product-image button.attachment {
    font-size: 0.8rem;
    width: 8rem;
    height: 1.88rem;
    margin-top: -1rem;
  }

  .single .product-container .product-image li {
    margin-top: 0.8rem;
    gap: 0.7rem;
  }

  .single .product-container .product-image li button.analyze,
  .single .product-container .product-image li button.comment {
    font-size: 0.8rem;
    width: 8rem;
    height: 1.788rem;
  }

  .product-share button {
    width: 6.8rem;
    height: 1.32rem;
    font-size: 0.7rem;
  }

  .product-share button img {
    margin-left: 0.3rem;
    height: 0.8rem;
  }

  .single .product-container .product-detalls {
    margin-top: 1.2rem;
  }

  .single .product-container .product-detalls .opinions {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.17rem 1.1rem;
    margin: 0.9rem 0 0.4rem 0;
  }

  .single .product-container .product-detalls .opinions small img {
    margin-right: 0.2rem;
    max-width: 100%;
  }

  .single .product-container .product-detalls .opinions small img.comment-icon {
    margin-left: 0;
    margin-right: 0.2rem;
  }

  .single .product-container .product-detalls .tags span {
    font-size: 1.04rem;
  }

  .comments .product-container {
    padding: 1.5rem;
    position: relative;
    margin-top: -3.5rem;
  }

  .comments .product-container h3 {
    font-size: 1rem;
    flex: 2;
  }

  .comments .header-comments {
    margin-bottom: 1.3rem;
  }

  .comments .header-comments li {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: flex-end;
    max-width: 100%;
  }

  .comments .header-comments li label {
    display: none;
  }

  .comments .header-comments li select {
    max-width: 100%;
    font-size: 0.755rem;
  }

  .comment-container {
    gap: 1.4rem;
  }

  .comment-container .comment-item {
    padding: 1rem;
  }

  .comment-container div ul {
    gap: 0.55rem;
  }

  .comment-container div ul img {
    width: 100%;
    height: 2.5rem;
  }

  .comment-container div ul small {
    font-size: 0.7rem;
  }

  .comment-container div ul h5 {
    font-size: 1rem;
  }

  .comment-container div ul p {
    font-size: 0.9rem;
    line-height: 1.4rem;
  }

  .comment-container div ul span {
    position: absolute;
    width: 5rem;
    height: 1.3rem;
    font-size: 0.7rem;
    right: 2.4rem;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .comment-container div li.actions {
    margin-left: 3.1rem;
  }

  .comment-item .answers {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding: 1rem;
  }

  .comment-item .answers img {
    width: 100%;
    height: 2.3rem;
  }

  .comment-item .answers small {
    font-size: 0.7rem;
  }
  .comment-item .answers h5 {
    font-size: 1rem;
  }

  .comment-item .answers p {
    font-size: 0.87rem;
    line-height: 1.4rem;
  }

  .comment-item .answers li.actions {
    margin-left: 3.1rem;
  }

  /*pop up*/
  .popup {
    max-width: 80%;
    padding: 1.4rem;
  }

  .header-popup img {
    width: 2.9rem;
  }

  .header-popup span h5 {
    font-size: 1rem;
  }

  .large-popup {
    max-width: 95%;
  }
}
