body, html {
	overflow-x: hidden!important;
}

html {
	font-size: 62.5%!important;
}

.entry-title{
	display: none!important;
}

.jcq{
    text-justify: inter-word;
  hyphens: auto;
  text-align-last: center; 
}

.glass {
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px); /* for Safari */
}

.gradmovgbl{
    background-size: 800% 800%;
    animation: moveLeft 12s ease infinite;
}

.mixedgd{
	 background: linear-gradient(45deg, #57a97b, #395b8f, #57a97b, #395b8f);
}

.bluegd{
	background: linear-gradient(90deg, #273361, #76abba, #273361, #76abba);
}

.greengd{
	background: linear-gradient(90deg, #62B284, #026038,#62B284, #026038 );
}

.gradmovgbr{
    background-size: 800% 800%;
    animation: moveRight 12s ease infinite;

}

@keyframes moveRight {
    0%{background-position:0% 10%}
    50%{background-position:100% 91%}
    100%{background-position:0% 10%}
}

@keyframes moveLeft {
    0%{background-position:0% 91%}
    50%{background-position:100% 10%}
    100%{background-position:0% 91%}
}

/* Hide pointer inside .customc sections */
.customc:hover, .e-gallery-item:hover, .circle-cursor:hover{
  cursor: none;
}

@media (max-width: 768px){
.cursor-explore, .cursor-circle{
	display: none;
}
}

.cursor-explore {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(0.6); /* start smaller */
  
  /* Glassmorphism background */
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  /* Spacing & shape */
  padding: 8px 16px;
  border-radius: 50px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);

  /* Animation */
  opacity: 0;
  transition: transform 0.5s ease, opacity 0.25s ease;
  z-index: 9999;
}

.cursor-explore.active {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1); /* grow to normal size */
}

/* Text styling */
.cursor-explore .cc-text {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 12px;
  color: #666666;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: -2px;
}

.cursor-circle {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(0); /* start smaller */
  
  /* Glassmorphism background */
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);

  /* Spacing & shape */
  height: 10px;
  width: 10px;
  border-radius: 50%;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);

  /* Animation */
  opacity: 0;
  transition: transform 0.5s ease, opacity 0.25s ease;
  z-index: 99;
}

.cursor-circle.active {
  opacity: 1;
  transform: translate(-50%, -50%) scale(2); /* grow to normal size */
}

@media (max-width:1300px){
.acc {
	display: none;
}
}

