/* ════════════════════════════════════════
   SOBRE PAGE — STYLES
   (Extends style.css)
   ════════════════════════════════════════ */

/* ── Hero Sobre (menor que o da home) ── */
.sobre-hero {
  position: relative;
  height: calc(70vh - 140px);
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: -140px;
  padding-top: 140px;
}

.sobre-hero .hero-content {
  animation: fadeUp 1.1s 0.2s both;
}

/* ── Intro Section ── */
.intro-section {
  background: var(--warm-white);
  padding: 100px 60px;
}
.intro-inner {
  max-width: 1240px;
  margin: 0 auto;
}

.intro-label {
  font-family: var(--font-body);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--crimson);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.intro-label::before {
  content: '';
  display: inline-block;
  width: 32px;
  height: 1.5px;
  background: var(--crimson);
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: start;
}
.intro-left .section-title {
  font-size: clamp(2rem, 3.5vw, 3rem);
  line-height: 1.15;
}
.intro-right p {
  font-size: 0.9rem;
  line-height: 1.9;
  color: var(--mid-grey);
  margin-bottom: 20px;
}

/* ── Números Section ── */
.numeros-section {
  position: relative;
  padding: 90px 60px;
  overflow: hidden;
}
.numeros-bg {
  position: absolute;
  inset: 0;
}
.numeros-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 50%;
}
.numeros-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(30,20,15,0.82) 0%, rgba(126,168,146,0.55) 100%);
}

.numeros-inner {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}
.numeros-eyebrow {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 56px;
}

.numeros-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: nowrap;
}
.numero-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 36px;
}
.numero-val {
  font-family: var(--font-display);
  font-size: clamp(2.3rem, 4.6vw, 3.9rem);
  font-weight: 300;
  color: #fff;
  line-height: 1;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}
.numero-unit {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--gold-light);
  margin-top: 4px;
  font-style: italic;
}
.numero-label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-top: 10px;
}
.numero-sep {
  width: 1px;
  height: 80px;
  background: rgba(255,255,255,0.18);
  flex-shrink: 0;
}

/* ── Valores Section ── */
.valores-section {
  background: var(--cream);
  padding: 100px 60px;
}
.valores-inner {
  max-width: 1240px;
  margin: 0 auto;
}
.valores-header {
  margin-bottom: 60px;
}
.valores-header .section-title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin-bottom: 16px;
}
.valores-sub {
  font-size: 0.88rem;
  line-height: 1.75;
  color: var(--mid-grey);
  max-width: 520px;
}

.valores-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--light-grey);
  border: 1px solid var(--light-grey);
  border-radius: 6px;
  overflow: hidden;
}
.valor-card {
  background: var(--warm-white);
  padding: 40px 32px;
  transition: background 0.35s ease, transform 0.35s ease;
  position: relative;
  overflow: hidden;
}
.valor-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: var(--crimson);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s ease;
}
.valor-card:hover {
  background: #fff;
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
  z-index: 1;
}
.valor-card:hover::after { transform: scaleX(1); }

.valor-num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--light-grey);
  line-height: 1;
  margin-bottom: 20px;
  transition: color 0.35s ease;
}
.valor-card:hover .valor-num { color: rgba(139,26,26,0.12); }

.valor-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 14px;
}
.valor-card p {
  font-size: 0.84rem;
  line-height: 1.85;
  color: var(--mid-grey);
}

/* ── Split Sections ── */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 580px;
}
.split-section--reverse {
  direction: rtl;
}
.split-section--reverse > * {
  direction: ltr;
}

.split-image {
  overflow: hidden;
}
.split-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.split-image:hover img {
  transform: scale(1.04);
}

.split-content {
  background: var(--warm-white);
  padding: 80px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
}
.split-section--reverse .split-content {
  background: var(--cream);
}

.split-content .intro-label { margin-bottom: 20px; }
.split-content .section-title {
  font-size: clamp(1.7rem, 2.8vw, 2.4rem);
  margin-bottom: 24px;
}
.split-content p {
  font-size: 0.88rem;
  line-height: 1.9;
  color: var(--mid-grey);
  margin-bottom: 16px;
}

/* Amenities list */
.amenities-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 24px;
  margin-top: 8px;
}
.amenities-list li {
  font-size: 0.82rem;
  color: var(--mid-grey);
  display: flex;
  align-items: baseline;
  gap: 8px;
  line-height: 1.5;
}
.ami-icon {
  color: var(--crimson);
  font-size: 0.55rem;
  flex-shrink: 0;
}

/* Location tags */
.location-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}
.tag {
  display: inline-block;
  padding: 7px 16px;
  border: 1px solid var(--light-grey);
  border-radius: 40px;
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--mid-grey);
  background: var(--warm-white);
  transition: border-color 0.25s, color 0.25s, background 0.25s;
}
.tag:hover {
  border-color: var(--crimson);
  color: var(--crimson);
  background: rgba(139,26,26,0.04);
}

/* ── Responsive ── */
@media (max-width: 1080px) {
  .valores-grid { grid-template-columns: repeat(2, 1fr); }
  .numeros-grid { gap: 0; flex-wrap: wrap; }
  .numero-item { padding: 0 24px; }
}

@media (max-width: 1280px) and (min-width: 901px) {
  .numeros-inner { max-width: 980px; }
  .numero-item { padding: 0 24px; }
  .numero-val { font-size: clamp(2.05rem, 3.7vw, 3.25rem); }
  .numero-unit { font-size: 1rem; }
}

@media (max-width: 1600px) and (min-width: 1081px) {
  .numeros-inner { max-width: 1040px; }
  .numero-item { padding: 0 22px; }
  .numero-val { font-size: clamp(2.15rem, 3.4vw, 3.35rem); }
  .numero-unit { font-size: 0.98rem; }
  .numero-label { font-size: 0.68rem; letter-spacing: 0.09em; }
  .numero-sep { height: 68px; }
}

@media (max-width: 900px) {
  .split-section,
  .split-section--reverse {
    grid-template-columns: 1fr;
    direction: ltr;
  }
  .split-image { height: 340px; }
  .split-content { padding: 60px 40px; }
  .intro-grid { grid-template-columns: 1fr; gap: 32px; }
  .amenities-list { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .intro-section,
  .valores-section,
  .numeros-section { padding: 70px 24px; }
  .valores-grid { grid-template-columns: 1fr; }
  .split-content { padding: 48px 24px; }
  .numeros-grid { flex-direction: column; gap: 40px; }
  .numero-sep { width: 48px; height: 1px; }
  .numero-item { padding: 0; }
}
