@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap");

:root {
  --primary: #FFFFFF;
  --accent: #031E4A;
  --dark-accent: #021230;
  --teal: #00829F;
  --teal-light: #E3F3F6;
  --details: #8A96A3;
  --text: #5C6670;
  --borders: #e0e0e0;
}

html {
  overflow-y: scroll;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  width: 100vw;
  height: min-content;
  overflow: hidden;
  background-color: var(--primary);
}

* {
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
}

#home-button {
  font-size: 26px;
  color: var(--accent);
  font-weight: 400;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  width: 50px;
  border: none;
  height: 50px;
  background-color: var(--primary);
  border: 1px solid var(--borders);
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 7;
  border-radius: 50%;
  transform: translateY(calc(100% + 2rem));
  transition: 500ms;
}

#home-button img {
  width: 28px;
  height: 28px;
}

#home-button.isShown {
  transform: translateY(0px);
}

#whatsapp-button {
  position: fixed;
  bottom: 1rem;
  left: 1rem;
  padding: 0.75rem 1.5rem;
  z-index: 8;
  background-color: var(--primary);
  border: 1px solid var(--borders);
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 0.75rem;
  text-decoration: none;
  transition: 200ms;
}

#whatsapp-button:hover {
  transform: scale(1.05);
}

#whatsapp-button .image {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  flex-shrink: 0;
}

#whatsapp-button .title {
  font-size: 16px;
  color: var(--text);
  font-weight: 500;
  line-height: 1;
  display: flex;
  align-items: center;
}

#header {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  top: 1rem;
  left: 0;
  height: 60px;
  z-index: 7;
  padding: 0 3rem;
  transition: transform 500ms;
  border-bottom: 1px solid transparent;
}

#header.isFixed {
  position: fixed;
  top: 0%;
  left: 0%;
  animation: 200ms translateDown forwards;
  background-color: var(--primary);
  border-bottom-color: var(--borders);
}

#header.isFixed .draft,
#header.isFixed .whats-button,
#header.isFixed .menu-button {
  filter: unset !important;
}

#header .header-right {
  display: flex;
  align-items: center;
  column-gap: 1rem;
}

#header .header-right .draft {
  font-size: 16px;
  color: black;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  filter: invert(1);
}

#header .whats-button,
#header .menu-button {
  width: 32px;
  height: 32px;
  z-index: 2;
  margin-left: 1.5rem;
  background-color: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  filter: invert(1);
}

#header .whats-button img,
#header .menu-button img {
  width: 32px;
  height: 32px;
}

#header .logo-wrap {
  position: relative;
  height: 65%;
  display: flex;
  align-items: center;
}

#header .logo-wrap .logo {
  position: absolute;
  top: 50%;
  left: 0;
  width: auto;
  transform: translateY(-50%);
  transition: opacity 300ms ease;
}

#header .logo-wrap .logo-top {
  height: 7vh;        /* tamanho da logo no topo */
  width: auto;
  opacity: 1;
}

#header .logo-wrap .logo-scrolled {
  height: 100%;          /* pode ser diferente, ex: um pouco menor */
  width: auto;
  opacity: 0;
  filter: brightness(0.9); /* filtros, sombra, etc. só nessa */
}

#header .logo-wrap .logo-top {
  opacity: 1;
}

#header .logo-wrap .logo-scrolled {
  opacity: 0;
}

#header.isFixed .logo-wrap .logo-top {
  opacity: 0;
}

#header.isFixed .logo-wrap .logo-scrolled {
  opacity: 1;
}

#aside {
  width: 300px;
  max-width: 100%;
  height: 100vh;
  position: fixed;
  right: 0;
  top: 0;
  padding: 2rem;
  background-color: var(--primary);
  z-index: 10;
  clip-path: polygon(20% 0, 100% 0, 100% 100%, 100% 100%);
  transition: 700ms;
  transform: translateX(100%);
  filter: drop-shadow(0 5px 5px black);
}