.greengrad a:hover{
	transform: scale(1.03);
    background: linear-gradient(90deg, #62B284, #026038,#62B284, #026038 );
    background-size: 400% 400%;
    animation: gradmove 5s ease;
}

.bluegrad a:hover{
    transform: scale(1.03);
    background: linear-gradient(90deg, #395B8F, #273361,#395B8F, #273361);
    background-size: 400% 400%;
    animation: AnimationName 5s ease;
}

.mixedgrad a:hover{
	transform: scale(1.03);
    background: linear-gradient(90deg, #62B284, #273361,#62B284, #273361);
    background-size: 400% 400%;
    animation: AnimationName 5s ease;
}

.bluebckganim {
  background: linear-gradient(
    45deg,
    #273361 0%,
    #76ABBA 50%,
    #273361 100%
  );
  background-size: 200% 100%;
  animation: bkgmove 10s ease infinite;
}

.greenbckganim {
  background: linear-gradient(
    45deg,
    #62B284 0%,
    #026038 50%,
    #62B284 100%
  );
  background-size: 200% 100%;
  animation: bkgmove2 10s ease infinite;
}

.mixedbckganim {
  background: linear-gradient(
    45deg,
    #57a97b 0%,
    #76ABBA 50%,
    #57a97b 100%
  );
  background-size: 200% 100%;
  animation: bkgmove 10s ease infinite;
}

@keyframes bkgmove {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes bkgmove2 {
  0%   { background-position: 100% 50%; }
  50%  { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}

@keyframes gradmove {
    0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 100% 50%;
  }
}

.scroll-appear-section {
  opacity: 0;
  transition: none; /* driven by JS */
}

.anim-cta-wrapper{
    height: 50px;
}

.anim-cta {
 padding: 12px 18px;
 transition: all 0.2s ease;
 border: 1px solid #b2b2b2;
 background-color: #f6f6f6;
 border-radius: 50px;
 color: #666666;
}

.anim-cta:hover{
    background: none;
    border: none;
}

.anim-cta:before {
 content: "";
 position: absolute;
 top: 0;
 left: 0;
 display: block;
 border-radius: 50px;
 background: #b1dae7;
 width: 55px;
 height: 55px;
 transition: all 0.3s ease;  
}

.mixed-cta .anim-cta:before{
	background: linear-gradient(90deg, #395b8f, #89d5ad);
	background-size: 200% 100%;
}

.blue-cta .anim-cta:before{
	background: linear-gradient(90deg, #273361, #76abba);
	background-size: 200% 100%;
}

.green-cta .anim-cta:before{
	background: linear-gradient(90deg, #62B284, #026038);
	background-size: 200% 100%;
}

.anim-cta:hover:before {
 width: 100%;
 animation: moveLeft 8s ease infinite;
}

.anim-cta a{
    color: #666666;
    transition: color 0.5s ease;
    margin-left: 30px;
    margin-right: 10px;
}

.anim-cta:hover a{
    color: white;
}

.anim-cta span {
 position: relative;
 font-family: "Montserrat", sans-serif;
 font-size: 2rem;
 font-weight: 600;
}

.anim-cta svg {
 position: relative;
 top: 0;
 margin-left: 10px;
 fill: none;
 stroke-linecap: round;
 stroke-linejoin: round;
 stroke: white;
 stroke-width: 2;
 transform: translateX(-8px);
 transition: all 0.3s ease;
}

.anim-cta:hover svg {
 transform: translateX(0) scale(1.5);
}

.anim-cta:active {
 transform: scale(0.95);
}

.overlay-move .elementor-motion-effects-layer::before, .overlay-move::before{
	background-size: 200% 100%;
	animation: moveLeft 10s ease infinite;
}

.mixed-button button:hover{
	transform: scale(1.03);
    background: linear-gradient(45deg, #395b8f, #89D5AD,#395b8f, #89D5AD );
    background-size: 400% 400%;
    animation: AnimationName 5s ease infinite;
}

.green-button button:hover{
	transform: scale(1.03);
    background: linear-gradient(45deg, #62B284, #026038,#62B284, #026038);
    background-size: 400% 400%;
    animation: AnimationName 5s ease infinite;
}

.blue-button button:hover{
	transform: scale(1.03);
    background: linear-gradient(45deg, #273361, #76abba,#273361, #76abba );
    background-size: 400% 400%;
    animation: AnimationName 5s ease infinite;
}

.bckg-move{
  background-size: auto 100%; /* adjust as needed */
  animation: move-bg 15s linear infinite;
}

@keyframes move-bg {
  0% {
    background-position: 0 0;
  }
  50% {
    background-position: -100px 0; /* negative shifts to the left */
  }
}

.ss-box::after{
    content: '';
    inset: 0;
    position: absolute;
    z-index: -1;
    border-radius: inherit;
    width: 100%;
    height: 100%;
    background: linear-gradient(
    45deg,
    #273361 0%,
    #76ABBA 50%,
    #273361 100%
  );
  background-size: 200% 100%;
  animation: bkgmove 10s ease infinite;
  transition: transform 0.5s ease;
}

.ss-box:hover::after{
    transform: rotate(4deg);
}

.ss-box:hover .s-icon{
    background: linear-gradient(
    90deg,
    #273361 0%,
    #76ABBA 50%,
    #273361 100%
  );
  background-size: 200% 100%;
  animation: bkgmove 10s ease infinite;
  transform: scale(1.05);
}


.dm-box::after{
    content: '';
    inset: 0;
    position: absolute;
    z-index: -1;
    border-radius: inherit;
    width: 100%;
    height: 100%;
    background: linear-gradient(
    45deg,
    #62B284 0%,
    #026038 50%,
    #62B284 100%
  );
  background-size: 200% 100%;
  animation: bkgmove 10s ease infinite;
  transition: transform 0.5s ease;
}

.dm-box:hover::after{
    transform: rotate(-4deg);
}

.dm-box:hover .s-icon{
    background: linear-gradient(
    90deg,
    #62B284 0%,
    #026038 50%,
    #62B284 100%
  );
  background-size: 200% 100%;
  animation: bkgmove 10s ease infinite;
  transform: scale(1.05);
}



.sbanner:has(.sector-form:focus-within)::before {
  transition: opacity 1s ease;
  opacity: 0.85;
  animation: moveLeft 5s ease infinite;
  
}

.sbanner:has(.sector-form:focus-within) {
  transition: background-size 1s ease!important;
  background-size: 120%!important;
  
}

.fade-edge{
	-webkit-mask-image: linear-gradient(to right, transparent 0%, black 15%, black 85%, transparent 100%);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-image: linear-gradient(to right, transparent 0%, black 15%, black 85%, transparent 100%);
  mask-repeat: no-repeat;
  mask-size: 100% 100%;
}

.float{
    animation: float 8s ease-in-out infinite;
}

@keyframes float {
  0%   { transform: translate(0, 0); }
  25%  { transform: translate(-6px, 10px); }
  50%  { transform: translate(4px, 6px); }
  75%  { transform: translate(-3px, 6px); }
  100% { transform: translate(0, 0); }
}

/* Continuous shine for hover */
@keyframes shine-loop {
  0%   { background-position: 0% 0; }
  50% { background-position: 100% 0; }
  100% {
      background-position: 0% 0;
  }
}

/* Pulse scale */
@keyframes grow-shrink {
  0%   { transform: scale(1); }
  20%  { transform: scale(1.05); }
  40%  { transform: scale(1);}
  100% { transform: scale(1); }
}

/* Shine sweep synced with pulse */
@keyframes shine {
  0% {
    background-position: -200% 0;
  }
  20% {
    opacity: 1;
    background-position: 100% 0;
  }
  100% {
    opacity: 0;
    background-position: 100% 0;
  }
}

.eye-catch button, .eye-catch a {
  position: relative;
  z-index: 0;
  overflow: hidden;
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;

  /* Base solid color */
  background: #395b8f;

  /* Pulse animation */
  animation: grow-shrink 8s ease-in-out infinite;
}

/* Gradient overlay (behind text) */
.eye-catch button::before, .eye-catch a::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  z-index: -1;

  /* Shine synced with pulse */
  animation: shine 8s ease-in-out infinite;
}

.eye-catch.mixed button::before, .eye-catch.mixed a::before{
	background: linear-gradient(
    120deg,
    #395b8f 0%,
    #89d5ad 50%,
    #395b8f 100%
  );
	background-size: 200% auto;
  background-repeat: no-repeat;
  background-position: -200% 0;
}

.eye-catch.blue button::before, .eye-catch.blue a::before{
	background: linear-gradient(
    120deg,
    #395B8F 0%,
    #76ABBA 50%,
    #395B8F 100%
  );
	background-size: 200% auto;
  background-repeat: no-repeat;
  background-position: -200% 0;
}

.eye-catch.green button::before, 
.eye-catch.green a::before{
	background: linear-gradient(
    120deg,
    #62B284 0%,
    #026038 50%,
    #62B284 100%
  );
	background-size: 200% auto;
  background-repeat: no-repeat;
  background-position: -200% 0;
}

/* Hover: stop pulse, run infinite gradient loop */
.eye-catch button:hover, .eye-catch a:hover {
  animation: none; /* stop grow-shrink */
  transform: scale(1.02);
}

.eye-catch button:hover::before, .eye-catch a:hover::before {
    background-size: 400% auto;
    background-position: 0% 0%;
  animation: shine-loop 12s linear infinite;
  opacity: 1;
}

.eye-catch button:hover, .eye-catch a:hover{
    background-color: transparent!important;
}

.hidden{
	display: none;
}

.fade-edge .elementor-image-carousel-wrapper img{
	width: 150px;
	height: 150px;
	object-fit: contain;
}

.beating{
	 animation: heartbeat 1.5s ease-in-out infinite;
}

.beating2{
	animation: heartbeat 3s ease-in-out infinite;
}

@keyframes heartbeat {
  0% {
    transform: scale(1);
  }
  14% {
    transform: scale(1.05);
  }
  28% {
    transform: scale(1);
  }
  42% {
    transform: scale(1.05);
  }
  70% {
    transform: scale(1);
  }
  100% {
    transform: scale(1);
  }
}

.floatAndShake {
  animation: floatAndShake 5s ease-in-out infinite;
}

@keyframes floatAndShake {
  0% {
    transform: translateY(0);
  }
  20% {
    transform: translateY(-10px);
  }
  30% {
    transform: translateY(-10px) rotate(-2deg);
  }
  40% {
    transform: translateY(-10px) rotate(2deg);
  }
  50% {
    transform: translateY(-10px) rotate(-2deg);
  }
  60% {
    transform: translateY(-10px) rotate(2deg);
  }
  80% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(0);
  }
}

.magnifier {
  animation: magnifierFloat 5s ease-in-out infinite;
  transform-origin: center;
}

@keyframes magnifierFloat {
  0% {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
  20% {
    transform: translateY(-6px) scale(1.05); /* se eleva */
  }
  30% {
    transform: translateY(-6px) scale(1.1);  /* zoom suave */
  }
  40% {
    transform: translateY(-6px) scale(0.95); /* pequeño rebote */
  }
  50% {
    transform: translateY(-6px) scale(1.05);
  }
  80% {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
  100% {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}

.balance {
  display: inline-block;
  transform-origin: center top; /* punto de giro natural */
  animation: balanceSwing 5s ease-in-out infinite;
}

@keyframes balanceSwing {
  0% {
    transform: rotate(0deg);
  }
  15% {
    transform: rotate(-5deg); /* se inclina a la izquierda */
  }
  30% {
    transform: rotate(5deg);  /* se inclina a la derecha */
  }
  50% {
    transform: rotate(-3deg); /* movimientos cada vez menores */
  }
  70% {
    transform: rotate(2deg);
  }
  100% {
    transform: rotate(0deg);  /* vuelve al centro */
  }
}

.handshake{
	animation: handshake 5s ease-in-out infinite;
}

@keyframes handshake {
  0%   { transform: translateY(0); }
  5%   { transform: translateY(-4px); }
  10%  { transform: translateY(4px); }
  15%  { transform: translateY(-4px); }
  20%  { transform: translateY(4px); }

  /* Pause */
  35%  { transform: translateY(0); }

  /* Second shake */
  40%  { transform: translateY(-4px); }
  45%  { transform: translateY(4px); }
  50%  { transform: translateY(-4px); }
  55%  { transform: translateY(4px); }

  /* Final rest */
  100% { transform: translateY(0); }
}

.heartpulse{
	animation: heartPulse 3s ease-in-out infinite;
}

@keyframes heartPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

@keyframes spinc {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.rotate-infinite {
  animation: spinc 50s linear infinite;
}

.rotate-infinite2 {
  animation: spinc 50s linear infinite reverse;
}

@keyframes bg-scroll-left {
  from {
    background-position: 0 0;
  }
  to {
    background-position: -1000px 0;
  }
}

.bg-scroll {
  background-repeat: repeat-x;
  animation: bg-scroll-left 20s linear infinite;
}

.podcast-grid-horizontal {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5rem;
}

.podcast-video{
    border-radius: 10px;
}

.podcast-title{
    margin-top: 10px;
    margin-bottom: 5px;
    font-family: Montserrat;
    font-size: 1.6rem;
    font-weight: bold;
    color: #666666;
	 display: -webkit-box !important;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal !important; /* Make sure wrapping is allowed */
  line-height: 1.3em;
  max-height: calc(1.3em * 2); /* enforce 2-line box */
}

.podcast-meta{
    color: #83849a;
    font-size: 1.2rem;
}

.podcast-action{
    color: #285e3b;
}

.podcast-action::before{
    content: '↗';
}

.bottom-ppart {
	padding-top: 10px;
    border-top: 2px dotted #285e3b;
    margin-top: 10px;
    font-family: Montserrat;
    font-size: 1.4rem;
    font-weight: 500;
  display: flex;
  flex-direction: row;
  justify-content: space-between; /* spread items */
  align-items: center;            /* center vertically */
  gap: 2rem;
}

.circle-video iframe{
	aspect-ratio: 1/1;
	border-radius: 100%;
}

@media (min-width:768px){
	.video-adjust .elementor-background-video-hosted{
		top: auto !important;               /* Cancel Elementor’s centering */
		left: auto !important;              /* Stop horizontal centering */
		bottom: 0 !important;               /* Stick to bottom */
		right: 0 !important;                /* Stick to right */
		transform: none !important;         /* Remove translate(-50%, -50%) */
		object-fit: cover !important;       /* Keep video covering container */
		object-position: right bottom !important; /* Ensure crop originates from bottom-right */
	}
}



.sube {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.sube.hidden {
  opacity: 0;
  transform: translateY(20px); /* slide from below */
}

@keyframes spinTwice {
  0%   { transform: rotateY(0deg); }
  100% { transform: rotateY(360deg); } /* 2 spins */
}

.qtechq.spin {
    opacity: 1;
  animation: spinTwice 0.6s linear;
}

.qtechq {
  opacity: 0;
  transition: opacity 0.3s ease;
  display: none; /* keep it in flow but invisible */
}

.qtechq.visible {
  opacity: 1;
}

.qtooltip {
  position: relative;
  cursor: pointer;
  font-family: Montserrat, sans-serif;
}

.qtooltip::after {
  content: attr(data-tooltip);
  position: absolute;
  top: 105%; /* shows tooltip under element */
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.85);
  color: #fff;
  font-family: Montserrat, sans-serif;
  padding: 6px 10px;
  border-radius: 6px;
  font-size: 13px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 999;
}

.qtooltip:hover::after {
  opacity: 1;
}
