.elementor-kit-4{--e-global-color-primary:#0BB4AF;--e-global-color-secondary:#404040;--e-global-color-text:#141A1F;--e-global-color-accent:#0DACA7;--e-global-color-3d1a77f:#FFFFFF;--e-global-color-7f7c229:#FFFFFF00;--e-global-color-7e285f0:#404040;--e-global-color-e3a8697:#4A4A4A;--e-global-color-3812e8e:#191919;--e-global-color-2cd886a:#939393;--e-global-color-423e07b:#B7B7B7;--e-global-typography-primary-font-family:"Hanken Grotesk";--e-global-typography-primary-font-weight:900;--e-global-typography-primary-line-height:1.1em;--e-global-typography-secondary-font-family:"Hanken Grotesk";--e-global-typography-secondary-font-weight:400;--e-global-typography-secondary-line-height:1.1em;--e-global-typography-text-font-family:"Hanken Grotesk";--e-global-typography-text-font-size:17px;--e-global-typography-text-font-weight:400;--e-global-typography-text-line-height:1.2em;--e-global-typography-accent-font-family:"Hanken Grotesk";--e-global-typography-accent-font-weight:500;--e-global-typography-efbd8d1-font-family:"Hanken Grotesk";--e-global-typography-efbd8d1-font-size:17px;--e-global-typography-efbd8d1-font-weight:400;--e-global-typography-efbd8d1-text-transform:uppercase;--e-global-typography-0d8c15a-font-family:"Hanken Grotesk";--e-global-typography-0d8c15a-font-size:clamp(20px, 1.823vw, 35px);--e-global-typography-0d8c15a-font-weight:200;--e-global-typography-0d8c15a-text-transform:uppercase;--e-global-typography-a82beba-font-family:"Hanken Grotesk";--e-global-typography-a82beba-font-size:clamp(30px, 3vw, 55px);--e-global-typography-a82beba-font-weight:900;--e-global-typography-a82beba-text-transform:uppercase;--e-global-typography-2e7ad06-font-family:"Hanken Grotesk";--e-global-typography-2e7ad06-font-size:22px;--e-global-typography-2e7ad06-font-weight:300;--e-global-typography-2e7ad06-line-height:1.2em;background-color:var( --e-global-color-text );}.elementor-kit-4 e-page-transition{background-color:#FFBC7D;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1700px;}.e-con{--container-max-width:1700px;}.elementor-widget:not(:last-child){margin-block-end:30px;}.elementor-element{--widgets-spacing:30px 30px;--widgets-spacing-row:30px;--widgets-spacing-column:30px;}{}h1.entry-title{display:var(--page-title-display);}.site-header .site-branding{flex-direction:column;align-items:stretch;}.site-header{padding-inline-end:0px;padding-inline-start:0px;}.site-footer .site-branding{flex-direction:column;align-items:stretch;}@media(max-width:1024px){.elementor-kit-4{--e-global-typography-0d8c15a-font-size:6vw;--e-global-typography-a82beba-font-size:6vw;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1024px;}.e-con{--container-max-width:1024px;}}@media(max-width:767px){.elementor-kit-4{--e-global-typography-0d8c15a-font-size:8vw;--e-global-typography-a82beba-font-size:7vw;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:767px;}.e-con{--container-max-width:767px;}}/* Start custom CSS */p:last-child {
    margin-bottom: 0px;
}

.elementor-icon-wrapper {
    line-height: 0;
}

/* Card base */
.trstimonials-item{
  position: relative;
  overflow: hidden;
  border: 1px solid #292929;
  border-radius: 10px;
  background-color: #1b1b1b;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
  will-change: transform;
  transform: translateZ(0); /* evita jank al hacer scale */
}


/* Hover de la card */
.trstimonials-item:hover{
  transform: scale(1.03);
  box-shadow: 0 0 12px rgba(16, 216, 210, 0.35);
  background-color: transparent; /* si no querés que cambie, quitá esta línea */
}

/* Brillo diagonal animado (está debajo del contenido) */
.trstimonials-item::after{
  content: '';
  position: absolute;
  top: -75%;
  left: -85%;
  width: 180%;
  height: 200%;
  background: linear-gradient(120deg, transparent, rgba(16, 216, 210, 0.2), transparent);
  transform: rotate(25deg);
  transition: transform 0.5s ease; /* definida en estado base → simétrico al entrar/salir */
  pointer-events: none;
  z-index: 0;

}

/* Estado hover del brillo (solo cambia transform) */
.trstimonials-item:hover::after{
  transform: rotate(180deg);
    filter: blur(2px);
}

/* Respeto a usuarios con reduced motion */
@media (prefers-reduced-motion: reduce){
  .trstimonials-item,
  .trstimonials-item::after{
    transition: none;
  }
}


/* ====== Fondo oblicuo tipo “cuadrado” con gradiente radial gris-negro + borde animado ====== */

.seccion-oblicua{
  --angle: 40deg;               
  --left-start: -50%;          /* posición inicial, ajustá para colocar la línea oblicua aprox. al 75% */
  --left-end: 15%;             /* posición final en hover (desplazamiento horizontal real) */
  --bg: transparent;           
  --gradiente: radial-gradient(circle at center, #222 0%, #111 85%);
  --borde: #555;               /* color del borde normal */
  --glow: #0DACA7;             /* color del brillo en hover */

  position: relative;
  overflow: hidden;
  background: var(--bg);
  isolation: isolate;

  border: 1px solid var(--borde);
  border-radius: 15px;
  transition: border-color .4s ease, box-shadow .4s ease;
}

/* Efecto hover: desaparece el borde y aparece el glow */
.seccion-oblicua:hover{
  border-color: transparent;
  box-shadow: 0 0 10px 1px var(--glow);
}

/* Capa oblicua */
.seccion-oblicua::before{
  content: "";
  position: absolute;

  width: 160%;
  height: 350%;
  top: -30%;
  left: var(--left-start);
  background: var(--gradiente);
  z-index: 0;

  transform: rotate(var(--angle));
  transform-origin: center center;

  transition: left .65s cubic-bezier(.22,.61,.36,1);
  will-change: left;
}

/* Hover: desplazamiento recto hacia la derecha */
.seccion-oblicua:hover::before{
  left: var(--left-end);
}

/* Menos movimiento si el usuario lo prefiere */
@media (prefers-reduced-motion: reduce){
  .seccion-oblicua::before{
    transition: none;
  }
}

/* Responsivo */
@media (max-width: 767px){
  .seccion-oblicua{
    --left-start: -10%;
    --left-end: 10%;
  }
}

/* ====== Imagen que crece con el hover del contenedor ====== */
.imagen-grow{
  transition: transform .5s ease;
  transform: scale(1);
  will-change: transform;
}

/* Hover sobre el contenedor */
.seccion-oblicua:hover .imagen-grow{
  transform: scale(1.05);
}


.mail-link:hover, .phone-link:hover , .mail-link:hover .elementor-heading-title a {
    color: #10D8D2;
    text-shadow: 0 0 8px #10D8D2;
}

.button-icon .elementor-button-icon {
  opacity: 0;
  transform: rotate(-45deg);
  transition: transform .3s ease, opacity .3s ease;
}

.button-icon:hover .elementor-button-icon {
  opacity: 1;
  transform: rotate(90deg);
}/* End custom CSS */