html {
  scroll-behavior: smooth;
}

/* Reset e base */
section[id] {
  scroll-margin-top: 130px; /* altura aproximada do seu header fixo */
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #333;
  background-color: #f4ecd9;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  height: auto;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: #4e3629;
  transition: background-color 0.3s, box-shadow 0.3s;
  z-index: 999;
  width: calc(100% - 2rem);
  margin: 0 1rem;
  border-radius: 0 0 16px 16px;
}

.header.scrolled {
  background-color: #f4ecd9;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  flex-wrap: nowrap;
  width: 100%;
}

.logo {
  height: 92px;
  flex: 0 0 auto;
  transition: all 0.3s ease-in-out;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: white;
  z-index: 1001;
  transition: color 0.3s ease;
  position: absolute;
  top: 1rem;
  left: 1rem;
}

.header.scrolled .menu-toggle {
  color: #000;
}
.header.scrolled .btn {
  font-size: 1.1rem;
  padding: 0.75rem 2rem;
}


.nav-menu {
  display: flex;
  gap: clamp(0.55rem, 1.25vw, 1.55rem);
  flex-wrap: nowrap;
  align-items: center;
  flex: 1;
  justify-content: flex-end;
  min-width: 0;
}

.nav-menu a {
  text-decoration: none;
  color: white;
  font-size: clamp(0.82rem, 0.98vw, 1.05rem);
  font-weight: 600;
  padding: 0.45rem 0.65rem;
  border-radius: 999px;
  transition: background-color 0.3s, color 0.3s;
  white-space: nowrap;
}

.header.scrolled .nav-menu a {
  color:#f4ecd9;
  font-size: clamp(0.9rem, 1.2vw, 1.2rem); /* mantém o tamanho igual ao do estado inicial */
   font-weight: 600;
  border-radius: 999px;
  padding: 0.5rem 1rem;
}


.nav-menu a:hover {
  color:  #3e563e;
}


.header.scrolled .nav-menu a {
  color: #4e3629;
}

.header.scrolled .nav-menu a:hover {
  color:#3e563e;
}

@media (min-width: 935px) {
  .header-content {
    flex-wrap: nowrap;
    gap: 1.25rem;
    padding: 0.75rem 1.35rem;
  }

  .logo {
    height: 78px;
  }

  .nav-menu {
    flex-wrap: nowrap;
    justify-content: center;
    gap: clamp(0.45rem, 1vw, 1.35rem);
    padding-right: 78px;
  }

  .nav-menu a,
  .header.scrolled .nav-menu a {
    white-space: nowrap;
    font-size: clamp(0.78rem, 0.9vw, 1rem);
    padding: 0.4rem 0.55rem;
  }
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}

.btn.initial {
  background-color: #3e563e;
  color: #fff;
  border: 2px solid #3e563e;
  font-size: 1rem;
  padding: 0.75rem 1.75rem;
  border-radius: 999px;
  font-weight: bold;
  transition: background-color 0.3s, transform 0.3s;
}

.btn.initial:hover {
  background-color: #4e3629;
  transform: scale(1.05);
}

.link {
  color: white;
  font-size: 0.9rem;
  text-decoration: none;
  transition: color 0.3s;
}

.header.scrolled .link {
  color: #333;
}

.btn {
  background-color: #4e3629;
  color: #fff;
  padding: 0.5rem 1.2rem;
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.9rem;
  transition: background 0.3s;
}

.btn:hover {
  background-color: #3e563e;
}

@media (max-width: 934px) {
  .header-content {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 1rem;
    position: relative;
  }

  .menu-toggle {
    grid-column: 1;
    justify-self: start;
    display: block;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: white;
    z-index: 1001;
  }

  .logo {
    grid-column: 2;
    justify-self: center;
    margin: 0 auto;
    display: block;
    height: 57px;
  }

  .nav-menu {
    display: none;
    flex-direction: column;
    width: 100%;
    background-color: #4e3629;
    padding: 1rem 0;
    position: absolute;
    top: 100%;
    left: 0;
    border-radius: 0 0 16px 16px;
  }

  .nav-menu.open {
    display: flex;
  }

  .nav-menu a {
    padding: 1rem 0;
    width: 100%;
    text-align: center;
  }

  .cta-buttons {
    display: none;
  }
}
@media (max-width: 934px) {
  .header-content {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 1rem;
    position: relative;
  }

  .menu-toggle {
    grid-column: 1;
    justify-self: start;
    display: block;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: white;
    z-index: 1001;
  }

  .logo {
    grid-column: 2;
    justify-self: center;
    margin: 0 auto;
    display: block;
    height: 57px;
  }

  .nav-menu {
    display: none;
    flex-direction: column;
    width: 100%;
    background-color: #4e3629;
    padding: 1rem 0;
    position: absolute;
    top: 100%;
    left: 0;
    border-radius: 0 0 16px 16px;
  }

  .nav-menu.open {
    display: flex;
  }

  .nav-menu a {
    padding: 1rem 0;
    width: 100%;
    text-align: center;
  }

  .cta-buttons {
    display: none;
  }
}

