/* =============================================
   COOL DYNAMICS — DEV stylesheet
   Fuente: DM Sans (Google Fonts)
   Canvas base: 1920px
   ============================================= */

/* ---------- Reset & base ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: #1F394C;
  background: #fff;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

/* ---------- Contenedor global ---------- */
.header-contenedor,
.hero-contenedor,
.servicios-contenedor,
.empresa-contenedor,
.stats-contenedor,
.cta-contenedor {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}


/* =============================================
   HEADER  #fila-header
   ============================================= */


/*
#fila-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 0;
}
.header-contenedor {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding-top: 0;
  padding-right: 60px;
  padding-left: 60px;
  padding-bottom: 0;

}
*/

#fila-header>div>div {
  justify-content: space-between;
  align-items: center;
}

.header-logo {
  display: flex;
  align-items: flex-start;
}

.header-logo-img {
  width: 188px;
  height: auto;
  display: block;
}

/*
.boton-nav {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 28px;
  padding: 12px 24px;
  background: #1F394C;
  border: none;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  transition: background 0.2s;
}*/

.boton-nav::before {
  content: url(/wp-content/uploads/2026/04/flecha.svg);
}

.boton-nav:hover {
  background: #2FCFEC;
  color: #113A75;
  letter-spacing: 1.5px;
}


.boton-nav {
  display: flex;
  gap: 10px;
  border-radius: 30px;
  background: #113A75;
  color: #fff;
  text-decoration: none;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 1px;
  justify-content: center;
  align-items: center;
  width: 305px;
  height: 55px;
}

/* textos */
.boton-nav span {
  transition: all 0.3s ease;
}

.texto-hover {
  position: absolute;
  opacity: 0;
}

/* hover */
.boton-nav:hover .texto-default {
  opacity: 0;
  transform: translateY(-10px);
}

.boton-nav:hover .texto-hover {
  opacity: 1;
  transform: translateY(0);
}

.boton-nav::before {
  content: url(/wp-content/uploads/2026/04/flecha.svg);
  width: 11px;
}

.boton-nav:hover::before {
  content: url('/wp-content/uploads/2026/04/Icon-feather-phone.svg');
  width: 11px;
  padding-top: 10px;
}















/* =============================================
   HERO  #fila-hero
   ============================================= */
#fila-hero {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/*
.hero-fondo {
  inset: 0;
  overflow: hidden;
  z-index: 0;
}*/

.hero-fondo {
  padding-top: 115px;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-filtro {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 0.7;
}

.hero-contenedor {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 60px;
  padding-top: 160px;
  padding-bottom: 80px;
  width: 100%;
}

/*
.hero-texto {
  flex: 1;
  max-width: 540px;
}
*/
.hero-titulo {
  font-size: 65px;
  font-weight: 700;
  color: #fff;
  line-height: 75px;
  letter-spacing: 0px;
  margin-bottom: 24px;
}

.hero-texto {
  max-width: 680px;
}

.hero-descripcion {
  font-size: 20px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.65;
  margin-bottom: 32px;
}

.boton-principal {
  display: flex;
  width: 275px;
  height: 55px;
  background: #2FCFEC;
  color: #1F394C;
  font-size: 20px;
  font-weight: 700;
  border-radius: 30px;
  transition: opacity 0.2s;
  align-items: center;
  justify-content: center;
  gap: 12px;
}


.boton-principal:before {
  content: url(/wp-content/uploads/2026/04/flecha-azul.svg);
}




.hero-texto {
  max-width: 691px;
}

.boton-principal:hover {
  background-color: white;
}

/* Formulario card */
.hero-formulario {
  width: 483px;
  position: absolute;
  right: -68px;
}

.formulario-card {
  background: #fff;
  border-radius: 12px;
  padding: 32px 28px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.18);
}

.formulario-titulo {
  font-size: 35px;
  font-weight: 700;
  color: #1F394C;
  margin-bottom: 6px;
  text-align: center;
}

.formulario-subtitulo {
  font-size: 15px;
  color: #1F394C;
  margin-bottom: 20px;
  line-height: 1.5;
  text-align: center;
}

/* CF7: grid de 2 columnas dentro del <p> que genera CF7 */
#fila-hero .wpcf7-form>p {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 0;
}

#fila-hero .wpcf7-form>p>br {
  display: none;
}

/* Textarea y submit: full width */
#fila-hero .wpcf7-form-control-wrap[data-name="mensaje"],
#fila-hero .wpcf7-form>p>input[type="submit"],
#fila-hero .wpcf7-form>p>.wpcf7-spinner {
  grid-column: 1 / -1;
}

