@media (max-width: 768px) {
    h1 { font-size: 42px!important; line-height: 1.2; }
    h2 { font-size: 36px!important;; line-height: 1.3; }
    h3 { font-size: 24px!important;; line-height: 1.4; }
    h4 { font-size: 20px!important;; line-height: 1.5; }
    h5 { font-size: 18px!important;; line-height: 1.5; }
    h6 { font-size: 16px!important;; line-height: 1.6; }
    .padding-all {
      padding: 15px !important;
    }
    .none-div {
      display: none !important;
    }
    .scroll-container {
  width: 100%;
  height: 100vh;
  overflow: hidden;
  position: relative;
  left: 0 !important;
}
.scroll-section {
  display: flex;
  width: 100% !important; 
  height: 100vh;
  will-change: transform;
  transform: translateX(0); 
}
    }
   code {
    font-style: italic;
    font-family: Playfair Display, sans-serif;
    -webkit-text-fill-color: transparent;
    background-image: linear-gradient(311deg, #da8a65 29%, #fff 54%);
    -webkit-background-clip: text;
    background-clip: text;
}
.grid-box {
  box-shadow: inset 0 4px 4px #79797940;
   transition: all 0.3s ease;
    }

.grid-box:hover {
      background: #DD72401a;
}
.tag-image {
    position: absolute;
    top: 62%;
    left: -4%;
}
.tag-image-2 {
    position: absolute;
    bottom: 3%;
    right: 15%;
}
.tag-image-3 {
    position: absolute;
    top: 30%;
    right: -3%;
}
.hero {
  position: relative;
}

.image-hover-wrapper {
  position: relative;
  display: inline-block;
  overflow: hidden;
}

.hover-item {
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(-50%, -50%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s ease;
}


.scroll-container {
  width: 100%;
  height: 100vh;
  overflow: hidden;
  position: relative;
  left: 0 !important;
}
.scroll-section {
  display: flex;
  width: 110vw; 
  height: 100vh;
  will-change: transform;
  transform: translateX(0); 
}
.marquee-item {
  flex: 0 0 auto;
  margin: 0 15px;
  padding: 10px;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.marquee-item:hover {
  background: #DD7240;
  box-shadow: 0 8px 24px rgba(221, 114, 64, 0.5);
  transform: scale(1.05);
}
 :root {
  --gap-spacing: 30px;
  --animation-duration: 20s; 
  --start-position: 0;
  --end-position: calc(-100% - var(--gap-spacing));
}


.marquee-container {
  display: flex;
  overflow: hidden;
  user-select: none;
  gap: var(--gap-spacing);
  white-space: nowrap;
  
}


.marquee-track {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--gap-spacing);


}
.marquee-container-right {
  overflow: hidden;
}


.marquee-container-right .marquee-track {
  animation: scroll-left var(--animation-duration) linear infinite;
}


.marquee-container-left .marquee-track {
  animation: scroll-right var(--animation-duration) linear infinite;
}


@keyframes scroll-left {
  from {
    transform: translateX(var(--start-position));
  }
  to {
    transform: translateX(var(--end-position));
  }
}


@keyframes scroll-right {
  from {
    transform: translateX(var(--end-position));
  }
  to {
    transform: translateX(var(--start-position));
  }
}

.buttom-animation {
      position: relative;
      display: inline-block;
      padding: 12px 24px;


      border: 1px #fff solid;
      border-radius: 8px;
      overflow: hidden;
      cursor: pointer;
      z-index: 1;
      transition: color 0.3s ease;
    }

    .buttom-animation::before {
      content: "";
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background-color: #DD7240; 
      z-index: -1;
      transition: left 0.4s ease;
    }

    .buttom-animation:hover::before {
      left: 0;
    }

    .buttom-animation span {
      position: relative;
      z-index: 1;
    }



/*============== FAQ Section ==============*/

.faq-container {
  width: 100%;
 
  margin: 0 auto;
  
}


.faq-question {
  border: 1px solid var(--wp--preset--color--dark-gray); 
  border-radius: 30px;
  background-color: transparent;
  padding: 6px 12px;
  width: 100%;
  max-width: 100%;
  overflow: hidden; 
}


.faq-question summary {
  border: 1px solid var(--wp--preset--color--text-terciary);

  border-radius: 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none; 
  transition: background-color 0.3s ease; 
}


.faq-question summary::after {
  content: "+";
  font-size: 40px;
  transition: transform 0.3s ease, color 0.3s ease; 
}


.faq-question[open] summary::after {
  transform: rotate(45deg);
}


.faq-answer {
  font-size: 14px;
  line-height: 1.6;
  
  margin-top: 0;
  border-radius: 0 0 10px 10px;
  max-height: 0;
  opacity: 0;
  overflow: hidden; 
  transition: max-height 0.9s ease-in-out, opacity 0.5s ease-in-out;
}


.faq-question[open] .faq-answer {
  max-height: 500px; 
  opacity: 1;
}


.faq-question:hover summary {
  background-color: var(--wp--preset--color--text-terciary); 
}


.image-spacer {
  position: relative;
  width: 100%;
  
  overflow: hidden; 
}
.image-hover-spacer {
  width: 100%;
  height: 100%;
  object-fit: cover; 
  transition: transform 0.3s ease-in-out; 
}
.image-spacer:hover .image-hover-spacer {
  transform: scale(1.1); 
}
.hero_image_1 img{
  position: absolute;
  max-width: 340px;
  right: 7vw;
  top: 10vw;
  animation: float 4s ease-in-out infinite;
}

.hero_image_2 img{
  position: absolute;
  max-width: 210px;
  left: 7vw;
  top: 10vw;
  animation: float 4s ease-in-out infinite;
}

@keyframes float {
  0% {
    transform: translateY(0px) rotate(-1deg);
  }
  50% {
    transform: translateY(-15px) rotate(1deg);
  }
  100% {
    transform: translateY(0px) rotate(-1deg);
  }
}

.title_hero span {
  color: var(--wp--preset--color--orange) !important;
}

.st0{display:none;}
.st1{display:inline;fill:none;}
.st2{display:inline;fill:#FF01FC;}
.st3{display:inline;fill:#CE06FF;}
.st4{display:inline;}
.st5{fill:#FF01FC;}

.wp-block-social-link-anchor {
	    color: #ff01fc;
}

.wp-block-social-links .wp-block-social-link a {
    color: #ff01fc;
}

.is-style-logos-only {
	color: #ff01fc;
	font-size: 40px;
}

.redessociais {
		margin-top: 4em;
}

.wp-block-navigation:not(.has-background) .wp-block-navigation__submenu-container {
	color: black;
}
body {
	/*background-color: black;
	color: white;*/
	background-color: var(--wp--preset--color--base);
	color: var(--wp--preset--color--contrast);
}

.container {
	color: white;
}

.teste {
	direction: rtl;
}

.banner {
	width: 100%;
	height: 600px;
	background-image: url('http://localhost:8881/wp-content/uploads/2025/11/pexels-photo-3426870-1.jpeg');
	background-position: center;
	position: relative;
}

.box-contêiner {
	width: 400px;
	height: 200px;
	text-align: center;
	position: absolute;
	right: 100px;
	bottom: 250px;
}

.box-background {
	width: 100%;
	height: 100%;
	background-color: #000;
	opacity: .8;
	position: relative;
}

.box-banner-title {
	position: absolute;
	width: 100%;
	text-align: center;
	top: 0;
	color: #fff;
	padding-top: 65px;
}

.box-banner-title h1 {
	fonte-size: 32px;
	margin-bottom: 25px;
}

.box-banner-title p {
	fonte-size: 20px;
}

.company-info-container {
	position: absolute;
	bottom: 0;
	width: 100%;
	height: 175px;
}

.company-info-background {
	width: 100%;
	height: 100%;
	background-color: #ddd;
	opacity: .9;
}

.company-info-titlebox {
	position: absolute;
	padding-left: 10%;
	top: 40px;
	width: 500px;
}

.company-info-titlebox h2, .company-info-titlebox p {
	color: #222;
}

.company-info-titlebox h2 {
	margin-bottom: 30px;
	font-size: 24px;
}

.services-container {
	max-width: 1200px;
	padding: 30px 10%;
	padding-bottom: 0;
}

.service-box {
	width: 100%;
	position: relative;
	clear: both;
	height: 150px;
	margin-bottom: 30px;
}

.service-box:last {
	margin-bottom: 0;
}

.service-title {
	width: 20%;
	height: 250px;
	background-color: transpsrent;
	float: left;
	text-align: center;
	line-height: 150px;
	padding: 20px;
	box-sizing: border-box;
}

.service-title p {
	padding-top: 35px;
	color: #fff;
	font-size: 18px;
	line-height: 24px;
}

.service-description {
	width: 80%;
	float: left;
	padding: 30px;
	box-sizing: border-box;
}

.service-description h3 {
	font-size: 20px;
	margin-bottom: 15px;
	font-weight: bold;
}

.service-description p {
	font-size: 14px;
	line-height: 22px;
}

#gerenciamento-title {
	color: #2364aa;
}

#dev-title {
	color: #3da5d9;
}

#design-title {
	color: #73bfb8;
}

#gerenciamento-box {
	background- color: #2364aa;
}

#dev-box {
	background- color: #3da5d9;
}

