/*
Marcas
*/

.cliente-item {
    background: var(--main0);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 150px;
    border-radius: 15px;
}

.cliente-item img {
    max-width: 140px;
    max-height: 55px;
}

.client-content {
    width: 260px;
    height: 260px;
    border-radius: 50%;
    border: 1px dashed #d0d0d0e1;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: absolute;
    inset-inline-start: 50%;
    top: 45%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 2;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
}

.client-content .sec-title {
    max-width: 200px;
    width: 100%;
    letter-spacing: 0;
    font-weight: 600;
    margin-bottom: 0;
}


.counter.js-counter.has-image img {
    object-fit: cover;
    position: absolute;
}
.counter.js-counter.has-image {
    padding: 0;
    overflow: hidden;
    position: relative;
}
.counter.js-counter.dark {
    background: #2D3C30;
    color: var(--main2);
}

.intl-tel-input .country-list {
    background: black;
}
.intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-3 .selected-flag {
    width: 100%;
    border-bottom: 1px solid;
}

.intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-3 input, .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-3 input[type=tel], .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-3 input[type=text] {
background: transparent;
    border: 0;
    color: white;
    outline: none;

}

.country-select.inside .selected-flag {
    width: 100%;
}
.country-select.inside input, .country-select.inside input[type=text] {
    background: transparent;
    border: 0;
    border-bottom: 1px solid white;
    color: white;
    width: 100%;
}
.intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-4 input, .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-4 input[type=tel], .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-4 input[type=text] {
    padding-left: 92px;
    background: transparent;
    border: 0;
}
.intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-4 input, .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-4 input[type=tel], .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-4 input[type=text] {
    width: 100%;
    color: white;
    border-bottom: 1px solid;
    outline: none;
}
.country-select .flag-dropdown {
    width: 100%;
}

.country-select .country-list {
    background: black;
}

.intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-2 input, .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-2 input[type=tel], .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-2 input[type=text] {
    width: 100%;
}

.select option {
    color: black;
}

.intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-2 .selected-flag {width: 100%;}

.intl-tel-input.allow-dropdown .flag-container, .intl-tel-input.separate-dial-code .flag-container {
    width: 100%;
}



/*
* Tabs
*/
.pulse {
  animation: pulse-animation 2s infinite;
}

@keyframes pulse-animation {
  0% {
    box-shadow: 0 0 0 0px rgb(255 255 255 / 77%)
  }
  100% {
    box-shadow: 0 0 0 20px rgb(255 255 255 / 27%)
  }
}
/* Contenedor de las vistas de pestañas (padre de los contenidos) */
.tab-viewport { position: relative; }

/* Estado base: oculto */
.main-tab-content,
.nested-tab-content {
  display: none;
  opacity: 0;
  transform: translateX(0);
  transition: opacity .3s ease, transform .3s ease;
}

/* Visible */
.main-tab-content.active,
.nested-tab-content.active {
  display: block;
  opacity: 1;
  transform: translateX(0);
}

/* Aplica a TODOS los contenedores de contenido de tabs */
.main-tab-content,
.nested-tab-content {
  display: none;            /* oculto por defecto */
  opacity: 0;               /* empezar transparente */
  transition: opacity .25s ease; /* animación de opacidad */
}

/* Visible + animable */
.main-tab-content.active,
.nested-tab-content.active {
  display: block;           /* se muestra */
  opacity: 1;               /* se vuelve opaco (fade-in) */
  width: 100%;
}

/* Estado intermedio para el fade-out (se mantiene visible mientras se desvanece) */
.main-tab-content.hiding,
.nested-tab-content.hiding {
  display: block;           /* mantener visible para que se vea el fade-out */
  opacity: 0;               /* desvaneciendo */
}



/*/////////
CONTENT
///////////*/

/* Estilos base de tus tabs */
.main-tabs.vertical {
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-tabs.vertical li {
  position: relative;
  padding: 10px 16px;
  cursor: pointer;

  overflow: hidden; /* para que el after/before no se salga */
  z-index: 1;
}

/* Fondo “relleno” que se animará */
.main-tabs.vertical li::before {
  content: "";
  position: absolute;
  inset: 0;
  /* top:0; right:0; bottom:0; left:0; */
  background: #000000; /* color del relleno */
  transform: scaleX(0);
  transform-origin: left center;
  z-index: -1;
}

/* Estado activo: dispara la animación */
.main-tabs.vertical li.active::before {
  animation: tabFill 0.35s ease-out forwards;
}

/* Keyframes del llenado */
@keyframes tabFill {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}

/* Opcional: cambiar color del texto cuando está activo */
.main-tabs.vertical li.active {
  color: #ffffff; /* texto más oscuro si el fondo es claro */
  font-weight: 600;
}

.sub-tabs.nested-tabs li {
    font-size: 15px;
    background: transparent;
    color: var(--main)!important;!i;!;
    border-right: 1px solid;
}
.tyc li.active span.titulo-tab {
    color: var(--main2);
}
.sub-tabs.nested-tabs li:last-child {
    border: 0;
}

.sub-tabs.nested-tabs li.active {
    font-weight: 600;
    background: #313131;
    color: white !important;
}
.tyc.beneficios li span {

    padding: 15px 0px;
    font-size: 35px;
}
.tyc ul {
    list-style: circle;
    padding-left: 30px;
}

.tyc ul li {
    line-height: 1.3;
}

.tyc p {
    margin-bottom: 6px;
}
.tyc .main-tab-content.active {
  display: block;
  text-align: left;
}
.main-tabs, .nested-tabs {
  list-style: none;
  display: flex;
  padding: 0;
  margin: 0 0 0px;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  text-align: left;
}
.tabs-container {
    display: flex;
    align-items: flex-start;
}
.main-tabs li, .nested-tabs li {
}

.main-tabs li.active, .nested-tabs li.active {
}

.main-tab-content, .nested-tab-content {
  display: none;
  padding: 0;
  border-radius: 5px;
  border: 0;
}

.main-tab-content.active, .nested-tab-content.active {
  display: block;

}





.pos-ab {
    position: absolute;
    bottom: 50px;
    z-index: 100;
    width: 100%;
}
.elementor-widget:not(:last-child) {
    margin-block-end: 0!important;
}
/*
ANIMACION PRELOADER
*/
.menu-opened .header__wrapper-menu.header__datos {
    opacity: 1;
}

.header__wrapper-menu.header__datos {
    opacity: 0;
    transition: .4s ease;
}

.header__datos svg{
    width: 320px;
    height: auto;
}
  
      #Grupo_11228 path {
        stroke: #fff;     /* usa el color del contenedor (negro) */
        stroke-width: 1;          /* grosor del contorno */
        stroke-linecap: round;
        stroke-linejoin: round;

        /* Outline dibujándose */
        stroke-dasharray: 1;
        stroke-dashoffset: 1;
        animation: draw var(--dur) ease forwards;

        /* Relleno al final */
        fill: #fff;
        fill-opacity: 0;
        animation:
          draw var(--dur) ease forwards,
          fillIn .35s linear calc(var(--dur) + .05s) forwards;
      }

      /* Respeto a usuarios con reducción de movimiento */
      @media (prefers-reduced-motion: reduce) {
        #Grupo_11228 path {
          animation: none;
          stroke-dasharray: none;
          stroke-dashoffset: 0;
          fill-opacity: 1;
        }
      }

      @keyframes draw {
        to { stroke-dashoffset: 0; }
      }
      @keyframes fillIn {
        to { fill-opacity: 1; }
      }
}






.bg-fader{overflow:hidden; }
.bg-fader__stack{
  position:absolute; inset:0; z-index:0; pointer-events:none;
}
.bg-fader__content{ position:relative; z-index:1; }

.bg-fader__stack img{
  position:absolute; inset:0; width:100%; height:100%; object-fit:cover;
  opacity:0;
  transition: opacity var(--fade-dur, 800ms) ease;
}
.bg-fader__stack img.is-active{ opacity:1; }

.bg-fader {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100vh;
}

.bg-fader__stack:before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, black, #00000069, black);
    z-index: 1;
}


