
/* Dashboard específico - não sobrescrever o body global */
.baya-dashboard-page {
  font-family: var(--global-heading-font-family, "hoss-round-narrow", sans-serif);
  background-color: #fff;
  color: #020202;
  overflow-x: hidden;
}

.baya-dashboard {
  font-family: var(--global-heading-font-family, "hoss-round-narrow", sans-serif);
}

/* --------- WELCOME SECTION --------- */
.welcome-section {
  position: relative;
  width: 100%;
  height: 580px;
  background: url('../images/rio-dashboard.svg') no-repeat top center;
  background-size: contain;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.welcome-content {
  position: absolute;
  top: 32%;
  left: 48%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 100%;
  max-width: 700px;
  z-index: 10;
  padding: 0 20px;
  box-sizing: border-box;
}

.welcome-content h1 {
  font-family: var(--global-heading-font-family, "hoss-round-narrow", sans-serif) !important;
  font-size: 48px;
  font-weight: 400;
  margin: 0 auto 16px auto !important;
  text-align: center !important;
  color: #020202;
  width: 100%;
  display: block;
}

.welcome-content p {
  font-family: var(--global-body-font-family, "hoss-round-narrow", sans-serif) !important;
  font-size: 18px;
  font-weight: 500;
  line-height: 140%;
  letter-spacing: 0.72px;
  font-style: italic;
  max-width: 514px;
  margin: 0 auto !important;
  padding: 0 !important;
  color: #020202;
  text-align: center !important;
  display: block;
}

/* --------- LEARNING PATH --------- */
.learning-path {
  background-color: #fff;
  text-align: center;
  padding: 60px 32px;
  width: 100%;
}

.learning-path h2 {
  font-size: 48px;
  font-weight: 600;
}

.subtitle {
  font-size: 16px;
  font-weight: 600;
  font-family: 'Hoss Round Narrow';
  margin: 16px;
}

.cards {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 32px;
  margin: 60px;
}

.card {
  background: #fff;
  border: 2px solid #000;
  border-radius: 22px;
  height: auto;
  width: 100%;
  position: relative;
}

.arrow-btn {
  position: absolute;
  bottom: 0;
  right: 20px;
  transform: translateY(50%);
  background-color: #000;
  border: none;
  border-radius: 50%;
  padding: 12px;
  cursor: pointer;
}

.arrow-btn img {
  width: 70px;
  height: 70px;
  display: block;
}

.card h3 {
  font-size: 30px;
  font-weight: 600;
  border-top: 2px solid #000;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  color: #fff;
  text-align: center;
  margin-bottom: 8px;
  background-color: #000;
}

.card p {
  font-size: 18px;
  font-weight: 500;
  padding: 20px;
  height: 100%;
  vertical-align: center;
}

.inside-card{
  display: flex;
  padding: 22px;
}

/* --------- EXPLANATION SECTION --------- */
.explanation-section {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 40px;
  padding: 60px 32px;
}

.explanation-text {
  max-width: 650px;
}

.explanation-text h3 {
  font-size: 48px;
  font-weight: 600;
  margin-bottom: 48px;
  max-width: 450px;
}

.explanation-text h4 {
  font-size: 30px;
  font-weight: 400;
  margin-bottom: 16px;
  max-width: 450px;
}

.explanation-text p {
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 20px;
  max-width: 450px;
}

.explanation-text button {
  background: #E6D6FF;
  border: 2px solid #020202;
  border-radius: 20px;
  box-shadow: 3px 3px 0 0 rgba(0, 0, 0, 0.5);
  padding: 8px 22px;
  font-family: var(--global-heading-font-family, "hoss-round-narrow", sans-serif);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.72px;
  cursor: pointer;
  width: 100%;
  color: #020202;
}

.explanation-image img {
  max-width: 477px;
  max-height: 695px;
}

/* --------- PROJECT SHARE --------- */
.project-share {
  text-align: center;
  padding: 60px 32px;
  width: 100%;
  display: flex;
  justify-content: center;
}

.project-share .text {
  max-width: 600px;
  text-align: left;
}

.project-share h3 {
  font-size: 36px;
  font-weight: 600;
  max-width: 360px;
  text-align: left;
}

.project-share h4 {
  font-size: 22px;
  font-weight: 500;
  max-width: 600px;
  text-align: left;
  margin-left: 52px;
}

.project-share p {
  font-size: 18px;
  font-weight: 500;
  max-width: 600px;
  margin-bottom: 20px;
  margin-left: 52px;
  text-align: left;
}

/* --------- FOOTER --------- */
.footer {
  background-color: #82FF2E;
  text-align: center;
  color: #020202;
  padding-top: 80px;
  width: 100%;
  display: flex;
  justify-content: space-around;
  justify-items: center;
}

.footer img {
  height: 120px;
  width: 160px;
}

.footer h2 {
  font-size: 36px;
  font-weight: 600;
  max-width: 480px;
  margin-bottom: 16px;
}

.footer p {
  font-size: 22px;
  font-weight: 500;
}

.footer text{
  display: wrap;
}

.footer .text img {
  display: block;
  margin: 20px auto 0 auto; /* centraliza os ícones */
  height: auto;
  width: auto;
}

/* --------- BOTÃO -------------- */
.btn-outline {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    padding: 12px 24px !important;
    width: 90%;
    border-radius: 25px;
    border: 2px solid #000;
    background-color: #E6D6FF;
    cursor: pointer;
    font-family: var(--global-heading-font-family, "hoss-round-narrow", sans-serif);
    font-size: 18px;
    font-weight: 500;
    text-transform: uppercase;
    margin: 24px auto 0 auto;
    transition: all 0.3s ease;
    box-sizing: border-box;
    color: #000;
    text-align: center !important;
}

.btn-outline:hover {
    background-color: #F8E8FF;
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

/* --------- RESPONSIVO --------- */
@media (max-width: 768px) {
  .cards {
    flex-direction: column;
  }

  .explanation-section {
    flex-direction: column;
    text-align: center;
  }

  .welcome-content {
    /* Mantém centralização vertical em mobile */
    top: 50%;
    transform: translate(-50%, -50%);
  }

  .welcome-content h1 {
    font-size: 36px;
  }

  .welcome-content p {
    font-size: 16px;
  }
}