#dev-box2 {
	background- color: transparent;
}

#design-box {
	background- color: #73bfb8;
}

.footer-container {
	background-image: url('http://localhost:8881/wp-content/uploads/2025/11/pexels-photo-3426870-1.jpeg');
	background-position: center;
}

.about-container {
	max-width: 1200px;
	padding: 30px 10%;
	position: relative;
	clear: both;
}

.about-card {
	float: left;
	width: 30%;
	padding: 30px;
	background-color: #fff;
	text-align: center;
	box-sizing: border-box;
}

.middle-card {
	margin-left: 5%;
	margin-right: 5%;
}

.about-card i {
	font-size: 50px;
	color: #aaa;
}

.about-card p {
	margin-top: 50px;
	font-size: 14px;
	line-height: 22px;
	color: #888;
	text-align: left;
}

.footer-form {
	clear: both;
	max-width: 1200px;
	height: 500px;
	padding: 30px 10%;
	position: relative;
}

.form-container {
	width: 65%;
	height: 375px;
	position: relative;
	display: block;
}

.form-background {
	width: 100%;
	height: 100%;
	background-color: #fff;
	opacity: .5;
}

.form-container form {
	position: absolute;
	top: 30px;
	left: 30px;
	height: 300px;
}

.form-container input, .form-container textarea {
	width: 400px;
	display: block;
	border: none;
	padding: 10px;
	margin-bottom: 15px;
	border-bottom: 1px solid #aaa;
	border-radius: 0;
	background-color: transparent;
}

