:root {
  --wp--style--block-gap: 20px !important;
	--webpage-transition: .2s ease-in;
}
.entry-content {
  min-height: 65vh;
}

.wp-block-group:not(.no-resize)>div>.metaslider .slides img {
  object-fit: contain;
  background: black;
  height: 22.5em;
}

.slides {
background: black !important;
}

.about-photo {
  width: 80%;
}

.ff-default .ff-el-form-control {
		border-radius: 0 !important;
		transition: var(--webpage-transition);
}
.ff-default .ff-el-form-control:focus {
	border-color: #000 !important;
  scale: 1.05;
}
.contact-button {
	transition: 0s !important;
	background: black !important;
	border-radius: 0 !important;
	padding: 15px 30px !important;
}

.wp-block-button {
  transition: var(--webpage-transition);
}
.wp-block-button:hover {
  scale: 1.05;
}

.bg-red, .bg-red > *       { background-color: #810201; }
.bg-lime, .bg-lime > *     { background-color: #669BBB; }
.bg-purple, .bg-purple > * { background-color: #6052AA; }


header.site-header {
  position: fixed;
  width: 100%;
  z-index: 999;
}

header.site-header .wp-block-group {
	max-width: 100%;
	width: 100%;	
	padding: 0 !important;
}

header.site-header > .wp-block-group > .wp-block-group {
  padding: 0.3em 0 !important;
}

header.site-header .barra-colorida {
		max-width: 100%;
		width: 100%;
}

.wp-block-post {
  transition: var(--webpage-transition);
	position: relative;
}
.wp-block-post:hover {
  scale: 1.05;
}
.wp-block-post h1 {
	position: absolute;
	bottom: 0;
	width: 100%;
  margin-bottom: 0 !important;
  z-index: 9;
  background: #000;
  background: linear-gradient(to top,rgba(0, 0, 0, .7) 30%, rgba(0, 0, 0, 0) 99%);
  padding: 1em;
  text-shadow: 0 0 4px rgb(0, 0, 0);
}
.wp-block-post h1 a {
	color: #fff;
}

.texto-colorido {
		animation: starColorCycle 3s infinite;
}
.barra-colorida,
.barra-colorida a {
  animation: lineColorCycle 6s ease-in-out infinite;
}
@keyframes starColorCycle {
		0%   { color: #810201; }
		33%  { color: #669BBB; }
		66%  { color: #6052AA; }
		100% { color: #810201; }
}

@keyframes lineColorCycle {
		0%   { background-color: #810201; }
		33%  { background-color: #669BBB; }
		66%  { background-color: #6052AA; }
		100% { background-color: #810201; }
}

.menu-link a {
	text-decoration: none !important;
	color: #fff !important;
}

.grid-hero canvas {
  display: block !important;
  width: 100vw !important;
  height: 100% !important;
	margin: 0 !important;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  max-width: 100vw !important;
	opacity: 0;
	transition: opacity 3s;
  animation: canvasFadeIn 3s ease forwards;
  animation-delay: 0s;
}
@keyframes canvasFadeIn {
  to {
    opacity: 1;
  }
}

.paper-stack-container {
  width: 440px;
		max-width: 90%;
		margin-bottom: 4em;
}
.paper-stack {
  position: relative;
  width: 100%;
  aspect-ratio: 100 / 136;	
}
.paper-stack>div {
  background: #fff;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: 0px 0px 20px rgba(0,0,0,0.5);
  border: 0;
  border-radius: 7px;
  transform-origin: 50% 70%;
  opacity: 0;
  animation: paperFadeIn .8s ease forwards;
}
.paper-stack>div:first-child {
  color: black;
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  display: flex;
  justify-content: center;
  z-index: 5;
  align-items: center;
  background-image: url('/wp-content/uploads/2025/05/portrait.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  animation-delay: 1.0s;
}
.paper-stack>div:nth-child(2) {
  background-color: #B1FF1A;
  top: 0px;
  left: 15px;
  z-index: 4;
  animation-delay: 0.75s;
}
.paper-stack>div:nth-child(3) {
  background-color: #AD8DC6;
  top: 5px;
  left: -5px;
  z-index: 3;
  animation-delay: 0.5s;
}
.paper-stack>div:nth-child(4) {
  background-color: #E55353;
  top: 10px;
  left: 10px;
  z-index: 2;
  animation-delay: 0.25s;
}
@keyframes paperFadeIn {
  0% {
    opacity: 0;
    transform: rotate(-10deg);
  }
  20% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
/* Apply individual transforms after the animation */
.paper-stack>div {
   transform: translateX(10px) rotate(3deg);
}
.paper-stack>div:nth-child(2) {
  transform: translateX(5px) rotate(-1deg);
}
.paper-stack>div:nth-child(3) {
  transform: scale(0.95) translateY(10px) translateX(40px) rotate(-10deg);
}
.paper-stack>div:nth-child(4) {
  transform: translateY(-5px) translateX(15px) rotate(-5deg);
}








.shapes-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5%;
	width: 60%;
	font-size: 20px;
}
.shape-square,
.shape-diamond,
.shape-circle,
.shape-star,
.shape-triangle
 {
	display: inline-block;
	aspect-ratio: 1/1;
}

.shape-square {
  width: 15%;
  background-color: #810201;
}

.shape-square.animate {
  animation: rotateSquare 0.6s infinite linear;
}

@keyframes rotateSquare {
  from {
    transform: rotateY(0deg);
  }
  to {
    transform: rotateY(540deg);
  }
}


.shape-diamond {
  position: relative;
  width: 15%;
}

.shape-diamond::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 80%;
  height: 80%;
  background-color: #810201;
  transform: translate(-50%, -50%) rotateZ(45deg);
  transform-origin: center;
}

.shape-diamond.animate {
  animation: rotateDiamond 0.6s infinite linear;
}

@keyframes rotateDiamond {
  from {
    transform: rotateZ(45deg);
  }
  to {
    transform: rotateZ(765deg);
  }
}

.shape-circle {
  width: 15%;
  background-color: #810201;
  border-radius: 50%;
}

.shape-circle.animate {
  animation: pulse 0.6s infinite ease-in-out;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  25% {
    transform: scale(1.3);
  }
  50% {
    transform: scale(1);
  }
  75% {
    transform: scale(1.3);
  }
  100% {
    transform: scale(1);
  }
}




.shape-star {
  width: 15%;
  aspect-ratio: 1 / 1;
  position: relative;
  perspective: 600px;
  font-size: 30%; /* this sets the base unit for em */
}

.star-helper {
  width: 110%;
  height: 110%;
  transform-style: preserve-3d;
  transform-origin: center;
  position: relative;
}

.shape-star.animate .star-helper {
  animation: rotateStar 0.6s infinite linear;
}

.star-helper > div {
  width: 50%;
  height: 50%;
  position: absolute;
  overflow: hidden;
}

.star-helper > div:nth-child(1) { inset-block-start: 0; inset-inline-start: 0; }
.star-helper > div:nth-child(2) { inset-block-start: 0; inset-inline-end: 0; }
.star-helper > div:nth-child(3) { inset-block-end: 0; inset-inline-start: 0; }
.star-helper > div:nth-child(4) { inset-block-end: 0; inset-inline-end: 0; }

.star-helper > div:before {
  content: "";
  display: block;
  width: 200%;
  height: 200%;
  position: absolute;
  border-radius: 50%;
}

.star-helper > div:nth-child(1):before { bottom: 0; right: 0; box-shadow: 0.5em 0.5em 20em 20em #810201; }
.star-helper > div:nth-child(2):before { bottom: 0; left: 0; box-shadow: -0.5em 0.5em 20em 20em #810201; }
.star-helper > div:nth-child(3):before { top: 0; right: 0; box-shadow: 0.5em -0.5em 20em 20em #810201; }
.star-helper > div:nth-child(4):before { top: 0; left: 0; box-shadow: -0.5em -0.5em 20em 20em #810201; }

@keyframes rotateStar {
  0% {
    transform: rotateX(0deg) rotateY(0deg);
  }
  50% {
    transform: rotateX(180deg) rotateY(0deg);
  }
  100% {
    transform: rotateX(180deg) rotateY(180deg);
  }
}






.shape-triangle {
  width: 15%;
  aspect-ratio: 1 / 1;
  position: relative;
  perspective: 600px;
  transform-style: preserve-3d;
}

.shape-triangle::before {
  content: '';
  position: absolute;
  inset: 0;
  background: #810201;
  clip-path: polygon(50% 6.7%, 0% 93.3%, 100% 93.3%);
  transform-origin: center 55%; /* Slight tweak for better base rotation */
}

.shape-triangle.animate::before {
  animation: rotateTriangle 0.6s infinite linear;
}

@keyframes rotateTriangle {
  0% {
    transform: rotateX(0deg) rotateZ(0deg);
  }
  33% {
    transform: rotateX(60deg) rotateZ(-120deg);
  }
  66% {
    transform: rotateX(60deg) rotateZ(-240deg);
  }
  100% {
    transform: rotateX(0deg) rotateZ(-360deg);
  }
}







/* Show only on mobile (max-width: 768px) */
.only-mobile {
  display: none !important;
}
@media (max-width: 768px) {
  .only-mobile {
    display: block !important;
  }
	.wp-block-site-logo {
		margin-top: 1em !important;
		margin-bottom: 0 !important;
	}
}
/* Hide on mobile (max-width: 768px) */
@media (max-width: 768px) {
  .not-mobile {
    display: none !important;
  }
}



.mobile-carousel li {
	width: 812.75px !important;
}

.mobile-carousel .slides {
  zoom: 2;
}

.mobile-carousel .slides img,
.mobile-carousel .flex-viewport {
	height: unset !important;
}

.metaslider-home-bottom {
padding-bottom: 0 !important;
}