/* ABOUT US – GLASS CARD */
.about-glass-section {
  position: relative;
  min-height: 100vh;
  background-image: url("../images/backgrounds/background-color.svg");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 24px;
}

.about-glass-card {
  position: relative;
  z-index: 1;
  max-width: 960px;
  width: 100%;
  padding: 64px 80px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0px 8px 32px rgba(0, 0, 0, 0.18);
  text-align: center;
}

.about-title {
  font-family: "Raleway", sans-serif;
  font-weight: 700;
  font-size: 40px;
  line-height: 100%;
  letter-spacing: -1%;
  margin-bottom: 24px;
  color: #0d0a00;
}

.about-intro {
  font-family: "Raleway", sans-serif;
  font-weight: 500;
  font-style: Medium;
  font-size: 18px;
  line-height: 134%;
  letter-spacing: 0%;
  text-align: center;
  color: #333333a6;
  margin-bottom: 50px;
}

.about-avatars {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-bottom: 32px;
  
}

.about-avatars img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  cursor: pointer;
}

.about-quote {
  font-family: "Raleway", sans-serif;
  font-weight: 500;
  font-style: Medium;
  font-size: 18px;
  line-height: 134%;
  letter-spacing: 0%;
  text-align: center;
  color: #333333a6;
  margin-bottom: 30px;
}

.about-cta {
  background: #f26430;
  color: #ffd6c8;
  border: none;
  border-radius: 50px;
  padding: 16px 36px;
  font-family: "Raleway", sans-serif;
  font-weight: 700;
  font-size: 18px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0px 1px 2px 0px #00000040;
  cursor: pointer;
}

.about-cta span img {
  width: 30px;
  height: 30px;
}

/* AVATAR TOOLTIP */
.avatar-item {
  position: relative;
  margin: 0px -12px;
}

.avatar-tooltip {
  position: absolute;
  top: 0px;
  left: 65px;
  transform: translate(-100%, -50%) rotate(-12deg);
  margin-left: 10px;
  background: rgba(13, 10, 0, 0.85);
  color: #ffffff;
  padding: 6px 12px;
  border-radius: 10px;
  font-family: "Raleway", sans-serif;
  font-size: 13px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.avatar-item:hover .avatar-tooltip {
  opacity: 1;
  transform: translate(-100%, -50%) rotate(-12deg);
}

@media (max-width: 768px) {
  .about-glass-card {
    padding: 40px 24px;
  }
}

/* WHO WE ARE section */
.about {
  background: #faf9f6;
}

.who-container {
  max-width: 620px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.who-title {
  font-family: "Raleway", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 1;
  font-size: 40px;
  color: #1c1c1c;
}

.who-subtitle {
  font-family: var(--nav-font);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.5;
  color: #1c1c1c;
  max-width: 760px;
}

.who-logos {
  display: flex;
  gap: 48px;
  align-items: center;
  justify-content: center;
  margin: 24px 0;
  flex-wrap: wrap;
}

.who-logos img {
  height: 100px;
  opacity: 0.7;
  filter: grayscale(100%);
}

.who-actions {
  display: flex;
  gap: 24px;
  margin-top: 16px;
}

.btn-primary {
  min-width: 229px;
  height: 58px;
  background: var(--secondary);
  border-radius: 30px;
  border: none;
  box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.25);
  font-family: "Raleway", sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.34;
  color: #ffd6c8;
  cursor: pointer;
}

.btn-secondary {
  min-width: 229px;
  height: 58px;
  background: transparent;
  border-radius: 30px;
  border: none;
  padding: 0 24px;
  /* sin borde */
  box-shadow: 0px 1px 2px 0px #00000040;
  font-family: "Raleway", sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.34;
  color: #1c1c1c;
  /* color correcto del texto */
  cursor: pointer;
}

@media (max-width: 768px) {
  .about-glass-section {
    padding: 64px 16px;
  }

  .about-glass-card {
    padding: 32px 20px;
    border-radius: 22px;
  }

  .about-title {
    font-size: 28px;
    line-height: 1.1;
  }

  .about-intro,
  .about-quote {
    font-size: 15px;
    margin-bottom: 32px;
  }

  /* AVATARS */
  .about-avatars {
    gap: 8px;
    flex-wrap: wrap;
  }

  .about-avatars img {
    width: 72px;
    height: 72px;
  }

  /* Tooltip desactivado en touch */
  .avatar-tooltip {
    display: none;
  }

  /* CTA */
  .about-cta {
    font-size: 16px;
    padding: 14px 28px;
  }

  .about-cta span img {
    width: 24px;
    height: 24px;
  }

  /* WHO WE ARE */
  .who-container {
    gap: 24px;
    padding: 0 16px;
  }

  .who-title {
    font-size: 28px;
  }

  .who-subtitle {
    font-size: 15px;
  }

  .who-logos {
    gap: 32px;
  }

  .who-logos img {
    height: 72px;
  }

  .who-actions {
    flex-direction: column;
    gap: 16px;
    width: 100%;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    min-width: unset;
    font-size: 18px;
  }
}
