

/* =========================================
   NOSOTROS
   manifesto + bienvenida + tarjetas
   ========================================= */

.brand-manifesto {
  padding: 0;
  margin: 0;
}

.brand-manifesto > .container,
.welcome-tech > .container {
  width: var(--main-shell-w);
  max-width: var(--main-shell-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 0;
  padding-right: 0;
}

.brand-manifesto-title {
  width: 100%;
  margin: 0;
  font-family: "Brumder", sans-serif;
  font-size: clamp(1.65rem, 2.9vw, 3.05rem);
  line-height: 1.02;
  letter-spacing: 0.1px;
  word-spacing: -0.04em;
  text-align: justify;
  text-align-last: left;
  color: #2f2f2f;
}

.brand-manifesto-title span {
  color: var(--principal);
}

.welcome-tech {
  padding: 87px 0 64px;
}

.welcome-tech-title {
  text-align: center;
  font-family: "Brumder", sans-serif;
  font-size: clamp(3rem, 4.8vw, 4.8rem);
  line-height: 1;
  letter-spacing: 0.15px;
  color: var(--principal);
  margin: 0 0 18px;
}

.welcome-tech-text {
  width: 100%;
  max-width: none;
  margin: 0 0 48px;
  padding: 0;
  text-align: center;
  font-family: "Mazzard", sans-serif;
  font-size: clamp(1rem, 1.12vw, 1.18rem);
  line-height: 1.62;
  color: #111;
  font-weight: 500;
}

.feature-cards-shell {
  position: relative;
  width: 100%;
}

.feature-cards-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(148px, var(--feature-card-w)));
  justify-content: space-between;
  gap: 18px;
  width: 100%;
  max-width: 100%;
  margin: 0;
  align-items: stretch;
}

.feature-card-dark {
  width: 100%;
  max-width: var(--feature-card-w);
  min-height: 242px;
  background: #2f2f2f;
  border-radius: 26px;
  padding: 26px 14px 22px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.14);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.feature-card-dark:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 32px rgba(0, 0, 0, 0.18);
}

.feature-card-dark i {
  font-size: 3.9rem;
  color: #00b7bf;
  margin-bottom: 18px;
  line-height: 1;
}

.feature-card-dark h3 {
  margin: 0;
  color: #00b7bf;
  font-size: 1.08rem;
  font-weight: 800;
  line-height: 1.08;
  max-width: 140px;
}

.feature-cards-btn,
.feature-cards-dots {
  display: none;
}

@media (max-width: 1280px) {
  .feature-cards-grid {
    grid-template-columns: repeat(5, minmax(138px, 170px));
    gap: 16px;
  }

  .feature-card-dark {
    min-height: 228px;
  }

  .feature-card-dark i {
    font-size: 3.5rem;
  }

  .feature-card-dark h3 {
    font-size: 1rem;
  }
}

@media (max-width: 992px) {
  .welcome-tech-text {
    font-size: 1rem;
    line-height: 1.58;
    margin-bottom: 34px;
  }

  .feature-cards-grid {
    grid-template-columns: repeat(3, minmax(150px, 1fr));
    justify-content: center;
    gap: 22px;
  }

  .feature-card-dark {
    max-width: none;
    min-height: 220px;
  }
}

@media (max-width: 768px) {
  .welcome-tech {
    padding: 28px 0 52px;
  }

  .welcome-tech-title {
    font-size: clamp(2.1rem, 6vw, 2.9rem);
    margin-bottom: 14px;
  }

  .welcome-tech-text {
    font-size: 0.97rem;
    line-height: 1.56;
    margin-bottom: 26px;
    text-align: justify;
  }

  .brand-manifesto-title {
    font-size: clamp(1.18rem, 4.2vw, 1.48rem);
    line-height: 1.05;
    letter-spacing: 0.08px;
    word-spacing: -0.02em;
  }

  .feature-cards-grid {
    grid-template-columns: repeat(2, minmax(150px, 1fr));
    gap: 18px;
  }

  .feature-card-dark {
    min-height: 195px;
    border-radius: 22px;
    padding: 22px 14px 18px;
  }

  .feature-card-dark i {
    font-size: 3rem;
    margin-bottom: 12px;
  }

  .feature-card-dark h3 {
    font-size: 0.96rem;
    max-width: 130px;
  }
}

@media (max-width: 576px), (max-width: 950px) and (max-height: 500px) and (orientation: landscape) {
  .welcome-tech {
    overflow: hidden;
  }

  .feature-cards-shell {
    padding: 0;
  }

  .feature-cards-grid {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 4px 0 8px;
    justify-content: flex-start;
    scroll-behavior: smooth;
  }

  .feature-cards-grid::-webkit-scrollbar {
    display: none;
  }

  .feature-card-dark {
    flex: 0 0 calc((100% - 24px) / 3);
    width: calc((100% - 24px) / 3);
    min-width: calc((100% - 24px) / 3);
    max-width: calc((100% - 24px) / 3);
    min-height: 178px;
    border-radius: 20px;
    padding: 18px 10px 16px;
    scroll-snap-align: start;
  }

  .feature-card-dark i {
    font-size: 2.35rem;
    margin-bottom: 12px;
  }

  .feature-card-dark h3 {
    font-size: 0.82rem;
    line-height: 1.08;
    max-width: 102px;
    font-weight: 800;
  }

  .feature-cards-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 7px;
    margin-top: 12px;
  }

  .feature-cards-dot {
    width: 8px;
    height: 8px;
    border: none;
    border-radius: 999px;
    background: rgba(51, 153, 153, 0.22);
    cursor: pointer;
    padding: 0;
    transition: all 0.25s ease;
  }

  .feature-cards-dot.active {
    width: 22px;
    background: var(--principal);
  }
}

@media (max-width: 390px) {
  .feature-cards-grid {
    gap: 8px;
  }

  .feature-card-dark {
    flex: 0 0 calc((100% - 16px) / 3);
    width: calc((100% - 16px) / 3);
    min-width: calc((100% - 16px) / 3);
    max-width: calc((100% - 16px) / 3);
    min-height: 168px;
    padding: 16px 8px 14px;
  }

  .feature-card-dark i {
    font-size: 2.1rem;
  }

  .feature-card-dark h3 {
    font-size: 0.76rem;
    max-width: 94px;
  }
}

@media (max-width: 950px) and (max-height: 500px) and (orientation: landscape) {
  .feature-cards-grid {
    gap: 14px;
  }

  .feature-card-dark {
    flex: 0 0 calc((100% - 28px) / 3);
    width: calc((100% - 28px) / 3);
    min-width: calc((100% - 28px) / 3);
    max-width: calc((100% - 28px) / 3);
    min-height: 190px;
    padding: 20px 12px 18px;
  }

  .feature-card-dark i {
    font-size: 2.5rem;
    margin-bottom: 12px;
  }

  .feature-card-dark h3 {
    font-size: 0.88rem;
    max-width: 110px;
    line-height: 1.08;
  }
}