* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --green: #79cf87;
  --green-dark: #62c774;
  --white: #ffffff;
  --black: #000000;
}

body {
  background: #111;
}
html {
  scroll-behavior: smooth;
}

.hero {
  min-height: 130vh;
  background: url("fundo-movmint\ 4.png") center center / cover no-repeat;
  position: relative;
  overflow: hidden;
}

/* HEADER */
.header {
  width: 100%;
  padding: 50px 58px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
    margin-left: 6rem;
  display: block;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav {
    
  display: flex;
  align-items: center;
  gap: 3.1rem;
}

.nav a {
  font-family: "Poppins", sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--white);
  text-decoration: none;
  position: relative;
  line-height: 1;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 2px;
  background: var(--white);
  transition: 0.3s;
}

.nav a:hover::after,
.nav a.active::after {
  width: 100%;
}

.socials {
  display: flex;
  align-items: center;
  gap: 14px;
}
.socials:hover{
    transition: .6s;
    transform: translateY(-5px);
}

.socials a {
  color: var(--white);
  font-size: 22px;
  text-decoration: none;
}

.header-btn {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #5cad69;
  text-decoration: none;
  background: #f2f2f2;
  padding: 11px 18px;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  line-height: 1;
}
.header-btn:hover{
    transform: translateY(-5px);
    transition: .4s ease-in-out;
    background-color: #5cad69;
    color: #fff;
}

.header-btn i {
  font-size: 11px;
}

/* HERO CONTENT */
.hero-content {
  max-width: 1110px;
  margin: 200px auto 0; /* centraliza o container */
  text-align: left; /* mantém conteúdo à esquerda */
}

.hero-content h1 {
  font-family: "Big Shoulders Display", sans-serif;
  font-size: 128px;
  font-weight: 800;
  line-height:1;
  letter-spacing: 0;
  color: var(--black);
  text-transform: uppercase;
}

.hero-content .green {
  color: var(--green);
}

.hero-content p {
  margin-top: 14px;
  font-family: "Big Shoulders Display", sans-serif;
  font-size: 38px;
  font-weight: 600;
  color: var(--black);
  line-height: 1;
}

#whatsapp {
  position: fixed;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 999;

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

  opacity: 0;
  visibility: hidden;
  transform: translateY(30px) scale(0.9);
  transition:
    opacity 0.35s ease,
    transform 0.35s ease,
    visibility 0.35s ease;

  animation: whatsappFloat 3s ease-in-out infinite;
}

#whatsapp img {
  display: block;
  height: 70px;
  filter: drop-shadow(0 10px 25px rgba(0, 0, 0, 0.22));
  transition: transform 0.3s ease, filter 0.3s ease;
}

#whatsapp.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

#whatsapp:hover img {
  transform: scale(1.08);
  filter: drop-shadow(0 14px 30px rgba(0, 0, 0, 0.28));
}

#whatsapp::before {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.18);
  transform: scale(0.85);
  opacity: 0;
  z-index: -1;
  transition: 0.35s ease;
}

#whatsapp.show::before {
  opacity: 1;
  transform: scale(1);
}

@keyframes whatsappFloat {
  0% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-6px) scale(1);
  }
  100% {
    transform: translateY(0) scale(1);
  }
}
.hero-btn {
    
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--green);
  color: var(--white);
  text-decoration: none;
  font-family: "Big Shoulders Display", sans-serif;
  font-size: 20px;
  font-weight: 700;
  padding: 11px 18px;
  border-radius: 4px;
  line-height: 1;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
}
.hero-btn:hover{
    transition: .3s;
    transform: translateY(-5px);
}

/* FLOATING BUTTONS */
.floating-socials {
  position: absolute;
  right: 54px;
  bottom: 34px;
  display: flex;
  flex-direction: column;
  gap: 42px;
}

.floating-socials a {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #fff;
  font-size: 30px;
}
.about-brand {
  padding: 90px 40px;
  background: #f2f2f2;
}
.brand-name img {
  height: 54px; /* ajusta aqui */
  width: auto;
  display: block;
}

.about-container {
  max-width: 1580px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 70px;
  align-items: start;
}

.about-left h2 {
  font-family: "Big Shoulders Display", sans-serif;
  font-size: 98px;
  line-height: 0.95;
  color: #000;
  font-weight: 800;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.title-line {
  display: block;
  width:191px;
  height: 4px;
  background: #77C481;
  margin-bottom: 24px;
}

.about-left > p {
  font-family: "Poppins", sans-serif;
  max-width: 920px;
  font-size: 15px;
  line-height: 1.55;
  color: #4b4b4b;
  margin-bottom: 12px;
}

.about-buttons {
   font-family: "Big Shoulders Display", sans-serif;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
  margin-bottom: 52px;
}

.btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center; /* centraliza o texto */

  width: 26%;
  max-width: 300px;

  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 20px;
  font-weight: 700;
  transition: .3s;
}
.btn span {
  text-align: center;
}
.btn-primary {
  background: #77C481;
  color: #fff;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
}