.form-container textarea {
	height: 120px;
}

.form-container input::placeholder, .form-container textarea::placeholder {
	font-size: 14px;
}

.form-container .submit {
	background-color: #222;
	color: #fff;
	border: 1px solid transparente;
	width: 100px;
	position: relative;
	float: right;
	cursor: pointer;
	transition: .5s
}

.form-container .submit:hover {
	background-color: #fff;
	color: #222;
	border: 1px solid #222;	
}

/*@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(20px); 
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.carousel-item .animate-caption {
  opacity: 0; 
}

.carousel-item.active .animate-caption {
  animation: fadeIn 1s ease-out forwards; 
}*/

/* 
.carousel-item-next.carousel-item-start,
.active.carousel-item-end,
.active.carousel-item-next {
  transition-duration: 1s;
}*/

.gallery-wrapper {
    overflow: hidden;
    width: 100%;
}

.gallery-scroll {
    display: flex;
    /* Duplicate your images in HTML to create the seamless loop effect */
    width: fit-content; 
    animation: continuous-scroll 20s linear infinite;
}

.gallery-scroll:hover {
    animation-play-state: paused; /* Pause on hover */
}

@keyframes continuous-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); } /* Translate half the total width to loop seamlessly if duplicated */
}

.framer-360SZ .framer-nxqu14-container {
    flex: 0 0 auto;
    height: 486px;
    left: calc(50% - 520px);
    position: absolute;
    top: 2988px;
    width: 1040px;
    will-change: var(--framer-will-change-effect-override, transform);
}

