.clientesSection {
  background: none;
  text-align: center;
  padding: 20px 40px 20px;
  position: relative;
  overflow: visible;
  margin-top: -40px;
  padding-bottom: 10px;
  width: 100%;
  box-sizing: border-box;
  left: 0;
}

.clientesTitulo{
    text-align: center;
    margin-bottom: -45px;
    position: relative;
    z-index: 10;
}
.clientesTitulo .title-light {
    position: relative;
    top: 15px;
}
.clientesTituloBlanco{
    font-family: 'Poppins', sans-serif;
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 300;
    color: white;
    margin: 0;
    position: relative;
    top: 30px; 
    z-index: 2;
}
.clientesTituloNaranja{
    font-family: var(--font-body);
    color: var(--orange);
    font-weight: 800;
    font-size: clamp(72px, 12vw, 140px);
    letter-spacing: -8px;
    margin: 0;
    line-height: .9;
    text-shadow: 0 10px 22px rgba(0,0,0,.35);
    position: relative;
    z-index: 9;
    top: 2px;
}
.clientesCard{
  background: #ffffff;
  border-radius: 24px;
  padding: 30px 60px 70px; /* 🔥 espacio abajo para el botón */
  max-width: 900px;
  margin: 0 auto;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.15);
  position: relative; /* 🔥 importante */
  z-index: 1;
}

.clientesGrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr); 
  gap: 32px 24px;
  align-items: center;
  justify-items: center;
  margin-bottom: 10px;
  position: relative;
  top: 15px;
}

.clienteLogo img {
  max-width: 130px;
  max-height: 60px;
  object-fit: contain;
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

.clienteLogo img:hover {
  transform: scale(1.1);
}
.clienteLogo--lg img {
  max-width: 170px;
  max-height: 80px;
}

.clientesBoton{
  display: inline-flex;
  align-items: center;
  gap: 12px;

  background: var(--orange);
  color: #ffffff;

  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;

  padding: 14px 32px;
  border-radius: 999px;

  text-decoration: none;

  position: absolute; 
  left: 50%;
  bottom: -35px; 
  transform: translateX(-50%);

  transition: background 0.3s ease, transform 0.2s ease;
}

.clientesBoton:hover{
  background: #e05500;
  transform: translateX(-50%) scale(1.05);
}

@media (max-width: 768px) {
  .clientesTitulo { font-size: 30px; margin-bottom: -25px; }
  .clientesCard { padding: 40px 20px 28px; border-radius: 16px; }
  .clientesGrid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .clienteLogo img { max-width: 90px; max-height: 45px; }
  .clientesBoton { font-size: 15px; padding: 12px 24px; }
}
.terraazulLogo{
    max-width: 250px !important;
    max-height: 115px !important;
}

@media (max-width: 768px) {
    .clientesGrid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}
@media (max-width: 768px) {
    .clientesBoton {
        position: relative !important;
        bottom: auto !important;
        width: 100%;
        padding: 14px 28px;
        margin-top: 40px;
        box-sizing: border-box;
    }
}