#aside.isShown {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  transform: translateX(0%);
}

#aside .close-aside {
  cursor: pointer;
  background-color: transparent;
  border: none;
  padding: 0;
}

#aside .close-aside img {
  width: 27px;
  height: 27px;
}

#aside .logo {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  width: calc(70% - 4rem);
}

#aside .navigation {
  display: grid;
  align-content: flex-start;
  row-gap: 2.5rem;
  margin: 5rem 0;
}

#aside .navigation .link {
  font-size: 20px;
  color: var(--accent);
  font-weight: 500;
  text-decoration: none;
  font-family: "Ascendant", serif;
  text-transform: uppercase;
  transition: 200ms;
  position: relative;
  width: min-content;
  white-space: nowrap;
}

#aside .navigation .link:hover::after {
  width: 100%;
}

#aside .navigation .link::after {
  content: "";
  background-color: var(--accent);
  height: 2px;
  position: absolute;
  top: 100%;
  left: 0;
  width: 0%;
  margin-top: 3px;
  transition: 200ms;
}

#overlay {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: fixed;
  z-index: 8;
  opacity: 0;
  background-color: transparent;
  transition: 700ms;
  pointer-events: none;
}

#overlay::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: var(--accent);
  opacity: 0.6;
}

#overlay.isShown {
  opacity: 1;
  pointer-events: all;
}

#hero-section {
  width: 100%;
  height: 100vh;
  position: relative;
  overflow: hidden;
}

#hero-section .background-banners {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  transform: scale(1.1);
}

#hero-section .background-banners .banner {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.7); /* Aumentado de 0.5 para 0.7 */
}

#hero-section .background-banners::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: black;
  opacity: 0.2; /* Reduzido de 0.4 para 0.2 */
  box-shadow: inset 0 0 100px 120px black;
}

#hero-section .hero-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: grid;
  place-items: center;
  align-content: flex-start;
  row-gap: 2rem;
  max-width: 100%;
}

#hero-section .hero-text #title {
  font-size: 14vmin;
  color: white;
  font-weight: 400;
  font-family: "Ascendant", serif;
  text-transform: uppercase;
  text-align: center;
}

#hero-section .hero-text #title .word {
  display: block;
  white-space: nowrap;
  user-select: none;
  font-family: inherit;
}

#hero-section .hero-text #title .word .letter {
  font-family: inherit;
  animation: 1s descend forwards;
  display: inline-block;
  transform: translateY(-20px);
  opacity: 0;
  position: relative;
  transition: 150ms;
}

#hero-section .hero-text .subtitle {
  font-size: 3vmin;
  color: white;
  font-weight: 400;
  text-align: center;
  animation: 1s descend forwards;
  transform: translateY(-20px);
  opacity: 0;
}

#hero-section .hero-text .draft-button {
  font-size: 2vmin;
  color: white;
  font-weight: 700;
  display: flex;
  align-items: center;
  padding: 1rem 0.5rem;
  margin: 0 auto;
  background-color: transparent;
  border: 2px solid white;
  border-radius: 4px;
  cursor: pointer;
  column-gap: 0.5rem;
  animation: 1s descend forwards;
  transform: translateY(-20px);
  opacity: 0;
  position: relative;
  text-decoration: none;
  overflow: hidden;
  text-align: center;
  line-height: 1.5;
}

#hero-section .hero-text .draft-button img {
  width: 18px;
  height: 18px;
  filter: invert(1);
}

#hero-section .hero-text .draft-button img:nth-child(n+3) {
  transform: scaleX(-1);
}

#hero-section .hero-text .draft-button img:nth-child(2) {
  margin-right: 0.5rem;
}

#hero-section .hero-text .draft-button img:nth-child(3) {
  margin-left: 0.5rem;
}

#hero-section .hero-text .draft-button:hover img:first-child {
  transform: translateX(-10px);
}

#hero-section .hero-text .draft-button:hover img:last-child {
  transform: translateX(10px) scaleX(-1);
}

