/*
Theme Name: Virkapp
Theme URI: 
Author: virkapp
Author URI: https://virkapp.com
Description:
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: virkapp
Tags: virkapp
*/

@font-face {
  font-family: 'Apercu';
  src: url('fonts/apercu/Apercu-regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Apercu';
  src: url('fonts/apercu/Apercu-regular-italic.otf') format('opentype');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Apercu';
  src: url('fonts/apercu/Apercu-medium.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Apercu';
  src: url('fonts/apercu/Apercu-medium-italic.otf') format('opentype');
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Apercu';
  src: url('fonts/apercu/Apercu-bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Apercu';
  src: url('fonts/apercu/Apercu-bold-italic.otf') format('opentype');
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Apercu';
  src: url('fonts/apercu/apercu-light.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Apercu';
  src: url('fonts/apercu/Apercu-light-italic.otf') format('opentype');
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Apercu';
  src: url('fonts/apercu/Apercu-italic.otf') format('opentype');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}


:root {
  --primary-font: "Apercu", sans-serif;
  --text-color: #173432;
  --orange-color: #EC714D;
  --green: #0da34e;
  --white: #fff;
  --black: #111;
  --gray-layer: rgba(0, 0, 0, 0.03);
}

/* Tipografía base */
body {
  font-family: var(--primary-font);
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  position: relative;
  color: var(--text-color);
}

/* Headers */
h1 {
  font-family: "Apercu", sans-serif;
  font-weight: 700;
  font-size: 64px;
  line-height: 70px;
  letter-spacing: 0;
  text-align: center;
}

h2 {
  font-size: 20px;
  line-height: 26px;
  font-weight: 700;
}

h3 {
  font-family: "Apercu", sans-serif;
  font-weight: 500;
  font-style: Medium;
  font-size: 42px;
  leading-trim: NONE;
  line-height: 60px;
  letter-spacing: 0%;
  text-align: center;
}

h3.mision{
  font-family: 'Apercu', sans-serif;
  font-weight: 500;
  font-style: Medium;
  font-size: 42px;
  leading-trim: NONE;
  line-height: 46px;
  letter-spacing: 0%;
  text-align: left;
  color: #2D2D2D;
}
.margin-max{
  margin-top: 128px;
}
.margin-medium{
  margin-top: 120px;
}
.margin-medium-bottom{
  margin-bottom: 120px;
}
.margin-regular{
  margin-top: 104px;
}
.margin-small{
  margin-top: 60px;
}
.margin-bottom-regular{
  margin-bottom: 104px;
}
.container-mision{
  margin-top: 120px;
  margin-bottom: 128px;
}
.mision-content span{
  font-family: 'Apercu', sans-serif;
  font-weight: 500;
  font-style: Medium;
  font-size: 24px;
  leading-trim: NONE;
  line-height: 100%;
  letter-spacing: 0%;
  color: #7D8D98;
}
.mision-content p{
  font-family: 'Apercu', sans-serif;
  font-weight: 300;
  font-style: Light;
  font-size: 22px;
  leading-trim: NONE;
  line-height: 32px;
  letter-spacing: 0%;
  text-align: left;
  color: #2D2D2D;
}
/* Párrafos */
p {
  font-family: "Apercu", sans-serif;
  font-weight: 400;
  font-size: 22px;
  line-height: 30px;
  letter-spacing: 0;
  text-align: center;
}

/* Helpers */
.white {
  color: var(--white);
}

h1{
    font-family: 'Apercu', sans-serif;
    font-weight: 700;
    font-style: Bold;
    font-size: 64px;
    leading-trim: NONE;
    line-height: 70px;
    letter-spacing: 0%;
    text-align: center;
}



p{
    font-family: 'Apercu', sans-serif;
    font-weight: 400;
    font-style: Regular;
    font-size: 22px;
    leading-trim: NONE;
    line-height: 30px;
    letter-spacing: 0%;
    text-align: center;

}
a.btn-link {
  font-family: 'Apercu', sans-serif;
  font-weight: 500;
  font-size: 18px;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 100%;
  max-width: 271px;
  height: 56px;
  border-radius: 12px;
  padding: 20px 40px; /* un poco más para dar espacio a la flecha */
  background-color: #2DEDC7;
  color: black;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

a.btn-link .vector {
  position: absolute;
  right: 5px;          /* posición fija dentro del botón */
  opacity: 0;
  transform: translateX(-5px);
  transition: all 0.3s ease;
}

a.btn-link:hover .vector {
  opacity: 1;
  transform: translateX(0);
}


.center-div{
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.bg-gray{
    background-color: #FAFAFC;
}
.c-list__content{
    text-align: left;
}
.c-list__content span, .c-list__content p{
    color: gray;
    text-align: left;
}
.c-list__content p{
    color: gray;
    text-align: left;
    font-size: 18px;
    line-height: 28px;
}
.c-list__item img.icon-impacto{
    height: 34px;
    margin-right: 8px;
}
.vector{
    margin-right: 8px;
}
.sectionbanner{
  background: url('./images/banner.svg') no-repeat;
  background-size: cover;
  animation: olas 9s ease-in-out infinite;
  height: 441px;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
}
.card-estadisticas{
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 32px;
  padding-bottom: 35px;
  border: 1px solid #DBDBDD;
  border-radius: 20px;
  color: #2D2D2D;
  text-align: left;
}
.card-estadisticas span{
  font-size: 42px;
  color: #2532C9;
  font-weight: 700;
  text-align: left;
  line-height: 40px;
}
.card-estadisticas h5{
  font-size: 22px;
  color: #2532C9;
  font-weight: 500;
  text-align: left;
}
.card-estadisticas p{
  text-align: left;
  font-weight: 300;
  color: #2D2D2D;
  font-size: 16px;
  line-height: 24px;
}
.card-fix {
  position: sticky;
  top: 100px; /* puedes ajustar el valor según el espacio que quieras desde el top */
  z-index: 10;
}
.container-soluciones h3{
  text-align: left !important;
  font-size: 38px;
  line-height: 42px;
}
.container-aliados h3{
  text-align: left;
}
.container-aliados p.aliados{
  text-align: left;
  color: #2D2D2D;
  font-weight: 300;
  font-size: 18px;
  line-height: 28px;
}
.card-solucion-wrapper {
  background: linear-gradient(270deg, #2FF6CE, #2933AB, #2FF6CE);
  background-size: 600% 600%; /* tamaño grande para animar */
  padding: 2px; /* grosor del borde */
  border-radius: 20px;
  transition: all 0.3s ease;
}

.card-solucion {
  background: white;
  border-radius: 18px;
  padding: 20px;
  min-height: 380px;
}
/* animación SOLO en hover */
.card-solucion-wrapper:hover {
  animation: borderMove 6s ease infinite;
}

/* keyframes para mover el gradiente */
@keyframes borderMove {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Estado normal (sin hover) con borde gris */
.card-solucion-wrapper:not(:hover) {
  background: #DBDBDD;
}

.icono-solucion{
  display: flex;
  background-color: #E5E7FF;
  height: 46px;
  width: 46px;
  border-radius: 7px;
  justify-content: center;
  align-items: center;
}
.icono-solucion img{
  max-height: 34px;
  max-width: 34px;
}
.card-solucion h2{
  font-family: "Apercu", sans-serif;
  font-weight: 500;
  font-style: Medium;
  font-size: 24px;
  leading-trim: NONE;
  line-height: 28px;
  letter-spacing: 0%;
  text-align: left;
  color: #2D2D2D;
}
.card-solucion .contenido p{
  font-family: "Apercu", sans-serif;
  font-weight: 300;
  font-style: Light;
  font-size: 16px;
  leading-trim: NONE;
  line-height: 25px;
  letter-spacing: 0%;
  color: #2D2D2D;
  text-align: left;
}
.card-solucion .contenido a:hover{
  text-decoration: none;
}
.card-solucion a{
  font-family: "Apercu", sans-serif;
  font-weight: 500;
  font-style: Medium;
  font-size: 18px;
  leading-trim: NONE;
  line-height: 100%;
  letter-spacing: 0%;
  color: #2532C9;
  text-align: left;
  margin-top: auto;
}
.link-icon{
  display: flex;
  justify-content: center;
  align-items: center;
  height: inherit;

}
.card-solucion .icon-arrow{
  color: #2532C9;

}
.card-solucion img.icon-arrow{
  width: 24px;
  margin-left: 8px;
}
.head-soluciones span{
  font-family: "Apercu", sans-serif;
  font-weight: 500;
  font-style: Medium;
  font-size: 24px;
  leading-trim: NONE;
  line-height: 100%;
  letter-spacing: 0%;
  color: #7D8D98;
}
.head-soluciones h1{
  font-family: "Apercu", sans-serif;
  font-weight: 700;
  font-style: Bold;
  font-size: 48px;
  leading-trim: NONE;
  line-height: 60px;
  letter-spacing: 0%;
  text-align: center;
  color: #2D2D2D;
}
.head-soluciones p{
  font-family: "Apercu", sans-serif;
  font-weight: 300;
  font-style: Medium;
  font-size: 22px;
  leading-trim: NONE;
  line-height: 30px;
  letter-spacing: 0%;
  text-align: center;
  color: #2D2D2D;
}


.single-head h1{
  font-family: "Apercu", sans-serif;
  font-weight: 500;
  font-style: Medium;
  font-size: 42px;
  leading-trim: NONE;
  line-height: 48px;
  letter-spacing: 0%;
  color: #2D2D2D;
}
.single-head .content p{
  font-family: "Apercu", sans-serif;
  font-weight: 300;
  font-style: Light;
  font-size: 22px;
  leading-trim: NONE;
  line-height: 30px;
  letter-spacing: 0%;
  text-align: left;
}
.content-inspirate small{
  font-family: "Apercu", sans-serif;
  font-weight: 500;
  font-style: Medium;
  font-size: 24px;
  leading-trim: NONE;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  color: #7D8D98;
}
.content-inspirate h2{
  font-family: "Apercu", sans-serif;
  font-weight: 300;
  font-style: Medium;
  font-size: 42px;
  line-height: 48px;
  text-align: center;
  color: #2D2D2D;
}
.inspirate-nosotros b{
  color: #2D2D2D;
  font-weight: 400;
}
.inspirate-nosotros{
  font-family: "Apercu", sans-serif;
  font-weight: 300;
  font-style: Medium;
  font-size: 42px;
  line-height: 48px;
  text-align: center;
  color: #7D8D98;
}
.content-inspirate strong{
  color: #7D8D98;
}
.card-aliado{
  border-radius: 20px;
}
.card-aliado img.logo-aliado{
  height: 36px;
  width: auto;
}
.card-aliado p{
  font-family: "Apercu", sans-serif;
  font-weight: 300;
  font-style: Light;
  font-size: 16px;
  leading-trim: NONE;
  line-height: 24px;
  letter-spacing: 0%;
  color: #2D2D2D;
  text-align: left;
}
.circle-aliado{
  height: 74px;
  width: 74px;
}
.content-org strong{
  font-family: "Apercu", sans-serif;
  font-weight: 500;
  font-style: Medium;
  font-size: 18px;
  leading-trim: NONE;
  line-height: 20px;
  letter-spacing: 0%;
  color: #2D2D2D !important;
}
.content-org small{
  font-family: "Apercu", sans-serif;
  font-weight: 300;
  font-style: Light;
  font-size: 14px !important;
  leading-trim: NONE;
  line-height: 32px;
  letter-spacing: 0%;
  color: #2D2D2D !important;
  line-height: 18px;

}
.card-proyectos img{
  border-radius: 20px;
  height: 250px;
  object-fit: cover;
}
.card-body-proyectos h5{
  font-family: 'Apercu', sans-serif;
  font-weight: 500;
  font-style: Medium;
  font-size: 24px;
  leading-trim: NONE;
  line-height: 28px;
  letter-spacing: 0%;
  color: #2D2D2D;
  text-align: left;
}
.card-body-proyectos p{
  font-family: 'Apercu', sans-serif;
  font-weight: 300;
  font-style: Light;
  font-size: 18px;
  leading-trim: NONE;
  line-height: 26px;
  letter-spacing: 0%;
  color: #2D2D2D;
  text-align: left;
}
.card-img-wrapper {
  position: relative;
  width: 100%;
  height: 250px;
  border-radius: 20px;
  overflow: hidden;
}

.card-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  transition: opacity 0.4s ease-in-out;
  position: absolute;
  top: 0;
  left: 0;
}

.card-img-wrapper .img-principal {
  opacity: 1;
  z-index: 1;
}

.card-img-wrapper .img-secundaria {
  opacity: 0;
  z-index: 2;
}

/* efecto hover */
.card-proyectos:hover .img-principal {
  opacity: 0;
}

.card-proyectos:hover .img-secundaria {
  opacity: 1;
}


.swiper-button-next, .swiper-button-prev{
  width: 56px !important;
  height: 56px !important;
  border: solid 1px #7D8D98;
}
.swiper-button-next:after, .swiper-button-prev:after{
  font-size: 16px !important;
}
.swiper-button-next, .swiper-button-prev{
  font-size: 16px !important;
  color: #7D8D98 !important;
}
.btn-outline-secondary{
  background-color: white !important;
  border: 1px solid #2532C9 !important;
}
.content-idioma{
  color: white;
}
.content-idioma img{
  height: 22px;
  width: 22px;
  margin-left: 4px;
}
.btn-contact{
  background-color: #2EECC9;
  padding: 13px;
  color: black;  font-weight: 500;
  font-style: Medium;
  font-size: 18px;
  leading-trim: NONE;
  line-height: 100%;
  letter-spacing: 0%;
  border-radius: 6px;
  margin-left: 20px;
}
.content-inspirate{
  margin-bottom: 90px;
}
.video-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.video-background video {
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
}
.section {
  position: relative;
  z-index: 1;
}
.container-header {
  position: relative;
  z-index: 2;
}
/* ========================================
   Sección solicitar / contacto
======================================== */
.section-solicitar,
.section-contacto {
  /* estilos globales opcionales */
  border-radius: 12px;
}

.section-solicitar img {
  width: 44px;
  height: auto;
}

.section-solicitar h2 {
  font-weight: 500;
  font-size: 42px;
  line-height: 48px;
  text-align: center;
  color: #2D2D2D;
}

.section-solicitar p {
  font-weight: 300;
  font-size: 18px;
  line-height: 30px;
  text-align: center;
  color: #2D2D2D;
}

/* ========================================
   Sección izquierda
======================================== */
.contact-section-izq h1 {
  font-weight: 500;
  font-size: 40px;
  line-height: 48px;
  text-align: left;
}

.contact-section-izq p {
  font-weight: 300;
  font-size: 18px;
  line-height: 28px;
  text-align: left;
}

/* Form-floating */
.section-solicitar .form-floating {
  position: relative;
}

.section-solicitar .form-control {
  width: 100%;
  padding: 16px 12px 8px 12px; /* espacio para label */
  border: 1px solid #DBDBDD;
  border-radius: 8px;
  background: #fff;
  height: 56px;
  outline: none;
  font-size: 16px;
  line-height: 28px;
}

.section-solicitar .form-control:focus {
  border-color: #2DEDC7;
}

/* Label flotante */
.section-solicitar label {
  position: absolute;
  left: 12px;
  top: -10px;
  font-size: 16px;
  color: #7D7D7D;
  background: #fff;
  border-radius: 6px;
  padding: 0 4px;
  pointer-events: none;
  transition: all 0.3s ease;
  z-index: 1;
}

/* Label sube al focus o al escribir */
.section-solicitar .form-control:focus + label,
.section-solicitar .form-control:not(:placeholder-shown) + label {
  top: -4px;
  font-size: 12px;
  color: #2DEDC7;
  font-weight: 500;
}

/* Botón */
.section-solicitar .btn-contact {
  display: inline-block;
  padding: 0.75rem 2rem;
  font-size: 16px;
  font-weight: 500;
  border-radius: 8px;
  border: none;
  background-color: #2DEDC7;
  color: #fff;
  text-align: center;
  cursor: pointer;
  transition: background 0.3s ease;
}

.section-solicitar .btn-contact:hover {
  background-color: #26c4af;
}

/* Mensajes CF7 */
.section-solicitar .wpcf7-mail-sent-ok {
  color: #2DEDC7;
  margin-top: 1rem;
  font-weight: 500;
}

.section-solicitar .wpcf7-not-valid-tip {
  color: #ff4d4f;
  font-size: 0.875rem;
  margin-top: 0.25rem;
  display: block;
}

/* Oculta los br de CF7 */
.section-solicitar .wpcf7-form-control-wrap + br {
  display: none;
}

/* Oculta el span de CF7 (visualmente) */
.section-solicitar .wpcf7-form-control-wrap {
  display: contents;
}
/* Elimina márgenes y br extra */
.section-solicitar .wpcf7-form-control-wrap + br {
  display: none;
}

.section-solicitar .form-floating {
  margin-bottom: 0.5rem; /* menor espacio entre inputs */
}

.section-solicitar .form-control {
  margin-bottom: 0; /* elimina márgenes internos extra */
  height: 56px;
  padding: 16px 12px 8px 12px;
  box-sizing: border-box;
}


.tipo-solucion-content{
  background-color: #F8F9FF;
  border-radius: 24px;
  justify-content: center;
  text-align: center;
  padding: 10px;
}
.tipo-solucion-content img{
  width: 24px;
  height: auto;
  object-fit: contain;
  margin: auto;
}
.tipo-solucion-content span{
  color: #2532C9;
  font-weight: 400;
  font-style: Regular;
  font-size: 18px;
  line-height: 30px;
  letter-spacing: 0%;
  margin-left: 5px;
}
.tipo-solucion-content h1{
  font-weight: 700;
  font-style: Bold;
  font-size: 64px;
  line-height: 70px;
  letter-spacing: 0%;
  text-align: center;
}
.tipo-solucion-content p{
  font-weight: 400;
  font-size: 22px;
  line-height: 32px;
  letter-spacing: 0%;
  text-align: center;
  color: #2D2D2D;
}
.bg-gray-single{
  background-color: #FAFAFC;
}
.container-single-proyecto .img-secundaria img{
  height: 100%;
  object-fit: cover;
}
.container-single-proyecto .img-destacada img{
  height: 100%;
  object-fit: fill;
}
.container-single-proyecto .small-left span{
  color: #7D8D98;
  font-weight: 500;
  font-style: Medium;
  font-size: 24px;
  line-height: 100%;
  letter-spacing: 0%;
}
.container-single-proyecto .proyecto-contenido p{
  font-weight: 300;
  font-style: Light;
  font-size: 18px;
  line-height: 32px;
  letter-spacing: 0%;
  color: #2D2D2D;
  text-align: left;
}
.container-single-proyecto .card-cliente h5{
  font-weight: 500;
  font-style: Medium;
  font-size: 24px;
  line-height: 30px;
  letter-spacing: 0%;
  color: #2D2D2D;
}
.container-single-proyecto .card-cliente p{
  font-weight: 300;
  font-style: Light;
  font-size: 18px;
  line-height: 26px;
  letter-spacing: 0%;
  color: #2D2D2D;
  text-align: left;
}
.container-single-proyecto .card-cliente img{
  width: 178px;
  height: 178px;
  object-fit: contain;
  margin-right: 20px;
  background-color: #E8E9F1;
  padding: 10px;
  margin-bottom: 40px;
}
.card-cliente{
  border-bottom: 1px solid gray;
}
.icon-medios{
  margin-right: 10px;
  width: auto;
  height: 34px;
}
.content-en-los-medios{
  border-bottom: 1px solid gray;
}

.galeria-principal {
  width: 100%;
  margin-bottom: 1rem;
  overflow: visible;
}

.galeria-principal .swiper-slide {
  width: 70%; /* ajusta este valor para mostrar partes laterales */
  max-width: 600px;
  margin-right: 20px;
  transition: transform 0.3s ease;
}

.galeria-miniaturas {
  width: 100%;
}
.galeria-miniaturas .swiper-slide {
  width: auto;
  cursor: pointer;
  opacity: 0.6;
  transition: opacity 0.3s;
}
.galeria-miniaturas .swiper-slide-thumb-active {
  opacity: 1;
}
.swiper-free-mode>.swiper-wrapper {
  justify-content: flex-end;
}
.swiper-backface-hidden .swiper-slide .img-thumbnail {
  height: 92px;
  margin-bottom: 20px;
}

.swiper-backface-hidden .swiper-slide .img-thumbnail{
      height: 92px;
    margin-bottom: 20px;
}
.swiper-backface-hidden .swiper-slide .img-fluid{
  height: 372px;
  border: 1px solid gray;
}
.btn-medios{
  color: #2532C9;
  font-weight: 500;
  font-style: Medium;
  font-size: 18px;
  line-height: 100%;
  letter-spacing: 0%;
}
.icon-medios-decorative{
  height: 22px;
  margin-right: 10px;
}
.icon-medios-btn{
  height: 24px;
  width: auto;
}
span.medios-nosotros{
  font-weight: 500;
  font-style: Medium;
  font-size: 24px;
  line-height: 38px;
  letter-spacing: 0%;
  color: #2D2D2D;
  border: none;
}
.vector-nosotros{
  height: 22px;
  margin-right: 10px;
  margin-top: 8px;
}
.card-fix h3 span{
  color: #7D8D98;
}
.container-nosotros h1{
  font-weight: 500;
  font-style: Medium;
  font-size: 48px;
  line-height: 56px;
  text-align: center;
  color: #2D2D2D;
}
.container-nosotros p{
  font-weight: 300;
  font-style: Medium;
  font-size: 18px;
  line-height: 28px;
  text-align: center;
  color: #2D2D2D;
}
.imagen-nosotros img{
  width: 100%;
}
.check-list-areas ul li img{
  width: 32px;
  height: 32px;
  margin-right: 10px;
}
.check-list-areas ul{
  list-style: none;
}
.check-list-areas ul li span{
  font-weight: 400;
  font-style: Regular;
  font-size: 18px;
  line-height: 28px;
  color: #2D2D2D;
}
.equpo-img{
  width: 486px;
  height: auto;
  border-radius: 20px;
}
.info-director p{
  font-weight: 300;
  font-size: 22px;
  line-height: 30px;
  color: #2D2D2D;
  text-align: left;
  font-style: italic;
}
.bold{
  font-weight: 700;
}
.card-trabajo{
  height: 182px;
  border: 1px solid #DBDBDD;
  border-radius: 20px;
  padding: 20px;
  margin-bottom: 30px;
}
.card-trabajo img{
  height: 46px;
  width: 54px;
  margin-right: 10px;
}
.card-trabajo p{
  font-weight: 300;
  font-style: Light;
  font-size: 18px;
  line-height: 28px;
  color: #2D2D2D;
}
p.text-consultores{
  font-weight: 300;
  font-style: Light;
  font-size: 18px;
  line-height: 28px;
  color: #2D2D2D;
  text-align: left;
}
.card-equipo img{
  height: 255px;
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
}
.img-equipo {
  border-radius: 20px;
  overflow: hidden;   /* importante para que no se salga la imagen al hacer zoom */
}

.img-equipo img {
  height: 255px;
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
  transition: transform 0.5s ease; /* animación suave */
}

/* Zoom en hover */
.img-equipo:hover img {
  transform: scale(1.1); /* puedes ajustar 1.05 a 1.2 según el efecto deseado */
}

.mt-0 {
  margin-top: 0 !important;
}

.mt-20 {
  margin-top: 20px !important;
} 
.card-equipo h5{
  font-weight: 500;
  font-size: 32px;
  line-height: 28px;
  color: #2D2D2D;
  text-align: left;
}
.card-equipo p.cargo{
  font-weight: 500;
  font-size: 18px;
  line-height: 100%;
  color: #2532C9;
  text-align: left;
}
.card-equipo .contenido-equipo p{
  font-weight: 300;
  font-size: 16px;
  line-height: 24px;;
  color: #2D2D2D;
  text-align: left;
}
.swiper-backface-hidden .swiper-slide .img-reconocimiento{
  height: 306px;
  width: 100%;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  object-fit: cover;
}
.card-reconocimiento img.icono-recocimiento{
  margin-right: 10px;
  width: 56px;
  height: auto;
}
.card-reconocimiento h5{
  font-weight: 500;
  font-style: Medium;
  font-size: 20px;
  line-height: 22px;
  color: #2D2D2D;
}
.card-reconocimiento p{
  font-weight: 300;
  font-style: Light;
  font-size: 16px;
  line-height: 22px;
  text-align: left;
}

/* Contenedor con perspectiva */
.card-reconocimiento {
  perspective: 1000px;
  overflow: visible;
  border-radius: 20px;
}

/* Card interna que se animará */
.card-reconocimiento-inner {
  display: block;
  width: 100%;
  height: 100%;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  transform-style: preserve-3d;
  will-change: transform;
  border-radius: 20px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Imagen dentro de la card */
.card-reconocimiento-inner .img-reconocimiento img.img-reconocimiento {
  display: block;
  width: 100%;
  border-radius: 20px 20px 0 0;
  transition: transform 0.4s ease;
}

/* Hover: card crece y sombra más grande */
.card-reconocimiento:hover .card-reconocimiento-inner {
  transform: scale(1.05);
  box-shadow: 0 25px 50px rgba(0,0,0,0.25);
}

/* Hover: imagen dentro de la card también hace zoom */
.card-reconocimiento:hover .card-reconocimiento-inner .img-reconocimiento img.img-reconocimiento {
  transform: scale(1.1);
}

.btn-reconocimiento{
  font-family: Apercu;
  font-weight: 500;
  font-style: Medium;
  font-size: 18px;
  leading-trim: NONE;
  line-height: 100%;
  letter-spacing: 0%;
  color: #2532C9;
}
.content-recon{
  height: 44px;
}
.sectionbannerlogosimg{
  background: url('./images/gradient-logos.png') no-repeat;
  background-size: cover;
  animation: olas 9s ease-in-out infinite;
  height: 600px;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
}
.swiper-clientes {
  overflow: hidden;
}

.swiper-left .swiper-wrapper {
  animation: scroll-left 40s linear infinite;
}

.swiper-right .swiper-wrapper {
  animation: scroll-right 40s linear infinite;
}

@keyframes scroll-left {
  from { transform: translateX(0); }
  to   { transform: translateX(-100%); }
}

@keyframes scroll-right {
  from { transform: translateX(-100%); }
  to   { transform: translateX(0); }
}

/* Estilo responsivo opcional */
.sectionbannerlogos img {
  height: 140px;
  width: auto;
  object-fit: contain;
  padding: 0 20px;
}

.logo-slide {
  min-width: 160px; /* o ajusta según el tamaño de tus logos */
  padding: 0 20px;
  box-sizing: border-box;
  flex-shrink: 0;
}

.swiper-clientes .swiper-wrapper {
  display: flex;
  align-items: center;
}

.swiper-clientes .swiper-slide{
  max-width: 230px;
}
.p-aliados{
  height: 160px;
}
.menubg{
  background: url('./images/menu.png') no-repeat;
  background-size: cover;
  height: 100px;
  display: flex;
  align-items: center;
}
.whats{
      background-color: #FFFFFF;
    height: 56px;
    width: 56px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    z-index: 999999;
    bottom: 20px;
    right: 20px;
}
.whatsapp-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999999;
  cursor: pointer;
  overflow: visible;
}

.whatsapp-button img {
  position: relative;
  z-index: 2;
}

/* Ondas animadas */
.whatsapp-button .ripple {
  position: absolute;
  width: 56px;
  height: 56px;
  border: 2px solid #25D366;
  border-radius: 50%;
  animation: ripple-animation 2s infinite;
  opacity: 0;
  z-index: 1;
}

/* Segunda onda con delay */
.whatsapp-button .ripple:nth-child(2) {
  animation-delay: 1s;
}

/* Animación */
@keyframes ripple-animation {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }
  70% {
    transform: scale(2.5);
    opacity: 0;
  }
  100% {
    transform: scale(2.5);
    opacity: 0;
  }
}

.btn-outline-secondary:hover{
  background-color: #2532C9 !important;
  color: white !important;
}
.padding-head-single{
  padding-top: 95px;
  padding-bottom: 95px;
}
.lista-checks li{
  margin-bottom: 20px;
}
.proyecto-contenido h2{
  color: #7D8D98;
  font-weight: 500;
  font-size: 24px;
  line-height: 100%;
}
.wp-block-separator{
  border-top: 1px solid gray !important;
}
.proyecto-contenido li{
  font-family: Apercu;
  font-weight: 300;
  font-style: Light;
  font-size: 18px;
  line-height: 32px;
  color: #2D2D2D;
}

/* Menú mobile en pantalla completa */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #FAFAFC; /* 👉 color solicitado */
  z-index: 9999;
  display: none;
  padding: 2rem;
  overflow-y: auto;
}

/* Cuando está abierto */
.mobile-menu.open {
  display: block;
}

/* Estilos de los submenús */
.accordion-menu .sub-menu {
  display: none;
  padding-left: 1rem;
}

.accordion-menu .menu-item.open > .sub-menu {
  display: block;
  list-style: none;
}
/* Estilo específico para enlaces de tercer nivel */
/* Nivel 1 (primer nivel de menú) */
.accordion-menu > li > a {
  color: #2D2D2D;
  font-family: 'Apercu', sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 18px;
  line-height: 38px;
  letter-spacing: 0;
  vertical-align: middle;
  display: block;
  padding: 6px 0;
}

/* Nivel 2 (segundo nivel de submenú) */
.accordion-menu .sub-menu > li > a {
  color: #7D8D98;
  font-family: 'Apercu', sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 18px;
  line-height: 38px;
  letter-spacing: 0;
  vertical-align: middle;
  display: block;
  padding: 6px 0 6px 12px; /* indentación */
}

/* Nivel 3 (tercer nivel de submenú) */
.accordion-menu .sub-menu .sub-menu > li > a {
  color: #2D2D2D;
  font-family: 'Apercu', sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 18px;
  line-height: 38px;
  letter-spacing: 0;
  vertical-align: middle;
  display: block;
  padding: 6px 0 6px 24px; /* más indentación */
}

.mobile-menu {
  background: #FAFAFC;
}
/* Flechita para items con hijos */
.accordion-menu .menu-item-has-children > a {
  position: relative;
  padding-right: 24px; /* espacio para el icono */
}

/* Chevron cerrado (por defecto) */
.accordion-menu .menu-item-has-children > a::after {
  content: "\25BC"; /* ▼ */
  font-size: 14px;
  color: #7D8D98;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: transform 0.3s ease;
}

/* Chevron abierto (cuando el item tiene la clase .open) */
.accordion-menu .menu-item-has-children.open > a::after {
  content: "\25B2"; /* ▲ */
  transform: translateY(-50%) rotate(180deg);
  color: #2D2D2D;
}

/* Aseguramos espacio para el icono */
.accordion-menu .menu-item-has-children > a {
  position: relative;
  padding-right: 28px; /* espacio a la derecha para el ícono */
}

/* Icono cerrado (fa-chevron-down) */
.accordion-menu .menu-item-has-children > a::after {
  content: "\f078"; /* Unicode de fa-chevron-down */
  font-family: "Font Awesome 6 Free"; 
  font-weight: 900; /* sólido */
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 14px;
  color: #7D8D98;
  transition: transform 0.3s ease, color 0.3s ease;
}

/* Icono abierto (fa-chevron-up) */
.accordion-menu .menu-item-has-children.open > a::after {
  content: "\f077"; /* Unicode de fa-chevron-up */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: #2D2D2D;
}
.close-mobile-menu {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  font-size: 28px;
  color: #2D2D2D;
  cursor: pointer;
  z-index: 10000;
}

.close-mobile-menu:hover {
  color: #000;
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #FAFAFC;
  z-index: 9999;
  display: none;
  padding: 2rem;
  overflow-y: auto;
}

.mobile-menu.open {
  display: block;
}

.close-mobile-menu {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  font-size: 28px;
  color: #2D2D2D;
  cursor: pointer;
}
.content-solu{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}


@media screen and (max-width: 767px){
  h1{
    font-size: 36px;
    line-height: 40px;
  }
  h3{
    font-size: 32px;
    line-height: 38px;
  }
  p, .mision-content p{
    font-size: 16px;
    line-height: 20px;
  }
  .section{
    height: 630px !important;
  }
  .container-header{
    padding-top: 80px !important;
  }
  h3.mision{
    font-size: 28px;
    line-height: 34px;
  }
  .mision-content span{
    font-size: 16px;
  }
  .card-estadisticas{
    margin-bottom: 20px;
  }
  .container-soluciones h3{
    font-size: 28px;
    line-height: 34px;
  }
  .c-list__title{
    font-size: 22px;
    line-height: 28px;
  }
  .c-list__content p{
    font-size: 16px;
    line-height: 22px;
  }
  .p-aliados{
    height: auto !important;
  }
  .sectionbanner{
    height: 344px;
  }
  .check-list-areas ul{
    padding-left: 0px;
  }
  .equpo-img{
    width: 100%;
    margin-bottom: 20px;
  }
  .inspirate-nosotros{
    font-size: 28px;
    line-height: 34px;
  }
  .swiper-backface-hidden .swiper-slide .img-fluid{
    height: 130px;
  }
  .swiper-backface-hidden .swiper-slide .img-thumbnail{
    height: 55px;
  }
  .galeria-principal .swiper-wrapper .swiper-slide{
    width: 220px !important;
  }
}