@media (max-width: 768px) {
  .header-content {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    text-align: center;
    padding: 1rem;
    position: relative;
  }

  .logo {
    grid-column: 2;
    justify-self: center;
    margin: 0 auto;
    display: block;
    height: 57px;
  }

  .menu-toggle {
    grid-column: 1;
    justify-self: start;
    display: block;
    position: relative;
    font-size: 1.5rem;
    background: none;
    border: none;
    color: white;
    z-index: 1001;
  }

  .nav-menu {
    display: none;
    flex-direction: column;
    width: 100%;
    background-color: #4e3629;
    padding: 1rem 0;
    position: absolute;
    top: 100%;
    left: 0;
    border-radius: 0 0 16px 16px;
  }

  .nav-menu.open {
    display: flex;
  }

  .nav-menu a {
    padding: 1rem 0;
    width: 100%;
    text-align: center;
  }

  .cta-buttons {
    display: none;
  }
}

@media (max-width: 934px) {
  .header.scrolled .nav-menu {
    background-color: #f4ecd9;
  }

  .header.scrolled .nav-menu a {
    color: #4e3629;
  }

  .header.scrolled .nav-menu a:hover {
    color: #3e563e;
  }

  .header.scrolled .menu-toggle {
    color: #4e3629;
  }
}

/* Hero */
.hero {
  background-color: #4e3629;
  color: white;
  padding: 10rem 1rem 2rem;
  border-radius: 24px;
  margin: 1rem;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  text-align: center;
}

@media(min-width: 768px) {
  .hero-content {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    text-align: left;
  }
}
@media (max-width: 767px) {
  .hero-img {
    display: none;
  }
}


.hero-text h1 {
  font-size: 2.5rem;
  font-weight: bold;
  line-height: 1.3;
  margin-bottom: 1.5rem;
  margin-top: -30px;
}

.hero-text p {
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

.btn-outline {
  display: inline-block;
  background-color: #fff;
  color: #4e3629;
  padding: 0.6rem 2rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.3s;
}

.btn-outline:hover {
  background-color: #fbe0cb;
}

.hero-img img {
  width: 100%;
  max-width: 800px;
  height: auto;
  margin: 0 auto;
  transform: scale(1.2);
  transition: transform 0.3s ease;
}

/* Footer */
.footer {
  background-color: #333;
  padding: 3rem 1rem;
  border-radius: 24px 24px 0 0;
  margin-top: 4rem;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer-left {
  flex: 1;
}

.footer-logo {
  height: 100px;
  margin-bottom: 1rem;
}

.footer-left p {
  color: #fff;
  font-size: 0.9rem;
}

.footer-links {
  flex: 1;
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #3e563e;
}

.footer-social {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.5rem;
}

.footer-social-title {
  color: #fff;
  font-size: 1.1rem;
  font-weight: bold;
  margin-bottom: 0.4rem;
}

.footer-icons {
  display: flex;
  gap: 1rem;
}

.footer-icons a {
  font-size: 2rem;
  color: #fff;
  transition: color 0.3s ease;
}

.footer-icons a:hover {
  color: #3e563e;
}


@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-logo {
    margin: 0 auto 1rem;
  }

   .footer-social {
    align-items: center;
  }

  .footer-social-title {
    text-align: center;
  }
}


.btn-with-icon {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.btn-with-icon img {
  height: 5rem;
  display: inline;
  vertical-align: middle;
  margin-bottom: 5px;
}

.image-button {
  display: flex;
  justify-content: flex-end;
  background: transparent;
  border: none;
  padding: 0;
  box-shadow: none;
  transition: transform 0.3s ease;
  width: 100%;
}

.image-button img {
  height: 230px;
  width: auto;
  display: inline-block;
  vertical-align: middle;
  transition: transform 0.3s ease;
  margin-right: 15rem; /* Aqui move para a esquerda */
}

.image-button:hover img {
  transform: scale(1.05);
}

/* Responsivo */
@media (max-width: 768px) {
  .image-button {
    justify-content: center;
  }

  .image-button img {
    height: 150px;
    margin-right: 0;
  }
}

@media (max-width: 480px) {
  .image-button img {
    height: 110px;
  }
}
@media (max-width: 1290px) and (min-width: 769px) {
  .image-button img {
    height: 180px;
    margin-right: 8rem;
  }
}



.sobre-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  text-align: left;
  flex-wrap: nowrap; /* impede quebra */
}

.sobre-img {
  flex: 1;
  text-align: left;
}

.sobre-img img {
  max-width: 280px;
  height: auto;
}

.sobre-texto {
  flex: 2;
}

.sobre-texto h2 {
  font-size: 2.5rem;
}

.sobre-texto p {
  font-size: 1.1rem;
}


/* Quando for 766px ou menos, imagem vai para baixo */
@media (max-width: 766px) {
  .sobre-content {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
  }

  .sobre-img {
    order: 1;
    text-align: center;
  }

  .sobre-texto {
    order: 0;
  }

  .sobre-texto h2 {
    margin-top: 20px;
    font-size: 1.7rem;
  }

  .sobre-texto p {
    font-size: 0.99rem;
  }
}


/* Nova Sessão - Soluções */
.solucoes-section {
  background-color: #4e3629;
  color: white;
  padding: 6rem 1rem;
  border-radius: 24px;
  margin: 2rem 1rem;
}

.solucoes-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.solucoes-texto {
  flex: 1;
  min-width: 280px;
}

.solucoes-texto h2 {
  font-size: 2.2rem;
  color: #fff;
  margin-bottom: 1rem;
}

.solucoes-texto p {
  font-size: 1rem;
  line-height: 1.6;
  color: #ddd;
  margin-bottom: 1rem;
}

.solucoes-img {
  flex: 1;
  min-width: 280px;
  text-align: right;
}

.solucoes-img img {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
}

@media (max-width: 768px) {
  .solucoes-content {
    flex-direction: column;
    text-align: center;
  }

  .solucoes-img {
    text-align: center;
  }

  .solucoes-texto h2 {
    font-size: 1.8rem;
  }

  .solucoes-texto p {
    font-size: 0.95rem;
  }
}

.custom-build-section {
  padding: 5.5rem 1rem;
  margin: 2rem 1rem;
  border-radius: 24px;
}

.custom-build-apps {
  background: #f4ecd9;
  color: #4e3629;
}

.custom-build-systems {
  background: #4e3629;
  color: #fff;
}

.custom-build-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 3rem;
}