.btn-primary:hover {
  transform: translateY(-2px);
}

.btn img {

  background: #8BE39A;
  padding: 10px;
  border-radius: 7px;

  display: flex;
  margin-left: 20px;
}



.about-features {
  display: grid;
  grid-template-columns: repeat(2, minmax(220px, 1fr));
  gap: 34px 38px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.feature-icon {
  width: 54px;
  height: 54px;
  min-width: 54px;

  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon img {
  width: 70px;
  height:70px;
  object-fit: contain;
}

.feature-item h3 {
   font-family: "Big Shoulders Display", sans-serif;
  font-size: 22px;
  color: #111;
  margin-bottom: 6px;
  font-weight: 700;
}

.feature-item p {
   font-family: "Big Shoulders Display", sans-serif;
  font-size: 17px;
  line-height: 1.5;
  color: #6d6d6d;
}

.about-right {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.about-image-box {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.14);
}

.about-image-box img {
  width: 100%;
  display: block;
  object-fit: cover;
}

.about-banner {
  border-radius: 4px;
  position: relative;
  background: #000000;
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 0px;
  overflow: hidden;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.about-banner::before,
.about-banner::after {
  content: "";
  position: absolute;
  top: 0;
  width: 150px;
  height: 100%;
  background: #77C481;
}

.about-banner::before {
  left: -67px;
  transform: skewX(65deg);
}

.about-banner::after {
  right:  -67px;
  transform: skewX(65deg);
}

.about-banner span {
  font-family: "Big Shoulders Display", sans-serif;
  position: relative;
  z-index: 2;
  color: #fff;
  font-size: 27px;
  font-weight: 600;
  text-align: center;
}

.about-banner strong {
  color: #77C481;
}
 /* ===== MENU BURGER PROFISSIONAL ===== */

.menu-toggle {
  
  display: none;
  width: 68px;
  height: 58px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: #77C481;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: 6px;
  cursor: pointer;
  padding: 0;
  position: relative;
  position: fixed;
  z-index: 1201;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  transition: all 0.35s ease;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}

.menu-toggle:hover {
  border-color: rgba(121, 207, 135, 0.35);
  background: rgba(255, 0, 0, 0.08);
  transform: translateY(-2px);
}

.menu-toggle span {
  width: 48px;
  height: 8px;
  background: #fff;
  border-radius: 8px;
  transition: 0.35s ease;
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}
.projects {
  background: #efefef;
  padding: 80px 40px;
}

.container {
   max-width: 1850px; /* antes era 1200 */
  margin: 0 auto;
}

/* HEADER */
.projects-header {
  margin-bottom: 40px;
}
.projects-header .title {
  display: flex;
  align-items: center;
  gap: 16px;
  /* ajusta aqui */
}
.projects-header h2 {
margin-left: 110px;   
font-weight: 800;
  font-family: "Big Shoulders Display", sans-serif;
  font-size: 78px;
  color: #111;
}

.projects-header .line {
  width: 60px;
  height: 4px;
  background: #79cf87;
  border-radius: 2px;
}

.projects-header p {
  margin-left: 110px; 
  margin-top: 10px;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  color: #666;
}

/* GRID */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.card {
  border: 2px solid#000;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
  transition: 0.3s;
}

.card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
}

.card:hover {
  transform: translateY(-5px) scale(1.01);
}

/* BOTÃO */
.projects-footer {
  display: flex;
  justify-content: flex-end;
  margin-top: 30px;
}

.btn-more {
  font-family: "Big Shoulders Display", sans-serif;
  background: #79cf87;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.5rem;
  padding: 8px 66px;
  
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 9px 0 #2d2d2d;
  transition: 0.2s;
}

.btn-more span {
  background: rgba(255,255,255,0.2);
  padding: 4px 8px;
  border-radius: 6px;
}

.btn-more:hover {
  transform: translateY(2px);
  box-shadow: 0 3px 0 #2d2d2d;
}
.extra-card {
  display: block;
}

.line-separartion{
  height: 4px;
  color: #fff;  
}
.ambientes-section {
  padding: 24px;
  background: #efefef;
}

.ambientes-grid {
  width: 100%;
  max-width: 1900px; /* aumenta o limite */
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items: start;
}

.ambientes-left,
.ambientes-right {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.carde {
  background: #f4f4f4;
  border-radius: 8px;
  padding: 28px;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.03);
}

.mockup-card {
  padding: 18px 20px 14px;
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mockup-card img {
  width: 100%;
  max-width: 920px;
  border-radius: 10px;
  
  display: block;
  object-fit: contain;
}

.servicos-card h2,
.portfolio-card h2,
.como-funciona-card h2 {
  font-family: "Big Shoulders Display", sans-serif;
  font-size: 58px;
  line-height: 0.9;
  font-weight: 800;
  color: #111;
  margin-bottom: 8px;
}

.title-line {
  display: block;
  width: 200px;
  height: 4px;
  background: #7dc58d;
  margin-bottom: 14px;
}

.section-text,
.como-funciona-card p,
.servico-item p {
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  line-height: 1.1;
  color: #444;
}

.como-funciona-card p {
  margin-bottom: 10px;
  max-width: 95%;
}

.como-funciona-card strong {
  font-weight: 700;
  color: #202020;
}

.como-funciona-image {
  margin-top: 18px;
  border-radius: 8px;
  overflow: hidden;
}

.como-funciona-image img {
  border-radius: 10px;
  margin-top: 5rem;
  width: 100%;
  height: 550px;
  object-fit: cover;
  display: block;
}

.servicos-grid {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.servico-item {
  background: #fafafa;
  border: 1px solid #e3e3e3;
  border-radius: 6px;
  padding: 24px 16px 18px;
  text-align: center;
  min-height: 245px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
}
.servico-icon {
  width: 100px;
  height: 100px;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.servico-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.servico-item h3 {
  font-family: "Big Shoulders Display", sans-serif;
  font-size: 30px;
  line-height: 0.95;
  font-weight: 800;
  color: #111;
  margin-bottom: 10px;
}
.mini-btn {
  margin: 38px auto 0;
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #467E4C;
  color: #fff;
  text-decoration: none;
  padding: 14px 18px;
  border-radius: 4px;
  font-family: "Big Shoulders Display", sans-serif;
  font-size: 18px;
  font-weight: 700;
}
.mini-btn img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}
.mini-btn:hover {
  background: #63b16b;
  transform: translateY(-2px);
  transition: .3s ease-in-out;
}

.portfolio-filters {
  margin-top: 16px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.portfolio-filters button {
  border: none;
  background: transparent;
  color: #111;
  font-family: "Big Shoulders Display", sans-serif;
  font-size: 18px;
  font-weight: 700;
  padding: 8px 37px;
  border-radius: 10px;
  cursor: pointer;
}

.portfolio-filters button.active {
  transition: .3s;
  background: #397D3E;
  color: #fff;
}
.portfolio-btn {

  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.portfolio-btn img {
    width: 18px;
  height: 18px;
  order: 2;
}
.portfolio-grid {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.portfolio-grid img {
  width: 100%;
  height: 185px;
  object-fit: cover;
  display: block;
  border-radius: 8px;
}

.portfolio-btn {
  margin: 18px auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 230px;
  height: 42px;
  border: 1px solid #77C481;
  border-radius: 6px;
  text-decoration: none;
  color: #111;
  font-family: "Big Shoulders Display", sans-serif;
  font-size: 18px;
  font-weight: 700;
  background: transparent;
}

.cta-box {
  margin-top: 22px;
  background-image: url(img/imgfundoburron.avif);
  border-radius: 8px;
  padding: 24px 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.cta-content h3 {
  font-family: "Big Shoulders Display", sans-serif;
  font-size: 40px;
  line-height: 0.95;
  font-weight: 800;
  color: #fff;
  max-width: 670px;
  margin-bottom: 8px;
}

.cta-content p {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.95);
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 8px;
  background: #4c8758;
  color: #fff;
  text-decoration: none;
  font-family: "Big Shoulders Display", sans-serif;
  font-size: 22px;
  font-weight: 700;
  white-space: nowrap;
}
.depoimentos-clientes {
  width: 100%;
  padding: 70px 40px 80px;
  background: url("img/fundoAvaliacoes.avif") center/cover no-repeat;
  overflow: hidden;
}

.depoimentos-container {
  width: 100%;
  max-width: 1380px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.02fr 1fr;
  gap: 54px;
  align-items: start;
}

/* esquerda */
.depoimentos-left {
  display: flex;
  flex-direction: column;
}
.video-card {
  position: relative;
  width: calc(80% + 220px);
   transform: translateX(-180px);
  padding-top: 70.25%;
}

.video-card iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 8px;
  border: none;
}
.faixa-compromisso {
  border-radius: 8px;
  width: 115%;          /* maior que o container */
  max-width: none;   
   transform: translateX(-180px);   /* remove limite */

  margin-top: 18px;
  height: 60px;
  position: relative;
  background: #000;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.faixa-compromisso::before,
.faixa-compromisso::after {
  content: "";
  position: absolute;
  top: 0;
  width: 120px;
  height: 100%;
  background: #74c77a;
}

.faixa-compromisso::before {
  left: -55px;
  transform: skewX(61deg);
}

.faixa-compromisso::after {
  right: -55px;
  transform: skewX(61deg);
}

.faixa-compromisso span {
  position: relative;
  z-index: 2;
  font-family: "Big Shoulders Display", sans-serif;
  font-size: 24px;
  line-height: 1;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.2px;
  text-align: center;
}

.faixa-compromisso strong {
  color: #74c77a;
}
/* direita */

.depoimentos-right {
  transform: translateX(0px); /* ajusta aqui */
}
.depoimentos-right h2 {
  margin: 0;
  font-family: "Big Shoulders Display", sans-serif;
  font-size: clamp(36px, 4vw, 68px); /* reduz o mínimo */
  line-height: 0.95;
  font-weight: 800;
  color: #fff;
    white-space: nowrap;
}

.depoimentos-subtitle {

  font-family: "Poppins", sans-serif;
  margin-top: 22px;
  font-size: 13px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.95);
}

.depoimentos-text {
  font-family: "Poppins", sans-serif;
  max-width: 600px;
  margin-top: 14px;
  font-size: 13px;
  line-height: 1.45;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
}

.depoimentos-btn {
  font-family: "Big Shoulders Display", sans-serif;
  margin-top: 20px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 38px;
  padding: 0 32px;
  border-radius: 4px;
  background: #74c77a;
  
  color: #fff;
  text-decoration: none;
  font-size: 19px;
  font-weight: 600;
  transition: 0.25s ease;
   box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
}
.depoimentos-btn i{
  
  background-color: #8BE39A;
  border-radius: 6px;
  padding: 6px;
  
}

.depoimentos-btn:hover {
  transform: translateY(-2px);
}

.depoimentos-heading-row {
  margin-top: 36px;
  display: flex;
  align-items: center;
  
  gap: 14px;
  flex-wrap: wrap;
}

.depoimentos-heading-row h3 {
  margin: 0;
  font-family: "Big Shoulders Display", sans-serif;
  font-size: clamp(30px, 2vw, 10px);
  line-height: 0.94;
  font-weight: 800;
  color: #111;
}

.divider-vertical {
  width: 4px;
  height: 48px;
  background: #74c77a;
}

.brand-name {
  font-family: "Big Shoulders Display", sans-serif;
  font-size: 48px;
  line-height: 1;
  font-weight: 800;
  color: #111;
  letter-spacing: 1px;
}
.reviewss-area {
  font-family: "Poppins", sans-serif;
  margin-top: 18px;

  display:grid;
  gap: 16px;
  align-items: center;
  justify-content: center;
}

.glass-card {
  width: 350px;
  height: 220px;

  border-radius: 12px;

  background: transparent;

  border:none;



  box-shadow: none;
}
/* reviews */
.reviews-area {
  
  font-family: "Poppins", sans-serif;
  margin-top: 18px;
  display: grid;
/* aumenta aqui */
  grid-template-columns: 42px 1fr 42px;
  gap: 12px;
  align-items: center;
}

.review-arrow {
  width: 42px;
  height: 42px;
  border: 0;
  transform: translateX(-58px);
  border-radius: 10px;
  background: #d3d3d3;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.review-arrow i {
  font-size: 16px;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(350px, 1fr));
  gap: 16px;
   transform: translateX(-60px);
}
.review-card {
  background: #fff;
  border: 1px solid #d9d9d9;
  border-radius: 8px;
  padding: 14px 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.review-card.active {
  border: 2px solid #77C481;
}

.review-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}

.review-user {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.review-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #d9c2a3;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.review-avatar.red {
  background: #ef6b63;
}

.review-user h4 {
  margin: 0;
  font-size: 13px;
  font-weight: 500;
  color: #222;
}

.review-user span {
  display: block;
  margin-top: 2px;
  font-size: 11px;
  color: #7c7c7c;
}

.review-dots {
  background: transparent;
  border: 0;
  color: #777;
  cursor: pointer;
  padding: 0;
}

.review-stars {
  margin-top: 12px;
  font-size: 13px;
  color: #f5a623;
}

.review-stars span {
  margin-left: 8px;
  color: #7a7a7a;
  font-size: 11px;
}

.review-text {
  margin-top: 8px;
  font-size: 12px;
  line-height: 1.45;
  color: #444;
  min-height: 38px;
}

.review-actions {
  margin-top: 14px;
  padding-top: 10px;
  border-top: 1px solid #ececec;
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.review-actions span {
  font-size: 12px;
  color: #444;
  display: inline-flex;
  align-items: center;
  gap: 7px;
}


/* MENU MOBILE */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 1200;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: 0.35s ease;
}

.mobile-menu.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.mobile-menu-overlay {
  position: absolute;
  inset: 0;
  background: rgba(5, 8, 6, 0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.mobile-menu-panel {
  position: fixed;
  top: 0;
  right: 0;
  width: min(430px, 100%);
  height: 100dvh;
  max-height: 100dvh;
  padding: 30px 24px 24px;

  overflow-y: auto;
  overflow-x: hidden;

  background:
    linear-gradient(180deg, rgba(18, 24, 20, 0.96), rgba(10, 14, 11, 0.98));
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: -20px 0 60px rgba(0, 0, 0, 0.35);

  transform: translateX(100%);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);

  display: flex;
  flex-direction: column;
}

.mobile-menu.active .mobile-menu-panel {
  transform: translateX(0);
}

.mobile-menu-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 38px;
}

.mobile-menu-logo img {
  width: 150px;
  max-width: 100%;
  display: block;
}

.mobile-menu-close {
  width: 50px;
  height: 50px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  border-radius: 14px;
  cursor: pointer;
  transition: 0.3s ease;
  font-size: 20px;
}

.mobile-menu-close:hover {
  border-color: rgba(121, 207, 135, 0.35);
  background: rgba(255, 255, 255, 0.08);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}

.mobile-nav a {
  display: flex;
  align-items: center;
  min-height: 64px;
  padding: 0 18px;
  border-radius: 18px;
  text-decoration: none;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: #fff;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: 0.3s ease;
}

.mobile-nav a:hover {
  transform: translateX(6px);
  color: #79cf87;
}
.mobile-socials {
  display: flex;
  gap: 12px;
  margin-top: 28px;
  margin-bottom: 20px;
}

.mobile-socials a {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: 0.3s ease;
}

.mobile-socials a:hover {
  color: #79cf87;

  background: rgba(121, 207, 135, 0.08);
}

.mobile-header-btn {
  min-height: 58px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #111;
  background: #79cf87;
  transition: 0.3s ease;
}

.mobile-header-btn:hover {
  transform: translateY(-2px);
}
.mobile-menu.active ~ .header .menu-toggle,
.menu-toggle.active {
  opacity: 0;
  pointer-events: none;
}.modal {
  position: fixed;
  inset: 0;

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

  background: rgba(10,10,10,0.45);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  opacity: 0;
  pointer-events: none;
  transition: 0.3s ease;
  z-index: 9999;
}

.modal.show {
  opacity: 1;
  pointer-events: all;
}

.modal-img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 12px;
  transform: scale(0.9);
  transition: 0.3s;
}

.modal.show .modal-img {
  transform: scale(1);
}

.modal-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 55px;
  height: 55px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.1);
  color: #fff;
  font-size: 26px;
  cursor: pointer;
}

.prev { left: 20px; }
.next { right: 20px; }

.close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 40px;
  border-radius: 10px;
  color: #000000;
  cursor: pointer;
}

.card img {
  cursor: pointer;
}
.site-footer {
  background: linear-gradient(180deg, #18181C 0%, #18181C 100%);
  padding: 26px 0 18px;
  color: #fff;
}

.footer-container {
  width: 100%;
  max-width: 1700px;
  margin: 0 auto;
  padding: 0 36px;
}

.footer-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
}

.footer-brand {
  max-width: 420px;
}

.footer-logo {
  width: 310px;
  max-width: 100%;
  margin-left: -15px;
  display: block;
}

.footer-brand p {
  margin-top: 10px;
  font-family: "Big Shoulders Display", sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: #ffffff;
  line-height: 1;
}

.footer-cta {
  min-width: 260px;
  text-align: left;
}

.footer-cta h3 {
  font-family: "Big Shoulders Display", sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 4px;
  line-height: 1;
}

.footer-cta p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 14px;
  font-family: Arial, sans-serif;
}