.framer-360SZ .framer-1bs0h8p, .framer-360SZ .framer-ugoqcy, .framer-360SZ .framer-gx6l0q, .framer-360SZ .framer-85avc5, .framer-360SZ .framer-z3kook, .framer-360SZ .framer-70u6wn, .framer-360SZ .framer-17491hn, .framer-360SZ .framer-1m15fwd, .framer-360SZ .framer-2e9tbv, .framer-360SZ .framer-nx37pq, .framer-360SZ .framer-8io9a2, .framer-360SZ .framer-4qg9g0, .framer-360SZ .framer-1rivgd7, .framer-360SZ .framer-cqbu5e, .framer-360SZ .framer-12e4fm3, .framer-360SZ .framer-fali8u, .framer-360SZ .framer-3j9h7v, .framer-360SZ .framer-q8fc11, .framer-360SZ .framer-w0kdez, .framer-360SZ .framer-1l3gi3 {
    height: 450px;
    position: relative;
    width: 350px;
}

:root {
  --item-width: 320px;
  --item-margin: 5px; /* Espaço à direita de cada item */
  --num-items: 9;
  
  /* Largura total real de uma cópia (incluindo margens) */
  --scroll-width: calc(var(--num-items) * (var(--item-width) + var(--item-margin)));
}

body {
  /*min-height: 100vh;
  display: grid;
  place-items: center;
  background-color: #b7eaee;*/
}
 
 
img{
  /*margin: 30px;*/
}

.slider {
  height: 500px;
  margin: auto;
  margin-top: -100px;
  position: relative;
  /*width: 90%;*/
  /*width: --scroll-width;*/
  display: grid;
  place-items: center;
  overflow: hidden;
  mask-image: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 12.5%, rgb(0, 0, 0) 87.5%, rgba(0, 0, 0, 0) 100%);
}
 
 
.slide-track {
  display: flex;
  /*width: 2880px;*/
  width: calc(var(--scroll-width) * 2); 
  animation: scroll 20s linear infinite;
}
 
 
.slide-track:hover {
  animation-play-state: paused;
}
 
 
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(var(--scroll-width) * -1));
  }
}
.slide {
  height: 300px;
  /*width: 320px;*/
  align-items: center;
  /*padding: 15px;*/
  perspective: 300px;
  
  flex-shrink: 0;
  width: var(--item-width);
  margin-right: var(--item-margin); /* Adiciona o espaço à direita */
}
 
 
img {
  width: 100%;
  transition: transform 1s;
  margin: 0;
}
 
 
img:hover {
  transform: translateZ(20px);
 
}
.slider::before,
.slider::after {
 
  content: "";
  height: 100%;
  position: absolute;
  width: 15%;
  z-index: 2;
}
 
 
.slider::before {
  left: 0;
  top: 0;
}
 
 
.slider::after {
  right: 0;
  top: 0;
  transform: rotateZ("180deg");
}







.section-full-width {
    /* Define a largura para 100% da viewport (janela do navegador) */
    width: 100vw; 
    
    /* Move o elemento para a borda esquerda do navegador */
    position: relative;
    left: 50%;
    right: 50%;
    
    /* Compensa o deslocamento para a esquerda, centralizando o elemento no viewport */
    margin-left: -50vw;
    margin-right: -50vw;
    
    /* Estilo adicional para visualização */
    background-color: grey;
    color: white;
    padding: 20px 0; /* Mantenha o padding vertical, o horizontal pode ser ajustado internamente */
    box-sizing: border-box; /* Garante que padding e bordas não adicionem largura extra */
}

.section-full-width h2, .section-full-width p {
    /* Opcional: Para o conteúdo dentro da section ficar alinhado com o conteúdo da div pai */
    max-width: 800px; /* Mesma largura máxima da div pai */
    margin: 0 auto; /* Centraliza o conteúdo */
    padding: 0 20px; /* Mesmo padding da div pai */
}

