.elementor-12 .elementor-element.elementor-element-0327d5f{--display:flex;--min-height:100vh;--flex-direction:column;--container-widget-width:calc( ( 1 - var( --container-widget-flex-grow ) ) * 100% );--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--justify-content:center;--align-items:center;--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-12 .elementor-element.elementor-element-0327d5f:not(.elementor-motion-effects-element-type-background), .elementor-12 .elementor-element.elementor-element-0327d5f > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-image:url("https://archten.com.br/wp-content/uploads/2026/03/img-tratada.webp");background-position:center center;background-repeat:no-repeat;}.elementor-12 .elementor-element.elementor-element-76d2b09{--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-12 .elementor-element.elementor-element-76d2b09:not(.elementor-motion-effects-element-type-background), .elementor-12 .elementor-element.elementor-element-76d2b09 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#F9F9F9;}.elementor-12 .elementor-element.elementor-element-27515f4{--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;}@media(max-width:1024px){.elementor-12 .elementor-element.elementor-element-9b29f75{margin:0px 0px calc(var(--kit-widget-spacing, 0px) + 0px) 0px;padding:0px 0px 0px 0px;}}@media(min-width:1025px){.elementor-12 .elementor-element.elementor-element-0327d5f:not(.elementor-motion-effects-element-type-background), .elementor-12 .elementor-element.elementor-element-0327d5f > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-attachment:fixed;}}@media(max-width:767px){.elementor-12 .elementor-element.elementor-element-27515f4{--padding-top:20px;--padding-bottom:20px;--padding-left:20px;--padding-right:20px;}}/* Start custom CSS for html, class: .elementor-element-3444a9d *//* Importando uma fonte elegante para arquitetura */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&family=Playfair+Display:wght@600&display=swap');

.hero-archten {
  position: relative;
  height: 60vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #ffffff;
  /* Substitua pela URL da sua imagem .webp */
  background: url('sua-imagem.webp') no-repeat center center/cover;
  background-attachment: scroll; /* Mude para 'fixed' se quiser efeito parallax */
  overflow: hidden;
  font-family: 'Montserrat', sans-serif;
}

/* Overlay Gradiente para dar profundidade e leitura */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 0 20px;
  animation: fadeInUp 1s ease-out; /* Efeito de entrada suave */
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 6vw, 3.8rem);
  font-weight: 600;
  margin-bottom: 20px;
  line-height: 1.1;
  letter-spacing: -0.5px;
}

.hero-subtitle {
  font-size: 1.1rem;
  margin-bottom: 40px;
  opacity: 0.9;
  line-height: 1.6;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
  padding: 15px 35px;
  text-decoration: none;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 1.5px;
  border-radius: 2px; /* Bordas retas trazem mais seriedade na arquitetura */
  transition: all 0.4s ease;
}

.btn-primary {
  background-color: #d4af37; /* Dourado Archten */
  color: #000;
  border: 1px solid #d4af37;
}

.btn-secondary {
  border: 1px solid #fff;
  color: #fff;
}

/* Efeitos de Hover */
.btn-primary:hover {
  background-color: transparent;
  color: #fff;
  border-color: #fff;
  transform: translateY(-3px);
}

.btn-secondary:hover {
  background-color: #fff;
  color: #000;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

/* Animação de entrada */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Ajuste para telas pequenas */
@media (max-width: 768px) {
  .hero-archten {
    height: 70vh; /* Um pouco mais alto no celular para caber o texto */
  }
  .hero-buttons {
    flex-direction: column;
    width: 100%;
    align-items: center;
  }
  .btn-primary, .btn-secondary {
    width: 80%;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-76d7eae */.sobre-mariluci {
  padding: 80px 5%;
  background-color: #f9f9f9; /* Um tom levemente diferente do branco para destacar */
  font-family: 'Montserrat', sans-serif;
}

.container-mariluci {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 50px;
}

/* Estilo da Imagem */
.col-imagem {
  flex: 1;
  position: relative;
}

.foto-wrapper img {
  width: 100%;
  max-width: 450px;
  border-radius: 4px;
  z-index: 2;
  position: relative;
  display: block;
}

/* Aquele detalhe de borda/quadrado atrás da foto que arquitetos amam */
.detalhe-decorativo {
  position: absolute;
  top: -20px;
  left: -20px;
  width: 200px;
  height: 200px;
  border: 5px solid #d4af37; /* Dourado Archten */
  z-index: 1;
}

/* Estilo do Texto */
.col-texto {
  flex: 1.2;
}

.subtitulo {
  color: #d4af37;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 2px;
  font-size: 0.9rem;
}

.titulo-mariluci {
  font-size: 3rem;
  font-weight: 800;
  color: #222;
  margin: 10px 0 25px;
}

.descricao {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 30px;
}

.assinatura strong {
  display: block;
  font-size: 1.2rem;
  color: #222;
}

.assinatura span {
  color: #888;
  font-size: 0.9rem;
}

/* Responsividade */
@media (max-width: 991px) {
  .container-mariluci {
    flex-direction: column;
    text-align: center;
  }
  
  .detalhe-decorativo {
    display: none; /* Simplifica no celular */
  }
  
  .titulo-mariluci {
    font-size: 2.2rem;
  }
}/* End custom CSS */
/* Start custom CSS for container, class: .elementor-element-76d2b09 *//* ... (Mantenha o restante do código da seção .sobre-mariluci igual) ... */

/* Estilo da Coluna da Imagem */
.col-imagem {
  flex: 1;
  position: relative;
  /* Perspective ajuda no efeito 3D se quisermos rotacionar depois */
  perspective: 1000px; 
}

.foto-wrapper {
  position: relative;
  z-index: 2;
  /* Efeito de transição suave para interações */
  transition: transform 0.5s ease; 
}

/* Aplicação da Sombra e Arredondamento */
.foto-wrapper img {
  width: 100%;
  max-width: 450px;
  /* Arredondamento solicitado de 5px */
  border-radius: 5px; 
  display: block;
  position: relative;
  z-index: 2;

  /* Sombra para sensação 3D (projetada para baixo e para a direita) */
  /* box-shadow: deslocamento-x deslocamento-y desfoque espalhamento cor; */
  box-shadow: 10px 10px 25px rgba(0, 0, 0, 0.2);
  
  /* Transição suave para o hover */
  transition: all 0.3s ease; 
}

/* Opcional: Efeito interativo ao passar o mouse */
.foto-wrapper:hover img {
  /* Levanta levemente a imagem e aumenta a sombra para parecer mais próxima */
  transform: translateY(-5px) rotateX(2deg);
  box-shadow: 15px 15px 35px rgba(0, 0, 0, 0.25);
}

/* Ajuste no detalhe decorativo para combinar */
.detalhe-decorativo {
  position: absolute;
  top: -15px; /* Ajustado */
  left: -15px; /* Ajustado */
  width: 200px;
  height: 200px;
  border: 4px solid #d4af37; /* Dourado Archten */
  z-index: 1;
  /* Arredondamento combinando com a foto */
  border-radius: 5px; 
  opacity: 0.8;
}

/* ... (Mantenha o restante do código igual) ... *//* End custom CSS */