.custom-build-reverse .custom-build-copy {
  order: 2;
}

.custom-build-reverse .custom-build-image {
  order: 1;
}

.custom-build-app-layout .custom-build-copy {
  order: 2;
}

.custom-build-app-layout .custom-build-image {
  order: 1;
}

.custom-build-copy {
  min-width: 0;
}

.custom-build-eyebrow {
  display: inline-block;
  margin-bottom: 0.75rem;
  padding: 0.45rem 0.8rem;
  border: 1px solid rgba(78, 54, 41, 0.22);
  border-radius: 999px;
  color: #3e563e;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.custom-build-systems .custom-build-eyebrow {
  border-color: rgba(244, 236, 217, 0.28);
  color: #f4ecd9;
  background: rgba(255, 255, 255, 0.06);
}

.custom-build-copy h2 {
  margin-bottom: 1rem;
  color: inherit;
  font-size: 2.35rem;
  line-height: 1.18;
}

.custom-build-copy p {
  margin-bottom: 1rem;
  color: #5f4a3c;
  font-size: 1.05rem;
  line-height: 1.7;
}

.custom-build-systems .custom-build-copy p {
  color: #e9dfc9;
}

.custom-build-list {
  display: grid;
  gap: 0.75rem;
  margin: 1.25rem 0 1.7rem;
  padding: 0;
  list-style: none;
}

.custom-build-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(78, 54, 41, 0.16);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.46);
  color: #4e3629;
  font-weight: 600;
}

.custom-build-systems .custom-build-list li {
  border-color: rgba(244, 236, 217, 0.16);
  background: rgba(255, 255, 255, 0.06);
  color: #f4ecd9;
}

.custom-build-list i {
  width: 22px;
  color: #3e563e;
  text-align: center;
}

.custom-build-systems .custom-build-list i {
  color: #f4ecd9;
}

.custom-build-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.75rem 1.6rem;
  border-radius: 999px;
  background: #3e563e;
  color: #fff;
  font-weight: 800;
  text-decoration: none;
  transition: transform 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease;
}

.custom-build-btn:hover {
  background: #4e3629;
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(78, 54, 41, 0.18);
}

.custom-build-systems .custom-build-btn {
  background: #f4ecd9;
  color: #4e3629;
}

.custom-build-systems .custom-build-btn:hover {
  background: #fff;
}

.custom-build-image {
  position: relative;
}

.custom-build-image img {
  width: 100%;
  max-height: 470px;
  object-fit: contain;
  border-radius: 18px;
  filter: drop-shadow(0 18px 26px rgba(0, 0, 0, 0.18));
}

.custom-build-app-layout .custom-build-image img {
  width: 118%;
  max-width: none;
  max-height: 560px;
}

.custom-build-systems .custom-build-content {
  grid-template-columns: 0.95fr 1.05fr;
}

.custom-build-systems .custom-build-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.custom-build-systems .custom-build-image img {
  width: 145%;
  max-width: none;
  max-height: 640px;
  transform: translateX(6%);
}

@media (max-width: 768px) {
  .custom-build-section {
    padding: 4rem 1rem;
  }

  .custom-build-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .custom-build-reverse .custom-build-copy,
  .custom-build-reverse .custom-build-image,
  .custom-build-app-layout .custom-build-copy,
  .custom-build-app-layout .custom-build-image {
    order: initial;
  }

  .custom-build-copy h2 {
    font-size: 1.8rem;
  }

  .custom-build-copy p {
    font-size: 0.98rem;
  }

  .custom-build-list li {
    align-items: flex-start;
    text-align: left;
  }

  .custom-build-btn {
    width: 100%;
  }

  .custom-build-image img {
    max-height: 330px;
  }

  .custom-build-app-layout .custom-build-image img {
    width: 100%;
    max-width: 100%;
    max-height: 390px;
  }

  .custom-build-systems .custom-build-content {
    grid-template-columns: 1fr;
  }

  .custom-build-systems .custom-build-image img {
    width: 100%;
    max-width: 100%;
    max-height: 430px;
    transform: none;
  }
}

/* Depoimentos */
.depoimentos-titulo-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.depoimentos-titulo {
  text-align: center;
  font-size: 2.4rem;
  color: #4e3629;
}

/* Imagens laterais */
.deco-img {
  height: 40px;
  width: auto;
}

@media (max-width: 768px) {
  .deco-img {
    display: none;
  }
}