.footer-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #ffffff;
  color: #111;
  text-decoration: none;
  padding: 12px 48px;
  border-radius: 6px;
  font-family: "Big Shoulders Display", sans-serif;
  font-size: 18px;
  font-weight: 700;
  transition: 0.3s ease;
}

.footer-btn img {
  width: 16px;
  height: 16px;
  object-fit: contain;
}

.footer-btn:hover {
  transform: translateY(-2px);
}

.footer-divider {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin: 10px 0 12px;
}

.footer-middle {
  display: grid;
  grid-template-columns: 1.1fr 1.1fr 0.8fr;
  gap: 40px;
  padding-top: 2px;
}

.footer-column h4 {
  font-family: "Inter", sans-serif;
  font-size: 27px;
  font-weight: 400;
  color: #ffffff;
  margin-bottom: 14px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column li {
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.65);
  font-family: Arial, sans-serif;
  font-size: 14px;
  line-height: 1.4;
}
.footer-bottom a{
  color:#097aca ;
}
.footer-column a {
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  transition: 0.3s ease;
}

.footer-column a:hover {
  color: #ffffff;
}

.back-top-btn {
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #7dc58d;
  color: #fff !important;
  padding: 12px 18px;
  border-radius: 4px;
  font-family: "Big Shoulders Display", sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
}
.back-top-btn:hover{
  transform: .3s;
  transform: translateY(-3px);
}