/* Inputs dentro de los spans: full width */
#fila-hero .wpcf7-form-control-wrap {
  display: block;
}

.campo-input {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid #1F394C;
  border-radius: 6px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  color: #1F394C;
  outline: none;
  transition: border-color 0.2s;
}

a:focus {
  outline: none !important;
}

.campo-input:focus {
  border-color: #2FCFEC;
}

.campo-input::placeholder {
  color: #1F394C;
}

.campo-textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid #1F394C;
  border-radius: 6px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  color: #1F394C;
  resize: vertical;
  height: 100px;
  min-height: 80px;
  outline: none;
  margin-bottom: 0;
  transition: border-color 0.2s;
}

.campo-textarea:focus {
  border-color: #2FCFEC;
}

.campo-textarea::placeholder {
  color: #1F394C;
}

.boton-enviar {
  display: block;
  margin: 0 auto;
  padding: 13px 48px;
  background: #2FCFEC;
  color: #1F394C;
  font-family: 'DM Sans', sans-serif;
  font-size: 18px;
  font-weight: 600;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: opacity 0.2s;
}

.boton-enviar:hover {
  opacity: 0.85;
}

/* WhatsApp flotante */
.boton-wsp {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  transition: transform 0.2s;
}

.boton-wsp img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.boton-wsp:hover {
  transform: scale(1.08);
}


/* =============================================
   SERVICIOS  #fila-servicios
   ============================================= */
#fila-servicios {
  padding: 20px 0;
  background: #fff;
}

.servicios-contenedor {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto auto auto;
  gap: 0 40px;
}

.tarjeta-servicio {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 4;
  row-gap: 12px;
}

.servicio-cabecera {
  display: flex;
  gap: 10px;
  max-width: 250px;
  /*left: -38px;*/
  position: relative;
}

.servicio-icono {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
}

.servicio-foto {
  margin-top: 0;
  border-radius: 10px;
  width: 100%;
  height: 220px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.servicio-tag {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.07em;
  color: #2FCFEC;
  text-transform: uppercase;
}

.servicio-titulo {
  font-size: 20px;
  font-weight: 700;
  color: #1F394C;
  line-height: 1.3;
  margin: 0;
}

.servicio-descripcion {
  font-size: 14px;
  color: #1F394C;
  line-height: 18px;
  font-weight: 500;
  max-width: 301px;
}



/* =============================================
   EMPRESA  #fila-empresa
   ============================================= */
#fila-empresa {
  background: transparent linear-gradient(270deg, #113A75 0%, #2FCFEC 100%) 0% 0% no-repeat padding-box;
  padding: 50px 0 0;
  position: relative;
  overflow: hidden;
}

/* Copo decorativo de fondo */
#fila-empresa::before {
  /*  content: '';
  position: absolute;
  bottom: 80px;
  left: 4%;
  width: 420px;
  height: 420px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cg stroke='%23ffffff' stroke-width='1.6' stroke-linecap='round' fill='none' opacity='0.12'%3E%3Cpath d='M50 5v90'/%3E%3Cpath d='M5 50h90'/%3E%3Cpath d='M19 19l62 62'/%3E%3Cpath d='M81 19L19 81'/%3E%3Cpath d='M50 15l-6 -6M50 15l6 -6M50 85l-6 6M50 85l6 6'/%3E%3Cpath d='M15 50l-6 -6M15 50l-6 6M85 50l6 -6M85 50l6 6'/%3E%3Cpath d='M25 25l-8 -2M25 25l-2 -8M75 25l8 -2M75 25l2 -8M25 75l-8 2M25 75l-2 8M75 75l8 2M75 75l2 8'/%3E%3Ccircle cx='50' cy='50' r='6'/%3E%3C/g%3E%3C/svg%3E") center/contain no-repeat;
  pointer-events: none;
  z-index: 0;*/
  content: url(/wp-content/uploads/2026/04/transparencia-copo-1.png);
  position: absolute;
  bottom: 85px;
  left: 20%;
}


.empresa-contenedor {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 125px;
  align-items: center;
  padding-bottom: 60px;
  position: relative;
  z-index: 1;
}

/* Grupo de fotos compuesto */
.empresa-fotos {
  display: flex;
  align-items: center;
}

.empresa-grupo-fotos {
  width: 100%;
  height: auto;
  display: block;
}

