.elementor-26 .elementor-element.elementor-element-b89ae27{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-26 .elementor-element.elementor-element-614529c{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-26 .elementor-element.elementor-element-614529c:not(.elementor-motion-effects-element-type-background), .elementor-26 .elementor-element.elementor-element-614529c > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#FCFBF8;}.elementor-26 .elementor-element.elementor-element-002145f{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-26 .elementor-element.elementor-element-002145f.e-con{--flex-grow:0;--flex-shrink:0;}.elementor-26 .elementor-element.elementor-element-ed0a963{margin:0px 0px calc(var(--kit-widget-spacing, 0px) + 0px) 0px;padding:0px 0px 0px 0px;}.elementor-26 .elementor-element.elementor-element-46038db{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-26 .elementor-element.elementor-element-bf0773e{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-26 .elementor-element.elementor-element-b56b187{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-26 .elementor-element.elementor-element-36e2e11{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-26 .elementor-element.elementor-element-ad7114a{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-26 .elementor-element.elementor-element-98c9ba1{margin:0px 0px calc(var(--kit-widget-spacing, 0px) + 0px) 0px;padding:0px 0px 0px 0px;}@media(min-width:768px){.elementor-26 .elementor-element.elementor-element-002145f{--width:100%;}}/* Start custom CSS for html, class: .elementor-element-639eb72 */@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
  --color-dark: #525645;
  --color-light: #FAFAF9;
  --color-gold: #CCAC85;
  --color-gold-light: #E3D3BC;
  --color-hover: #6C705F;
  --font-main: 'Outfit', sans-serif;
}

html {
  scroll-behavior: smooth;
}

/* =========================================
   1. ESTILOS DO HEADER (MENU)
========================================= */
#site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 50; /* Garante que o menu fique sempre acima da imagem */
  font-family: var(--font-main);
  transition: all 0.3s ease;
}

.header-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-transparent {
  background-color: transparent;
  padding: 1.5rem 0;
  color: #ffffff;
}

.header-scrolled {
  background-color: rgba(250, 250, 249, 0.95);
  backdrop-filter: blur(4px);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  padding: 1rem 0;
  color: var(--color-dark);
}

.logo {
  font-size: 1.5rem;
  font-weight: 60;
  letter-spacing: -0.05em;
}
.logo span {
  font-weight: 300;
}

.desktop-nav {
  display: none;
  align-items: center;
  gap: 2rem;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.025em;
}

@media (min-width: 768px) {
  .desktop-nav { display: flex; }
}

.desktop-nav a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s;
}

.header-transparent .desktop-nav a:hover { color: var(--color-gold-light); }
.header-scrolled .desktop-nav a:hover { color: var(--color-gold); }

.btn-cta {
  padding: 0.625rem 1.5rem;
  border-radius: 2px;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-weight: 500;
  transition: all 0.3s;
}

.header-transparent .btn-cta {
  background-color: #ffffff;
  color: var(--color-dark);
}
.header-transparent .btn-cta:hover { background-color: var(--color-gold-light); }

.header-scrolled .btn-cta {
  background-color: var(--color-dark);
  color: #ffffff;
}
.header-scrolled .btn-cta:hover { background-color: var(--color-hover); }

/* Mobile Menu */
.mobile-toggle {
  display: block;
  background: none;
  border: none;
  color: inherit;
  cursor: pointer;
  padding: 0.5rem;
}

@media (min-width: 768px) { .mobile-toggle { display: none; } }

.mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: var(--color-light);
  color: var(--color-dark);
  flex-direction: column;
  padding: 1.5rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  border-top: 1px solid rgba(227, 211, 188, 0.3);
}

.mobile-menu.active { display: flex; }

.mobile-link {
  color: var(--color-dark);
  text-decoration: none;
  font-size: 1.125rem;
  padding-bottom: 0.5rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid rgba(227, 211, 188, 0.3);
  transition: color 0.2s;
}
.mobile-link:hover { color: var(--color-gold); }

