/* ═══════════════════════════════════════
   ELY CABELEIREIRO — sobre-nos.css
   Estilos específicos da página Sobre Nós
═══════════════════════════════════════ */

.about-page {
  background: var(--bg-alt);
  overflow-x: hidden;
}

/* ── PAGE HEADER ── */
.page-header {
  background: var(--preto);
  padding: 8rem 3rem 3rem;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.page-header::before {
  content: '';
  position: absolute;
  right: -60px; top: -60px;
  width: 240px; height: 240px;
  border: 0.5px solid rgba(201,169,110,0.2);
  border-radius: 50%;
}

.page-header::after {
  content: '';
  position: absolute;
  right: 20px; top: 20px;
  width: 120px; height: 120px;
  border: 0.5px solid rgba(201,169,110,0.15);
  border-radius: 50%;
}

.breadcrumb {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ouro);
  opacity: 0.7;
  margin-bottom: 1rem;
}

.page-header h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.2rem;
  font-weight: 300;
  color: var(--branco);
  line-height: 1.15;
  letter-spacing: 0.02em;
}

.page-header h1 em {
  font-style: italic;
  font-weight: 300;
  color: var(--ouro-light);
}

/* ── GRID ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
}

.about-image {
  position: relative;
  overflow: hidden;
  min-height: 520px;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.about-image-badge {
  position: absolute;
  bottom: 2rem; left: 2rem;
  background: var(--branco);
  padding: 1rem 1.4rem;
  border-left: 3px solid var(--ouro);
}

.about-image-badge .years {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem;
  font-weight: 300;
  color: var(--preto);
  line-height: 1;
}

.about-image-badge .years-label {
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #888;
  margin-top: 0.2rem;
}

.about-text {
  padding: 3.5rem 3rem 3.5rem 3.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.5rem;
  background: var(--bg-alt);
}

.about-text .section-label {
  text-align: center;
}

.about-text h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 300;
  color: #1A1A1A;
  line-height: 1.25;
  letter-spacing: 0.01em;
  text-align: center;
}

.about-text p {
  font-size: 0.92rem;
  line-height: 1.85;
  color: #1A1A1A;
  font-weight: 300;
}

.divider-line {
  width: 48px;
  height: 1px;
  background: var(--ouro);
}

/* ── BANNER ── */
.salon-banner {
  width: 100%;
  height: 340px;
  overflow: hidden;
  position: relative;
}

.salon-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.salon-banner-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26,26,26,0.45);
  display: flex;
  align-items: center;
  justify-content: center;
}

.salon-banner-overlay blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.7rem;
  font-weight: 300;
  font-style: italic;
  color: var(--bg);
  text-align: center;
  max-width: 560px;
  line-height: 1.5;
  letter-spacing: 0.01em;
  padding: 0 2rem;
}

/* ── ACADEMIAS ── */
.academias {
  background: var(--bg-alt);
  padding: 3rem;
  border-top: 0.5px solid var(--border);
  text-align: center;
}

.academias h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--preto);
  margin-bottom: 0.5rem;
  letter-spacing: 0.02em;
}

.academias-subtitle {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #999;
  margin-bottom: 2rem;
}

.academias-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1px;
  background: #b0a898;
  border: 1px solid #b0a898;
}

.academia-item {
  background: var(--bg-alt);
  padding: 1.2rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.academia-name {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--preto);
  letter-spacing: 0.05em;
}

.academia-country {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ouro);
}

/* ── VALORES ── */
.valores {
  padding: 3.5rem 3rem;
  background: var(--bg-alt);
}

.valores-header { margin-bottom: 2.5rem; text-align: center; }

.valores-header h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--preto);
  letter-spacing: 0.02em;
}

.valores-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.valor-card {
  border: 0.5px solid var(--border);
  padding: 2rem 1.5rem;
  position: relative;
  background: var(--branco);
}

.valor-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--ouro);
}

.valor-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--ouro-light);
  line-height: 1;
  margin-bottom: 0.75rem;
}

.valor-title {
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--preto);
  font-weight: 500;
  margin-bottom: 0.75rem;
}

.valor-text {
  font-size: 0.85rem;
  line-height: 1.75;
  color: #1A1A1A;
  font-weight: 300;
}

/* ── CTA ── */
.cta-section {
  background: var(--bg);
  padding: 3.5rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  border-top: 0.5px solid var(--border);
  flex-wrap: wrap;
}

.cta-text h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--preto);
  margin-bottom: 0.5rem;
}

.cta-text p {
  font-size: 0.85rem;
  color: #1A1A1A;
  font-weight: 300;
  line-height: 1.7;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  flex-shrink: 0;
  flex-wrap: wrap;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-image { min-height: 300px; }
  .valores-grid { grid-template-columns: 1fr 1fr; }
  .cta-section { flex-direction: column; }
}

@media (max-width: 600px) {
  .valores-grid { grid-template-columns: 1fr; }
  .page-header h1 { font-size: 2.2rem; }
  .academias, .valores { padding: 2.5rem 1.5rem; }
}