/*
CAMBIO DE IMAGEN DE FONDO
*/
.card_project .detail_project {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 9;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 50px;
    gap: 20px;
    backdrop-filter: blur(10px);
    color: black;
    opacity: 0;
    visibility: hidden;
    transition: .4s;
}

.item:hover .detail_project {
    opacity:1;
    visibility:visible;
}
.icon_text span {
   
    line-height: 1;
    font-size: 19px;
}
.icon_text img {
    max-width: 30px;
    max-height: 20px;
}
.caracteristicas_project {
    background: var(--main2);
    font-weight: 300;
    padding: 30px 0;
}

.caracteristicas_project .icon_text {
    max-width: 20%;
}

.icon_text small {
    display: block;
}

.icon_text span i {
    display: block;
}
.icon_text {
    display: flex;
    align-items: center;
    gap: 10px;
}
.icon_text svg {
    width: 30px;
    margin-right: 10px;
}
.icon_text p {
}

.card_project {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.imagen-fondo:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #0000003d;
    z-index: 1;
}

.imagen-fondo {}
.listado {
  position: relative;
  left: 0;
  top: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  z-index: 2;
  height: 90vh;
}

.item {
  padding: 2rem;
  cursor: pointer;
  transition: all .3s ease;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  width: 33.333%;
  position: relative;
  border-right: 6px solid black;
}


.item .content h2 {
  font-size: 2rem;
  margin: 0 0 1rem;
}
.item .content p {
  margin: .3rem 0;
  font-size: 0.95rem;
}

/* Imagen de fondo */
.imagen-fondo {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}

.imagen-fondo .bg-change {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 0.6s ease, transform 0.8s ease;
  will-change: opacity, transform;
}

.imagen-fondo .bg-change.active {
  opacity: 1;
  transform: scale(1);
}


/*--------------------------------------------------
    Slowed Pin
---------------------------------------------------*/   
  .contain-text {
    max-width: 490px;
    text-align: center;
    text-transform: uppercase;
}
.slowed-pin {
    padding: 0 50px;
}
/* el contenedor que se pinea ocupa 100vh y centra verticalmente el contenido */
.slowed-text{
  position: relative;
  min-height: 100vh;         /* clave: altura de viewport durante el pin */
  display: flex;             /* centra verticalmente */
  align-items: center;       /* centra verticalmente */
}

/* opcional: limita ancho del texto */
.slowed-text-wrapper{
  max-width: 450px;
}   
    .slowed-pin {
        position:relative;
        overflow: hidden;
    }
    
    .slowed-pin > .pin-spacer {
        pointer-events:none;
    }
    
    .slowed-text {
        position:absolute;
        height:auto;
        min-height:100vh;
        width:100%;
      
        display: flex;
        align-items: center;
        flex-direction: column;
        justify-content: center;
        box-sizing:border-box;
        padding:8vw 20px;
        z-index:1;
        pointer-events:none;
        margin:auto;
        left:0;
        right:0;
    }
    
    .slowed-text-wrapper {
        position:relative;
        display:block;
    }
    
    .slowed-images {
        position: relative;
        top: 0;
        width: 100%;
        height:auto;
        box-sizing:border-box;
        overflow: hidden;
        z-index:0;
        margin:auto;
    }
    .slowed-text-wrapper {
    text-transform: uppercase;
}
    .slowed-image {
        position: relative;
        width: 100%;
        height: auto;
        box-sizing: border-box;
        padding:0 0px;
        margin:150px 0;
        display: flex;
        align-items: flex-start;
        flex-direction: column;
    }
    
    .slowed-image:nth-of-type(2n+2) {
        align-items: flex-end;
    }
    
    .slowed-image img {
    width: auto;
    display: block;
    cursor: pointer;
    width: auto;
    max-height: 430px;
    height: auto;
    display: block;
    cursor: pointer;
    margin-bottom: 10px;
    -webkit-transform: scale(0.95) translateY(30%);
    transform: scale(0.95) translateY(30%);
    }
    
    .rounded-borders .slowed-image img {
        border-radius: 8px;
    }
    

/**
 * MAPA GLOBAL
 * */

.tower-marker:before {
    content: '';
    position: absolute;
    left: -60px;
    top: -70px;
    width: 150px;
    height: 150px;
    background: transparent;
}
 .towers-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  padding: 60px 0;
  min-height: 700px;
  position: relative;
}

 .towers-image {
  width: 100%;
  height: auto;
}
.elementor .towers-image img {
 height: auto;
    max-width: 630px;
}
   
.tower-img {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity .6s ease;
  width: 100%;
}

.tower-img.active {
  opacity: 1;
  z-index: 2;
}

.tower-marker {
  position: absolute;
  width: 20px;
  height: 20px;
  background: #fff;
  border-radius: 50%;
  cursor: pointer;
  transition: transform .3s;
  z-index: 99;
}

.tower-marker:hover {
  transform: scale(1.2);
}

.tower-info {
    width: 400px;
    margin-left: 0;
}

.tower-content {
  display: none;
}

.tower-content.active {
  display: block;
  animation: fadeIn .6s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}


@media(min-width:990px){
    .menu-hamburguesa {
   
}
    span.light-text.display-block {
    display: block;
    }

    .display-none{
        display: none;
    }
    .full-width_col {
    position: inherit;
    }

    .full-width_col.right {
        right: 0;
    }

    .full-width_col.left {
        left: 0;
    }

    .full-width_col > * {
        position: absolute;
        max-width: 45%;
    }

    .full-width_col.right > * {
        right: 0px;
    }

    .full-width_col.left > * {
        left: 0;
    }

}


/*//
exceptions
/////*/
.whatsapp-widget a {
    color: #5b4f4f;
}
.megamenu-description .col-lg-4 {
    padding: 10px 10px 0;
}
.page-template-nosotros path.svg_masthead{
    fill: var(--main0);
}

.single-arts_service .svg_masthead {
    fill: var(--main0);
}

.icon_contact li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0;
}

ul.icon_contact {
    padding: 0;
}

.icon_contact li i {
    background: var(--main2);
    color: white;
    font-size: 15px;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 5px;
}

.map-item .bt_main {
    padding: 15px 10px;
}

.map-item .bt_main:hover {
    background: var(--main);
    color: white;
}
/*////
SECTORES
///////*/
.bg_page-img.for_sectores:before {
    display: none;
}

.bg_page-img.for_sectores {
    background-size: cover;
    background-position: bottom;
}

section.sectores_bl {
    margin-top: -180px;
}
.container_sectores {
    display: flex;
}

.col_sectores {
    flex: 1;
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

.col_sectores:hover .img_sector {
    transform: scale(1.1);
}

.img_sector {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: -1;
    transition: .4s;
}

.content_sector {
    height: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.title_sector h3 {
    font-size: 25px;
    color: white;
    text-align: center;
    line-height: 1.3;
}
.icon_sector img {
    max-width: 80px;
    max-height: 60px;
}
.img_sector:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, black, transparent);
}

/*/////////
ANIMATION 
///////////*/

.item_project:hover img {
    transform: scale(1.1);
}

.cover_project img {
    transition: .4s;
}

.item_project:hover h4{
    transform:translateY(10px);
    
}

.item_project h4{
    transition: .4s ease;
    
}

.block_slider .owl-carousel .owl-stage {
    padding: 20px 0;
}


.section_wave{
    background: var(--main0);
    position: relative;
}

/*///
SEDE
//////*/

.map_text h4 {
    margin: 0;
}
.social-media a {
    display: flex;
    width: 40px;
    color: white;
    height: 40px;
    border-radius: 50%;
    background: var(--main2);
    justify-content: center;
    align-items: center;
}
.map_text {
    padding: 0px 10px 10px;
    max-width: 90%;
    margin-top: -10px;
    position: relative;
    z-index: 2;
}

.map_text p {
    margin-top: 0;
    margin-bottom: 20px;
}

.map_text a {
    background: var(--main2);
    color: white;
    padding: 7px 10px;
    border-radius: 5px;
}


.bt_cta {
    border: 1px solid;
    padding: 10px 20px;
    margin: 0px 20px 0;
    display: inline-block;
    border-radius: 10px;
}

/*/////
NOSOTROS
////////*/

.item_icon img {
    width: auto;
    max-height: 100px;
}

