/*
Theme Name: Tema Tao
Author: SignoTech
Version: 1.0
*/

@font-face {
  font-family: "Trajan Pro";
  src: url("fonts/TrajanPro-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

.wp-social-ninja-wrapper * {
  all: unset !important;
}

.wp-social-ninja-wrapper {
  /* Permite que o plugin aplique seus próprios estilos */
  isolation: isolate;
}

:root {
  --primary-color: #737c69;
  --primary-color-with-opacity: rgba(115, 124, 105, 0.5);
  --secundary-color: #d5b577;
  --tertiary-color: #444a3d;
  --primary-text: #555f4c;
  --secondary-text: #f2f2f2;
}

body {
  font-family: "Trajan Pro", serif;
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

header {
  background-color: var(--primary-color-with-opacity);
  max-height: 102px;
  padding: 1% 5%;
  font-weight: 22px;
  position: relative;
  z-index: 1;
}

html {
  scroll-behavior: smooth;
}

p {
  margin: 0;
}

h2 {
  font-size: 18px;
}

.header-wrapper {
  color: var(--primary-color) !important;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.custom-logo {
  width: 100px;
  height: auto;
  display: block;
  z-index: 10;
  position: relative;
  filter: brightness(0) invert(1);
}

.custom-logo-link {
  display: inline-block;
  z-index: 10;
  position: relative;
}

.banner-carousel {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 16 / 6;
  overflow: hidden;
}

.swiper-slide img {
  width: 100%;
  height: auto;
  display: block;
}

.banner-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  z-index: 0;
}

.banner-image.active {
  opacity: 1;
  z-index: 1;
  display: block;
}

.header-topics {
  display: flex;
  gap: 24px;
  color: var(--primary-color) !important;
}

.header-topics a {
  text-decoration: none;
  color: var(--primary-color) !important;
}

.header-topics a:hover {
  color: var(--tertiary-color) !important;
  font-weight: bold;
}

.header-topics a:visited {
  color: var(--primary-color) !important;
  text-decoration: none;
}

.info-blocks {
  color: var(--secondary-text);
  display: flex;
  justify-content: space-between;
  text-align: center;
  opacity: 1;
}

.info-blocks .schedules,
.address {
  opacity: 0;
  animation-fill-mode: forwards;
  animation-duration: 1s;
  animation-timing-function: ease-out;
}

.info-blocks .address {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: rgba(115, 124, 105, 0.9);
  width: 100%;
  height: 170px;
  animation-name: slideInRight;
  animation-delay: 0.4s;
}

.info-blocks .schedules {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  height: 170px;
  background-color: var(--primary-color);
  animation-name: slideInLeft;
  animation-delay: 0.2s;
}

.info-blocks .schedules h2 {
  margin-bottom: 5px;
  padding: 0;
}

.info-blocks .schedules p {
  margin: 0;
}

.info-blocks .address h2 {
  margin-bottom: 5px;
  padding: 0;
}

.info-blocks .address p {
  margin-bottom: 3%;
}

/* Keyframes */
@keyframes slideInLeft {
  0% {
    transform: translateX(-100px);
    opacity: 0;
  }

  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideInRight {
  0% {
    transform: translateX(100px);
    opacity: 0;
  }

  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

.welcome {
  position: relative;
  padding: 4% 2% 100px 0;
}

.welcome::after {
  content: "";
  display: block;
}

.welcome .welcome-texts {
  text-align: center;
  color: var(--primary-text);
  margin-bottom: 1%;
  padding: 3% 8%;
}

.welcome .welcome-texts p {
  font-size: 18px;
}

.welcome .welcome-texts h1 {
  font-size: 36px;
}

.welcome .about-us {
  position: relative;
  z-index: 1;
  background-color: rgba(115, 124, 105, 0.1);
  color: var(--primary-text);
  padding: 2% 2% 2% calc(720px + 1%);
  margin-right: 6%;
}

.welcome .about-us h1 {
  position: relative;
  z-index: 1;
  font-size: 30px;
  text-align: center;
}

.welcome .about-us-image {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
  pointer-events: none;
  max-height: 500px;
  height: auto;
  width: auto;
  max-width: 100%;
}

.welcome img {
  max-width: 600px;
  height: 405px;
}

.welcome .about-us p {
  font-size: 18px;
}

.doctors {
  padding: 5% 8% 0 8%;
  background-color: rgba(115, 124, 105, 0.3);
  color: var(--primary-text);
  display: flex;
  justify-content: space-between;
  text-align: center;
  gap: 64px;
}

.doctors .doctor-image {
  display: flex;
}

.doctors.reverse {
  flex-direction: row-reverse;
  background-color: rgba(115, 124, 105, 0.2);
}

.doctors h2 {
  display: inline;
  background-color: rgb(213, 181, 119, 0.3);
  padding: 8px 50px;
  border-radius: 15px;
}

.doctors p {
  margin-top: 50px;
  text-align: start;
}

.doctors img {
  width: 450px;
  max-height: 600px;
  object-fit: cover;
  object-position: top;
}

.treatments {
  padding: 4% 8%;
  text-align: center;
  color: var(--primary-text);
  text-decoration: none;
}

.treatments-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.treatment-box {
  background: linear-gradient(65deg, rgb(186, 190, 181) 0%, #ffffff 100%);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s ease;
  width: 100%;
  height: 200px;
  overflow: hidden;
  text-decoration: none;
}

.treatment-box:hover {
  transform: translateY(-5px);
}

.image-title {
  font-size: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: all 0.3s ease;
  gap: 10px;
}

.treatment-box:hover .image-title {
  flex-direction: row;
  justify-content: center;
}

.treatment-box img {
  max-width: 100px;
  max-height: 100px;
  object-fit: contain;
  width: auto;
  height: auto;
}

.treatment-box:hover img {
  max-width: 60px;
  max-height: 50px;
}

.treatment-box .title {
  margin-top: 10px;
}

.treatment-hover-content {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  padding: 10px 42px;
}

.treatment-box:hover .treatment-hover-content {
  opacity: 1;
  max-height: 150px;
  padding: 10px 42px;
}

.treatment-box:hover .treatment-hover-content p {
  font-size: 11px;
  text-align: start;
  margin: 0;
}

.treatment-box:hover .image-title .title {
  text-align: start;
}

.treatment-box .btn-learn-more {
  display: inline-block;
  margin-top: 10px;
  background-color: var(--primary-color);
  color: var(--secondary-text);
  text-decoration: none;
  border: 1px solid #737c69;
  padding: 5px 10px;
  border-radius: 4px;
  transition: background-color 0.3s;
}

.treatment-box .btn-learn-more:hover {
  background-color: var(--secundary-color);
  color: var(--tertiary-color);
  border-color: var(--secundary-color);
}

.treatment-box p {
  font-size: 16px;
  font-weight: bold;
  color: var(--primary-text);
}

.our-clients {
  display: flex;
  justify-content: center;
  padding: 4% 8%;
  gap: 42px;
}

.our-clients h1 {
  text-align: center;
  color: var(--primary-text);
}

.our-clients .our-clients-photo-block {
  width: 562px;
  height: 492px;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
}

.our-clients .our-clients-photo-block::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom right,
    rgba(255, 255, 255, 0.3),
    rgba(255, 255, 255, 0.1)
  );
  pointer-events: none;
}

.our-clients .our-clients-photo-block .our-clients-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 10px;
}

.our-clients .our-clients-feedback {
  display: grid;
  justify-content: space-between;
  width: 750px;
  max-width: 100%;
  height: 280px;
  background-color: #737d69;
  padding: 3%;
  border-radius: 7px;
  color: var(--secondary-text);
  font-size: 18px;
  box-sizing: border-box;
}

.our-clients .our-clients-feedback .profile {
  display: flex;
  align-items: center;
}

.our-clients .our-clients-feedback .profile-picture {
  width: 79px;
  height: 79px;
  border-radius: 50%;
  object-fit: cover;
  margin: 5px;
}

.our-clients .our-clients-feedback .name-and-rate {
  min-width: 80px;
}

.our-clients .margin-zero {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.follow-us {
  background-color: rgba(115, 124, 105, 0.2);
  color: var(--primary-text);
  padding: 40px 0;
}

.follow-us-inner {
  padding: 4% 8%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.follow-us h3 {
  text-align: center;
}

.follow-us .social-infos {
  display: flex;
  align-items: center;
  gap: 16px;
}

.follow-us .profile-picture {
  width: 79px;
  height: 79px;
  border-radius: 50%;
  object-fit: cover;
}

.follow-us .posts {
  display: flex;
  gap: 16px;
  flex-wrap: nowrap;
  justify-content: flex-start;
}

.follow-us .post-item {
  width: 400px;
  height: 336px;
  overflow: hidden;
  border-radius: 8px;
  flex-shrink: 0;
}

.follow-us .post-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.partners {
  color: var(--primary-text);
  text-align: center;
  padding: 4% 8%;
}

.partners-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.partner-box {
  flex: 1;

  height: 170px;
  background-color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);

  opacity: 0;
  transform: translateX(0);
}

.partner-box.animate-left {
  animation-name: slideInLeft;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  animation-timing-function: ease-out;
}

.partner-box.animate-right {
  animation-name: slideInRight;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  animation-timing-function: ease-out;
}

.partner-box img {
  max-height: 100px;
  max-width: 80%;
  object-fit: contain;
  display: block;
}

.infos {
  height: 188px;
  display: flex;
  justify-content: space-between;
  color: var(--primary-text);
  text-align: center;
}

.infos h1 {
  font-size: 25px;
}

.infos .card-tel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 40px 20px;
  text-align: center;
  align-items: center;
  background-color: rgba(115, 124, 105, 0.1);
  width: 100%;
}

.infos .card-add {
  background-color: rgba(115, 124, 105, 0.2);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 40px 20px;
  text-align: center;
  align-items: center;
  width: 100%;
}

.infos .card-mail {
  background-color: rgba(115, 124, 105, 0.3);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 40px 20px;
  text-align: center;
  align-items: center;
  width: 100%;
}

.assessment-schedule {
  background-color: rgba(115, 124, 105, 0.3);
  height: 633px;
  padding: 0 0 0 40%;
  position: relative;
  overflow: hidden;
}

.assessment-schedule img {
  min-width: 100%;
  height: 100%;
  object-fit: cover;
}

.assessment-box {
  position: absolute;
  top: 50%;
  left: 5%;
  transform: translateY(-50%);
  width: 624px;
  height: 324;
  background-color: rgba(255, 255, 255, 0.9);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  z-index: 2;
  color: var(--primary-text);
  text-align: center;
}

.schedule-buttom {
  background-color: #d5b577;
  padding: 8px 35px;
  margin: 20px;
  text-decoration: none;
  border-radius: 10px;
  color: var(--tertiary-color);
}

.assessment-box .schedule-buttom:hover {
  background-color: var(--primary-color);
  color: var(--secondary-text);
  transition: 1s;
}

.assessment-box p {
  margin-bottom: 40px;
}

footer {
  background-color: var(--primary-color);
  color: var(--secondary-text);
  text-align: center;
}

.footer-container {
  display: flex;
  justify-content: space-around;
  background-color: var(--primary-color);
  color: var(--secondary-text);
  padding: 30px 30px 0px 30px;
  text-align: center;
  height: auto;
}

.footer-logo {
  max-width: 285px;
  filter: brightness(0) invert(1);
}

.footer-container .info-session {
  display: block;
  justify-content: center;
  text-align: start;
  gap: 5px;
}

.footer-container .signature {
  display: flex;
  gap: 7px;
  margin-top: 90px;
  margin-bottom: 10px;
  align-items: center;
}

.footer-container .signature img {
  max-width: 70px;
  max-height: 28px;
  display: block;
}

.stars {
  color: #ffc300;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-size: 20px;
  text-align: start !important;
}

.burger-menu {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
}

.burger-menu span {
  width: 25px;
  height: 3px;
  background-color: #737c69;
  display: block;
  transition: all 0.3s ease;
}

.dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}

.dot {
  width: 12px;
  height: 12px;
  background-color: #ccc;
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.dot.active {
  background-color: var(--secundary-color);
}

.feedback-swiper {
  position: relative;
  width: 100%;
  max-width: 600px;
  margin: auto;
  padding-bottom: 40px;
}

.feedback-swiper .swiper-pagination {
  position: static;
  bottom: 10px;
  left: 0;
  width: 100%;
  text-align: center;
}

.swiper-slide {
  display: flex;
  justify-content: center;
  text-align: center;
}

.swiper-pagination-bullet {
  background-color: #aaa !important;
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background-color: #737d69 !important;
}

.social-media {
  text-align: center;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 0.5rem;
}

.social-icons img {
  width: 24px;
  height: 24px;
  filter: brightness(0) invert(1);
  transition: transform 0.2s ease;
}

.tratamento-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 40px;
  padding: 64px;
  box-sizing: border-box;
  text-align: left;
}

.tratamento-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: start;
  gap: 80px;
}

.galeria-container {
  padding: 64px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  flex-direction: column;
}

.post-thumbnail {
  width: 600px;
  height: auto;
  object-fit: contain;
  border-radius: 8px;
  flex-shrink: 0;
}

.conteudo {
  max-width: 600px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  color: var(--primary-text);
  justify-content: space-between;
  height: 100%;
}

.conteudo h1 {
  margin-top: 24px;
  text-align: center;
}

.schedule-button {
  margin-top: 20px;
  padding: 10px 20px;
  background-color: var(--secundary-color);
  color: var(--tertiary-color);
  text-decoration: none;
  border-radius: 4px;
  width: fit-content;
  transition: background-color 0.3s ease;
}

.schedule-button:hover {
  background-color: var(--primary-color);
  color: var(--secondary-text);
}

.feedback-text {
  text-align: start;
}

.related-carousel .carousel-wrapper {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.related-carousel .tratamento-swiper {
  width: 100%;
}

.related-carousel .swiper-slide {
  width: 260px !important;
  height: 180px !important;
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
}

.related-carousel .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 12px;
}

.related-carousel .swiper-button-prev,
.related-carousel .swiper-button-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333;
}

