/* =============================================
   NOSOTRAS.CSS
   Estilos específicos para nosotras.html
   ============================================= */


/* ----- HERO NOSOTRAS ----- */
.nos-hero {
    position: relative;
    aspect-ratio: 394 / 330;
    height: auto;
    min-height: 0;
    background-image:
        linear-gradient(180deg, #ecf7ff 0%, rgba(236, 247, 255, 0) 40%),
        url('../assets/images/nosotras/hero.webp');
    background-size: cover, cover;
    background-position: center, center top 35px;
    padding: 5.75rem 1.4rem 2rem;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    border-radius: 0 0 var(--radius-card) var(--radius-card);
}

.nos-hero__title {
  font-family: 'Chewy', cursive;
  font-size: 2.8rem;
  font-weight: 700;
  color: #ff9ec4;
  text-align: center;
  margin: 1.5rem 0 0;
  letter-spacing: 0.5px;

  -webkit-text-stroke: 6px #ffffff;
  paint-order: stroke fill;

  filter:
    drop-shadow(0 4px 10px rgba(0, 0, 0, 0.5))
    drop-shadow(0 2px 4px rgba(0, 0, 0, 0.4));
}

.nos-scallop {
  position: relative;
  height: 30px;
  margin-top: -30px;
  background: radial-gradient(circle at 15px 0, transparent 15px, var(--lightblue) 16px) repeat-x;
  background-size: 30px 30px;
  z-index: 2;
}

.nos-info {
  padding: 2rem 1.2rem;
}

.nos-info__list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 480px;
  margin: 0 auto;
}

.nos-info__card {
  display: flex;
  align-items: center; /* antes: stretch */
  background: #fff;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

.nos-info__card-image {
  flex-shrink: 0;
  width: 60px;
  aspect-ratio: 1 / 1;
  margin-left: 0.6rem;
}

.nos-info__card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.nos-info__card-text {
  flex: 1;
  padding: 1rem 1.1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.nos-info__card-title {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 0.9rem;
  color: #5c4a9e;
  margin: 0 0 0.35rem;
  letter-spacing: 0.3px;
}

.nos-info__card-desc {
  font-family: var(--font-base);
  font-size: 0.82rem;
  line-height: 1.4;
  color: #666;
  margin: 0;
}

.nos-cards {
  padding: 1rem 0.6rem;
}

.nos-cards__list {
  display: flex;
  gap: 0.7rem;
  overflow-x: auto;
  justify-content: safe center; 
  scroll-snap-type: x mandatory;
  padding: 0.3rem 0.3rem 0.6rem;
  -webkit-overflow-scrolling: touch;
}

.nos-cards__list::-webkit-scrollbar {
  display: none;
}

.nos-cards__item {
  flex: 0 0 auto;
  scroll-snap-align: center;
  width: 110px;
  background: #ffff;
  border-radius: 8px;
  box-shadow: var(--shadow-card);
  padding: 0.3rem 0.3rem 0.45rem;
  text-align: center;
  transform: rotate(-2deg);
}

.nos-cards__item:nth-child(2) {
  transform: rotate(1.5deg);
}

.nos-cards__item:nth-child(3) {
  transform: rotate(-1.5deg);
}

.nos-cards__photo {
  border-radius: 5px;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  margin-bottom: 0.35rem;
}

.nos-cards__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.nos-cards__title {
  font-family: 'Chewy', cursive;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
  margin: 0;
}

.nos-cards__title--orange {
  background: linear-gradient(180deg, #FFF066 0%, #FFA800 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(1.5px 1.5px 0px #4A2800);
}

.nos-cards__title--green {
  background: linear-gradient(180deg, #A8E038 20%, #58B000 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(1.5px 1.5px 0px #1B4000);
}

.nos-cards__title--blue {
  background: linear-gradient(180deg, #70C5FF 20%, #2A82E4 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(1.5px 1.5px 0px #0F2D5C);
}