.item_icon p {
 
    margin: 0;
}
.mision_bl .item_icon {
    padding-top: 140px;
}
.item_icon {
    text-align: center;
    padding-bottom: 40px;
    margin-bottom: 40px;
    padding: 40px 0 40px;
}

.green-bg.display-block {
    display: block;
}


.item_icon h5 {

    line-height: 1.2;
 
}

.item_icon button {
    background: transparent;
    border: 0;
    font-size: 13px;
    font-weight: 600;
    color: var(--main2);
    text-decoration: underline;
    cursor:pointer;
}


.map-item h5 {
    color: var(--main2);
    margin-bottom: 0;
}

.bt_main {
    background: var(--main2);
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
}

.separator {margin-bottom: 50px;padding-bottom: 50px;border-bottom: 1px solid #c7c7c7;}

.map-item p {
    margin-top: 0;
}

.separator:last-child {
    margin: 0;
    padding: 0;
    border: 0;
}


/*//
SINGLE PAGE SERVICES
////*/
.icono_servicio {
    position: absolute;
    right: -40px;
    top: 0;
}

.services {
    position: relative;
}

.icono_servicio img {
    opacity: .4;
    width: 200px;
}
.bl_quote {
    position: relative;
}
.content_project h4 {
    color: var(--main-text);
}
.bl_quote:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 45%;
    height: 150%;
    background: var(--main2);
    border-radius: 0px 210px 0px 0px;
}
.same-h {
    min-height: 220px;
}
/*////////
miselanea reasignar
///////*/

.deg-bg {
    background: linear-gradient(180deg, #131A20, #0b414a, #10151e);
    color: white;
}

.bg-main2 {
    background: var(--main2);
}
.bg-gray {
    background: #e1e1e1;
}
.green-text{
    color: var(--main2);
}

.light-text{
  font-weight: 300;
}
.bt-core {
    max-width: 260px;
    text-align: center;
    justify-content: center;
    border-radius: 10px;
}
.big-text {
    font-size: 50px;
}


.size-2 {
    font-size: 50px;
    font-weight: 300;
    line-height: 1.3;
    text-transform: uppercase;
    color: var(--main2);
}

.green-bg {

    font-weight: 700;

}
.icon_s {
    width: 80px;
    height: 70px;
    padding: 0px;
    bottom: 80px;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    background: var(--main0);
}

.icon_s img {
    max-width: 40px;
    max-height: 31px;
}
.size-3 {
    font-size: 35px;
}
.bg-main {
    background: var(--main);
    color: white;
}

.white-text{
    color:white;
}
.hero-text {
    font-size: 45px;
}
    .slider-fullscreen__header {
    max-width: 75%;
}
.sub_bg .split-text__line {
    background: #a6aa20;
    color: white;
    padding: 5px 10px;
    border-radius: 15px;
}
.sub_bg {
    display: inline-block;
}
.subhero-text {
    font-size: 18px;
    color:#DCDCDC;
}


/*///
ATTACHMENT
//////*/
.borde-form {

}
/* Estilos para el campo de archivo */
.input-float__input-file {
  display: none; /* Ocultamos el input de archivo real */
}

.file-upload {
  position: relative;
  display: inline-block;
  padding: 10px 20px;
  background-color: var(--main3);
  color: white;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.file-upload:hover {
  background-color: #0056b3;
}

/* Icono dentro del botÃ³n */
.file-upload .icon-upload {
  margin-left: 10px;
  font-size: 16px;
  vertical-align: middle;
}

.file-upload input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0; /* El input de archivo ocupa el espacio del botÃ³n, pero es invisible */
  cursor: pointer;
}

/* Cambiar color del botÃ³n al hacer clic */
.file-upload:active {
  background-color: #003e75;
}



/*//////
BREADCRUMBS AND HEAD PAGE
///////////*/
.breadcrumbs > .subheading:after {
    content: "\f105";
    font-family: FontAwesome;
    position: absolute;
    right: -11px;
    color: var(--main);
    top: 0;
}

.breadcrumbs > .subheading:last-child:after {
    display: none;
}

.head_page .bg-light {
    background: var(--main);
}

.head_page {

}

.header_default {
    display: flex;
    width: 100%;
}

.headline_breadcrumbs {
    width: 100%;
    height: 100%;
    background-color: transparent;
    left: 0%;
    top: 0;
    margin: 0;
    z-index: 0;
    position: absolute;
}

.container_bread {
    display: flex;
    width: 100%;
    padding: 20px 0;
    align-items: center;
    justify-content: space-between;
    min-height: 100vh;
}

.breadcrumbs {
    position: relative;
    z-index: 2;
    display: flex;
    gap: 15px;
    align-items: center;
    width: 30%;
    line-height: 1;
    padding-top: 9px;
}
.light {
    font-weight: 300;
}
.head_page h1.entry-title {
    font-size: 70px;
    text-transform: inherit;
    margin: 0;
    line-height: 1;
    position: relative;
    z-index: 2;
    color:white;
 
}

.breadcrumbs .subheading {
    margin: 0;
    color: var(--main-text);
    position: relative;
}

.headline_breadcrumbs svg {
    width: 100%;
    height: auto;
}
.text-justify {
    text-align: justify;
}


.img_menu-curtain {

    position: absolute;left: 0;top: 0;width: 100%;height: 100%;background-position: center;background-size: cover;
}

.img_menu-curtain:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: var(--main);
}

.img_menu-curtain:after {

    content:'';
    position:absolute;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 100%;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 9;
}



/*////
HEAD PAGE DEFAULT
////*/
.bg_page-img {
    position: relative;
    height: 100vh;
    background-size: cover;
    background-position: center;
}

.bg_page-img svg {
    position: absolute;
    left: -1%;
    bottom: 0;
    width: 102%;
    height: auto;
    z-index: 3;
}

.bg_page-img img {
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 2;
    width: auto;
    max-width: inherit;
}

.bg_page-img:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    background: #bec300bd;
    width: 100%;
    height: 100%;
    z-index: 3;
}

/*//
MENU HEAD PAGE DEFAULT
(((((((*)))))))/*/

.menu_page .bg__menu {
    background: transparent;
    backdrop-filter: none;
}

.menu_page.header_color-white:not(.header_sticky) .menu > li > a {
    color: var(--main-text);
}

.header_sticky.menu_page {

}

.menu_page.header.bg-dark .menu > li > a {
    color: var(--main-text);
}

.menu_page.header.bg-dark .header__burger-line {
    background: var(--main-text);
}

.menu_page.header_color-white .header__burger-line {
    background: #ffffff;
}


[data-header-logo=header_logo-primary].menu_page .logo__img-primary {
    display: none;
}

.menu_page .logo__img-secondary {
    position: relative;
}
[data-header-logo=header_logo-primary].menu_page .logo__img-secondary {
    opacity: 1;
    visibility: visible;
}



/*/////
HEADER
//////////*/


.opened ul.list-data li {
   
    transform: translateY(0px);
    transition: 0.3s;
}

ul.list-data li{
    opacity: 0;
    transform: translateY(20px);
    transition: 0.3s cubic-bezier(0.55, 0.06, 0.68, 0.19); 
    list-style: none;
    padding: 0;
    padding-left: 40px;
    font-size: 21px;
    color: white;
    display: flex;
    align-items: center;
    line-height: 1.2;
    margin-bottom: 20px;
}


.opened .list-data > li:nth-child(1) {
     opacity: 1;
    transition-delay: .4s;
}

.opened .list-data > li:nth-child(2) {
     opacity: 1;
    transition-delay: .45s;
}

.opened .list-data > li:nth-child(3) {
     opacity: 1;
    transition-delay: .48s;
}
.list-data li img {
    width: 25px;
    margin-right: 20px;
}

/*///
BUTTON
/////*/

.button__icon svg {
    width: 14px;
    height: 14px;
    transform: scale(1);
    transition: .4s;
    fill: white;
}

.button_icon:hover svg {
    transform: scale(1.3);
    fill: var(--main2);
}



/*////
  DOTS PARA SERVICIOS Y ESTILO PARRAFO
  //////*/

.services-contenido ul > li {
    margin-bottom: 20px;
    list-style: none;
    position: relative;
    padding-left: 50px;
}