.btn-cta-mobile {
  background-color: var(--color-dark);
  color: #ffffff;
  padding: 0.75rem;
  margin-top: 1rem;
  border-radius: 2px;
  border: none;
  width: 100%;
  font-family: inherit;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s;
}
.btn-cta-mobile:hover { background-color: var(--color-hover); }

/* =========================================
   2. ESTILOS DA HERO (PRIMEIRA DOBRA)
========================================= */
.hero-section {
  position: relative;
  height: 100vh;
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  font-family: var(--font-main);
  z-index: 1; /* Fica abaixo do menu */
}

.hero-background {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  animation: pulse-bg 20s ease-in-out infinite alternate;
}

@keyframes pulse-bg {
  0% { transform: scale(1.05); }
  100% { transform: scale(1.1); }
}

.hero-overlay-multiply {
  position: absolute;
  inset: 0;
  background-color: rgba(82, 86, 69, 0.5);
  mix-blend-mode: multiply;
}

.hero-overlay-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 100), transparent 20%, transparent);
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 0 1.5rem;
  max-width: 56rem; 
  margin: 5rem auto 0; 
}

.hero-title {
  font-size: 2.25rem;
  font-weight: 300;
  color: #ffffff;
  letter-spacing: -0.025em;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  text-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 0 2px 4px rgba(0, 0, 0, 0.06);
}

@media (min-width: 768px) { .hero-title { font-size: 3.75rem; } }
@media (min-width: 1024px) { .hero-title { font-size: 4.5rem; } }

.hero-title span {
  font-weight: 600;
  color: var(--color-gold-light);
}