/* Estilo normal do botão (opcional, se quiser definir a cor inicial) */
.meu-botao-santuario-aurora-laranja-hover .wp-block-button__link {
	/*background-image: linear-gradient(to right, rgb(172,132,60) 0%, rgb(139,105,103) 100%);*/
	/*background-image: linear-gradient(135deg,rgb(172,132,60) 0%,rgb(139,105,103) 100%);*/
	/*background-color: linear-gradient(135deg,rgb(172,132,60) 0%,rgb(139,105,103) 100%);*/
	/*background: linear-gradient(135deg,  #ac843c 0%,#8b6967 100%);*/
	
	background: #ac843c;
	background: -moz-linear-gradient(-45deg,  #ac843c 0%, #8b6967 100%) !important;
	background: -webkit-gradient(linear, left top, right bottom, color-stop(0%,#ac843c), color-stop(100%,#8b6967)) !important;
	background: -webkit-linear-gradient(-45deg,  #ac843c 0%,#8b6967 100%) !important;
	background: -o-linear-gradient(-45deg,  #ac843c 0%,#8b6967 100%) !important;
	background: -ms-linear-gradient(-45deg,  #ac843c 0%,#8b6967 100%) !important;
	background: linear-gradient(135deg,  #ac843c 0%,#8b6967 100%) !important;
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ac843c', endColorstr='#8b6967',GradientType=1 ) !important;
	
    color: #ede9e2; /* Cor do texto normal */
    transition: background-color 0.3s ease; /* Adiciona transição suave */
}

/* Estilo do botão no estado hover */
.meu-botao-santuario-aurora-laranja-hover .wp-block-button__link:hover {
	background: linear-gradient(135deg,  #8b6967 0%,#ac843c 100%) !important;
    /*background-image: linear-gradient(135deg,rgb(15,140,140) 0%,rgb(2,89,89) 100%);*/
	/*background-color: linear-gradient(135deg,rgb(15,140,140) 0%,rgb(2,89,89) 100%);*/ /* Nova cor de fundo ao passar o mouse */
    color: #f8f8f8; /* Nova cor do texto ao passar o mouse */
    /* Outros efeitos, como escala: transform: scale(1.05); */
}

/* Estilo normal do botão (opcional, se quiser definir a cor inicial) */
.meu-botao-santuario-azul-profundo-hover .wp-block-button__link {	
	background: #0f8c8c;
	background: -moz-linear-gradient(-45deg,  #0f8c8c 0%, #025959 100%) !important;
	background: -webkit-gradient(linear, left top, right bottom, color-stop(0%,#0f8c8c), color-stop(100%,#025959)) !important;
	background: -webkit-linear-gradient(-45deg,  #0f8c8c 0%,#025959 100%) !important;
	background: -o-linear-gradient(-45deg,  #0f8c8c 0%,#025959 100%) !important;
	background: -ms-linear-gradient(-45deg,  #0f8c8c 0%,#025959 100%) !important;
	background: linear-gradient(135deg,  #0f8c8c 0%,#025959 100%) !important;
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0f8c8c', endColorstr='#025959',GradientType=1 ) !important;
	
    color: #f3feff; /* Cor do texto normal */
    transition: background-color 0.3s ease; /* Adiciona transição suave */
}

/* Estilo do botão no estado hover */
.meu-botao-santuario-azul-profundo-hover .wp-block-button__link:hover {
	background: linear-gradient(135deg,  #025959 0%,#0f8c8c 100%) !important;
    /*background-image: linear-gradient(135deg,rgb(15,140,140) 0%,rgb(2,89,89) 100%);*/
	/*background-color: linear-gradient(135deg,rgb(15,140,140) 0%,rgb(2,89,89) 100%);*/ /* Nova cor de fundo ao passar o mouse */
    color: #f8f8f8; /* Nova cor do texto ao passar o mouse */
    /* Outros efeitos, como escala: transform: scale(1.05); */
}


/* Grupo geral do bloco */
.projeto-canvas {
    display: flex;
    flex-direction: column;
    row-gap: var(--wp--preset--spacing--40);
}

/* Conteúdo */
.projeto-canvas > .wp-block-group {
    padding-bottom: var(--wp--preset--spacing--20);
}

/* Imagem */
.projeto-canvas__imagem {
    width: 100%;
    display: block;
    margin: 0;
}

.projeto-canvas__imagem img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--wp--custom--radius--large);
}

li::marker {
	color: var(--wp--preset--color--luxe-metallic-gold);
}

.limarkerclaro {
	color: var(--wp--preset--color--luxe-metallic-gold) !important;
}