.services-contenido ul > li:before {
    content: '';
    content: "\e315";
    font-family: "Material Icons";
    font-weight: 400;
    font-style: normal;
    font-size: 24px;
    display: inline-block;
    line-height: 1;
    text-transform: none;
    letter-spacing: normal;
    word-wrap: normal;
    white-space: nowrap;
    direction: ltr;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    -moz-osx-font-smoothing: grayscale;
    position: absolute;
    left: 0;
    top: 0%;
    width: 30px;
    height: 30px;
    background: var(--main2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.services-contenido ul {
    padding: 0;
}

.services-contenido hr {
    border-color: #ffffff;
    box-shadow: none;
    display: block;
    margin: 50px 0;
}
.service_content h3 strong {
    background: var(--main2);
    color: white;
}

.service_content h3 {
    font-weight: 300;
}
/*//////
FOOTER
/////////*/

#page-footer svg.footer-wave {
    fill: var(--main0);
    position: absolute;
    left: 0;
    top: -80px;
    width: 100%;
    height: auto;
    z-index: 99;
}
.social-media {
    display: inline-flex;
    gap: 10px;
    margin-top: 20px;
}

.footer-detail {
    position: absolute;
    top: -10%;
    width: 90%;
    height: auto;
}

.footer-detail path {
    stroke-width: 1px;
    stroke: var(--main2);
}

.info-sede {
    display: flex;
    align-items: center;
    gap: 15px;
}
.info-sede i {
    width: 40px;
    height: 40px;
    background: var(--main2);
    color:white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.info-sede p {
    font-size: 14px;
    width: 80%;
}

.footer__column h4 {
    background: var(--main2);
    display: inline-block;
    padding: 0 20px;
    color: white;
}

.cl_info .social-media {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 10px;
    font-size: 25px;
    margin: 0;
}

.footer__column h5 {
    font-size: 14px;
    margin: 0;
}

.footer__column p {
    margin: 0;
    font-size: 14px;
}

.direc-suc {
    margin-bottom: 20px;
}

.menu_ft {margin-bottom: 20px;}

footer#page-footer a {
    text-decoration: underline;
    font-size: 14px;
    color: var(--main2);
}
/*///
HEADER
////////*/
.bg__menu {
background: transparent;
    backdrop-filter: inherit;
    border-radius: 35px;
    max-width: 95%;
    margin: auto;
}
.bt_outline {
    border: 2px solid!important;
    border-radius: 35px;
    align-items: center;
    margin-left: 20px!important;
}

.bt_outline a {
    padding: 5px 15px!important;
    gap: 10px;
    color: var(--main2)!important;
}

.bt_outline a svg {
    width: 30px;
}

/*///
SUBMENU
//////*/


.submenu{
    position:relative;
}

.submenu ul {
    position: absolute;
    width: auto;
    left:0;
    top:50px;
    padding: 20px 20px;
    color: #333;
    background: var(--main);
    list-style: none;
    visibility: hidden;
    opacity: 0;
    z-index:99;
    transform: translateY(10px);
    -webkit-transform: translateY(10px);
    -moz-transform: translateY(10px);
    -o-transform: translateY(10px);
    -ms-transform: translateY(10px);
    transition: all .3s ease-in-out 0s;
    box-shadow: 0 18px 35px rgb(50 50 93 / 10%), 0 8px 15px rgb(0 0 0 / 7%);
}

.submenu:hover ul {
     visibility: visible;
     opacity: 1;
     transform: translateY(0);
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -o-transform: translateY(0);
    -ms-transform: translateY(0);
    transition-delay: 0.2s;
}


.submenu ul li a {
    padding: 5px 0;
    display: block;
    white-space: nowrap;
    width: 100%;
}



.submenu ul li {
    display: block;
}



/*////
ACORDEON
/////////*/

.tab_title {
    padding: 10px 40px;
    border-radius: 10px;
    cursor: pointer;
    position: relative;
}

.tab_title h4 {
    font-size: 20px;
    padding-right: 60px;
    line-height: 1.3;
    font-weight: 400;
}

.tab_desc {
    padding: 0 50px;
    display: none;
    border-top: 0;
    border-bottom: 0;
}


.active .tab_title{
    border-color: transparent;
}

.active .tab_title h4 {

}

.tab_title::after {
    content: '+';
    position: absolute;
    right: 60px;
    top: 50%;
    font-size: 35px;
    color: var(--main2);
    transform: translateY(-50%);
    transition: transform 0.3s, content 0.3s;
}

.active .tab_title::after {
    color: white;
    content: '-';
    transform: translateY(-50%) rotate(180deg);
}

.text-center .text-left .section__headline {
    margin: inherit;
    margin-top: 15px;
}

/*//
servicios
///*/
.service-box {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-bottom: 30px;
}

.service-box h4, .service-box p {
    margin-bottom: 0!important;
    margin-top: 0!important;
}
.service-section h3 {
    line-height: 1.4;
}

.box-icon img {
    max-width: 28px;
    max-height: 30px;
}

/*///
FORMULARIO HERO
///////*/
.section-masthead__curtain.bg-form {
    z-index: 3;
    background: #ffffff1c;
    backdrop-filter: blur(10px);
    padding: 20px 0;
    position: relative;
    border-radius: 15px;
}

.bg-form .input-float__input_textarea {
    height: 70px;
    min-height: inherit;
}

.bg-form .input-float__input {
    color: white;
    font-size: 14px;
}

.bg-form .input-float__label {
    color: #ffffffc7;
}

.bg-form .input-float__input_focused + .input-float__label, .bg-form .input-float__input_not-empty + .input-float__label {
    font-size: 13px;
    transform: scale(0.8571) translateY(-24px);
    color: #ffffff94;
}

.form__error, .bg-form span.wpcf7-not-valid-tip {
    position: absolute;
    font-size: 10px;
    bottom: 5px;
    right: 0;
    display: none;
}


.input-float__input.wpcf7-not-valid {
    border-color: #ff372899;
}
button.button.button_solid.button_accent-secondary-2.button_fullwidth.wpcf7-form-control.wpcf7-submit:hover {

}

/*/////
SLIDER PROJECTS / SERVICES
///*/
.shape_project {
    position: relative;
}

.content_project {
    width: 100%;
    height: 100%;
    text-align: center;
    

}
.content_project h4 { 
    font-size: 20px;
}


.content_project p {
    opacity: 0;
    visibility: hidden;
}

.cover_project:before {
    content: '';
  
}
.services_block {
    background: var(--main0);
    position: relative;
}

.bg__svg {
    position: absolute;
    bottom: -110px;
    z-index: 0;
    fill: var(--main0);
}
.services_block .owl-item.active {
    opacity: 1;
}

.services_block .owl-item {
    opacity: .4;
    transition: .4s ease;
}
.scroll-image {
    position: relative; /* o absolute si lo prefieres */
    will-change: transform; /* Optimiza el rendimiento al usar transformaciones */
}

.planet__effect.scroll-image {
    transform: translateX(-100%);
    position: absolute;
    left: 0;
    top: -150px;
}
/*///
PLAY
//////*/

div#wpp-fix.play {
    position: absolute;
    left: 45%;
    bottom: 46%;
    width: fit-content;
}

.content-image {
    position: relative;
}

#wpp-fix.shake.play .wpp-link::before {
    background: var(--main2);
}

#wpp-fix.shake.play .wpp-link {
    background: var(--main2);
    box-shadow: 0px 3px 10px #FFEB3B;
    transform: scale(2);
}


/*/
BUtton
//*/

.slider-fullscreen__wrapper-button a.link-arrow {
    border: 0;
    border-radius: 15px;
    background: white;
    padding: 10px 20px;
}
.slider-fullscreen__wrapper-button .button__label {
    padding: 10px 15px;
}
.slider-fullscreen__wrapper-button a.link-arrow:hover .button__icon svg {
    fill: white;
}
.slider-fullscreen__wrapper-button a.link-arrow:hover {
    color: white;
}
.slider-fullscreen__wrapper-button.slider__wrapper-button {
        padding-bottom: 1px;
    margin-top: 20px;
}

.button__icon svg {
    fill: var(--main2);
}