.back-top-btn img {
  background-color: #8BE39A;
  padding: 4px;
  border-radius: 4px;
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.footer-contact-list li {
  margin-bottom: 14px;
}

.footer-bottom {
  text-align: center;
  padding-top: 4px;
}

.footer-bottom p {
  font-family: "Big Shoulders Display", sans-serif;
  font-size: 22px;
  font-weight: 600;
  color: #ffffff;
  line-height: 1;
}
.mobile-header-btn {
  flex-shrink: 0;
}

.mobile-nav a {
  flex-shrink: 0;
}
  .card img[src*="BoldBerry"] {
  overflow: visible;
    height: 300px;
    transform: translateY(-110px); /* sobe mais */
  }@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 1629px) and (min-width: 1101px) {
  .nav a {
  font-family: "Poppins", sans-serif;
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--white);
  text-decoration: none;
  position: relative;
  line-height: 1;
}
.nav {
    
  display: flex;
  align-items: center;
  gap: 2.1rem;
}

  .header-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }

  .video-card {
    width: calc(80% + 60px);
    transform: translateX(0);
  }

  .faixa-compromisso {
    width: 110%;
    transform: translateX(0);
  }


  .reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(250px, 1fr));
  gap: 16px;
   transform: translateX(-60px);
}
.depoimentos-right {
  transform: translateX(100px); /* ajusta aqui */
}
.depoimentos-right h2 {
  font-size: clamp(36px, 4vw, 58px); /* reduz o mínimo */
}
.depoimentos-heading-row h3{
  font-size: 24px;
}
.video-card {
  position: relative;
  width: calc(100% + 60px);
   transform: translateX(0px);
    padding-top: 70.25%;
}
}

