section.plantas {
max-width: 1100px;
    margin: 0 auto;
    display: flex
;
    flex-direction: column;
    align-items: end;
}

/* Cabeçalho */
.plantas-header {
display: flex;
align-items: center;
    gap: 25px;
    position: relative;
    top: -75px;
}

.plantas-header label {
color: var(--Gray-600, #9C9C9C);
    text-align: right;
    font-family: Montserrat;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
        white-space: nowrap;
}

.plantas-header select {
    color: var(--Gray-200, #FFF);
    text-align: center;
    font-family: Karla;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    border-right: 2px solid var(--Primary, #C89B7E);
    background: var(--Secunday, #8E6F5B);
    padding: 10px 14px;
    cursor: pointer;
    transition: all .5s;
    border-top: 0;
    border-left: 0;
    border-bottom: 0;
    border-radius: 0;

}

.plantas-header select:hover {
  background: #533C35;
}

/* Container principal da planta */
.plantas-container {
  position: relative;
  background-color: #fff;
  border-radius: 12px;
  padding: 32px;
  text-align: center;
  overflow: hidden;
      width: 100%;
}

.plantas-container .legenda {
    border-radius: 8px;
    border: 1px solid rgba(98, 76, 62, 0.00);
    background: radial-gradient(879.37% 572.01% at -7.37% -169.2%, #533C35 0%, #C89B7E 100%);
    color: var(--Gray-200, #FFF);
    text-align: center;
    font-family: Karla;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    display: flex
;
    align-items: center;
    gap: 10px;
        white-space: nowrap;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    padding: 11px 19px 11px 22px;
    transition: all .5s;
    opacity: 0;
}

#plantaView a[data-fancybox="planta"]:hover .legenda {
  opacity: 1;
}

.plantas-thumbnail:hover .legenda {
  opacity: 1;
}

/* Imagem principal */
.plantas-container a img {
  width: 100%;
  max-width: 95%;
  border-radius: 10px;
  transition: transform 0.3s ease;
  cursor: zoom-in;
}

/* Miniatura */
.plantas-thumbnail {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 200px;
    height: 200px;
    border-radius: 40px;
    overflow: hidden;
transition: all .5s;
    cursor: pointer;
}

.plantas-thumbnail:hover {
      width: 350px;
    height: 350px;
}

.plantas-thumbnail img {
    width: 100%;
    /* max-width: 800px; */
    border-radius: 10px;
    transition: transform 0.3s 
ease;
    cursor: zoom-in;
    height: 100% !important;
    object-fit: cover;
    display: block;
        max-width: 100% !important;
}

/* Legenda */
.plantas-title {
color: var(--Gray-600, #9C9C9C);
    font-family: Montserrat;
    font-size: 22px;
    font-style: normal;
    font-weight: 400;
    line-height: 110%;
    margin-top: 15px;
}

.plantas-caption {
  margin-top: 6px;
color: var(--Gray-600, #9C9C9C);
font-family: Montserrat;
font-size: 14px;
font-style: normal;
font-weight: 400;
line-height: 110%; /* 15.4px */
opacity: 0.5;
}

/* Responsivo */
@media (max-width: 767px) {
  .plantas-container {
    padding: 20px 20px 40px 20px;
  }

  .plantas-container .legenda {
    opacity: 1;
    font-size: 0;
    gap: 0;
    padding: 0;
    height: 45px;
    width: 45px;
    justify-content: center;
    transform: scale(1.2) translate(0%, -50%);
    left: auto;
    right: 17px;
    top: 30%;
  }

  .plantas-thumbnail {
    border-radius: 18px;
  }

  .plantas-header {
        top: 0;
    margin-top: 10px;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    width: 100%;
    margin-bottom: 40px;
    padding: 0 20px;
  }

  .plantas-header label {
    text-align: start;
  }

  .plantas-thumbnail {
    position: static;
    width: 100%;
    margin-top: 16px;
    display: block;
  }

  .plantas-container a img {
    border-radius: 8px;
  }

  .plantas-title {
    margin-top: 20px;
    font-size: 15px;
  }

  .plantas-caption {
    font-size: 13px;
  }
}