/*////
CTA PLANET
///////////*/

.cta__planet {border-radius: 200px 200px 0px 0;}

.bg_green {
    background: var(--main2);
    color: white;
}

.bg_grenn .green-bg {
    background: var(--main);
    color: white;
}

.bg_green .green-bg {
    background: white;
    color: var(--main2);
}

.isotipo_cta{
        position: absolute;
}



      /* Estilos base */
      #Grupo_11228 path {
        stroke: #fff;     /* usa el color del contenedor (negro) */
        stroke-width: 1;          /* grosor del contorno */
        stroke-linecap: round;
        stroke-linejoin: round;

        /* Outline dibujándose */
        stroke-dasharray: 1;
        stroke-dashoffset: 1;
        animation: draw var(--dur) ease forwards;

        /* Relleno al final */
        fill: #fff;
        fill-opacity: 0;
        animation:
          draw var(--dur) ease forwards,
          fillIn .35s linear calc(var(--dur) + .05s) forwards;
      }

      /* Respeto a usuarios con reducción de movimiento */
      @media (prefers-reduced-motion: reduce) {
        #Grupo_11228 path {
          animation: none;
          stroke-dasharray: none;
          stroke-dashoffset: 0;
          fill-opacity: 1;
        }
      }

      @keyframes draw {
        to { stroke-dashoffset: 0; }
      }
      @keyframes fillIn {
        to { fill-opacity: 1; }
      }
/*////
NAVS REUSABLE
///////*/



div#customNav {
    display: flex;
    justify-content: space-between;
    position: absolute;
    width: 100%;
    left: 0%;
    top: 30%;
    color: white;
    z-index: 99;
}

div#customNav > button {
    background: var(--main2);
    border: 0;
    font-size: 30px;
    color: white;
    cursor: pointer;
    outline: none;
    padding: 0 15px;
    line-height: 1;
    position: absolute;
    width: 55px;
    height: 55px;
    border-radius: 50%;
}

div#customDots > button {
    width: 20px;
    border-radius: 50%;
    margin: 0 3px;
    background: transparent;
    border: 0;
    display: grid;
    place-content: center;
    outline: none;
    cursor: pointer;
}

div#customDots > button span {
    border: 3px solid white;
    display: block;
    width: 13px;
    height: 13px;
    border-radius: 50%;
}

div#customDots {
    display: flex;
    position: relative;
    align-items: center;
    z-index: 2;
    background: var(--color-accent-primary-1);
    padding: 10px;
    border-radius: 5px;
    display: none;
}

div#customDots > button.active span {
    background: white;
}


div#customNav > button.owl-prev {
    left: 80px;
}

div#customNav > button.owl-next {
    right: 80px;
    left: auto;
}
/*////////
LOGO CLIENTES
///////////*/

.logo_clientes img {
    max-width: 135px;
    max-height: 60px;
    filter: grayscale(1);
}

.logo_clientes {
    display: flex;
    align-items: center;
    margin: auto;
    justify-content: center;
    min-height: 60px;
}





/*////
COMPONENT ICON + BOX
////////*/

