/* ── HERO ── */
.nos-hero {
  min-height: 300px;
  background: linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.55)),
              url('../img/nos-hero.jpeg') center center / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 64px 24px;
}

.nos-hero h1 {
  color: #fff;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.25;
  margin: 0 0 16px;
  text-shadow: 0 0 4px #000, 1px 1px 6px rgba(0,0,0,0.9);
}

.nos-hero p {
  color: rgba(255,255,255,0.72);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.6;
  text-shadow: 0 0 3px #000, 1px 1px 5px rgba(0,0,0,0.85);
}

/* ── STATS ── */
.nos-stats {
  display: flex;
  justify-content: center;
  background: var(--verde);
  padding: 36px 24px;
}

.nos-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 52px;
  border-right: 1px solid rgba(255,255,255,0.3);
}

.nos-stat:last-child {
  border-right: none;
}

.nos-stat-num {
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}

.nos-stat-label {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.85);
  margin-top: 7px;
  text-align: center;
  font-weight: 500;
}

/* ── HISTORIA ── */
.nos-historia {
  padding: 64px 24px;
  background: #f9f9f9;
}

.nos-historia-inner {
  max-width: 720px;
  margin: 0 auto;
}

.nos-historia h2 {
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--texto);
  margin: 0 0 24px;
}

.nos-historia p {
  font-size: 1rem;
  color: #444;
  line-height: 1.75;
  margin: 0 0 18px;
}

.nos-historia p:last-child {
  margin-bottom: 0;
}

/* ── GALERÍA ── */
.nos-galeria {
  padding: 64px 24px;
  background: #fff;
  text-align: center;
}

.nos-galeria h2 {
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--texto);
  margin: 0 0 32px;
}

.nos-slider-wrap {
  position: relative;
  max-width: 860px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 14px;
  background: #111;
  aspect-ratio: 4/3;
}

.nos-slide {
  display: none;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
}

.nos-slide.active {
  display: block;
}

.nos-slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: blur(18px);
  transform: scale(1.1);
  opacity: 0.7;
}

.nos-slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.nos-slide-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #aaa;
  font-size: 1rem;
}

.nos-slider-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

.nos-slider-nav button {
  background: #222;
  color: #fff;
  border: none;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.nos-slider-nav button:hover {
  background: var(--verde);
}

.nos-dots {
  display: flex;
  gap: 8px;
}

.nos-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #ccc;
  cursor: pointer;
  transition: background 0.2s;
}

.nos-dot.active {
  background: var(--verde);
}

/* ── CTA ── */
.nos-cta {
  padding: 56px 24px;
  background: #111;
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.nos-cta-btn {
  display: inline-flex;
  align-items: center;
  background: #fff;
  color: #111;
  font-weight: 600;
  padding: 14px 30px;
  border-radius: 8px;
  font-size: 0.95rem;
  transition: background 0.2s;
}

.nos-cta-btn:hover {
  background: #e8e8e8;
}

.nos-cta-wa {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: #fff;
  font-weight: 600;
  padding: 14px 30px;
  border-radius: 8px;
  font-size: 0.95rem;
  transition: background 0.2s;
}

.nos-cta-wa:hover {
  background: #1aad54;
}

/* ── RESPONSIVE ── */
@media (max-width: 600px) {
  .nos-hero h1 {
    font-size: 1.5rem;
  }

  .nos-stats {
    flex-direction: column;
    gap: 0;
    align-items: center;
  }

  .nos-stat {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.3);
    padding: 24px 0;
    width: 100%;
  }

  .nos-stat:last-child {
    border-bottom: none;
  }

  .nos-stat-num {
    font-size: 2rem;
  }
}