.related-carousel .swiper-button-prev {
  left: -60px;
}

.related-carousel .swiper-button-next {
  right: -60px;
}

.titulo-carrossel {
  text-align: center;
  color: var(--primary-text);
}

.agendamento-swiper {
  width: 100%;
  height: auto;
  overflow: hidden;
}

.agendamento-swiper img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.agendamento-carousel {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.agendamento-slide {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}

@media (max-width: 768px) {
  h1 {
    font-size: var(--font-size-h1);
  }

  h2 {
    font-size: var(--font-size-h2);
  }

  h3 {
    font-size: var(--font-size-h3);
  }

  h4 {
    font-size: var(--font-size-h4);
  }

  p {
    font-size: var(--font-size-p);
  }

  .header img {
    max-width: 30px;
  }

  .burger-menu {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
  }

  .treatment-hover-content {
    padding: 0 !important;
  }

  .header-topics {
    display: none;
    flex-direction: column;
    background-color: white;
    position: fixed;
    top: 60px;
    right: 20px;
    width: 220px;
    height: 280px;
    padding: 20px;
    z-index: 10000;
    border-radius: 10px;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.15);
    justify-content: space-around;
    align-items: flex-start;
  }

  .header-topics.active {
    display: flex;
  }

  header {
    position: relative;
    z-index: 10000;
  }

  .header-topics a {
    padding: 10px 0;
    display: block;
    width: 100%;
    text-align: left;
    color: var(--primary-color);
    font-weight: 500;
    border-bottom: 1px solid #eee;
    text-decoration: none;
  }

  .header-topics a:visited,
  .header-topics a:active,
  .header-topics a:hover {
    color: var(--primary-color);
  }

  .info-blocks {
    display: block;
  }

  .about-us-image {
    display: none;
  }

  .about-us {
    padding: 5% !important;
    text-align: center;
  }

  .doctors {
    display: block;
  }

  .doctors img {
    max-width: 220px;
  }

  .doctors .doctor-image {
    justify-content: center;
  }

  footer {
    display: block;
  }

  .footer-container {
    display: block;
  }

  .infos {
    flex-direction: column;
    height: auto;
  }

  .infos .card-tel,
  .infos .card-add,
  .infos .card-mail {
    padding: 30px 25px;
    box-sizing: border-box;
  }

  .welcome {
    padding: 5% 3% 100px 2%;
  }

  .welcome .about-us {
    margin-right: 0;
  }

  .welcome .welcome-texts {
    margin-bottom: 50px;
  }

  .assessment-schedule img {
    display: none;
  }

  .follow-us {
    padding: 20px 0;
  }

  .follow-us .posts {
    flex-direction: column;
  }

  .follow-us .posts .post-item {
    width: 100%;
    height: 336px;
    overflow: hidden;
    border-radius: 8px;
  }

  .our-clients .our-clients-feedback .profile-picture {
    width: 50px;
    height: 50px;
  }

  .our-clients .our-clients-feedback .profile {
    align-items: center;
    justify-content: center;
  }

  .assessment-box {
    position: static;
    transform: none;
    top: auto;
    left: auto;
    width: 100%;
    height: auto;
    margin-top: 20px;
    box-sizing: border-box;
  }

  .assessment-schedule {
    padding: 0 0 0 0;
    height: 300px;
  }

  .post-thumbnail {
    width: 100%;
  }

  .partner-box {
    width: 170px;
    height: 170px;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  }

  .our-clients .our-clients-photo-block {
    display: none;
  }

  .our-clients .testimonials {
    max-width: 100%;
  }

  .our-clients-feedback {
    max-width: 90%;
    height: 400px !important;
  }

  .agendamento-carousel {
    display: none;
  }

  .footer-logo {
    max-width: 200px;
  }

  footer .info-session {
    text-align: center !important;
  }

  footer .signature {
    margin-top: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
    width: fit-content;
    text-align: center;
    margin: 0 auto;
  }

  footer .signature p {
    margin: 0;
    line-height: 1;
    display: flex;
    align-items: center;
  }

  .doctor-text p {
    text-align: center;
  }

  .doctors h2 {
    display: flex;
    font-size: 16px !important;
    text-align: center;
    justify-content: center;
    padding: 8px 10px !important;
  }

  .doctors {
    padding-bottom: 50px;
  }

  .treatment-hover-content {
    opacity: 1;
    max-height: none;
    overflow: visible;
    margin-top: 10px;
    transform: translateY(-5px);
  }

  .treatment-hover-content p {
    display: none;
  }

  .treatment-box,
  .treatment-box * {
    transition: none !important;
  }

  .treatment-box:hover,
  .treatment-box:focus {
    transform: none !important;
  }

  .treatment-box:hover .image-title {
    flex-direction: column !important;
    justify-content: center !important;
  }

  .treatment-box:hover img {
    max-width: 100px !important;
    max-height: 100px !important;
  }

  .treatment-box:hover .treatment-hover-content {
    opacity: 0 !important;
    max-height: 0 !important;
    margin-top: 0 !important;
    padding: 0 10px !important;
  }

  .treatment-box:hover .image-title .title {
    text-align: center !important;
  }

  .treatment-box {
    height: 150px;
  }

  .treatment-box img {
    max-height: 50px;
  }

  .btn-learn-more {
    box-sizing: border-box;
  }

  .image-title img {
    max-width: 30px;
  }

  .schedule-button {
    text-align: center;
  }

  .assessment-schedule {
    background-color: rgba(115, 124, 105, 0.3);
    position: relative;
    overflow: hidden;
  }

  .treatments-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .tratamento-wrapper {
    display: block;
  }

  .descricao-tratamento {
    padding: 20px;
    text-align: center;
  }

  .titulo_tratamento {
    text-align: center;
    margin-bottom: 5px;
    margin-top: 50px !important;
  }

  .partners-grid {
    padding-bottom: 8%;
  }

  footer .signature {
    justify-content: center;
    text-align: center !important;
  }

  .feedback-text {
    text-align: center;
    display: flex;
    align-items: center;
  }

  .conteudo {
    align-items: center;
    justify-content: center;
  }

  .welcome-texts h1 {
    font-size: 16px !important;
  }

  .tratamento-wrapper {
    padding: 20px;
  }

  .tratamento-container {
    flex-direction: column;
    gap: 0px;
  }

  .galeria-container {
    padding: 0px;
  }
}