/* trava scroll quando menu estiver aberto */
body.menu-open {
  overflow: hidden;
}
@media (max-width: 1583px){
  .hero-content {
  margin-left: 19rem;

}

  .hero-content h1 {
    margin-top: 1rem;
    
    font-size: 104px;
  }
  .btn {
    width: 100%;
    justify-content: center;
  } 

  .about-left h2 {
    font-size: 84px;
  }
  .about-buttons{
    width: 100%;
  }
  .como-funciona-card{
    margin-top: 6.4rem;
  }
.video-card {
  position: relative;
  width: calc(75% + 100px);
  padding-top: 60.25%;
  
}
.faixa-compromisso {

  width: 90%;          /* maior que o container */
   

}
.depoimentos-right{
  transform: translateX(-10px);
}
.depoimentos-heading-row h3{
  font-size: 24px;
}
.cta-content h3{
  font-size: 30px;
}
.footer-container {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 36px;
}
}
@media (max-width: 1500px){


  .menu-toggle {
    display: inline-flex;
  }

  .desktop-nav,
  .header-right .socials,
  .header-right .header-btn {
    display: none;
  }
}

@media (max-width: 1460px) {
/* HERO CONTENT */
.hero-content {
  margin-left: 14rem;
  margin-top: 12rem;
}
  .hero-content h1 {
    margin-top: 1rem;

    font-size: 104px;
  }
  
  .btn {
    width: 100%;
    justify-content: center;
  }  .projects-header h2, .projects-header p{margin-left: 0px; }

    .card img[src*="BoldBerry"] {
 overflow: visible;
  height: 300px;
  transform: translateY(0px); /* sobe mais */
}
}
@media (max-width: 1378px) {
.about-left h2{
  font-size: 4rem;
}
.depoimentos-heading-row h3{
  font-size: 20px;
}
}

