/* ============================================
   LANA AUTOMOTIVA — Sobre a Empresa (Section 3)
   Layout: vídeo/foto à esquerda + texto à direita
   ============================================ */

.sobre {
  width: 100%;
  background-color: transparent;
  display: flex;
  justify-content: center;
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

@media (max-width: 1280px) {
  .sobre {
    padding: 64px var(--space-6);
  }
}

@media (max-width: 767px) {
  .sobre {
    padding: 48px var(--space-4);
  }
}

/* ── Decorative red shape (top-right) ── */

.sobre__decoration {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 0;
  pointer-events: none;
}

.sobre__decoration img {
  display: block;
  max-width: none;
  height: auto;
}

@media (max-width: 767px) {
  .sobre__decoration {
    display: none;
  }
}

/* ── Inner container ── */

.sobre__container {
  width: 100%;
  max-width: var(--container-max);
  display: flex;
  gap: 104px;
  align-items: flex-start;
  position: relative;
  z-index: 1;
}

@media (max-width: 1024px) {
  .sobre__container {
    gap: 48px;
  }
}

@media (max-width: 767px) {
  .sobre__container {
    flex-direction: column;
    gap: var(--space-8);
  }
}

/* ══════════════════════════════════════════
   LEFT — Vídeo / Foto card (384 × 550px)
   ══════════════════════════════════════════ */

.sobre__media {
  flex-shrink: 0;
  width: 384px;
  height: 550px;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 32px 20px;
  background-color: var(--color-neutral-100); /* placeholder enquanto vídeo não chega */
}

@media (max-width: 1024px) {
  .sobre__media {
    width: 320px;
    height: 460px;
  }
}

@media (max-width: 767px) {
  .sobre__media {
    width: 100%;
    height: 340px;
    padding: 20px;
  }
}

/* Video / Image that fills the card */

.sobre__video,
.sobre__cover {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

/* Dark gradient overlay so the name badge reads well */

.sobre__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 40%,
    rgba(0, 10, 30, 0.55) 100%
  );
  border-radius: 10px;
  pointer-events: none;
  z-index: 1;
}

/* Name badge at the bottom */

.sobre__client {
  position: relative;
  z-index: 2;
  width: 100%;
  background-color: var(--color-blue-brand-600);
  border-radius: 10px;
  padding: 10px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
}

.sobre__client-name {
  font-family: var(--font-button); /* Epilogue */
  font-size: var(--text-base);
  font-weight: var(--font-medium);
  line-height: 1.4;
  color: var(--color-blue-brand-100);
  text-align: center;
  letter-spacing: 0.01em;
}

.sobre__client-tagline {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: var(--font-regular);
  line-height: 1.4;
  color: var(--color-neutral-50);
  text-align: center;
}

/* ══════════════════════════════════════════
   RIGHT — Text content
   ══════════════════════════════════════════ */

.sobre__content {
  flex: 1 0 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 64px;
  justify-content: flex-end;
  align-self: stretch;
  padding: 32px 0;
}

@media (max-width: 767px) {
  .sobre__content {
    gap: var(--space-8);
    padding: 0;
  }
}

/* ── Text block ── */

.sobre__text-block {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Two-tone heading */

.sobre__heading {
  font-family: var(--font-button); /* Epilogue */
  font-size: 2rem;               /* 32px */
  font-weight: var(--font-regular);
  line-height: 1.13;
  letter-spacing: -0.06em;
  color: var(--color-blue-brand-600);
  margin: 0;
}

@media (max-width: 767px) {
  .sobre__heading {
    font-size: var(--text-2xl); /* 24px */
  }
}

.sobre__heading span {
  color: var(--color-neutral-400);
}

.sobre__body {
  display: flex;
  flex-direction: column;
  gap: 0; /* paragraphs separated by margin below */
  font-family: var(--font-body);
  font-size: var(--text-lg);   /* 18px */
  font-weight: var(--font-regular);
  line-height: 1.5;
  color: var(--color-neutral-400);
  letter-spacing: -0.015em;
}

.sobre__body p + p {
  margin-top: 1em;
}
