/* Sobre nós — page styles
   Topbar reusada da home; demais seções a refinar slice por slice. */

/* ── TOPBAR (Figma 4307:15579 — copia do home/page.css) ── */
.topbar--home {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #080808;
  border-bottom: 0;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  filter: drop-shadow(0 4px 2px rgba(0, 0, 0, .3));
}
.topbar--home .topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 8px 54px;
  gap: 16px;
}
.topbar--home .topbar__brand { display: block; flex-shrink: 0; }
.topbar--home .topbar__brand img { height: 23px; width: 189px; display: block; }
.topbar__nav { display: flex; align-items: center; gap: 16px; height: 42px; }
.topbar__nav-item {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 12px; border-radius: 10px;
  font-family: var(--font-sans); font-weight: 800; font-size: 16px; line-height: 22px;
  color: #f7f7f7; background: none; border: 0; cursor: pointer;
  text-decoration: none; white-space: nowrap; transition: background .15s;
}
.topbar__nav-item:hover { background: rgba(255, 255, 255, .08); color: #f7f7f7; }
.topbar__nav-item.is-active { background: rgba(167, 62, 249, .25); color: #f7f7f7; }
.topbar__nav-item .material-icons { font-size: 12px; line-height: 1; }
.topbar__nav-item--shadowban {
  background: linear-gradient(116.77deg, #f741f7 0.88%, #a73ef9 50.44%, #3c6dfa 100%);
  filter: drop-shadow(0 4px 2px rgba(0, 0, 0, .25));
}
.topbar__nav-item--shadowban:hover {
  background: linear-gradient(116.77deg, #f741f7 0.88%, #a73ef9 50.44%, #3c6dfa 100%);
  filter: drop-shadow(0 6px 12px rgba(247, 65, 247, .45));
  color: #f7f7f7;
}
.topbar__flag { width: 22px; height: 14px; object-fit: cover; display: block; border-radius: 2px; }
.topbar--home .topbar__burger {
  display: none; background: none; border: 0; color: #f7f7f7;
  padding: 8px; cursor: pointer;
}
@media (max-width: 1199px) {
  .topbar--home .topbar__nav { display: none; }
  .topbar--home .topbar__burger { display: inline-flex; }
  .topbar--home .topbar__inner { padding: 8px 24px; }
}
.topbar__mobile[hidden] { display: none; }
.topbar__mobile {
  display: flex; flex-direction: column; gap: var(--space-2);
  padding: var(--space-4) var(--container-pad-x) var(--space-6);
  background: #080808; border-top: 1px solid var(--color-divider);
}
.topbar__mobile a {
  color: var(--color-text); text-decoration: none;
  padding: var(--space-3); font-size: var(--fs-h5);
  font-weight: 800; border-radius: var(--radius-md);
}
.topbar__mobile a:hover { background: var(--color-divider); }

.text-green { color: #97ff7d; }

/* ── HERO MEMBERS (Figma 4307:15605 — 1280x752, bg #210C32) ── */
.members {
  background: #210c32;
  padding: 48px 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 48px;
}
.members__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0;
  width: 100%;
  max-width: 1040px;
  margin: 0 auto;
  min-height: 584px;
}
.members__media {
  width: 524px;
  height: 508px;
  flex-shrink: 0;
  border-radius: 16px;
  overflow: hidden;
}
.members__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.members__content {
  flex: 1 0 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  justify-content: center;
}
.members__text {
  width: 100%;
  padding-left: 44px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
}
.members__text h1 {
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: 64px;
  line-height: 64px;
  color: #f7f7f7;
  margin: 0;
  width: 100%;
  text-align: left;
}
.members__text p {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  color: #f7f7f7;
  margin: 0;
  width: 100%;
}
.members__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: calc(100% - 44px);
  margin-left: 44px;
  height: 44px;
  padding: 10px 16px;
  background: #f7f7f7;
  color: #1a1a1a;
  border-radius: 8px;
  text-decoration: none;
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: 16px;
  line-height: 22px;
  transition: filter .15s, transform .15s;
}
.members__cta:hover { filter: brightness(1.05); transform: translateY(-1px); color: #1a1a1a; }
.members__cta .material-icons { font-size: 24px; line-height: 1; color: #1a1a1a; }

@media (max-width: 1199px) {
  .members { padding: 48px 24px; }
  .members__inner { flex-direction: column; gap: 48px; align-items: stretch; min-height: 0; }
  .members__media { width: 100%; max-width: 524px; height: auto; aspect-ratio: 524/508; margin: 0 auto; }
  .members__text { padding-left: 0; align-items: flex-start; }
  .members__text h1 { font-size: 48px; line-height: 52px; }
  .members__cta { width: 100%; margin-left: 0; }
}
@media (max-width: 639px) {
  .members__text h1 { font-size: 36px; line-height: 40px; }
}

/* ============================================================
   PLACEHOLDERS — refinar slice por slice
   ============================================================ */

/* ── TEAM (Figma 4320:15973 — bg #210C32, pad bottom 54, sides 120, gap 40) ── */
.team-section {
  background: #210c32;
  padding: 0 120px 54px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: flex-start;
}
.team-section__title {
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: 30px;
  line-height: 38px;
  color: #f7f7f7;
  width: 1040px;
  max-width: 100%;
  margin: 0;
}
.team-gallery {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  width: 100%;
}
.team-gallery__nav {
  background: transparent;
  border: 0;
  color: #f7f7f7;
  padding: 10px;
  cursor: pointer;
  font-family: 'Material Icons';
  font-size: 14px;
  line-height: 20px;
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.team-gallery__nav:hover { color: #f741f7; }
.team-gallery__track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  flex: 1;
  scroll-behavior: smooth;
  min-width: 0;
}
.team-gallery__track::-webkit-scrollbar { display: none; }
.team-gallery__track { scrollbar-width: none; }

.team-card {
  flex-shrink: 0;
  width: 240px;
  height: 240px;
  border: 2px solid #f741f7;
  border-radius: 12px;
  background-size: cover;
  background-position: center top;
  position: relative;
  text-decoration: none;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  justify-content: flex-end;
  align-items: flex-start;
  overflow: hidden;
}
.team-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(33, 12, 50, 0) 56.731%, rgba(12, 4, 17, 0.6) 100%);
  border-radius: 10px;
  pointer-events: none;
}
.team-card > * { position: relative; z-index: 1; }
.team-card__name {
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: 24px;
  line-height: 32px;
  color: #f7f7f7;
  margin: 0;
  text-align: left;
}
.team-card__role {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  color: #f7f7f7;
  margin: 0;
  text-align: left;
}

@media (max-width: 1199px) {
  .team-section { padding: 0 24px 54px; }
  .team-section__title { width: 100%; }
}

/* ── PROFILES (Figma 4307:15657 — 8 perfis 1040x414, alternados) ── */
.profiles-section {
  background: var(--color-bg);
  padding: 64px 120px;
  display: flex;
  flex-direction: column;
}
.profiles-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 1040px;
  width: 100%;
  margin: 0 auto;
}
.profile-row {
  display: flex;
  align-items: stretch;
  width: 100%;
  min-height: 414px;
}
.profile-row__text {
  flex: 1 0 0;
  min-width: 0;
  background: #210c32;
  padding: 54px;
  display: flex;
  gap: 8px;
  align-items: flex-start;
  border-radius: 12px 0 0 12px;
}
.profile-row__quote {
  width: 16.5px;
  height: 16.15px;
  flex-shrink: 0;
  margin-top: 4px;
}
.profile-row__quote-text {
  flex: 1 0 0;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.profile-row__quote-text p {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  color: #f7f7f7;
  margin: 0;
}
.profile-row__card {
  width: 394px;
  height: 414px;
  flex-shrink: 0;
  border: 2px solid #f741f7;
  border-radius: 12px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  gap: 4px;
  background-size: cover;
  background-position: center top;
  position: relative;
  overflow: hidden;
}
.profile-row__card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(12,4,17,.2) 0%, rgba(33,12,50,0) 28.225%, rgba(12,4,17,.2) 100%);
  border-radius: 10px;
  pointer-events: none;
}
.profile-row__card > * { position: relative; z-index: 1; }
.profile-row__card-role {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  color: #f7f7f7;
  margin: 0;
  width: 100%;
}
.profile-row__card-name {
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: 24px;
  line-height: 32px;
  color: #ffffff;
  margin: 0;
  width: 100%;
}
.profile-row--reverse .profile-row__text { border-radius: 0 12px 12px 0; }

@media (max-width: 1199px) {
  .profiles-section { padding: 48px 24px; }
  .profile-row, .profile-row--reverse { flex-direction: column; min-height: 0; }
  .profile-row__text { border-radius: 12px 12px 0 0 !important; padding: 32px; }
  .profile-row__card { width: 100%; border-radius: 0 0 12px 12px; height: 320px; }
  .profile-row--reverse .profile-row__card { order: -1; border-radius: 12px 12px 0 0; }
  .profile-row--reverse .profile-row__text { border-radius: 0 0 12px 12px !important; }
}

/* ── CONTACT (Figma 4307:15701 — pad 48 top, sides 120) ── */
.sobre-contact {
  background: var(--color-bg);
  padding: 48px 120px 0;
}
.sobre-contact__inner {
  max-width: 1040px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.sobre-contact__heading {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.sobre-contact__heading h2 {
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: 30px;
  line-height: 38px;
  color: #f7f7f7;
  margin: 0;
}
.sobre-contact__heading p {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  color: #f7f7f7;
  margin: 0;
}
.sobre-contact__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.sobre-contact__box {
  background: rgba(255, 255, 255, .05);
  border: 1px solid #f741f7;
  border-radius: 12px;
  padding: 16px 20px;
  display: flex;
  gap: 24px;
  align-items: center;
  text-decoration: none;
  min-height: 118px;
}
.sobre-contact__icon {
  font-family: 'Material Icons';
  font-size: 24px;
  line-height: 1;
  color: #f741f7;
  flex-shrink: 0;
}
.sobre-contact__box > div {
  flex: 1 0 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}
.sobre-contact__box strong {
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: 20px;
  line-height: 28px;
  color: #f7f7f7;
}
.sobre-contact__box span {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  color: #f7f7f7;
}
.sobre-contact__box small {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
  color: #f7f7f7;
}
.sobre-contact__box:hover { background: rgba(255, 255, 255, .08); }

@media (max-width: 1023px) {
  .sobre-contact { padding: 48px 24px 0; }
  .sobre-contact__grid { grid-template-columns: 1fr; }
}

/* ── MAP (Figma 4373:3246 — pad 8 top / sides 120, max 1040) ── */
.sobre-map {
  background: var(--color-bg);
  padding: 8px 120px 0;
}
.sobre-map__inner {
  max-width: 1040px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.sobre-map__heading {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.sobre-map__heading h2 {
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: 30px;
  line-height: 38px;
  color: #f7f7f7;
  margin: 0;
}
.sobre-map__heading p {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  color: #f7f7f7;
  margin: 0;
}
.sobre-map__media {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  background: #1a1a1a;
}
.sobre-map__media img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

@media (max-width: 1199px) {
  .sobre-map { padding: 8px 24px 0; }
}

/* ── FOOTER (Figma 4307:15249 — copia da home/page.css) ── */
.footer {
  position: relative;
  background: #642595;
  margin-top: 64px;
  padding: 44px 0 0;
  border-top: 0;
}
.footer__top-btn {
  position: absolute; top: 0; left: 50%;
  transform: translate(-50%, -50%);
  width: 40px; height: 40px; border-radius: 28px;
  background: linear-gradient(90deg, #3c6dfa 0%, #f741f7 60.075%);
  display: inline-flex; align-items: center; justify-content: center;
  color: #edf4f9; text-decoration: none; z-index: 2;
  transition: transform .15s;
}
.footer__top-btn:hover { transform: translate(-50%, -55%); color: #edf4f9; }
.footer__top-btn .material-icons { font-size: 26px; line-height: 1; }

.footer__inner { display: flex; flex-direction: column; gap: 44px; padding: 0 54px; }
.footer__brand-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 24px 0; border-bottom: 2px solid #8632c7; gap: 24px;
}
.footer__brand-left { display: flex; align-items: center; gap: 24px; }
.footer__logo { width: 150px; height: 64px; object-fit: contain; }
.footer__cta {
  display: inline-flex; align-items: center; gap: 12px;
  height: 48px; padding: 16px 24px; border-radius: 12px;
  background: linear-gradient(90deg, #3c6dfa 0%, #f741f7 60.075%);
  color: #f7f7f7; text-decoration: none;
  font-family: var(--font-display); font-weight: 400;
  font-size: 24px; line-height: 32px; width: 239px;
  white-space: nowrap; justify-content: center;
  transition: transform .15s, box-shadow .15s;
}
.footer__cta:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(247, 65, 247, .4); color: #f7f7f7; }
.footer__cta .material-icons { font-size: 24px; line-height: 1; }

.footer__social {
  display: flex; align-items: center; justify-content: space-between;
  gap: 0; list-style: none; padding: 0; margin: 0; width: 288px;
}
.footer__social a {
  width: 36px; height: 36px;
  display: inline-flex; align-items: center; justify-content: center;
  background: none; border-radius: 0; transition: transform .15s;
}
.footer__social a:hover { transform: scale(1.1); background: none; }
.footer__social img { width: 36px; height: 36px; filter: none; }

.footer__cols { display: flex; gap: 44px; align-items: stretch; }
.footer__col {
  flex: 1 0 0; background: #431964;
  padding: 24px; border-radius: 12px;
  display: flex; flex-direction: column; gap: 8px;
}
.footer__col h4 {
  font-family: var(--font-sans); font-weight: 800;
  font-size: 18px; line-height: 24px; color: #f741f7;
  margin: 0; padding: 10px 16px;
}
.footer__col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0; }
.footer__col a {
  display: inline-flex; align-items: center; gap: 4px;
  font-family: var(--font-sans); font-weight: 400;
  font-size: 16px; line-height: 22px; color: #f7f7f7;
  text-decoration: none; padding: 10px 12px;
  border-radius: 10px; transition: background .15s;
}
.footer__col a:hover { background: rgba(255, 255, 255, .08); color: #f7f7f7; }
.footer__col-link-icon .material-icons { font-size: 18px; line-height: 18px; }

.footer__copyright {
  background: #431964;
  padding: 24px 16px 44px;
  margin-top: 44px;
}
.footer__copyright p {
  font-family: var(--font-sans); font-weight: 400;
  font-size: 12px; line-height: 16px; color: #f7f7f7;
  text-align: center; margin: 0;
}

@media (max-width: 1023px) {
  .footer__inner { padding: 0 24px; }
  .footer__brand-row { flex-direction: column; align-items: flex-start; gap: 16px; }
  .footer__brand-left { flex-wrap: wrap; }
  .footer__cols { flex-direction: column; }
}
@media (max-width: 539px) {
  .footer__brand-left { flex-direction: column; align-items: flex-start; }
  .footer__cta { width: 100%; max-width: 239px; }
}