@media (max-width: 1100px) {
    .menu-toggle {
    display: inline-flex;
  }

  .desktop-nav,
  .header-right .socials,
  .header-right .header-btn {
    display: none;
  }

  .header-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
.hero {
  min-height: 100vh;
  background: url("fundo-movmint\ 4.png") center center / cover no-repeat;
  background-position: 57% center;
  position: relative;
  overflow: hidden;
}
  .header {
    padding: 24px 24px 0;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
  }

  .header-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 16px;
    flex-wrap: nowrap;
    width: auto;
  }

  .hero-content {
    margin: 90px 24px 0;
    max-width: 100%;
  }

  .hero-content h1 {
    margin-top: 12rem;
    font-size: 84px;
  }

  .hero-content p {
    font-size: 28px;
  }
    .about-container {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .about-left h2 {
    font-size: 64px;
  }

  .about-left > p {
    max-width: 100%;
  }

  .about-right {
    max-width: 1100px;
  }
  
  .btn {
    width: 100%;
    justify-content: center;
  }
.container {
  width: 100%;
  transform: none;
}
    .projects-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .projects-header h2, .projects-header p{
    margin-left: -10px; }

    
   .ambientes-grid {
    grid-template-columns: 1fr;
  }

  .servicos-grid {
    grid-template-columns: 1fr;
  }

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

  .cta-box {
    flex-direction: column;
    align-items: flex-start;
  }
  .video-card{
     transform: translateX(0px);
  
  position: relative;
  width: calc(80% + 220px);



  }
   /* estrutura principal */
  .depoimentos-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
  }

  /* garante largura total */
  .depoimentos-left {
    width: 100%;
  }

  /* vídeo ocupa tudo */
  .video-card {
    max-width: 100%;
  }

  /* faixa */
  .faixa-compromisso {
    width: 100%;
     transform: translateX(0px);
  }

  /* título */
  .depoimentos-right h2 {
    font-size: 62px;
  }

  /* linha com MOVMINT */
  .depoimentos-heading-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .divider-vertical {
    display: none;
  }

 .reviews-area {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  width: 100%;
  transform: none;
}