.item_icon_text {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.box-icon {width: 45px;}

.box-text{
    font-size:130%;
    max-width: 85%;
    line-height: 1.2;
}

/*///////
ICON I SOCIAL
///////*/
.social {
    list-style-type: none;
    padding: 0;
    margin: 0;
    margin-left: 0;
    margin-right: 0;
    padding-right: 20px;
    display: flex;
    gap: 10px;
}

.menu > li:nth-child(4):after {
    display: none;
}
.popup-content {
    display: none;
}
a.bt-main {
    background: var(--main2);
    color: #333 !important;
    padding: 7px 20px;
    border-radius: 30px;
    margin: 15px;
}
.social li {
    display: flex;
    align-items: center;
    line-height: 1.3;
    gap: 11px;
    margin-bottom: 0;
    
    color: #fff;
        overflow-wrap: normal;
}

.social li i{
    color: var(--main2);
}



/*///////
MEGAMENU
/////////*/
.menu_servicio img {
    max-height: 60px;
    max-width: 65px;
}
.sub-megamenu.short {
    width: 85%;
    left: 7.5%;
    border-radius: 35px;
    padding: 0px 30px 10px;
}
.content-title h3 {
    margin-top: 0;
    font-weight: 300;
}
.menu_servicio p {
    font-weight: 600;
    line-height: 1.2;
}

.menu_servicio {
    text-align: center;
}

.sub-megamenu {
    color: var(--main);
    position: fixed;
    top: 100px;
    left: 0;
    width: 100%;
    background: white;
    padding: 30px 80px;
    display: none;
}

.title-with-icon {
    display: flex;
    align-items: center;
    gap: 30px;
}


.title-with-icon h5 {
    font-size: 15px;
}

.sub-megamenu h5 {
    font-size: 15px;
}

.sub-megamenu p {
    font-size: 14px;  
}

.sub-megamenu h4 {
    font-size: 20px;
}

.megamenu-description {
    padding-top: 20px;
}

.menu_horizontal .menu{
    text-align: left;
}
.menu_horizontal {
display: flex;
    align-items: center;
    padding: 0 40px;
    border-radius: 15px;
    overflow: hidden;
}
.megamenu-link i {
    font-size: 14px;
    margin-left: 3px;
}

.bt-core {
    padding: 10px 10px;
}
.menu-opened [data-header-logo=header_logo-primary] .logo__img-primary {
    opacity: 0;
    visibility: hidden;
}

.menu-opened [data-header-logo=header_logo-primary] .logo__img-secondary {
    opacity: 1;
    visibility: visible;
}

.menu-opened .header_color-white:not(.header_sticky) .menu > li > a {
    color: var(--main-text);
}

.menu-opened .bg__menu {

}
/*/////
OVERLAY
///////*/
.overlay-active overlay {
    position: fixed;
    background: #000000c4;
    width: 100%;
    height: 100%;
    z-index: 99;
    left: 0;
    top: 0;
    backdrop-filter: blur(2px);
}

.overlay-active {
    overflow: hidden;
}

/*////
BOX  SERVICES
///////*/


        .custom-item {
            background-color: #343E48;
            padding: 20px;
            border-radius: 10px;
            color: #ffffff;
            position: relative;
            border: 1px solid #4d5f70;
            transition: .4s ease;
            min-height: 170px;
        }

        .custom-item .icon-container {
            position: absolute;
            top: -20px;
            right: 20px;
            width: 80px;
            height: 80px;
            background-color: #343e48;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 2px solid var(--main2);
        }

        .custom-item .icon-container img {
            width: 50%;
        }

        .custom-item h3 {
            font-size: 1rem;
            color: white;
            font-weight: 500;
            padding-right: 90px;
        }

        .custom-item p {
            margin-bottom: 20px;
            font-size: 15px;
            color: #a5a5a5;
                display: none;
        }

        .custom-item .btn-info {
            background-color: var(--main2);
            border: none;
            border-radius: 20px;
            color: #ffffff;
            padding: 10px 20px;
            text-transform: uppercase;
            font-size: 11px;
            position: absolute;
            opacity: 0;
            visibility: hidden;
            transition: .4s ease;
            transform: translateY(10px);
        }

      .custom-item .more_link {
          position: absolute;
          right: 10px;
          bottom: 10px;
          display: block;
      }

      .custom-item a img {
          width: 40px;
      }
      .custom-item:hover .btn-info {
          opacity: 1;
          visibility: visible;
          transform: translateY(0px);
      }

      .custom-item:hover {
          background: #495867;
          border-color: var(--main2);
      }
      .enfatic-text{
          font-weight: 300;
      }

.aside-logos__wrapper-logo img {
    max-height: 90px;
    max-width: 211px;
}
/*/////
WIDGET WHATSAPP
//////*/
.hero-img .art-parallax__wrapper {
    top: -50%;
}


.whatsapp-widget {
    position: fixed;
  
    background-color: white;
    color: black;
    border: 1px solid #ddd;
    padding: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    width: 480px;
    border-radius: 10px;
 
    right: 20px;
    bottom: 10px;
    padding: 0;
    z-index: 999;
}



.hidden {
  display: none;
}




/* Animations */
@-webkit-keyframes wiggle {
  0% {
    -webkit-transform: rotate(-3deg);
    -moz-transform: rotate(-3deg);
    -ms-transform: rotate(-3deg);
    -o-transform: rotate(-3deg);
    transform: rotate(-3deg);
  }
  20% {
    -webkit-transform: rotate(20deg);
    -moz-transform: rotate(20deg);
    -ms-transform: rotate(20deg);
    -o-transform: rotate(20deg);
    transform: rotate(20deg);
  }
  40% {
    -webkit-transform: rotate(-15deg);
    -moz-transform: rotate(-15deg);
    -ms-transform: rotate(-15deg);
    -o-transform: rotate(-15deg);
    transform: rotate(-15deg);
  }
  60% {
    -webkit-transform: rotate(5deg);
    -moz-transform: rotate(5deg);
    -ms-transform: rotate(5deg);
    -o-transform: rotate(5deg);
    transform: rotate(5deg);
  }
  90% {
    -webkit-transform: rotate(-1deg);
    -moz-transform: rotate(-1deg);
    -ms-transform: rotate(-1deg);
    -o-transform: rotate(-1deg);
    transform: rotate(-1deg);
  }
  100% {
    -webkit-transform: rotate(0);
    -moz-transform: rotate(0);
    -ms-transform: rotate(0);
    -o-transform: rotate(0);
    transform: rotate(0);
  }
}
@-moz-keyframes wiggle {
  0% {
    -webkit-transform: rotate(-3deg);
    -moz-transform: rotate(-3deg);
    -ms-transform: rotate(-3deg);
    -o-transform: rotate(-3deg);
    transform: rotate(-3deg);
  }
  20% {
    -webkit-transform: rotate(20deg);
    -moz-transform: rotate(20deg);
    -ms-transform: rotate(20deg);
    -o-transform: rotate(20deg);
    transform: rotate(20deg);
  }
  40% {
    -webkit-transform: rotate(-15deg);
    -moz-transform: rotate(-15deg);
    -ms-transform: rotate(-15deg);
    -o-transform: rotate(-15deg);
    transform: rotate(-15deg);
  }
  60% {
    -webkit-transform: rotate(5deg);
    -moz-transform: rotate(5deg);
    -ms-transform: rotate(5deg);
    -o-transform: rotate(5deg);
    transform: rotate(5deg);
  }
  90% {
    -webkit-transform: rotate(-1deg);
    -moz-transform: rotate(-1deg);
    -ms-transform: rotate(-1deg);
    -o-transform: rotate(-1deg);
    transform: rotate(-1deg);
  }
  100% {
    -webkit-transform: rotate(0);
    -moz-transform: rotate(0);
    -ms-transform: rotate(0);
    -o-transform: rotate(0);
    transform: rotate(0);
  }
}
@-o-keyframes wiggle {
  0% {
    -webkit-transform: rotate(-3deg);
    -moz-transform: rotate(-3deg);
    -ms-transform: rotate(-3deg);
    -o-transform: rotate(-3deg);
    transform: rotate(-3deg);
  }
  20% {
    -webkit-transform: rotate(20deg);
    -moz-transform: rotate(20deg);
    -ms-transform: rotate(20deg);
    -o-transform: rotate(20deg);
    transform: rotate(20deg);
  }
  40% {
    -webkit-transform: rotate(-15deg);
    -moz-transform: rotate(-15deg);
    -ms-transform: rotate(-15deg);
    -o-transform: rotate(-15deg);
    transform: rotate(-15deg);
  }
  60% {
    -webkit-transform: rotate(5deg);
    -moz-transform: rotate(5deg);
    -ms-transform: rotate(5deg);
    -o-transform: rotate(5deg);
    transform: rotate(5deg);
  }
  90% {
    -webkit-transform: rotate(-1deg);
    -moz-transform: rotate(-1deg);
    -ms-transform: rotate(-1deg);
    -o-transform: rotate(-1deg);
    transform: rotate(-1deg);
  }
  100% {
    -webkit-transform: rotate(0);
    -moz-transform: rotate(0);
    -ms-transform: rotate(0);
    -o-transform: rotate(0);
    transform: rotate(0);
  }
}
@keyframes wiggle {
  0% {
    -webkit-transform: rotate(-3deg);
    -moz-transform: rotate(-3deg);
    -ms-transform: rotate(-3deg);
    -o-transform: rotate(-3deg);
    transform: rotate(-3deg);
  }
  20% {
    -webkit-transform: rotate(20deg);
    -moz-transform: rotate(20deg);
    -ms-transform: rotate(20deg);
    -o-transform: rotate(20deg);
    transform: rotate(20deg);
  }
  40% {
    -webkit-transform: rotate(-15deg);
    -moz-transform: rotate(-15deg);
    -ms-transform: rotate(-15deg);
    -o-transform: rotate(-15deg);
    transform: rotate(-15deg);
  }
  60% {
    -webkit-transform: rotate(5deg);
    -moz-transform: rotate(5deg);
    -ms-transform: rotate(5deg);
    -o-transform: rotate(5deg);
    transform: rotate(5deg);
  }
  90% {
    -webkit-transform: rotate(-1deg);
    -moz-transform: rotate(-1deg);
    -ms-transform: rotate(-1deg);
    -o-transform: rotate(-1deg);
    transform: rotate(-1deg);
  }
  100% {
    -webkit-transform: rotate(0);
    -moz-transform: rotate(0);
    -ms-transform: rotate(0);
    -o-transform: rotate(0);
    transform: rotate(0);
  }
}
@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.6);
    -moz-transform: scale(1.6);
    -ms-transform: scale(1.6);
    -o-transform: scale(1.6);
    transform: scale(1.6);
  }
  100% {
    -webkit-transform: scale(1.7);
    -moz-transform: scale(1.7);
    -ms-transform: scale(1.7);
    -o-transform: scale(1.7);
    transform: scale(1.7);
    opacity: 0;
  }
}
@-moz-keyframes pulse {
  0% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.6);
    -moz-transform: scale(1.6);
    -ms-transform: scale(1.6);
    -o-transform: scale(1.6);
    transform: scale(1.6);
  }
  100% {
    -webkit-transform: scale(1.7);
    -moz-transform: scale(1.7);
    -ms-transform: scale(1.7);
    -o-transform: scale(1.7);
    transform: scale(1.7);
    opacity: 0;
  }
}
@-o-keyframes pulse {
  0% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.6);
    -moz-transform: scale(1.6);
    -ms-transform: scale(1.6);
    -o-transform: scale(1.6);
    transform: scale(1.6);
  }
  100% {
    -webkit-transform: scale(1.7);
    -moz-transform: scale(1.7);
    -ms-transform: scale(1.7);
    -o-transform: scale(1.7);
    transform: scale(1.7);
    opacity: 0;
  }
}
@keyframes pulse {
  0% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.6);
    -moz-transform: scale(1.6);
    -ms-transform: scale(1.6);
    -o-transform: scale(1.6);
    transform: scale(1.6);
  }
  100% {
    -webkit-transform: scale(1.7);
    -moz-transform: scale(1.7);
    -ms-transform: scale(1.7);
    -o-transform: scale(1.7);
    transform: scale(1.7);
    opacity: 0;
  }
}
#wpp-fix {
  position: fixed;
  bottom: 20px;
  right: 30px;
  z-index: 99;
  outline: none;
}
#wpp-fix .wpp-link {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  background: #3bd455;
  display: flex;
  z-index: 2;
  position: relative;
  padding: 15px;
  border: none;
  cursor: pointer;
  border-radius: 50%;
  box-shadow: 0px 3px 10px rgba(37, 211, 102, 0.56);
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
      outline: none;

}
#wpp-fix .wpp-link > span {
  display: none;
}
#wpp-fix .wpp-link:hover {
  -webkit-transform: scale(1.05);
  -moz-transform: scale(1.05);
  -ms-transform: scale(1.05);
  -o-transform: scale(1.05);
  transform: scale(1.05);
  background: #1da851;
}
#wpp-fix .wpp-link.hide-this {
  opacity: 0;
  visibility: hidden;
  -webkit-transform: scale(0.5);
  -moz-transform: scale(0.5);
  -ms-transform: scale(0.5);
  -o-transform: scale(0.5);
  transform: scale(0.5);
}
#wpp-fix .wpp-link.hide-this + .form-wpp {
  visibility: visible;
  opacity: 1;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
  border-radius: 1%;
}
#wpp-fix .wpp-link.hide-this + .form-wpp + .mask {
  opacity: 1;
  visibility: visible;
}
#wpp-fix .wpp-link + .form-wpp {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  position: absolute;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.12);
  border-radius: 3px;
  bottom: 0;
  right: 0px;
  opacity: 0;
  overflow: hidden;
  -webkit-transform: scale(0.2);
  -moz-transform: scale(0.2);
  -ms-transform: scale(0.2);
  -o-transform: scale(0.2);
  transform: scale(0.2);
  border-radius: 50%;
  z-index: 1;
  visibility: hidden;
  transform-origin: bottom right;
  width: 100%;
  max-width: 300px;
  min-width: 350px;
}
#wpp-fix .wpp-link + .form-wpp + .mask {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.8);
  opacity: 0;
  visibility: hidden;
}
#wpp-fix .wpp-link + .form-wpp .form-content {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  padding: 15px;
  float: left;
  position: relative;
  width: 100%;
  background-color: #e9e0d7;
  background-position: 50%;
  background-size: cover;
  background-image: url(https://www.davidsonsilva.com.br/wp-content/uploads/2023/04/bg-whatsapp.png);
}
#wpp-fix .wpp-link + .form-wpp .buss-msg {
  background-color: #fff;
  padding: 10px;
  border-radius: 0 4px 4px 4px;
  line-height: 1.3;
  font-size: 15px;
  max-width: 270px;
  margin: 0 0 10px;
  position: relative;
}
#wpp-fix .wpp-link + .form-wpp .buss-msg::before {
  content: "";
  position: absolute;
  border-top: 5px solid #fff;
  border-right: 5px solid #fff;
  border-bottom: 5px solid transparent;
  border-left: 5px solid transparent;
  left: -10px;
  top: 0;
}
#wpp-fix .wpp-link + .form-wpp form {
  width: calc(300px - 30px);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  float: right;
  position: initial;
}
#wpp-fix .wpp-link + .form-wpp form label {
  line-height: 1;
  margin-bottom: 0px;
}
#wpp-fix .wpp-link + .form-wpp form label.error {
  font-size: 10px;
  padding: 0 5px;
  position: absolute;
  right: 0;
  bottom: 3px;
}
#wpp-fix .wpp-link + .form-wpp form .campo {
  position: relative;
  float: left;
  width: 100%;
  margin-bottom: 5px;
}
#wpp-fix .wpp-link + .form-wpp form .form-control-wrap {
  float: left;
  width: 100%;
  position: relative;
}
#wpp-fix .wpp-link + .form-wpp form .form-control-wrap::after {
  content: "";
  position: absolute;
  border-top: 5px solid #e7ffe7;
  border-right: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 5px solid #e7ffe7;
  right: -10px;
  top: 0;
}
#wpp-fix .wpp-link + .form-wpp form input[type=text], #wpp-fix .wpp-link + .form-wpp form input[type=tel], #wpp-fix .wpp-link + .form-wpp form input[type=email] {
  border-radius: 4px 0 4px 4px;
  width: 100%;
  padding: 10px;
  background: #e7ffe7;
  border: 1px solid #e7ffe7;
  font-size: 1rem;
}
#wpp-fix .wpp-link + .form-wpp form input.error, #wpp-fix .wpp-link + .form-wpp form input.not-valid {
  border-color: #F44336;
}
#wpp-fix .wpp-link + .form-wpp form input + .not-valid-tip {
  font-size: 10px;
  padding: 0 5px;
  position: absolute;
  right: 0;
  bottom: 0;
}
#wpp-fix .wpp-link + .form-wpp form .btn {
  float: right;
  margin-top: 5px;
}
#wpp-fix .wpp-link + .form-wpp form .btn button {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  background-color: #0c6156;
  border: 1px solid #0c6156;
  text-transform: initial;
  cursor: pointer;
  padding: 8px 12px;
  color: #fff;
  border-radius: 4px;
  font-size: 1rem;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