#hero-section .hero-text .draft-button img:first-child {
  transform: translateX(10px);
}

#hero-section .hero-text .draft-button img:last-child {
  transform: translateX(-10px) scaleX(-1);
}

#hero-section .hero-text .draft-button:hover::after {
  left: 100%;
  transform: translate(175%, 0%) skewX(-20deg);
}

#hero-section .hero-text .draft-button::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 15px;
  height: 100%;
  background-color: var(--primary);
  transform: translate(-175%, 0%) skewX(-20deg);
  transition: 500ms;
}

#know-us-section {
  width: 100%;
  height: min-content;
  position: relative;
  padding: 100px 6%;
  padding-bottom: 75px;
}

#know-us-section .info {
  max-width: 800px;
  margin: 0 auto;
}

#know-us-section .title {
  font-size: 42px;
  color: var(--accent);
  font-weight: 500;
  text-align: center;
  margin-bottom: 4rem;
  transition: 1200ms;
}

#know-us-section .market-date {
  font-size: 2vmin;
  color: var(--details);
  font-weight: 700;
  width: 100%;
  text-align: center;
  margin-bottom: 1rem;
  transition: 1200ms;
}

#know-us-section .history {
  font-size: 2.25vmin;
  color: var(--text);
  font-weight: 400;
  line-height: 1.6;
  text-align: center;
  padding: 0 1rem;
  margin-bottom: 2rem;
  transition: 1200ms;
}

#know-us-section .history .underline {
  background-image: linear-gradient(var(--teal-light), var(--teal-light));
  background-size: 0% 100%;
  background-repeat: no-repeat;
  background-position: bottom left;
  transition: 2000ms;
  font-weight: bold;
}

#know-us-section .history .underline.isShown {
  background-size: 100% 100%;
}

#projects-section {
  width: 100%;
  height: min-content;
  padding: 180px 6%;
  padding-top: 75px;
  position: relative;
}

#projects-section .title {
  font-size: 45px;
  color: var(--accent);
  font-weight: 500;
  width: min-content;
  display: flex;
  margin: 0 auto;
  margin-bottom: 120px;
  align-items: center;
  isolation: isolate;
  position: relative;
  transform: translateY(50px);
  opacity: 0;
  transition: 1200ms;
}

#projects-section .subtitle {
  font-size: 18px;
  color: var(--details);
  font-weight: 600;
  white-space: nowrap;
  width: min-content;
  margin: 0 auto;
  margin-bottom: 1rem;
  transition: 1200ms;
}

#projects-section .projects-grid {
  column-count: 4;
  column-gap: 1rem;
}

#projects-section .projects-grid .project {
  width: 100%;
  overflow: visible;
  margin-bottom: 2rem;
  transform: translateY(50px);
  transition: 1000ms;
  border-radius: 6px;
  cursor: pointer;
  background-color: #f9f9f9;
  break-inside: avoid;
}

#projects-section .projects-grid .project.isShown {
  transform: translateY(0px);
}

#projects-section .projects-grid .image-container {
  width: 100%;
  overflow: hidden;
  border-radius: 6px 6px 0 0;
}

#projects-section .projects-grid .project:hover .image {
  transform: scale(1.05);
}

#projects-section .projects-grid .project .image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 500ms;
  display: block;
}

/* Informações do Projeto */
.project-info {
  padding: 15px 10px;
  text-align: center;
  background-color: #f9f9f9;
  border-radius: 0 0 6px 6px;
}

.project-material {
  font-size: 16px;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 5px;
  letter-spacing: 0.5px;
}

.project-city {
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 5px;
}

.project-environment {
  font-size: 13px;
  font-weight: 400;
  color: var(--details);
  font-style: italic;
}

#talk-with-us-section {
  width: 100%;
  height: min-content;
  padding: 0px 6%;
  padding-bottom: 100px;
}

#talk-with-us-section .subtitle {
  font-size: 18px;
  color: var(--details);
  font-weight: 600;
  text-align: center;
  margin-bottom: 1rem;
  transition: 1200ms;
}