.review-card {
  width: 100%;
}

.review-arrow {
  display: none;
}
.depoimentos-right {
  transform: translateX(0px); /* ajusta aqui */
}

}

@media (max-width: 1100px) and (min-width: 769px) {
.depoimentos-clientes{
  padding-bottom: 0;
  margin-bottom: -320px;
}
  .video-card {
  padding-top: 30.25%;
}
.depoimentos-heading-row h3{
  font-size: 24px;
  white-space: nowrap;
}
}
@media (max-width: 768px) {
.depoimentos-clientes{
  padding-bottom: 0;
  margin-bottom: -320px;
}

  .hero {
    min-height: 100vh;
    background: url("fundo-movmint 4.png") center center / cover no-repeat;
    background-position: 17% center;
    position: relative;
    overflow: hidden;
  }

  .nav {
    flex-wrap: wrap;
    gap: 16px;
  }

  .hero-content h1 {
    margin-top: 14rem;
    font-size: 44px;
  }

  .hero-content p {
    font-size: 24px;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

  .logo img {
    height: 100px;
    margin-left: -10px;
  }

  .about-brand {
    padding: 70px 20px;
  }

  .about-left h2 {
    font-size: 48px;
  }

  .about-features {
    grid-template-columns: 1fr;
  }

  .about-banner span {
    font-size: 15px;
  }

  .projects-grid {
    grid-template-columns: 1fr;
  }

  .ambientes-grid {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
    transform: none;
    grid-template-columns: 1fr;
  }

  .projects-header h2 {
    font-size: 42px;
  }

  .extra-card {
    display: none;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.45s ease, transform 0.45s ease;
  }

  .extra-card.show {
    display: block;
    opacity: 1;
    transform: translateY(0);
    animation: fadeSlideUp 0.45s ease forwards;
  }

  .btn-more {
    font-family: "Big Shoulders Display", sans-serif;
    background: #79cf87;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.5rem;
    padding: 8px 66px;
    width: 100%;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 9px 0 #2d2d2d;
    transition: 0.2s;
  }

  .modal-arrow {
    width: 46px;
    height: 46px;
    font-size: 22px;
  }

  .prev {
    z-index: 1000;
    left: 12px;
  }

  .next {
    right: 12px;
  }

  .close {
    top: 16px;
    right: 20px;
    font-size: 38px;
  }

  .modal-img {
    max-width: 92%;
    max-height: 80%;
  }

  .depoimentos-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
  }

  .depoimentos-left {
    width: 100%;
  }

  .video-card {
    max-width: 100%;
  }


  .depoimentos-right h2 {
    font-size: 42px;
  }

  .depoimentos-heading-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .divider-vertical {
    display: none;
  }

  .reviews-area {
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .review-arrow {
    display: none;
  }
  
  .footer-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

  .footer-middle {
    display: flex;
    flex-direction: column;
    gap: 28px;
  }

  .footer-column {
    width: 100%;
  }

  .footer-cta {
    width: 100%;
  }

}

/* ========================= */
/* AGORA FORA DO 768 (FIXO) */
/* ========================= */

@media (max-width: 485px){
  .depoimentos-right h2 {
    font-size: 2.2rem;
  }
  .faixa-compromisso{
    width: 100%;
    
  }
    .faixa-compromisso span{
    
    font-size: 15px;
  }
}

@media (max-width: 439px){
  .logo img {
    height: 80px;
    margin-left: -10px;
  }

  .hero-content h1 {
    font-size: 33px;
  }

  .hero {
    min-height: 100vh;
    background: url("fundo-movmint 4.png") center center / cover no-repeat;
    background-position: 57% center;
    position: relative;
    overflow: hidden;
  }

  .nav {
    flex-wrap: wrap;
    gap: 16px;
  }

  .hero-content h1 {
    margin-top: 12rem;
    font-size: 38px;
  }

  .hero-content p {
    font-size: 24px;
  }

  .about-left h2 {
    font-size: 38px;
  }

  .projects-header h2 {
    font-size: 2rem;
  }

  .about-buttons {
    flex-direction: column;
    align-items: flex-start;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

  .card img[src*="BoldBerry"] {
    overflow: visible;
    height: 300px;
    transform: translateY(0px);
  }

  .depoimentos-right h2 {
    font-size: 1.8rem;
  }
}

@media (max-width: 385px) {
@media (max-width: 768px) {
  .hero {
    min-height: 100vh;
    background: url("fundo-movmint 4.png") center center / cover no-repeat;
    background-position: 57% center;
    position: relative;
    overflow: hidden;
  }

  .nav {
    flex-wrap: wrap;
    gap: 16px;
  }

  .hero-content h1 {
    margin-top: 13rem;
    font-size: 64px;
  }

  .hero-content p {
    font-size: 24px;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

  .logo img {
    height: 100px;
    margin-left: -10px;
  }

  .about-brand {
    padding: 70px 20px;
  }

  .about-left h2 {
    font-size: 48px;
  }

  .about-features {
    grid-template-columns: 1fr;
  }

  .about-banner span {
    font-size: 15px;
  }

  .projects-grid {
    grid-template-columns: 1fr;
  }

  .ambientes-grid {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
    transform: none;
    grid-template-columns: 1fr;
  }

  .projects-header h2 {
    font-size: 42px;
  }

  .extra-card {
    display: none;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.45s ease, transform 0.45s ease;
  }

  .extra-card.show {
    display: block;
    opacity: 1;
    transform: translateY(0);
    animation: fadeSlideUp 0.45s ease forwards;
  }

  .btn-more {
    font-family: "Big Shoulders Display", sans-serif;
    background: #79cf87;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.5rem;
    padding: 8px 66px;
    width: 100%;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 9px 0 #2d2d2d;
    transition: 0.2s;
  }

  .modal-arrow {
    width: 46px;
    height: 46px;
    font-size: 22px;
  }

  .prev {
    z-index: 1000;
    left: 12px;
  }

  .next {
    right: 12px;
  }

  .close {
    top: 16px;
    right: 20px;
    font-size: 38px;
  }

  .modal-img {
    max-width: 92%;
    max-height: 80%;
  }

  .depoimentos-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
  }

  .depoimentos-left {
    width: 100%;
  }

  .video-card {
    max-width: 100%;
  }

  .faixa-compromisso {
    max-width: 100%;
  }

  .depoimentos-right h2 {
    font-size: 42px;
  }

  .depoimentos-heading-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .divider-vertical {
    display: none;
  }

  .reviews-area {
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .review-arrow {
    display: none;
  }
}

/* ========================= */
/* AGORA FORA DO 768 (FIXO) */
/* ========================= */

@media (max-width: 485px){
  .depoimentos-right h2 {
    font-size: 2.2rem;
  }
    .faixa-compromisso span{
    font-size: 1rem;
  }
}

@media (max-width: 439px){
  .logo img {
    height: 80px;
    margin-left: -10px;
  }

  .hero-content h1 {
    font-size: 33px;
  }

  .hero {
    min-height: 100vh;
    background: url("fundo-movmint 4.png") center center / cover no-repeat;
    background-position: 57% center;
    position: relative;
    overflow: hidden;
  }

  .nav {
    flex-wrap: wrap;
    gap: 16px;
  }

  .hero-content h1 {
    margin-top: 12rem;
    font-size: 38px;
  }

  .hero-content p {
    font-size: 24px;
  }

  .about-left h2 {
    font-size: 38px;
  }

  .projects-header h2 {
    font-size: 2rem;
  }

  .about-buttons {
    flex-direction: column;
    align-items: flex-start;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

  .card img[src*="BoldBerry"] {
    overflow: visible;
    height: 300px;
    transform: translateY(0px);
  }
.depoimentos-right{
  margin-left: -1rem;
}
  .depoimentos-right h2 {
    font-size: 1.8rem;
  }

}

@media (max-width: 385px) {
  .ambientes-grid {
    max-width: 100px;
    margin: 0 auto;
    padding: 0 10px;
    transform: translateX(-140px);
  }
  
  .hero-content h1 {
    margin-top: 12rem;
    font-size: 32px;
  }

  .hero-content p {
    font-size: 24px;
  }  .logo img {
    height: 70px;
    margin-left: -10px;
  }
  .projects-footer a{ 
  font-size: 20px;
  }

}
}