#wpp-fix .wpp-link + .form-wpp form .btn button:hover {
  border-color: #06342e;
  background-color: #06342e;
  box-shadow: 0 1px 4px 0 rgba(12, 97, 86, 0.52);
}
#wpp-fix .wpp-link + .form-wpp form .response-output {
  font-size: 0.9rem;
  line-height: 1.2;
  float: left;
  margin: 0;
  width: 100%;
}
#wpp-fix .wpp-link + .form-wpp form::after {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  content: "";
  position: absolute;
  width: calc(100% + 4px);
  height: calc(100% + 15px);
  background: rgba(255, 255, 255, 0.93);
  left: -2px;
  top: -9px;
  z-index: 5;

  background-size: 70px;
  background-repeat: no-repeat;
  background-position: 50%;
  opacity: 0;
  visibility: hidden;
}
#wpp-fix .wpp-link + .form-wpp form.submitting::after {
  opacity: 1;
  visibility: visible;
}
#wpp-fix .wpp-link + .form-wpp form .response-output {
  display: none;
  opacity: 0;
  @inclue transition();
}
#wpp-fix .wpp-link + .form-wpp form.sent {
  height: 50px;
}
#wpp-fix .wpp-link + .form-wpp form.sent .response-output {
  position: absolute;
  width: 100%;
  height: calc(100% + 15px);
  background: #fff;
  opacity: 1;
  left: 0;
  font-size: 1.4rem;
  text-align: center;
  top: 0;
  align-items: center;
  display: flex;
}
#wpp-fix .wpp-link + .form-wpp .head-wpp {
  width: 100%;
  padding: 12px 8px;
  background: #0c6156;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  z-index: 6;
}
#wpp-fix .wpp-link + .form-wpp .head-wpp img {
  margin-right: 8px;
  width: 50px;
  border-radius: 50%;
}
#wpp-fix .wpp-link + .form-wpp .head-wpp h3 {
  word-break: keep-all;
  padding-right: 30px;
  font-size: 1.1rem;
  font-weight: 500;
  color: #fff;
  margin: 0 0 0 10px;
}
#wpp-fix .wpp-link + .form-wpp .close {
  color: #fff;
  position: absolute;
  cursor: pointer;
  right: 0;
  top: 0;
  padding: 7px 8px;
  font-size: 1.375rem;
}
#wpp-fix svg {
  width: initial;
  display: block;
  height: 30px;
}
#wpp-fix svg path {
  fill: #fff;
}
#wpp-fix.shake .wpp-link::before {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  background: rgba(37, 211, 102, 0.6);
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  border-radius: 50%;
  z-index: -1;
  top: 0px;
  right: 0;
  -webkit-animation: pulse 2s infinite;
  -moz-animation: pulse 2s infinite;
  -o-animation: pulse 2s infinite;
  animation: pulse 2s infinite;
}
#wpp-fix.shake svg {
  -webkit-animation: 1s wiggle ease infinite;
  -moz-animation: 1s wiggle ease infinite;
  -o-animation: 1s wiggle ease infinite;
  animation: 1s wiggle ease infinite;
}
@media (max-width: 767px) {
    .client-content {
    display: none;
}

.row.justify-content-end {
    padding: 0 20px;
}
.row.justify-content-between {
    padding: 0 15px;
}
  #wpp-fix {
    bottom: 15px;
  }
  #wpp-fix svg {
    height: 30px;
  }
  #wpp-fix .wpp-link {
    padding: 10px;
  }
  #wpp-fix .wpp-link + .form-wpp form {
    width: calc(300px - 40px);
  }
  #wpp-fix .wpp-link + .form-wpp form input[type=text],
#wpp-fix .wpp-link + .form-wpp form input[type=email] {
    font-size: 0.875rem;
  }
  #wpp-fix .wpp-link + .form-wpp form .btn button {
    font-size: 0.875rem;
  }
}
@media (max-width: 395px) {
  #wpp-fix .wpp-link + .form-wpp {
    min-width: 290px;
  }
  #wpp-fix .wpp-link + .form-wpp .head-wpp img {
    width: 40px;
  }
}