#talk-with-us-section > .title {
  font-size: 42px;
  color: var(--accent);
  font-weight: 500;
  text-align: center;
  margin-bottom: 8rem;
  transition: 1200ms;
}

#talk-with-us-section .information-grid {
  display: grid;
  align-content: flex-start;
  grid-template-columns: repeat(4, 1fr);
  column-gap: 5%;
  row-gap: 5rem;
}

#talk-with-us-section .information-grid .information {
  display: grid;
  align-content: flex-start;
  row-gap: 1.5rem;
  transition: 1200ms;
}

#talk-with-us-section .information-grid .information .image {
  width: 55px;
  height: 55px;
  justify-self: center;
  filter: invert(92%) sepia(18%) saturate(290%) hue-rotate(12deg) brightness(88%) contrast(88%);
}

#talk-with-us-section .information-grid .information .title {
  font-size: 20px;
  color: var(--text);
  font-weight: 500;
  text-align: center;
}

#talk-with-us-section .information-grid .information .text {
  font-size: 16px;
  color: var(--text);
  font-weight: 500;
  text-align: center;
  word-break: break-word;
  line-height: 1.5;
}

#products-section {
  padding: 0px 6%;
  padding-bottom: 100px;
}

#products-section .subtitle {
  font-size: 18px;
  color: var(--details);
  font-weight: 600;
  text-align: center;
  margin-bottom: 1rem;
  transition: 1200ms;
}

#products-section .title {
  font-size: 42px;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 100px;
  text-align: center;
  transition: 1200ms;
}

#products-section .products-grid {
  display: grid;
  grid-template-columns: 50% 50%;
  align-content: flex-start;
  place-items: center;
  column-gap: 3rem;
  row-gap: 4rem;
  padding: 0 2rem;
}

#products-section .products-grid .product {
  width: 400px;
  max-width: 100%;
  line-height: 1.5;
  height: min-content;
  position: relative;
  transition: 1200ms;
}

#products-section .products-grid .product .name {
  font-size: 22px;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 1rem;
}

#products-section .products-grid .product .name span {
  width: 35px;
  height: 35px;
  background-color: var(--accent);
  color: var(--primary);
  font-size: 16px;
  font-weight: 500;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.5rem;
}

#products-section .products-grid .product .desc {
  font-size: 16px;
  color: var(--text);
  font-weight: 400;
}

#products-section .products-grid .product .desc .underline {
  background-image: linear-gradient(var(--teal-light), var(--teal-light));
  background-size: 0% 100%;
  background-repeat: no-repeat;
  background-position: bottom left;
  transition: 2000ms;
  font-weight: bold;
}

#products-section .products-grid .product .desc .underline.isShown {
  background-size: 100% 100%;
}

#contact-section {
  width: 100%;
  height: min-content;
  padding-top: 160px;
  padding-bottom: 160px;
  position: relative;
  overflow: hidden;
}

#contact-section::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background-image: url("../images/banner3.webp");
  background-size: cover;
  background-position: center bottom;
  z-index: -2;
}

#contact-section .form {
  width: 90%;
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  transform: translateY(200px);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  row-gap: 2rem;
  border-radius: 4px;
  background-color: white;
  transition: 1000ms;
}

#contact-section .form.isShown {
  transform: translateY(0px);
}

#contact-section .form .form-buttons {
  width: 100%;
  height: min-content;
  display: grid;
  align-content: flex-start;
  row-gap: 1rem;
}

#contact-section .form .form-buttons .button {
  font-size: 16px;
  color: white;
  font-weight: 400;
  padding: 1rem 1.5rem;
  border: none;
  border-radius: 6px;
  display: flex;
  transition: 200ms;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  text-decoration: none;
}

#contact-section .form .form-buttons .button .icon {
  width: 20px;
  height: 20px;
  filter: invert(1);
}