/* Conteúdo dos depoimentos */
.depoimento-box {
  display: flex;
  gap: 2rem;
  align-items: center;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.depoimento-img {
  width: 400px;
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
  cursor: pointer;
}

.depoimento-img:hover {
  transform: scale(1.03);
}

.depoimento-texto {
  flex: 1;
  min-width: 260px;
}

.depoimento-texto h3 {
  color: #4e3629;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.depoimento-texto p {
  color: #333;
  font-size: 1rem;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.btn-depoimento {
  display: inline-block;
  background-color: #4e3629;
  color: #fff;
  padding: 0.6rem 1.5rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s;
}

.btn-depoimento:hover {
  background-color: #3e563e;
}

.depoimentos-titulo-wrapper {
  margin-top: 90px;
  display: flex;
  align-items: center;
  justify-content: center; /* Centraliza horizontalmente */
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.depoimentos-titulo {
  font-size: 2.4rem;
  color: #4e3629;
  text-align: center;
}

.deco-direita {
  height: 320px;
}


/* Responsivo */
@media (max-width: 768px) {
  .depoimento-box {
    flex-direction: column;
    text-align: center;
  }

  .depoimento-texto h3 {
    font-size: 1.3rem;
  }

  .depoimento-texto p {
    font-size: 0.95rem;
  }

  .depoimento-img {
    margin: 0 auto;
  }
 .depoimentos-titulo-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
  }

  .deco-direita {
    display: block;
    height: 180px;
    max-width: 100%;
  }
}

/* Nova Sessão - Diferenciais */
.diferenciais-section {
  background-color: #4e3629;
  padding: 5rem 0;
  text-align: center;
  border-radius: 24px;
  margin: 2rem 1rem;
}

.diferenciais-section .container {
  padding: 0 1rem;
}

.diferenciais-titulo {
  font-size: 2.4rem;
  color: #fff;
  margin-bottom: 3rem;
}

.diferenciais-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  align-items: start;
  justify-items: center;
}

.diferencial-item {
  background-color: transparent;
  padding: 0;
  box-shadow: none;
  text-align: center;
  max-width: 280px;
  width: 100%;
  border-radius: 16px;
}

.diferencial-item img {
  width: 115px;
  height: auto;
  margin: 0 auto 1rem auto;
  border-radius: 12px;
}

/* Imagem individual - Performance */
.diferencial-item:nth-child(3) img {
  width: 75px;
}

/* Imagem individual - Suporte */
.diferencial-item:nth-child(4) img {
  width: 135px;
  margin-top: 26px;
}

.diferencial-item h3 {
  font-size: 1.3rem;
  color: #fff;
  margin-bottom: 0.5rem;
}

.diferencial-item p {
  font-size: 1rem;
  color: #f8f8f8;
}

/* Responsivo */
@media (max-width: 768px) {
  .diferenciais-titulo {
    font-size: 2rem;
  }

  .diferencial-item img {
    width: 100px;
  }

  .diferencial-item:nth-child(3) img {
    width: 85px;
  }

  .diferencial-item:nth-child(4) img {
    width: 120px;
  }

  .diferencial-item h3 {
    font-size: 1.2rem;
  }

  .diferencial-item p {
    font-size: 0.95rem;
  }
}

/* Sessão Processo de Criação */
.processo-section {
  padding: 6rem 1rem;
  text-align: center;
  background-color: transparent;
  margin-top: 4rem;
}

.processo-titulo {
  font-size: 2.4rem;
  color: #4e3629;
  margin-bottom: 3rem;
}

.processo-etapas {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.etapa {
  flex: 1;
  min-width: 250px;
  max-width: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.etapa img {
  width: 250px;
  height: auto;
  margin-bottom: 1rem;
}

.etapa:nth-child(4) img {
  width: 181px;
  margin-top: -11px;
}

.etapa h3 {
  font-size: 1.4rem;
  color: #4e3629;
  margin-bottom: 1rem;
}

.etapa p {
  font-size: 1rem;
  color: #333;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .processo-titulo {
    font-size: 2rem;
  }

  .etapa h3 {
    font-size: 1.3rem;
  }

  .etapa p {
    font-size: 0.95rem;
  }

  .etapa img {
    width: 220px;
  }
}

/* Sessão Final - CTA WhatsApp */
.cta-final-section {
  text-align: center;
  padding: 4rem 1rem;
  background-color: #f4ecd9;
}

.cta-final-titulo {
  font-size: 3.0rem;
  color: #4e3629;
  margin-bottom: 2rem;
}

.cta-final-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}

.cta-final-img {
  width: 300px; /* Ajuste aqui o tamanho da imagem */
  max-width: 100%;
  transition: transform 0.3s ease;
  cursor: pointer;
  margin-bottom: -151px;
}

.cta-final-img:hover {
  transform: scale(1.05);
}

/* Responsivo */
@media (max-width: 768px) {
  .cta-final-img {
    width: 180px;
  }

  .cta-final-titulo {
    font-size: 2rem;
  }
}

/* ===== Planos/Valores ===== */
.planos-section{
  background-color:#4e3629;
  color:#fff;
  padding:5rem 1rem;
  border-radius:24px;
  margin:2rem 1rem;
}
.planos-titulo{ font-size:2.2rem; text-align:center; margin-bottom: .5rem; }
.planos-sub{ text-align:center; color:#f8f8f8; margin-bottom:2rem; }

.pricing-grid{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap:1.5rem;
  align-items:stretch;
}
.pricing-card{
  background:#f4ecd9;
  color:#333;
  border-radius:16px;
  padding:1.5rem;
  position:relative;
  box-shadow:0 8px 22px rgba(0,0,0,.08);
  display:flex; flex-direction:column; justify-content:space-between;
}
.pricing-card .pricing-head h3{ color:#4e3629; font-size:1.4rem; }
.pricing-card .desc{ color:#555; margin:.25rem 0 .75rem; }
.pricing-card .price{ font-size:2rem; font-weight:800; color:#3e563e; margin-bottom:1rem; }
.pricing-card .features{ list-style:none; display:grid; gap:.5rem; margin:0 0 1.25rem 0; padding:0; }
.pricing-card .features li::before{
  content:"✓"; margin-right:.5rem; color:#3e563e; font-weight:bold;
}
.pricing-card .pricing-cta{ text-align:center; }

.pricing-card.highlight{ outline:3px solid #3e563e; }
.pricing-card .badge{
  position:absolute; top:-12px; right:12px;
  background:#3e563e; color:#fff; font-weight:700;
  padding:.35rem .6rem; border-radius:999px; font-size:.8rem;
}

/* ===== Portfólio Nichos ===== */
.portfolio-section{
  padding:5rem 1rem;
  margin:2rem 1rem;
  background:transparent;
}
.portfolio-titulo{ font-size:2.2rem; color:#4e3629; text-align:center; }
.portfolio-sub{ text-align:center; color:#333; margin:.5rem 0 2rem; }
.portfolio-grid{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap:1rem;
}
.portfolio-card{
  position:relative;
  border-radius:14px;
  overflow:hidden;
  background:#fff;
  box-shadow:0 8px 22px rgba(0,0,0,.06);
  text-decoration:none; color:inherit;
}
.portfolio-card img{ width:100%; height:auto; display:block; }
.portfolio-card .tag{
  position:absolute; top:10px; left:10px;
  background:#4e3629; color:#fff; padding:.25rem .6rem; border-radius:999px; font-size:.85rem;
}
.portfolio-card .ver-demo{
  position:absolute; bottom:10px; right:10px;
  background:#3e563e; color:#fff; padding:.35rem .6rem; border-radius:999px; font-size:.85rem;
  transition:transform .2s ease;
}
.portfolio-card:hover .ver-demo{ transform:scale(1.05); }

/* ===== FAQ ===== */
.faq-section{
  padding:5rem 1rem;
  margin:2rem 1rem;
  background:#f4ecd9;
  border-radius:24px;
  box-shadow:0 8px 22px rgba(0,0,0,.06);
}
.faq-titulo{ font-size:2.2rem; color:#4e3629; text-align:center; margin-bottom:1.5rem; }
.faq-list{ max-width:900px; margin:0 auto; display:grid; gap:.75rem; }
.faq-item{
  background:#4e3629;
  border-radius:12px;
  padding:1rem 1.25rem;
}
.faq-item summary{
  cursor:pointer; font-weight:700; color:#f4ecd9; list-style:none;
}
.faq-item[open] summary{ color:#f4ecd9; }
.faq-item p{ margin-top:.5rem; color:#f4ecd9; }

/* =============================
   PAGAMENTO — DO ZERO (1 CARD)
   layout: card principal > duas colunas
           [Pix | Cartão]  →  ícones centralizados  →  badges/links
   ============================= */

/* Seção base */
.pagamento-section.pagamento-uno{
  background: #4e3629;
  color: #fff;
  padding: 5rem 1.5rem;
  border-radius: 24px;
  margin: 2rem 1rem;
}

/* Cabeçalho da seção */
.pagamento-section.pagamento-uno .pg-head{
  text-align: center;
  margin-bottom: 1.8rem;
}
.pagamento-section.pagamento-uno .pagamento-titulo{
  font-size: 2.6rem;      /* título maior */
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: .2px;
}
.pagamento-section.pagamento-uno .pg-sub{
  font-size: 1.1rem;      /* menor que o título */
  color: #e9dfc9;
  margin-top: .5rem;
  opacity: .95;
}

/* ---------- CARD PRINCIPAL ---------- */
.pg-card{
  background: #fffdf6;                /* claro e profissional */
  color: #333;
  border: 1px solid rgba(0,0,0,.12);
  border-radius: 18px;
  box-shadow: 0 14px 36px rgba(0,0,0,.18);
  padding: 2rem;
}

/* Opções internas de pagamento */
.pg-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

/* Colunas sem “card” nas opções */
.pg-col{ padding: 0; background: transparent; }

/* Divisor sutil entre colunas (apenas desktop) */
.pg-col + .pg-col{
  border-left: 1px solid #e7dcc7;
  padding-left: 2rem;
}

/* Títulos das colunas — maiores que <p> */
.pg-col-title{
  display: flex; align-items: center; gap: .6rem;
  font-size: 1.6rem;          /* maior que p */
  line-height: 1.2;
  font-weight: 800;
  color: #4e3629;
  margin: 0 0 1rem;
}
.pg-col-title i{ font-size: 1.15rem; color: #3e563e; }

/* Lista de pontos */
.pg-list{
  list-style: none;
  margin: 0; padding: 0;
  display: grid; gap: .7rem;
}
.pg-list li{
  position: relative;
  padding-left: 1.1rem;
  font-size: 1.15rem;       /* menor que h3, maior que p */
  line-height: 1.7;
  color: #333;
}
.pg-list li::before{
  content: "";
  position: absolute; left: 0; top: .85rem;
  width: 8px; height: 8px; border-radius: 50%;
  background: #3e563e;
}

/* ---------- ÍCONES / BANDEIRAS (CENTRO) ---------- */
.pg-brands{
  display: flex;
  justify-content: center;       /* centraliza */
  align-items: center;
  gap: 1rem;
  margin: 2rem 0 0;              /* abaixo das colunas */
  flex-wrap: wrap;
}
.pg-brands img{
  height: 34px;                  /* maior e nítido */
  width: auto;
  filter: saturate(.9) contrast(1.05);
  opacity: .95;
}

/* ---------- RODAPÉ DO CARD (BADGES E AÇÕES) ---------- */
.pg-card-foot{
  margin-top: 1.25rem;
  display: grid;
  gap: .9rem;
  justify-items: center;         /* centraliza todo o bloco */
}

/* Badges (linha) */
.pg-badges{
  display: flex;
  gap: .6rem;
  flex-wrap: wrap;
  justify-content: center;
}
.pg-badge{
  background: #f4ecd9;
  color: #333;
  border: 1px solid rgba(0,0,0,.08);
  padding: .48rem .9rem;
  border-radius: 999px;
  font-size: 1rem;
  box-shadow: 0 6px 14px rgba(0,0,0,.06);
}
.pg-badge i{ margin-right: .35rem; color: #3e563e; }

/* Ações (link + nota) */
.pg-actions{
  display: grid;
  gap: .35rem;
  justify-items: center;
}
.pg-link{
  color: #4e3629;
  font-weight: 800;
  text-decoration: none;
  font-size: 1.15rem;
  border-bottom: 2px solid #3e563e;
  padding-bottom: .08rem;
}
.pg-link:hover{ opacity: .85; }
.pg-note{
  color: #555;
  font-size: 1rem;
}

/* ---------- Responsivo ---------- */
@media (max-width: 1024px){
  .pagamento-section.pagamento-uno .pagamento-titulo{ font-size: 2.3rem; }
}
@media (max-width: 900px){
  .pg-grid{ grid-template-columns: 1fr; gap: 1.6rem; }
  .pg-col + .pg-col{ border-left: none; padding-left: 0; }
  .pg-brands{ margin-top: 1.5rem; }
}

/* ===== Garantia & Prazo ===== */
.garantia-section{
  padding:4rem 1rem; margin:2rem 1rem; text-align:center;
}
.garantia-titulo{ font-size:2rem; color:#4e3629; }
.garantia-sub{ margin:.5rem 0 1rem; color:#333; }
.garantia-box{
  background:#f4ecd9; border-radius:14px; padding:1.25rem;
  max-width:900px; margin:0 auto; box-shadow:0 8px 22px rgba(0,0,0,.06);
}

/* ===== CTA flutuante WhatsApp ===== */
.floating-whats{
  position:fixed; right:18px; bottom:18px; z-index:1000;
  background:#3e563e; color:#fff; width:56px; height:56px; border-radius:50%;
  display:flex; align-items:center; justify-content:center; box-shadow:0 10px 22px rgba(0,0,0,.18);
  text-decoration:none; transition:transform .2s ease;
}
.floating-whats i{ font-size:28px; }
.floating-whats:hover{ transform:scale(1.06); }

/* Responsivo fino */
@media (max-width:768px){
  .planos-titulo, .portfolio-titulo, .faq-titulo, .pagamento-titulo, .garantia-titulo{
    font-size:1.8rem;
  }
}

/* Aviso abaixo do processo */
.processo-aviso{
  max-width: 900px;
  margin: 1.25rem auto 0;   /* centraliza e dá respiro */
  text-align: center;
  color: #4e3629;           /* sua paleta */
  font-size: 1.5rem;
  line-height: 1.6;
  font-weight: 600;         /* destaca levemente */
}
@media (max-width: 768px){
  .processo-aviso{ font-size: 0.98rem; }
}

/* ===============================
   SEÇÃO DESIGN + ESTRATÉGIA
   (segue o padrão do seu CSS)
   =============================== */

.design-section{
  background-color: #4e3629; /* marrom do seu padrão */
  color: #fff;
  padding: 6rem 1rem;
  border-radius: 24px;
  margin: 2rem 1rem;
}

.design-section .design-inner{
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: center;
  gap: 2rem;
}

.design-section .design-copy p{
  margin: 12px 0 18px;
  color: #e9dfc9; /* tom claro já usado nos cards */
  line-height: 1.6;
}

.design-section .design-eyebrow{
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #f4ecd9;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.18);
  padding: 6px 10px;
  border-radius: 999px;
  margin-bottom: 10px;
}

.design-section h2{
  font-size: 2.2rem;
  line-height: 1.2;
  margin: 6px 0 10px;
  color: #fff;
}

.design-section .design-points{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 18px;
  margin: 16px 0 22px;
  padding: 0;
  list-style: none;
}

.design-section .design-points li{
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.15);
  padding: 10px 12px;
  border-radius: 12px;
  color: #f4ecd9;
}

.design-section .design-points i{
  font-size: 1rem;
  width: 20px;
  text-align: center;
  opacity: .95;
}

/* CTAs no padrão dos botões arredondados */
.design-section .design-ctas{
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 10px;
}

.design-section .design-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 1.5rem;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  transition: background-color .3s, transform .15s ease, box-shadow .2s ease;
  border: 1px solid transparent;
  color: #fff;
}

/* Primário segue seu verde */
.design-section .design-btn.primary{
  background: #3e563e;
  border-color: #3e563e;
}
.design-section .design-btn.primary:hover{
  background: #2f4230;
  transform: translateY(-2px);
}

/* Ghost harmonizado com a paleta */
.design-section .design-btn.ghost{
  background: transparent;
  border-color: #f4ecd9;
  color: #f4ecd9;
}
.design-section .design-btn.ghost:hover{
  background: rgba(255,255,255,.08);
}

/* Visual/vitrine à direita */
.design-section .design-visual{
  position: relative;
}

.design-section .design-visual img{
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
  box-shadow: 0 14px 36px rgba(0,0,0,.25);
  background: #4e3629;
}

/* Selo discreto no seu estilo */
.design-section .design-stamp{
  position: absolute;
  bottom: -12px;
  right: -12px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .9rem;
  color: #4e3629;
  background: #f4ecd9;
  padding: 8px 12px;
  border-radius: 999px;
  box-shadow: 0 8px 22px rgba(0,0,0,.25);
  border: 2px solid #4e3629;
  transform: rotate(-2deg);
}
.design-section .design-stamp i{ color: #4e3629; }

/* ===============================
   Responsivo (segue seus breakpoints)
   =============================== */
@media (max-width: 768px){
  .design-section .design-inner{
    grid-template-columns: 1fr;
  }
  .design-section .design-visual{
    order: -1; /* imagem sobe no mobile, como você usa em outras seções */
  }
  .design-section .design-points{
    grid-template-columns: 1fr;
  }
  .design-section h2{
    font-size: 1.8rem;
  }
  .design-section .design-btn{
    width: 100%;
    justify-content: center;
  }
  .design-section .design-stamp{
    right: -6px;
    bottom: -10px;
    transform: rotate(-1deg) scale(.96);
  }
}


/* Botão centralizado na seção de portfólio */
.portfolio-actions{
  display:flex;
  justify-content:center;
  margin-top: 1rem;
}
.portfolio-actions .btn{
  padding: 0.6rem 1.6rem; /* segue seu padrão arredondado */
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
}

/* ==================================
   REFINO UI - CARDS E BOTOES
   ================================== */

.btn,
.btn-depoimento,
.design-section .design-btn,
.portfolio-actions .btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.78rem 1.45rem;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: 0.01em;
  box-shadow: 0 12px 24px rgba(78, 54, 41, 0.14);
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    background-color 0.22s ease,
    color 0.22s ease,
    border-color 0.22s ease;
}

.btn:hover,
.btn-depoimento:hover,
.design-section .design-btn:hover,
.portfolio-actions .btn:hover{
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(78, 54, 41, 0.18);
}

.btn{
  background: linear-gradient(135deg, #4e3629 0%, #634538 100%);
  border: 1px solid rgba(78, 54, 41, 0.18);
}

.btn:hover{
  background: linear-gradient(135deg, #3f2d23 0%, #536f4d 100%);
}

.btn-depoimento{
  background: linear-gradient(135deg, #4e3629 0%, #5e4134 100%);
  border: 1px solid rgba(78, 54, 41, 0.18);
  padding-inline: 1.35rem;
}

.btn-depoimento:hover{
  background: linear-gradient(135deg, #3e563e 0%, #4a6a4a 100%);
}

.design-section .design-btn.primary{
  background: linear-gradient(135deg, #3e563e 0%, #547252 100%);
  border-color: rgba(62, 86, 62, 0.25);
}

.design-section .design-btn.primary:hover{
  background: linear-gradient(135deg, #2f4230 0%, #466344 100%);
}

.design-section .design-btn.ghost{
  background: rgba(255,255,255,.04);
  border-color: rgba(244, 236, 217, 0.42);
}

.design-section .design-btn.ghost:hover{
  background: rgba(255,255,255,.10);
}

.depoimento-box{
  gap: 2.25rem;
  padding: 1.4rem;
  border-radius: 24px;
  background: rgba(255,255,255,.52);
  border: 1px solid rgba(78,54,41,.08);
  box-shadow: 0 16px 36px rgba(78,54,41,.06);
}

.depoimento-img{
  border-radius: 18px;
  box-shadow: 0 14px 30px rgba(0,0,0,0.08);
}

.depoimento-texto{
  display: flex;
  flex-direction: column;
  gap: .35rem;
}

.depoimento-texto h3{
  margin-bottom: .25rem;
}

.depoimento-texto p{
  color: #4b433f;
}

.portfolio-grid{
  gap: 1.3rem;
}

.portfolio-card{
  border-radius: 22px;
  border: 1px solid rgba(78,54,41,.08);
  background: linear-gradient(180deg, #fffdfa 0%, #f8f1e5 100%);
  box-shadow: 0 16px 34px rgba(78,54,41,.08);
  transition:
    transform .24s ease,
    box-shadow .24s ease,
    border-color .24s ease;
}

.portfolio-card:hover{
  transform: translateY(-6px);
  box-shadow: 0 24px 42px rgba(78,54,41,.12);
  border-color: rgba(62,86,62,.22);
}

.portfolio-card img{
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.portfolio-card .tag{
  top: 14px;
  left: 14px;
  padding: .42rem .78rem;
  font-size: .82rem;
  font-weight: 700;
  background: rgba(78,54,41,.92);
  backdrop-filter: blur(8px);
  box-shadow: 0 10px 18px rgba(0,0,0,.12);
}

.portfolio-card .ver-demo{
  right: 14px;
  bottom: 14px;
  padding: .55rem .85rem;
  font-weight: 700;
  background: rgba(62,86,62,.96);
  box-shadow: 0 10px 18px rgba(0,0,0,.14);
}

.portfolio-card:hover .ver-demo{
  transform: translateY(-2px) scale(1.02);
}

.pricing-grid{
  gap: 1.6rem;
}

.pricing-card{
  border-radius: 24px;
  padding: 1.8rem;
  border: 1px solid rgba(78,54,41,.10);
  background: linear-gradient(180deg, #fffaf0 0%, #f4ecd9 100%);
  box-shadow: 0 18px 36px rgba(0,0,0,.10);
  transition:
    transform .24s ease,
    box-shadow .24s ease,
    border-color .24s ease;
}

.pricing-card:hover{
  transform: translateY(-6px);
  box-shadow: 0 24px 44px rgba(0,0,0,.14);
  border-color: rgba(62,86,62,.22);
}

.pricing-card .pricing-head{
  margin-bottom: .6rem;
}

.pricing-card .pricing-head h3{
  font-size: 1.5rem;
  margin-bottom: .2rem;
}

.pricing-card .desc{
  line-height: 1.5;
  min-height: 44px;
}

.pricing-card .price{
  font-size: 2.2rem;
  line-height: 1;
}

.pricing-card .features{
  gap: .72rem;
}

.pricing-card .features li{
  color: #4b433f;
  line-height: 1.5;
}

.pricing-card .pricing-cta{
  width: 100%;
}

.pricing-card.highlight{
  outline: none;
  border: 2px solid #3e563e;
  box-shadow: 0 26px 48px rgba(62,86,62,.18);
}

.pricing-card .badge{
  top: 14px;
  right: 14px;
  padding: .42rem .78rem;
  box-shadow: 0 10px 18px rgba(0,0,0,.12);
}

.diferenciais-grid{
  gap: 1.6rem;
}

.diferencial-item{
  padding: 1.4rem 1.15rem 1.35rem;
  border-radius: 22px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 16px 34px rgba(0,0,0,.10);
  backdrop-filter: blur(4px);
  transition:
    transform .24s ease,
    box-shadow .24s ease,
    border-color .24s ease;
}

.diferencial-item:hover{
  transform: translateY(-6px);
  box-shadow: 0 22px 38px rgba(0,0,0,.14);
  border-color: rgba(255,255,255,.2);
}

.diferencial-item img{
  margin-bottom: 1.15rem;
}

.diferencial-item p{
  color: #f0ebe3;
  line-height: 1.55;
}

.processo-etapas{
  gap: 1.6rem;
}

.etapa{
  padding: 1.4rem 1.1rem 1.35rem;
  border-radius: 22px;
  background: rgba(255,255,255,.6);
  border: 1px solid rgba(78,54,41,.08);
  box-shadow: 0 16px 34px rgba(78,54,41,.07);
  transition:
    transform .24s ease,
    box-shadow .24s ease,
    border-color .24s ease;
}

.etapa:hover{
  transform: translateY(-6px);
  box-shadow: 0 24px 42px rgba(78,54,41,.10);
  border-color: rgba(62,86,62,.18);
}

.etapa h3{
  margin-bottom: .55rem;
}

.etapa p{
  color: #4b433f;
}

.faq-list{
  gap: 1rem;
}

.faq-item{
  border: 1px solid rgba(78,54,41,.10);
  border-radius: 18px;
  padding: 1.1rem 1.3rem;
  box-shadow: 0 12px 28px rgba(78,54,41,.08);
  transition:
    transform .22s ease,
    box-shadow .22s ease,
    border-color .22s ease,
    background-color .22s ease;
}

.faq-item:hover{
  transform: translateY(-3px);
  box-shadow: 0 18px 34px rgba(78,54,41,.10);
  border-color: rgba(62,86,62,.18);
}

.faq-item summary{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 1.02rem;
}

.faq-item summary::after{
  content: "+";
  font-size: 1.2rem;
  font-weight: 800;
  color: #f4ecd9;
  flex-shrink: 0;
}

.faq-item[open] summary::after{
  content: "-";
}

.faq-item p{
  color: #ece3d4;
  line-height: 1.6;
}

.pg-card{
  border-radius: 24px;
  border: 1px solid rgba(78,54,41,.10);
  box-shadow: 0 18px 40px rgba(0,0,0,.16);
  padding: 2.1rem;
}

.pg-col-title{
  font-size: 1.45rem;
}

.pg-list li{
  font-size: 1.03rem;
  color: #4b433f;
}

.pg-badge{
  font-weight: 700;
}

.pg-link{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 0 .12rem;
}

@media (max-width: 768px){
  .depoimento-box,
  .pricing-card,
  .diferencial-item,
  .etapa,
  .faq-item,
  .pg-card{
    border-radius: 18px;
  }

  .portfolio-card{
    border-radius: 18px;
  }

  .portfolio-card .tag,
  .portfolio-card .ver-demo,
  .pricing-card .badge{
    font-size: .78rem;
  }

  .pricing-card .desc{
    min-height: auto;
  }

  .btn,
  .btn-depoimento,
  .design-section .design-btn,
  .portfolio-actions .btn{
    width: 100%;
  }
}


  