.hero-subtitle {
  font-size: 1.125rem;
  color: var(--color-gold-light);
  font-weight: 300;
  letter-spacing: 0.025em;
  max-width: 42rem;
  margin: 0 auto 2.5rem;
  opacity: 0.9;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

@media (min-width: 768px) { .hero-subtitle { font-size: 1.25rem; } }

.hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background-color: var(--color-gold);
  color: #ffffff;
  padding: 1rem 2rem;
  font-size: 1.125rem;
  border-radius: 2px;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.3s ease;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.hero-btn:hover { background-color: #9A7E5C; }

.hero-btn-icon { transition: transform 0.3s ease; }
.hero-btn:hover .hero-btn-icon { transform: translateX(4px); }/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-a5d29f6 *//* Container principal e Margem Negativa (Efeito Flutuante) */
.hero-social-proof {
  font-family: 'Outfit', 'Segoe UI', sans-serif; /* Fonte base */
  position: relative;
  z-index: 20;
  margin-top: -64px; /* Esta é a margem negativa que faz a caixa "subir" sobre a imagem */
  padding-left: 24px;
  padding-right: 24px;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}

/* A Caixa Flutuante com Glassmorphism */
.floating-container {
  background-color: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px); /* Suporte para Safari */
  border-radius: 32px;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  padding: 32px;
  display: flex;
  flex-direction: column; /* Alinhamento vertical no celular */
  align-items: center;
  justify-content: space-around;
  gap: 24px;
  opacity: 0.9;
  border: 1px solid rgba(227, 211, 188, 0.2);
}

/* Estrutura de cada item */
.proof-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Estilos dos Textos */
.proof-text-small {
  color: #6C705F;
  font-weight: 500;
  letter-spacing: 0.05em;
  font-size: 14px;
  text-transform: uppercase;
}

.proof-text-bold {
  color: #6C705F;
  font-weight: 700;
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: -0.05em;
}

.proof-text-serif {
  color: #6C705F;
  font-family: Georgia, serif; /* Usando uma fonte serifada padrão */
  font-style: italic;
  font-size: 20px;
}

/* Responsividade: Tablet e Desktop */
@media (min-width: 768px) {
  .floating-container {
    flex-direction: row; /* Alinhamento horizontal no desktop */
    gap: 0;
  }
  .hero-social-proof {
    padding-left: 48px;
    padding-right: 48px;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-ed0a963 *//* =========================================
   3. ESTILOS DO PORTFÓLIO E MODAL
========================================= */
.portfolio-section {
  padding: 6rem 0;
  background-color: rgba(227, 211, 188, 0.1); /* Fundo bege bem suave */
  font-family: var(--font-main);
}

/* === A MÁGICA ACONTECE AQUI: Container mais largo === */
.portfolio-container {
  max-width: 1800px; /* Aumentado de 1280px para 1800px para caber 3 imagens grandes */
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* --- Cabeçalho da Seção --- */
.portfolio-header {
  text-align: center;
  margin-bottom: 4rem;
}

.portfolio-subtitle {
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--color-gold);
  margin-bottom: 0.75rem;
  text-transform: none;
}

.portfolio-title {
  font-size: 1.6rem;
  font-weight: 300;
  letter-spacing: -0.025em;
  color: var(--color-dark);
  text-transform: none;
}

@media (min-width: 768px) {
  .portfolio-title { font-size: 2.55rem; }
}

.portfolio-title span {
  font-weight: 600;
}

/* --- Grid e Cards (3 Colunas Grandes) --- */
.portfolio-grid {
  display: grid;
  grid-template-columns: 1fr; /* 1 coluna no celular */
  gap: 2rem;
}

@media (min-width: 768px) {
  .portfolio-grid { 
    grid-template-columns: repeat(2, 1fr); /* 2 colunas no tablet */
  }
}

@media (min-width: 1024px) {
  .portfolio-grid { 
    grid-template-columns: repeat(3, 1fr); /* 3 colunas no computador (2 fileiras de 3) */
  }
}

.portfolio-card {
  position: relative;
  cursor: pointer;
  overflow: hidden;
  background-color: #ffffff;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.portfolio-image-wrapper {
  aspect-ratio: 16 / 12;
  overflow: hidden;
}

.portfolio-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.portfolio-card:hover .portfolio-image-wrapper img {
  transform: scale(1.05);
}

/* --- Overlay de Efeito Hover --- */
.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(82, 86, 69, 0.9), rgba(82, 86, 69, 0.2), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
}

.portfolio-card:hover .portfolio-overlay {
  opacity: 1;
}

.portfolio-category {
  color: var(--color-gold);
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
  transform: translateY(1rem);
  transition: transform 0.3s ease;
  text-transform: none;
}

.portfolio-card-title {
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: 500;
  transform: translateY(1rem);
  transition: transform 0.3s ease 0.075s;
  text-transform: none;
}

.portfolio-link {
  margin-top: 1rem;
  color: var(--color-gold-light);
  display: flex;
  align-items: center;
  font-size: 0.875rem;
  opacity: 0;
  transition: opacity 0.3s ease 0.15s;
}

.portfolio-link svg {
  margin-left: 0.5rem;
}

.portfolio-card:hover .portfolio-category,
.portfolio-card:hover .portfolio-card-title {
  transform: translateY(0);
}

.portfolio-card:hover .portfolio-link {
  opacity: 1;
}

/* =========================================
   --- MODAL (COM FONTES REDUZIDAS 30%) ---
========================================= */
.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 100;
  background-color: rgba(82, 86, 69, 0.9);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.modal-backdrop.active {
  opacity: 1;
  visibility: visible;
}

.modal-container {
  position: relative;
  background-color: var(--color-light);
  width: 100%;
  max-width: 1024px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
}

@media (min-width: 768px) {
  .modal-container { flex-direction: row; overflow: hidden; }
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 10;
  background-color: rgba(255, 255, 255, 0.5);
  border: none;
  color: var(--color-dark);
  padding: 0.5rem;
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-close:hover {
  background-color: #ffffff;
}

.modal-image-col {
  height: 16rem;
}

@media (min-width: 768px) {
  .modal-image-col { width: 50%; height: auto; }
}

.modal-image-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal-text-col {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (min-width: 768px) {
  .modal-text-col { width: 50%; padding: 3rem; overflow-y: auto; max-height: 90vh; }
}

/* Textos internos ajustados */
.modal-category {
  color: var(--color-gold);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  font-weight: 600;
  margin-bottom: 0.5rem;
  text-transform: none;
}

.modal-title {
  font-size: 1.3rem;
  font-weight: 300;
  color: var(--color-dark);
  margin-bottom: 1.5rem;
  text-transform: none;
}

.modal-blocks {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.modal-info-block h4 {
  font-size: 0.65rem;
  font-weight: 700;
  color: #9A7E5C;
  margin-bottom: 0.5rem;
  border-bottom: 1px solid rgba(227, 211, 188, 0.5);
  padding-bottom: 0.5rem;
  text-transform: none;
}

.modal-info-block p {
  color: var(--color-hover);
  font-size: 0.85rem;
  line-height: 1.5;
}

.modal-btn {
  margin-top: 1.5rem;
  background-color: var(--color-dark);
  color: #ffffff;
  padding: 0.6rem 1.25rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.025em;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s;
  width: 100%;
  text-align: center;
}

@media (min-width: 640px) {
  .modal-btn { width: auto; align-self: flex-start; }
}

.modal-btn:hover {
  background-color: var(--color-hover);
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-6596b4e *//* =========================================
   4. SOBRE A ARQUITETA (A Mente Criativa)
========================================= */
.about-section {
  padding: 6rem 0;
  background-color: #ffffff;
  font-family: var(--font-main);
}

.about-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 4rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .about-container {
    flex-direction: row;
    gap: 4rem;
  }
}

/* --- Imagem e Efeito de Hover Sofisticado --- */
.about-image-col {
  width: 100%;
}

@media (min-width: 1024px) {
  .about-image-col { width: 41.666%; }
}

.about-image-wrapper {
  position: relative;
  /* Garante que o wrapper tenha o tamanho exato da imagem para o hover funcionar bem */
  display: inline-block; 
  width: 100%;
}

.about-img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  position: relative;
  z-index: 10;
  /* Estado Inicial: Preto e Branco e tamanho normal */
  filter: grayscale(100%);
  transform: scale(1);
  /* Transição suave e elegante (curva cúbica) */
  transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.about-image-decor {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  width: 100%;
  height: 100%;
  border: 2px solid var(--color-gold);
  z-index: 0;
  /* Estado Inicial: Posição original */
  transform: translate(0, 0);
  /* Mesma transição suave para sincronizar */
  transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

/* --- AÇÕES DE HOVER --- */
/* Quando passa o mouse no wrapper, muda a imagem */
.hover-trigger:hover .about-img {
  filter: grayscale(0%); /* Fica colorido */
  transform: scale(1.05); /* Leve zoom in */
  box-shadow: 0 35px 60px -15px rgba(0, 0, 0, 0.3); /* Sombra aumenta ligeiramente */
}

/* Quando passa o mouse no wrapper, muda a borda */
.hover-trigger:hover .about-image-decor {
  /* Move um pouco mais para fora, acompanhando o zoom */
  transform: translate(10px, 10px); 
  border-color: #9A7E5C; /* Opcional: escurece levemente a borda */
}


/* --- Textos --- */
.about-text-col {
  width: 100%;
}

@media (min-width: 1024px) {
  .about-text-col { width: 58.333%; }
}

.about-subtitle {
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--color-gold);
  margin-bottom: 0.75rem;
  text-transform: none;
}

.about-title {
  font-size: 1.8rem;
  font-weight: 300;
  letter-spacing: -0.025em;
  color: var(--color-dark);
  margin-bottom: 1.5rem;
  line-height: 1.2;
  text-transform: none;
}

@media (min-width: 768px) {
  .about-title { font-size: 2.55rem; }
}

.about-title span {
  font-weight: 600;
  font-style: italic;
}

.about-description {
  font-size: 1rem;
  color: var(--color-hover);
  font-weight: 300;
  line-height: 1.625;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.about-description strong {
  font-weight: 500;
  color: var(--color-dark);
}

/* --- Assinatura --- */
.about-signature-area {
  margin-top: 2.5rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

/* AJUSTES BLINDADOS PARA A NOVA IMAGEM DE ASSINATURA */
.about-signature-img {
  height: 100px !important; /* Trava a altura */
  width: auto !important; /* Impede o Elementor de forçar 100% de largura */
  max-width: 200px !important; /* Largura máxima de segurança */
  object-fit: contain !important; /* Garante que ela não fique esticada/deformada */
  flex-shrink: 0; /* Impede que o texto amasse a imagem */
}

.about-name {
  font-weight: 700;
  color: var(--color-dark);
  margin: 0 0 0.25rem 0;
}

.about-role {
  font-size: 0.875rem;
  color: #9A7E5C;
  margin: 0;
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-8500d52 *//* =========================================
   5. METODOLOGIA (O Processo)
========================================= */
.process-section {
  padding: 6rem 0;
  background-color: var(--color-dark); /* Fundo verde escuro */
  color: #ffffff;
  font-family: var(--font-main);
}

.process-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* --- Cabeçalho --- */
.process-header {
  text-align: center;
  margin-bottom: 4rem;
}

.process-subtitle {
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--color-gold);
  margin-bottom: 0.75rem;
  text-transform: none; /* Mantendo elegante */
}

.process-title {
  font-size: 1.8rem;
  font-weight: 300;
  letter-spacing: -0.025em;
  color: var(--color-gold-light);
  margin-bottom: 1rem;
  line-height: 1.2;
  text-transform: none;
}

@media (min-width: 768px) {
  .process-title { font-size: 2.5rem; }
}

.process-title span {
  font-weight: 600;
}

.process-desc {
  font-size: 1.125rem;
  color: rgba(227, 211, 188, 0.8); /* Dourado claro com transparência */
  font-weight: 300;
  max-width: 42rem;
  margin: 0 auto;
  line-height: 1.6;
}

/* --- Grid e Linha Conectora --- */
.process-grid-wrapper {
  position: relative;
}

/* A linha horizontal por trás das bolinhas */
.process-line {
  display: none; /* Escondido no celular */
  position: absolute;
  top: 3rem; /* Metade da altura da bolinha */
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--color-hover);
  z-index: 0;
}

@media (min-width: 768px) {
  .process-line { display: block; }
}

.process-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  position: relative;
  z-index: 10;
}

@media (min-width: 768px) {
  .process-grid { 
    grid-template-columns: repeat(4, 1fr); 
    gap: 2rem;
  }
}

/* --- Passos Individuais --- */
.process-step {
  display: flex;
  flex-direction: column;
  align-items: center; /* Centralizado no mobile */
  text-align: center;
  cursor: default;
}

@media (min-width: 768px) {
  .process-step {
    align-items: flex-start; /* Alinhado à esquerda no desktop */
    text-align: left;
  }
}

/* A Bolinha Numerada */
.process-number {
  width: 6rem;
  height: 6rem;
  border-radius: 50%;
  background-color: var(--color-dark);
  border: 2px solid var(--color-hover);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--color-gold);
  margin-bottom: 1.5rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.2);
  /* Transições suaves para o efeito hover */
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Textos do Passo */
.process-step-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-gold-light);
  margin-bottom: 0.75rem;
  text-transform: none;
}

.process-step-desc {
  font-size: 0.875rem;
  color: rgba(227, 211, 188, 0.7);
  font-weight: 300;
  line-height: 1.6;
}

/* --- Efeito Hover --- */
/* Quando o mouse passa por cima de toda a área do passo, a bolinha muda */
.process-step:hover .process-number {
  transform: scale(1.1);
  background-color: var(--color-gold);
  border-color: var(--color-gold);
  color: #ffffff;
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-5721c71 *//* =========================================
   6. DEPOIMENTOS (A Voz dos Clientes)
========================================= */
.testimonials-section {
  padding: 6rem 0;
  background-color: rgba(227, 211, 188, 0.2); /* Fundo bege clarinho para separar as seções */
  font-family: var(--font-main);
}

.testimonials-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* --- Cabeçalho --- */
.testimonials-header {
  text-align: center;
  margin-bottom: 4rem;
}

.testimonials-subtitle {
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--color-gold);
  margin-bottom: 0.75rem;
  text-transform: none;
}

.testimonials-title {
  font-size: 1.8rem;
  font-weight: 300;
  letter-spacing: -0.025em;
  color: var(--color-dark);
  text-transform: none;
}

@media (min-width: 768px) {
  .testimonials-title { font-size: 2.55rem; }
}

.testimonials-title span {
  font-weight: 600;
}

/* --- Grid de Depoimentos --- */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .testimonials-grid { grid-template-columns: repeat(3, 1fr); }
}

/* --- Card Individual --- */
.testimonial-card {
  background-color: #ffffff;
  padding: 1.5rem;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(227, 211, 188, 0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: box-shadow 0.3s ease;
}

.testimonial-card:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

/* Mock de Vídeo (Estilo Reels) */
.testimonial-video-mock {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 16; /* Proporção de tela de celular/TikTok */
  margin-bottom: 1.5rem;
  overflow: hidden;
  background-color: var(--color-gold-light);
  cursor: pointer;
}

.testimonial-video-mock img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.75);
  transition: transform 0.5s ease;
}