#contact-section .form .form-buttons .button.isSubmit {
  background-color: var(--accent);
}

#contact-section .form .form-buttons .button.isSubmit:hover {
  background-color: var(--dark-accent);
}

#contact-section .form .form-buttons .button.isWhatsapp {
  background-color: #6BBF5C;
}

#contact-section .form .form-buttons .button.isWhatsapp:hover {
  background-color: #5aa14e;
}

#contact-section .form .title {
  font-size: 22px;
  color: var(--accent);
  font-weight: 500;
  text-align: center;
}

#contact-section .form .wrapper {
  display: flex;
  flex-direction: column;
  row-gap: 0.5rem;
}

#contact-section .form .wrapper.hasError .error {
  display: block;
}

#contact-section .form .wrapper.hasError textarea,
#contact-section .form .wrapper.hasError input {
  border-bottom-color: rgb(151, 0, 0);
}

#contact-section .form .wrapper.hasError label {
  color: rgb(151, 0, 0);
}

#contact-section .form .wrapper .error {
  color: rgb(151, 0, 0);
  margin-top: 0.5rem;
  font-size: 14px;
  display: none;
  transition: 200ms;
}

#contact-section .form .wrapper label {
  position: relative;
  order: 0;
  font-size: 15px;
  color: var(--text);
  font-weight: 600;
  top: 0;
  width: min-content;
  white-space: nowrap;
  transition: 200ms;
}

#contact-section .form .wrapper input {
  font-size: 15px;
  color: var(--text);
  font-weight: 400;
  order: 1;
  padding: 0.5rem 0;
  border: none;
  width: 100%;
  background-color: transparent;
  outline: none;
  border-bottom: 1px solid #aaa;
  transition: 200ms;
}

#contact-section .form .wrapper textarea {
  font-size: 15px;
  color: var(--text);
  font-weight: 400;
  order: 1;
  padding: 0.5rem 0;
  border: none;
  width: 100%;
  background-color: transparent;
  outline: none;
  border-bottom: 1px solid #aaa;
  resize: vertical;
  max-height: 225px;
}

@keyframes descend {
  to {
    transform: translateY(0px);
    opacity: 1;
  }
}

@keyframes translateDown {
  from {
    transform: translate(0%, -100%);
  }
  to {
    transform: translate(0%, 0%);
  }
}

/* Lightbox Styles */
.lightbox {
  display: none;
  position: fixed;
  z-index: 9999;
  padding-top: 50px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(5px);
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.lightbox-content {
  margin: auto;
  display: block;
  max-width: 90%;
  max-height: 80vh;
  object-fit: contain;
  border: 3px solid white;
  border-radius: 4px;
  animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
  from { transform: scale(0.8); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 40px;
  color: #fff;
  font-size: 60px;
  font-weight: 300;
  cursor: pointer;
  transition: 0.3s;
  z-index: 10000;
}

.lightbox-close:hover,
.lightbox-close:focus {
  color: #bbb;
}

.lightbox-caption {
  margin: auto;
  display: block;
  width: 80%;
  text-align: center;
  color: #fff;
  padding: 20px;
  font-size: 20px;
  font-weight: 500;
}

@media screen and (max-width: 1100px) {
  #header {
    padding: 0 1.5rem;
  }
  #header .whats-button,
  #header .menu-button {
    width: 27px;
    height: 27px;
  }
  #header .whats-button img,
  #header .menu-button img {
    width: 27px;
    height: 27px;
  }
  #aside .link {
    font-size: 25px;
  }
  .hero-text .subtitle {
    font-size: 4vmin !important;
  }
  .hero-text .draft-button {
    font-size: 3vmin !important;
  }
  .hero-text .draft-button img:nth-child(3) {
    margin-left: 0 !important;
  }
  .market-date {
    font-size: 3vmin !important;
  }
  .history {
    font-size: 4vmin !important;
    padding: 0 !important;
  }
  #whatsapp-button {
    transform-origin: bottom left;
    transform: scale(0.8);
  }
  #home-button {
    transform-origin: bottom right;
    transform: scale(0.9);
  }
  #projects-section {
    padding-bottom: 150px;
  }
  #projects-section .subtitle {
    font-size: 3vmin !important;
  }
  #projects-section .projects-grid {
    column-count: 3;
  }
  #products-section .products-grid {
    grid-template-columns: 1fr !important;
    padding: 0 1rem;
  }
  #talk-with-us-section .information-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  #talk-with-us-section .information-grid .information {
    display: grid;
    grid-template-columns: 1fr;
    place-items: center;
    justify-self: center;
  }
  #talk-with-us-section .information-grid .information .title, 
  #talk-with-us-section .information-grid .information .text {
    text-align: left;
  }
  #talk-with-us-section .information-grid > *:last-child {
    grid-column: span 3 !important;
  }
}

