


/* ══ HERO ══ */
.about-hero {
  background: #1E1E1E;
  padding: var(--space-24) var(--space-8) var(--space-20);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.about-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 60%, rgba(200, 16, 46, 0.14) 0%, transparent 65%);
  pointer-events: none;
}

.about-hero-tag {
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: var(--space-4);
}

.about-hero h1 {
  font-size: 3rem;
  font-weight: 600;
  color: #fff;
  line-height: 1;
  margin-bottom: var(--space-5);
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.about-hero h1 span {
  color: var(--red);
}

.about-hero p {
  font-size: 1rem;
  color: #888;
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.65;
}

/* ══ SECTION BASE ══ */
.section {
  padding: var(--space-16) var(--space-8);
}

.section-inner {
  max-width: 960px;
  margin: 0 auto;
}

.section-tag {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: var(--space-3);
}

.section h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #1E1E1E;
  line-height: 1;
  margin-bottom: var(--space-4);
}

.section p {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.7;
  max-width: 600px;
}

/* ══ STATS STRIP ══ */
.stats-strip {
  background: #1E1E1E;
  padding: var(--space-10) var(--space-8);
}

.stats-strip-inner {
  max-width: 960px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-8);
  text-align: center;
}

.stat-block {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.stat-num {
  font-size: 2.8rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}

.stat-num span {
  color: var(--red);
}

.stat-desc {
  font-size: 0.8rem;
  color: #666;
}

/* ══ HISTÓRIA ══ */
.historia {
  background: #f0f0f0;
}

.historia-inner {
  max-width: 960px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
  align-items: center;
}

.historia-img {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.historia-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.historia-text {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}

.historia-text p {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.75;
}

/* ══ VALORES ══ */
.valores {
  background: #fff;
}

.valores-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
  margin-top: var(--space-8);
}

.valor-card {
  background: #fafafa;
  border-radius: 12px;
  padding: var(--space-6);
  border: 1px solid rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  transition: box-shadow 0.25s, transform 0.25s;
}

.valor-card:hover {
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.valor-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(200, 16, 46, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
}

.valor-card h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #1E1E1E;
  line-height: 1;
}

.valor-card p {
  font-size: 0.82rem;
  color: #888;
  line-height: 1.65;
}

/* ══ EQUIPE ══ */
.equipe {
  background: #f0f0f0;
}

.equipe-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-5);
  margin-top: var(--space-8);
}

.membro-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.07);
  transition: box-shadow 0.25s, transform 0.25s;
}

.membro-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  transform: translateY(-3px);
}

.membro-photo {
  aspect-ratio: 1;
  overflow: hidden;
  background: #e8e8e8;
}

.membro-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s;
}

.membro-card:hover .membro-photo img {
  transform: scale(1.05);
}

.membro-info {
  padding: var(--space-4);
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}

.membro-name {
  font-size: 0.9rem;
  font-weight: 700;
  color: #1E1E1E;
  line-height: 1;
}

.membro-role {
  font-size: 0.75rem;
  color: var(--red);
  font-weight: 500;
}

/* ══ LOJAS ══ */
.lojas {
  background: #fff;
}

.lojas-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-6);
  margin-top: var(--space-8);
}

.loja-card {
  background: #fafafa;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.07);
}

.loja-map {
  height: 180px;
  background: #e0e0e0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #bbb;
  font-size: 0.8rem;
  overflow: hidden;
}

.loja-map img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.loja-info {
  padding: var(--space-5);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.loja-badge {
  display: inline-block;
  width: fit-content;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--red);
  background: rgba(200, 16, 46, 0.08);
  padding: 2px var(--space-2);
  border-radius: 4px;
}

.loja-info h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #1E1E1E;
  line-height: 1;
}

.loja-detail {
  display: flex;
  align-items: flex-start;
  gap: var(--space-2);
  font-size: 0.82rem;
  color: #666;
  line-height: 1.5;
}

.loja-detail svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--red);
}

.btn-maps {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-4);
  border: 1.5px solid var(--red);
  border-radius: 8px;
  color: var(--red);
  font-size: 0.8rem;
  font-weight: 600;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  transition: background 0.2s, color 0.2s;
  align-self: flex-start;
}

.btn-maps:hover {
  background: var(--red);
  color: #fff;
}

/* ══ CTA FINAL ══ */
.cta-final {
  background: #1E1E1E;
  padding: var(--space-16) var(--space-8);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-final::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(200, 16, 46, 0.15) 0%, transparent 65%);
  pointer-events: none;
}

.cta-final h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  margin-bottom: var(--space-4);
}

.cta-final h2 span {
  color: var(--red);
}

.cta-final p {
  font-size: 0.9rem;
  color: #777;
  margin-bottom: var(--space-8);
  max-width: 440px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.65;
}

.cta-final-btns {
  display: flex;
  gap: var(--space-4);
  justify-content: center;
  flex-wrap: wrap;
}

.btn-cta-red {
  padding: var(--space-3) var(--space-8);
  background: var(--red);
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: background 0.2s, transform 0.15s;
  box-shadow: 0 3px 14px rgba(200, 16, 46, 0.3);
}

.btn-cta-red:hover {
  background: var(--red-dark);
  transform: translateY(-1px);
}

.btn-cta-outline {
  padding: var(--space-3) var(--space-8);
  background: transparent;
  color: #888;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: border-color 0.2s, color 0.2s;
}

.btn-cta-outline:hover {
  border-color: rgba(255, 255, 255, 0.4);
  color: #bbb;
}

/* ══════════════════════════════════════
       FOOTER
    ══════════════════════════════════════ */

@media (max-width: 768px) {
  .about-hero h1 {
    font-size: 2rem;
  }

  .historia-inner {
    grid-template-columns: 1fr;
  }

  .valores-grid {
    grid-template-columns: 1fr 1fr;
  }

  .equipe-grid {
    grid-template-columns: 1fr 1fr;
  }

  .lojas-grid {
    grid-template-columns: 1fr;
  }

  .stats-strip-inner {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .valores-grid {
    grid-template-columns: 1fr;
  }

  .equipe-grid {
    grid-template-columns: 1fr 1fr;
  }

  .stats-strip-inner {
    grid-template-columns: 1fr 1fr;
  }

  .cta-final-btns {
    flex-direction: column;
    align-items: center;
  }

  .section {
    padding: var(--space-12) var(--space-5);
  }
}