/* ===== CSS RESET ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  height: 100%;
  font-family: sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

input, button, textarea, select {
  font: inherit;
}

a {
  text-decoration: none;
  color: inherit;
}

ul, ol {
  list-style: none;
}

button {
  background: none;
  border: none;
  cursor: pointer;
}


body {
    margin: 0;
    font-family: 'Source Sans Pro', sans-serif;
    background: #fff;
    color: #4D4D4D;
    overflow-x: hidden;
    font-size: 18px;
  }

  .intro {
    background-color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    text-align: left;
    height: 550px;
    position: relative;
    overflow: hidden;
    padding-right: 5vw;
    padding-left: 5vw;
  }

  .intro .big-d {
    position: absolute;
    height: 750px;
    left: -550px;
    top: -125px;
    opacity: 1;
    z-index: 0;
    animation: showAndStay 3s ease forwards;
    animation-fill-mode: forwards;
  }

  .intro .contenido {
        text-align: right;
  }

  .curve-text-img {
    position: absolute;
    height: 750px;
    left: -550px;
    top: -125px;
    opacity: 1;
    animation: fadeInRotate 1.5s ease-in-out 3s forwards, rotateSlow 20s linear infinite 4.5s;
    animation-fill-mode: forwards;
    z-index: 1;
    transform-origin: center;
  }

  .intro img.logo {
    max-width: 180px;
    margin: auto;
    
    margin-bottom: 2rem;
    
  }

  .intro-text {
    font-size: 1.4rem;
    margin-top: 1rem;
    text-align: center;
    margin-bottom: 2rem;
  }

  .highlight {
    color: #d1c900;
    font-weight: bold;
  }

  .icons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    animation: fadeIn 2s ease-in-out 5s forwards;
    opacity: 1;
    z-index: 2;
  }

  .icons img {
    width: 50px;
    height: 50px;
    transition: transform 0.3s ease;
  }

  .icons img:hover {
    transform: scale(1.2);
    cursor: pointer;
  }

  @keyframes showAndStay {
    0% { opacity: 1; transform: scale(1.5); }
    50% { opacity: 1; transform: scale(1); }
    100% { transform: scale(1); }
  }

  @keyframes fadeIn {
    from { opacity: 1; }
    to { opacity: 1; }
  }

  @keyframes fadeInRotate {
    0% { opacity: 1; transform: rotate(0deg); }
    100% { opacity: 1; transform: rotate(0deg); }
  }

  @keyframes rotateSlow {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }

  @media (max-width: 600px) {
    .intro {
      align-items: center;
      text-align: center;
      padding: 1rem;
    }
    .intro-text {
      font-size: 1rem;
    }
  }

  .vertical-line {
    position: absolute;
    right: 0;
    top: 0;
    width: 20px;
    height: 100%;
    background-color: #d1c900;
    z-index: 3;
  }

  .publico-privado {
    display: flex;
    flex-wrap: wrap;
    background-color: #d1c900;
    color: #000;
    min-height: 600px;
    padding-bottom: 40px;
  }

  .clientes {
    background-color: #d1c900;
    padding: 4rem 2rem;
  }

  .clientes .titulo-clientes {
    color: white;
    margin-bottom: 3rem;
    font-size: 2.4rem;
    font-weight: 700;
  }

  .pp-col {
    flex: 1 1 50%;
    padding: 0 2rem;
    box-sizing: border-box;
  }

  .pp-col.izq {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
  }

  .pp-col.izq h1 {
    font-size: 6rem;
    font-weight: bold;
    margin: 0;
    line-height: 0.9;
  }

  .pp-col.izq .sub {
    margin-top: 1rem;
    font-size: 1.4rem;
    color: #222;
    margin-bottom: 2rem;
    text-align: left;
  }

  .pp-col.der {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .burbuja {
    padding: 1rem;
    font-size: 1rem;
    line-height: 1.6;
    box-shadow: none;
    color: #000;
    background-color: white;
    border-radius: 25px;
  }

  @media (max-width: 800px) {
    .vertical-line {
        display: none;
    }
    .publico-privado {
      flex-direction: column;
    }
    .pp-col.izq h1 {
      font-size: 4rem;
      text-align: center;
      width: 100%;
    }
    .pp-col.izq,
    .pp-col.der {
      align-items: center;
      text-align: center;
    }
  }

 
  .titulo-bold {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    text-align: left;
    letter-spacing: -4px;
  }
  






  .bloque-central {
    position: relative;
    z-index: 1;
    overflow: hidden;
  }
  
  .globo-bg {
    position: absolute;
    right: -16%;
    bottom: 20px;
    z-index: 0;
    pointer-events: none;
    width: 50%;
  }
  
  .proponemos {
    position: relative;
    z-index: 2;
    padding: 2rem 2rem 0;
  }

  .contenido p {
    margin-bottom: 1rem;
  }
  
  .contenido {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
  }
  
  .titulo-proponemos {
    font-size: 2.4rem;
    font-weight: bold;
    color: #d1c900;
    margin-bottom: 2rem;
  }
  
  .bloques {
    
    margin-bottom: 2rem;
  }
   .bloques div {
      margin-bottom: 2rem;
    }


  .bloques strong {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
  }
  
  .equipo-contacto {
    padding: 4rem 2rem;
    position: relative;
    z-index: 2;
  }



  .equipo, .contacto {
    margin-bottom: 2rem;
  }
  
  .titulo-somos {
    font-size: 2.4rem;
    font-weight: 700;
    color: #d1c900;
  }
  
  .titulo-contacto {
    font-size: 2.4rem;
    font-weight: 700;
    color: #555;
  }
  
  .footer-logos {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 3rem;
    padding-top: 1rem;
    justify-content: space-between;
  }

  .footer-logos  .iconos {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
  }
  
  .logo-footer {
    height: 40px;
  }
  
  .icono-red {
    height: 50px;
    cursor: pointer;
  }

  .hover-icon {
    transition: filter 0.3s ease;
    cursor: pointer;
  }
  

  @media (max-width: 768px) {
    .globo-bg,
    .big-d,
    .curve-text-img  {
        display: none;
    }
  
    .footer-logos {
      flex-direction: column;
      justify-content: center;
      align-items: center;
    }
    .proponemos {
      padding-bottom: 2rem;
    }
    .equipo-contacto {
      padding: 0;
      padding-bottom: 3rem;
    }
    .equipo-contacto .equipo,
    .equipo-contacto .contacto {
      padding: 2rem 2rem;
      margin-bottom: 0;
    }
    .equipo-contacto .equipo {
      background-color: #d1c900;
      color: white;
    }
    .equipo-contacto .equipo .titulo-bold,
    .equipo-contacto .equipo .highlight {
      color: white;
    }
  }

  @media (min-width: 1024px) {
    .intro img.logo {
        margin-left: auto;
        margin-right: 0;
    }

    .icons{
        justify-content: flex-end;
    }
    .bloques {
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 3rem;
    }
    .equipo, .contacto {
        margin-bottom: 4rem;
    }

    .intro-text {
        text-align: right;
    }
    .burbuja {
        padding: 6rem 5rem 4rem 6rem;
        background: url('../images/bubble.svg') no-repeat center center / contain;
        background-size: contain;
        background-color: transparent;
    }
    .pp-col.izq .sub {
        margin-bottom: 0;
    }
    .titulo-somos,
    .titulo-contacto,
    .titulo-proponemos,
    .titulo-clientes {
        font-size: 5rem;
    }
    .proponemos {
        padding: 4rem 2rem;
    }
    .titulo-bold {
        letter-spacing: -4px;
    }
    .equipo-contacto .contenido {
        padding-right: 40%;
      }
  }

  @media (min-width: 1300px) {
    .burbuja {
        padding: 7rem 8rem 5rem 9rem;
    }
  }
  