@media screen and (max-width: 800px) {
  #projects-section .projects-grid {
    column-count: 2;
  }
  #talk-with-us-section .information-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  #talk-with-us-section .information-grid > *:last-child {
    grid-column: span 2 !important;
  }
}

@media screen and (max-width: 600px) {
  #projects-section .projects-grid {
    column-count: 1;
  }
  #talk-with-us-section .information-grid {
    grid-template-columns: 1fr;
  }
  #talk-with-us-section .information-grid > *:last-child {
    grid-column: auto !important;
  }
}

#footer {
  padding: 4rem 3rem;
  padding-bottom: 50px;
  display: grid;
  place-items: center;
  align-content: flex-start;
  row-gap: 2rem;
  color: var(--text);
  background-color: var(--dark-accent);
}

#footer .logo {
  filter: brightness(100);
  width: 220px;
}

#footer p {
  color: white;
  text-align: center;
}

#testimonials-section {
  width: 100%;
  height: min-content;
  padding: 100px 6%;
  padding-bottom: 100px;
  background-color: #f9f9f9;
}

#testimonials-section .subtitle {
  font-size: 18px;
  color: var(--details);
  font-weight: 600;
  text-align: center;
  margin-bottom: 1rem;
  transition: 1200ms;
}

#testimonials-section .title {
  font-size: 42px;
  color: var(--accent);
  font-weight: 500;
  text-align: center;
  margin-bottom: 5rem;
  transition: 1200ms;
}

#testimonials-section .testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

#testimonials-section .testimonial {
  background-color: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  transition: transform 300ms, box-shadow 300ms;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1000ms, transform 1000ms;
}

#testimonials-section .testimonial.isShown {
  opacity: 1;
  transform: translateY(0);
}

#testimonials-section .testimonial:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.12);
}

#testimonials-section .testimonial .stars {
  display: flex;
  gap: 0.25rem;
}

#testimonials-section .testimonial .stars img {
  width: 20px;
  height: 20px;
  filter: invert(77%) sepia(72%) saturate(1234%) hue-rotate(359deg) brightness(102%) contrast(104%);
}

#testimonials-section .testimonial .text {
  font-size: 15px;
  color: var(--text);
  line-height: 1.6;
  font-style: italic;
  flex-grow: 1;
}

#testimonials-section .testimonial .client-info {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--borders);
}

#testimonials-section .testimonial .avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--dark-accent));
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 600;
  flex-shrink: 0;
}

#testimonials-section .testimonial .details {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

#testimonials-section .testimonial .details .name {
  font-size: 16px;
  color: var(--accent);
  font-weight: 600;
}

#testimonials-section .testimonial .details .location {
  font-size: 13px;
  color: var(--details);
  font-weight: 400;
}

/* Responsivo */
@media screen and (max-width: 1100px) {
  #testimonials-section .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 600px) {
  #testimonials-section {
    padding: 75px 6%;
  }
  
  #testimonials-section .title {
    font-size: 32px;
    margin-bottom: 3rem;
  }
  
  #testimonials-section .testimonials-grid {
    grid-template-columns: 1fr;
  }
}