  :root{
    --ps-blue:#223975;
    --ps-cyan:#009ee2;
    --ps-bg:#fffbf8;
    --ps-text:#2b2b2b;
  }

  .ps-conocenos{
    background: var(--ps-bg);
    padding: 130px 0 90px;
  }

  .ps-conocenos .wrap{
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 20px;
  }

  .ps-conocenos .title{
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    color: var(--ps-blue);
    letter-spacing: 2px;
    font-size: clamp(44px, 6vw, 84px);
    line-height: 1;
    margin: 0 0 45px;
    text-align: center;
  }

  .ps-conocenos .grid{
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 42px;
    align-items: center;
  }

  .ps-conocenos .logoBox{
    display:flex;
    justify-content:center;
    align-items:center;
  }

  .ps-conocenos .logoBox img{
    width: min(520px, 100%);
    height: auto;
    display:block;
    filter: drop-shadow(0 18px 26px rgba(0,0,0,.08));
  }

  .ps-conocenos .copy{
    color: var(--ps-text);
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    line-height: 1.55;
  }

  .ps-conocenos .copy p{
    margin: 0 0 18px;
  }

  .ps-conocenos .copy strong{
    font-weight: 800;
    color: var(--ps-blue);
  }

  /* Frase inferior + burbuja "Aquí es" */
  .ps-conocenos .ctaRow{
      margin-top: 55px;
  }

  .ps-conocenos .ctaText{
      font-family: 'Inter', sans-serif;
      font-weight: 800;
      color: var(--ps-blue);
      font-size: clamp(22px, 2.4vw, 34px);
      line-height: 1.15;
        white-space: nowrap; /* 👈 clave */
  }

  .ps-conocenos .ctaInline{
      display: inline-flex;
      align-items: center;
      gap: 18px;
      flex-wrap: nowrap;   /* 👈 clave */
  }


/* Burbuja "Aquí es" (más parecida a la maqueta) */
.ps-conocenos .bubble{
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 12px 26px;
  background: var(--ps-cyan);
  color: #fff;

  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 18px;

  text-decoration: none;
  white-space: nowrap;

  /* forma más “globo” */
  border-radius: 14px;
  transform: skewX(-10deg);
  box-shadow: 0 18px 28px rgba(0,0,0,.18);
}

/* enderezamos el texto porque el contenedor está skew */
.ps-conocenos .bubble span{
  display: inline-block;
  transform: skewX(10deg);
}

/* Piquito más delgado y pegado (abajo a la derecha) */
.ps-conocenos .bubble:after{
  content:"";
  position: absolute;
  right: 20px;
  bottom: -10px;

  width: 0;
  height: 0;

  border-left: 9px solid transparent;
  border-right: 3px solid transparent;
  border-top: 12px solid var(--ps-cyan);

  /* que el piquito siga la inclinación */
  transform: skewX(10deg);
  filter: drop-shadow(0 10px 10px rgba(0,0,0,.16));
}

/* hover sutil */
.ps-conocenos .bubble:hover{
  filter: brightness(.98);
  transform: skewX(-10deg) translateY(-2px);
}
  /* Responsive */
@media (max-width: 900px){
    .ps-conocenos{
      padding: 40px 0 70px;
    }
    .ps-conocenos .grid{
      grid-template-columns: 1fr;
      text-align: center;
    }
    .ps-conocenos .ctaRow{
      justify-content: center;
    }
    .ps-conocenos .bubble:after{
      right: 50%;
      transform: translateX(50%);
    }
}

/* burbuja alineada con el texto */
.ps-conocenos .bubble-inline{
    display: inline-block;
    margin-left: 18px;
    vertical-align: middle;
    transition: transform .25s ease, filter .25s ease;
    filter: drop-shadow(0 18px 24px rgba(0,0,0,.18));
}

.ps-conocenos .bubble-inline img{
    width: 160px;
    height: auto;
    display: block;
}

/* efecto levantar */
.ps-conocenos .bubble-inline:hover{
    transform: translateY(-6px);
    filter: drop-shadow(0 26px 32px rgba(0,0,0,.25));
}

.ps-conocenos .bubble-inline:active{
    transform: translateY(-2px);
}

@media (max-width: 992px){

    .ps-conocenos .ctaInline{
        flex-wrap: wrap;      /* Permite salto */
        justify-content: center;
        text-align: center;
    }

    .ps-conocenos .ctaText{
        white-space: normal;  /* Permite que el texto baje */
    }

    .ps-conocenos .bubble-inline{
        margin-top: 12px;
    }
}