.chat-widget {
    background-color: #f8faff;
    padding: 0 20px;
    border-radius: 8px;
    width: 100%;
    
}

.chat-header {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
}

.chat-user {
    display: flex;
    align-items: center;
    background-color: #ffffff;
    border-radius: 8px;
    padding: 15px 15px;
    margin-bottom: 10px;
    box-shadow: 0 1px 12px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    transition: .1s ease;
}

.chat-user::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background-color: #26c16f;
    border-radius: 0;
}

.chat-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 10px;
}

.chat-info {
    flex-grow: 1;
}
span.close-widget {
    position: absolute;
    right: -20px;
    bottom: 0;
    width: 35px;
    height: 35px;
    background: #F44336;
    display: grid;
    place-content: center;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    z-index: 9;
}

.chat-user:hover {
    background: #e1e1e1;
}
.chat-name {
    font-size: 13px;
    margin: 0;
}

.chat-role {
    font-size: 12px;
    color: #888;
    margin: 0;
}



@media(max-width: 565px){

    .col_sectores {   
    min-height: 380px; 
    }

    .content_sector {
    padding-top: 80px;
    }
    .container_sectores {
 
    flex-direction: column;
}
.col_sectores {
  
    min-height: 380px;
   
}

    div#customNav > button.owl-prev {
    left: 10px;
    }

    div#customNav > button.owl-next {
        right: 10px;
        left: auto;
    }

    .xs-reverse{
        flex-direction: column-reverse;
    }

    .xs-reverse{
        display:block;
        flex-direction: column-reverse;
    }
    
    .content-image_full img {
        margin-top: 50px;
    }

    .planet__effect.scroll-image {

        top: 200px;
    }

    .bg_green {
        padding: 120px 0 300px;
        border-radius: 0px 200px 0px 0;
    }

    .footer_content.text-right {
        text-align: left !important;
    }
    .header__wrapper-menu.header__datos {
        display: none;
    }
    .bg_page-img svg {
        width: auto;
        height: 110%;   
    }

    #page-footer svg.footer-wave {
        top: -40px;
    }


    .bl_quote:before {
        height: 20%;  
    }

    .head_page h1.entry-title {
        font-size: 40px;
        padding: 0 15px;   
    }

    .slider-fullscreen__header {
        max-width: 100%;
    }

    .slider-fullscreen__header h2.h1 {
        font-size: 25px;
    }


    .slider__link{
        color:white;
    }

    .header__controls {
        padding: 0;
    }
    .sub_bg .split-text__line {
       border-radius: 0;
        padding: 0px 10px;
     
    }

    .size-2 {
        font-size: 30px;
     
    }
    .padding-burger {
        padding-right: 0px;
    }

  .tab_title {
    padding: 10px 15px;   
    }

    .tab_title {
    padding: 10px 15px;   
    }

    .tab_title::after {
   
    right: 10px;
    
    font-size: 25px;
   
    }

    .logo_clientes img {
    max-width: 125px;
    max-height: 40px; 
    }

    .custom-controls {
    left: 20px;
    bottom: -25px;  
    }

    .big-text {
    font-size: 30px;
    }

    .hero-text {
        font-size: 30px;
        padding: 120px 0 20px;
        margin-bottom: 10px !important;
    }
    .section__headline {    
    margin-bottom: 30px !important;
    }

    .tab_desc {
    padding: 0 15px;   
    }

    .section-masthead__heading {  
     padding-top: 100px;
    }
    
    section#cassio_copyright-1 small {
    display: block;
    text-align: center;
    margin: auto;
    margin-top: 10px;
    }

    section#cassio_logo-2 {
    text-align: left;
    }


    section.sectores_bl {
    margin-top: -60px;
    }



    .mi-table th, .mi-table td {
        min-width: 140px;
    }

    .table-responsive {
  width: 100%;
  overflow-x: auto;
}

.mi-table {
  width: 100%;
  border-collapse: collapse;
}

.mi-table th, .mi-table td {
  border: 1px solid #ddd;
  padding: 8px;
  text-align: center;
  min-width: 140px;
}

.mi-table img {
 

}
    .text-xl {
        font-size: 30px;
    }

.whatsapp-widget {

    width: 100%;
    right: 0;
    bottom: 0;
  
}
.chat-widget .form__col {
    padding: 0 5px;
}
span.close-widget {
    right: 0px;
    bottom: inherit;
   
}
}
.wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output, .wpcf7 form.payment-required .wpcf7-response-output {

    position: absolute;
}

/**
 * Owl Carousel v2.3.4
 * Copyright 2013-2018 David Deutsch
 * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
 */
 .owl-carousel,.owl-carousel .owl-item{-webkit-tap-highlight-color:transparent;position:relative}.owl-carousel{display:none;width:100%;z-index:1}.owl-carousel .owl-stage{position:relative;-ms-touch-action:pan-Y;touch-action:manipulation;-moz-backface-visibility:hidden}.owl-carousel .owl-stage:after{content:".";display:block;clear:both;visibility:hidden;line-height:0;height:0}.owl-carousel .owl-stage-outer{position:relative;overflow:hidden;-webkit-transform:translate3d(0,0,0)}.owl-carousel .owl-item,.owl-carousel .owl-wrapper{-webkit-backface-visibility:hidden;-moz-backface-visibility:hidden;-ms-backface-visibility:hidden;-webkit-transform:translate3d(0,0,0);-moz-transform:translate3d(0,0,0);-ms-transform:translate3d(0,0,0)}.owl-carousel .owl-item{min-height:1px;float:left;-webkit-backface-visibility:hidden;-webkit-touch-callout:none}.owl-carousel .owl-dots.disabled,.owl-carousel .owl-nav.disabled{display:none}.no-js .owl-carousel,.owl-carousel.owl-loaded{display:block}.owl-carousel .owl-dot,.owl-carousel .owl-nav .owl-next,.owl-carousel .owl-nav .owl-prev{cursor:pointer;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.owl-carousel .owl-nav button.owl-next,.owl-carousel .owl-nav button.owl-prev,.owl-carousel button.owl-dot{background:0 0;color:inherit;border:none;padding:0!important;font:inherit}.owl-carousel.owl-loading{opacity:0;display:block}.owl-carousel.owl-hidden{opacity:0}.owl-carousel.owl-refresh .owl-item{visibility:hidden}.owl-carousel.owl-drag .owl-item{-ms-touch-action:pan-y;touch-action:pan-y;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.owl-carousel.owl-grab{cursor:move;cursor:grab}.owl-carousel.owl-rtl{direction:rtl}.owl-carousel.owl-rtl .owl-item{float:right}.owl-carousel .animated{animation-duration:1s;animation-fill-mode:both}.owl-carousel .owl-animated-in{z-index:0}.owl-carousel .owl-animated-out{z-index:1}.owl-carousel .fadeOut{animation-name:fadeOut}@keyframes fadeOut{0%{opacity:1}100%{opacity:0}}.owl-height{transition:height .5s ease-in-out}.owl-carousel .owl-item .owl-lazy{opacity:0;transition:opacity .4s ease}.owl-carousel .owl-item .owl-lazy:not([src]),.owl-carousel .owl-item .owl-lazy[src^=""]{max-height:0}.owl-carousel .owl-item img.owl-lazy{transform-style:preserve-3d}.owl-carousel .owl-video-wrapper{position:relative;height:100%;background:#000}.owl-carousel .owl-video-play-icon{position:absolute;height:80px;width:80px;left:50%;top:50%;margin-left:-40px;margin-top:-40px;background:url(owl.video.play.png) no-repeat;cursor:pointer;z-index:1;-webkit-backface-visibility:hidden;transition:transform .1s ease}.owl-carousel .owl-video-play-icon:hover{-ms-transform:scale(1.3,1.3);transform:scale(1.3,1.3)}.owl-carousel .owl-video-playing .owl-video-play-icon,.owl-carousel .owl-video-playing .owl-video-tn{display:none}.owl-carousel .owl-video-tn{opacity:0;height:100%;background-position:center center;background-repeat:no-repeat;background-size:contain;transition:opacity .4s ease}.owl-carousel .owl-video-frame{position:relative;z-index:1;height:100%;width:100%}