.testimonial-card:hover .testimonial-video-mock img {
  transform: scale(1.05);
}

/* Botão de Play flutuante */
.play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.play-button {
  width: 4rem;
  height: 4rem;
  background-color: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(4px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  transition: background-color 0.3s ease;
}

.play-button svg {
  margin-left: 4px; /* Centraliza visualmente o ícone de play */
}

.testimonial-card:hover .play-button {
  background-color: rgba(204, 172, 133, 0.9); /* Dourado translúcido no hover */
}

/* Label "Aperte o Play" */
.play-label {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

/* Textos do Depoimento */
.testimonial-quote {
  font-style: italic;
  color: var(--color-hover);
  margin-bottom: 1.5rem;
  line-height: 1.6;
  /* Limita a 3 linhas para ficar uniforme */
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.testimonial-author {
  margin-top: auto; /* Empurra pro final do card */
}

.author-name {
  font-weight: 700;
  color: var(--color-dark);
  margin: 0 0 0.25rem 0;
}

.author-role {
  font-size: 0.75rem;
  color: #9A7E5C;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 0;
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-981e141 *//* =========================================
   7. PERGUNTAS FREQUENTES (FAQ)
========================================= */
.faq-section {
  padding: 6rem 0;
  background-color: #ffffff;
  border-bottom: 1px solid rgba(227, 211, 188, 0.5); /* Linha divisória fina */
  font-family: var(--font-main);
}

.faq-container {
  max-width: 48rem; /* Container mais estreito para facilitar a leitura */
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* --- Cabeçalho --- */
.faq-header {
  text-align: center;
  margin-bottom: 3rem;
}

.faq-title {
  font-size: 1.875rem;
  font-weight: 300;
  letter-spacing: -0.025em;
  color: var(--color-dark);
  text-transform: none;
  margin-bottom: 0.5rem;
}

.faq-subtitle {
  color: var(--color-hover);
  font-size: 1rem;
}

/* --- Lista de Perguntas (Acordeão) --- */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1rem; /* Espaço entre as perguntas */
}

.faq-item {
  border: 1px solid rgba(227, 211, 188, 0.8);
  border-radius: 2px;
  overflow: hidden; /* Importante para a animação funcionar */
  background-color: var(--color-light); /* Fundo bege bem claro */
  transition: all 0.3s ease;
}

/* Botão da Pergunta */
.faq-question {
  width: 100%;
  padding: 1.25rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: all 0.3s ease;
}

.faq-question:hover {
  background-color: rgba(227, 211, 188, 0.2); /* Fica levemente mais escuro no hover */
}

.faq-question:focus {
  outline: none;
}

.faq-question-text {
  font-family: var(--font-main);
  font-weight: 500;
  font-size: 1rem;
  color: var(--color-dark);
  padding-right: 2rem; 
  transition: color 0.3s ease;
}

/* Seta (Chevron) */
.faq-icon {
  color: #9A7E5C;
  flex-shrink: 0; 
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Área da Resposta (Invisível por Padrão) */
.faq-answer-wrapper {
  max-height: 0;
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  background-color: #ffffff; /* Fundo branco para a resposta */
}

.faq-answer-content {
  padding: 0 1.5rem 1.5rem 1.5rem; 
}

.faq-answer-content p {
  font-size: 0.875rem;
  line-height: 1.625;
  color: var(--color-hover);
  margin: 0;
}

/* --- ESTADOS ATIVOS (Quando a pergunta está aberta) --- */

/* Fundo verde escuro na caixa da pergunta e texto branco */
.faq-item.active .faq-question {
  background-color: var(--color-dark); /* #525645 */
}

.faq-item.active .faq-question-text {
  color: #ffffff;
}

/* Gira a seta e deixa ela dourada clara para combinar com o fundo escuro */
.faq-item.active .faq-icon {
  transform: rotate(180deg);
  color: var(--color-gold-light);
}

/* Revela a resposta */
.faq-item.active .faq-answer-wrapper {
  max-height: 500px; 
  opacity: 1;
  padding-top: 1.5rem; /* Ajustei o respiro superior para ficar mais simétrico */
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-98c9ba1 *//* =========================================
   8. CTA (CHAMADA PARA AÇÃO)
========================================= */
.cta-section {
  padding: 6rem 0;
  background-color: var(--color-dark); /* Fundo verde escuro */
  font-family: var(--font-main);
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Detalhe de fundo suave no CTA */
.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(204, 172, 133, 0.1) 0%, rgba(82, 86, 69, 0) 70%);
  border-radius: 50%;
  z-index: 0;
}

.cta-container {
  max-width: 48rem;
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 10;
}

.cta-title {
  font-size: 2rem;
  font-weight: 300;
  color: #ffffff;
  letter-spacing: -0.025em;
  margin-bottom: 1rem;
  text-transform: none;
}

@media (min-width: 768px) {
  .cta-title { font-size: 2.75rem; }
}

.cta-title span {
  font-weight: 600;
  color: var(--color-gold-light);
}

.cta-subtitle {
  font-size: 1.125rem;
  color: rgba(227, 211, 188, 0.8);
  font-weight: 300;
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background-color: var(--color-gold);
  color: #ffffff;
  padding: 0.85rem 2rem;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 2px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.cta-button:hover {
  background-color: #9A7E5C;
  transform: translateY(-2px);
}

.cta-button svg {
  transition: transform 0.3s ease;
}

.cta-button:hover svg {
  transform: translateX(4px);
}

/* =========================================
   9. RODAPÉ (FOOTER)
========================================= */
.site-footer {
  background-color: var(--color-light); /* Fundo bege bem claro */
  color: var(--color-hover);
  font-family: var(--font-main);
  padding-top: 5rem;
  border-top: 1px solid rgba(227, 211, 188, 0.5);
}

.footer-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem 4rem 1.5rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 768px) {
  .footer-container {
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 4rem;
  }
}

/* Coluna 1: Logo e Marca */
.footer-logo {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-dark);
  margin-bottom: 1rem;
  letter-spacing: -0.05em;
}

.footer-logo span {
  font-weight: 300;
}

.footer-desc {
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  max-width: 300px;
}

.footer-socials {
  display: flex;
  gap: 1rem;
}

.footer-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background-color: rgba(227, 211, 188, 0.3);
  color: var(--color-dark);
  transition: all 0.3s ease;
}

.footer-socials a:hover {
  background-color: var(--color-gold);
  color: #ffffff;
  transform: translateY(-3px);
}

/* Colunas 2 e 3: Títulos */
.footer-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-dark);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Lista de Links Rápidos */
.footer-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-menu a {
  color: var(--color-hover);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s ease;
}

.footer-menu a:hover {
  color: var(--color-gold);
}

/* Lista de Contatos */
.footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9rem;
  line-height: 1.4;
}

.footer-contact-list svg {
  color: var(--color-gold);
  flex-shrink: 0;
  margin-top: 2px;
}

/* Barra Inferior (Copyright) */
.footer-bottom {
  border-top: 1px solid rgba(227, 211, 188, 0.5);
  padding: 1.5rem 0;
  background-color: var(--color-light);
}

.footer-bottom-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.5rem;
  font-size: 0.8rem;
}

@media (min-width: 768px) {
  .footer-bottom-container {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.footer-credits {
  font-weight: 500;
  color: var(--color-dark);
}/* End custom CSS */