/* Texto empresa */
.empresa-marca {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

.empresa-marca-logo {
  height: 65px;
  width: auto;
}

.empresa-marca-nombre {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: #2FCFEC;
  text-transform: uppercase;
}

.empresa-titulo {
  font-size: 42px;
  font-weight: 700;
  color: #fff;
  line-height: 55px;
  letter-spacing: 2px;
  margin-bottom: 22px;
  max-width: 475px;
}

.empresa-descripcion {
  font-size: 18px;
  color: #FFFFFF;
  line-height: 26px;
  margin-bottom: 14px;
  font-weight: 500;
  max-width: 469px;
}

.empresa-lista {
  margin: 20px 0 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}


.empresa-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 20px;
  letter-spacing: 1px;
  font-weight: 700;
  color: #fff;
  line-height: 28px;
  max-width: 433px;
}


.empresa-item::before {
  content: url(/wp-content/uploads/2026/04/icono-check.svg);
}

.boton-nav.empresa {
  padding-inline: 35px;
  width: fit-content;
}

.boton-nav.empresa:hover {
  color: #1F394C;
  background-color: #2FCFEC;
  letter-spacing: 0px;
}

.boton-nav.empresa:hover:before {
  content: url(/wp-content/uploads/2026/04/flecha-azul.svg);
  width: unset;
  padding-top: unset;
}

/* Barra de stats inferior empresa */
.empresa-stats-barra {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  padding: 7px 32px;
  margin: auto;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 100px;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  width: fit-content;
}

.stat-barra-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0px;
  color: rgba(255, 255, 255, 0.85);
  text-transform: uppercase;
  white-space: nowrap;
}

.stat-barra-item::before {
  content: url(/wp-content/uploads/2026/04/icono-check.svg);
  padding-top: 10px;
}



/* =============================================
   STATS  #fila-stats
   ============================================= */
#fila-stats {
  padding: 51px 0;
  background: #FAFBFB;
  border-bottom: 1px solid #e8edf2;
}

.stats-contenedor {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.stat-item {
  padding: 0 15px;
}

.stat-numero {
  font-size: 36px;
  font-weight: 700;
  color: #113A75;
  line-height: 42px;
  margin-bottom: 10px;
  margin-top: 0px;
}

.stat-descripcion {
  font-size: 18px;
  font-weight: 700;
  color: #1F394C;
  line-height: 24px;
  margin: 0px;
}


/* =============================================
   CTA  #fila-cta
   ============================================= */
#fila-cta {
  background: linear-gradient(135deg, #1F394C 0%, #113A75 100%);
}

.cta-contenedor {
  display: flex;
  gap: 40px;
  padding-top: 52px;
  padding-bottom: 52px;
  align-items: center;
  justify-content: space-between;
}

.cta-texto {
  font-size: 36px;
  font-weight: 600;
  color: #fff;
  line-height: 48px;
  max-width: 635px;
  margin: 0px;
}

.cta-destacado {
  color: #2FCFEC;
  font-weight: 700;
}

.boton-cta {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 16px 36px;
  background: #2FCFEC;
  border: none;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  color: #1F394C;
  white-space: nowrap;
  transition: background 0.2s, transform 0.15s;
}


a.empresa-descripcion:hover {
  color: white;
}


.boton-cta:hover {
  background: #5dddf5;
  transform: translateY(-1px);
}

.pie-pagina {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 16px 40px;
  text-align: center;
}

.pie-pagina p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
}


.wpcf7-not-valid-tip {
  font-size: 12px !important;
}

.wpcf7-response-output {
  border: none !important;
  margin: 0px !important;
  font-size: 14px;
  line-height: 16px;
  text-align: center;
  margin-top: 10px !important;
}

span.wpcf7-spinner {
  position: absolute;
  right: 52px;
  bottom: 84px;
}


@media (max-width: 1400px) {

  .hero-formulario {
    right: -50px;
  }

  #fila-empresa::before {
    left: 9%;
  }
}




/* =============================================
   RESPONSIVE — Mobile first
   ============================================= */

/* Tablet */
@media (max-width: 1024px) {

  .navbar-toggle {
    display: none !important;
  }

  header .lqd-mobile-sec-inner,
  header .navbar-brand {
    justify-content: center !important;
  }

  header .logo-default {
    width: 60px;
    position: relative;
  }

  header.header .lqd-mobile-sec .navbar-brand-inner {
    margin-inline-end: unset !important;
  }


  .hero-formulario {
    position: relative;
    right: unset;
  }

  .hero-titulo {
    font-size: 38px;

    line-height: 46px;

  }


  .hero-titulo br {
    display: none;
  }



  .hero-contenedor {
    gap: 36px;
  }

  .hero-formulario {
    width: 320px;
  }

  .empresa-titulo {
    font-size: 28px;
  }

  .hero-contenedor {
    flex-direction: column;
    padding-top: 0px;
    padding-bottom: 48px;
    gap: 32px;
  }

  .hero-formulario {
    width: 100%;
  }

  .hero-texto {
    max-width: unset;
  }

}



#zocalo-mobile>div {
  width: 100%;
  position: fixed;
  bottom: 0px;
  z-index: 10;
  height: 51px;
}

#zocalo-mobile>div>div>div {
  padding: 0px !important;
}

a.botonZocalo {
  display: flex;
  height: 51px;
  align-items: center;
  justify-content: center;
  background-color: #2FCFEC;
  color: #1F394C;
  font-weight: 600;
}


a.botonZocalo::before {
  content: url(/wp-content/uploads/2026/04/Icon-feather-phone.svg);
  padding-top: 10px;
  padding-right: 10px;
}



#zocalo-mobile {
  display: none;
}




/* Mobile */
/*@media (max-width: 768px)*/
@media (max-width: 900px) {

  #fila-cta {
    margin-bottom: 30px;
  }

  .desktop {
    display: none;
  }

  /*nas*/

  #zocalo-mobile {
    display: block;
  }



  .hero-contenedor {
    padding-top: 0px !important;
  }

  .servicio-foto {
    width: fit-content;
  }

  .servicio-cabecera,
  .servicio-descripcion,
  .empresa-descripcion,
  .empresa-item {
    max-width: unset;
  }

  #fila-empresa::before {
    left: 50%;
    transform: translate(-50%);
    bottom: -12px;
  }

  .stat-numero br {
    display: none;
  }

  .boton-principal {
    width: 245px;
    height: 45px;
    font-size: 16px;
  }

  .boton-principal:focus {
    outline: none;
  }

  .stat-numero {
    font-size: 30px;
    margin-bottom: 4px;
  }

  /*fin nas*/

  .header-contenedor,
  .hero-contenedor,
  .servicios-contenedor,
  .empresa-contenedor,
  .stats-contenedor,
  .cta-contenedor {
    padding: 0 20px;
  }

  /* Header */
  #fila-header {
    padding: 16px 0;
  }

  .header-nombre {
    font-size: 12px;
  }

  .boton-nav {
    font-size: 16px;
  }

  /* Hero */
  .hero-contenedor {
    flex-direction: column;
    padding-top: 100px;
    padding-bottom: 48px;
    gap: 32px;
  }

  .hero-titulo {
    font-size: 30px;
  }

  .hero-formulario {
    width: 100%;
  }

  .formulario-fila {
    flex-direction: column;
  }

  /* Servicios */
  .servicios-contenedor {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    gap: 48px;
  }

  .tarjeta-servicio {
    display: flex;
    flex-direction: column;
    gap: 12px;
    grid-row: auto;
  }

  /* Empresa */
  .empresa-contenedor {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .empresa-fotos {
    /*height: 280px;*/
  }

  .empresa-titulo {
    font-size: 26px;
    line-height: normal;
    max-width: unset;
  }

  .empresa-stats-barra {
    flex-wrap: wrap;
    gap: 16px;
    padding: 20px;
    margin-top: 35px;
    /*background-color: #7b939c30;*/
    background-color: #1c485957;
  }

  /* Stats */
  .stats-contenedor {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  /* CTA */
  .cta-contenedor {
    flex-direction: column;
    text-align: center;
    gap: 24px;
  }

  .cta-texto {
    font-size: 18px;
  }

}

@media (max-width: 600px) {

  .hero-fondo {
    padding-top: 55px;
  }

  .hero-titulo {
    line-height: 38px;
  }

  .hero-descripcion {
    font-size: 16px;
  }

  .formulario-titulo {
    margin-top: 0px;
    font-size: 28px;
  }

  .formulario-subtitulo {
    font-size: 14px;
  }

  #fila-hero .wpcf7-form>p {
    display: flex;
    flex-direction: column;
  }

  .empresa-descripcion {
    font-size: 16px;
    line-height: 24px;
  }

  .empresa-item {
    font-size: 18px;
    line-height: 26px;
  }

  .boton-nav {
    line-height: 18px;
    text-align: center;
  }

  .boton-enviar {
    padding: 7px 41px;
    font-size: 16px;
  }

  .cta-texto {
    line-height: 20px;
  }

  .cta-contenedor {
    margin-top: 35px;
  }

  .stat-numero {
    font-size: 25px;
    line-height: 27px;
  }

  .stat-descripcion {
    font-size: 16px;
    line-height: 24px;
  }

  .stat-barra-item {
    font-size: 14px;
  }


  .stat-barra-item {
    font-size: 14px;
    line-height: 20px;
    white-space: normal;
  }

  .stat-barra-item::before {
    padding-top: 0px;
  }

  .empresa-stats-barra {
    width: auto;
    margin-inline: 10px;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    border-radius: 10px;
    align-items: flex-start;
  }

}