:root {
  --meliuz-pink-50: #F9EBF1;
  --meliuz-pink-100: #F9EBF1;
  --meliuz-pink-200: #FECAD6;
  --meliuz-pink-300: #FFB1C4;
  --meliuz-pink-400: #FD9CBF;
  --meliuz-pink-500: #FC6098;
  --meliuz-gray-50: #F8F8F8;
  --meliuz-gray-100: #ECEEF0;
  --meliuz-gray-500: #999;
  --meliuz-gray-800: #2A2A2A;
}

body {
  background-color: var(--meliuz-gray-50);
  font-family: 'Hero New Regular', sans-serif;}

.header {
  position: relative;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 3rem 7.5rem;
}

.header a, .header a:hover {
  text-decoration: none !important;
}

.header__container {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
}

.header__logo-group {
  display: flex;
  align-items: center;
  gap: 17px;
}

.header__logo {
  width: 100px;
  object-fit: contain;
}

.header__separator {
  width: 0;
}

.header__hc-name {
  width: 125px;
  object-fit: contain;
}

.header__user-info .dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1rem;
  color: #2A2A2A;
  font-weight: 400;
}

.header__user-info .user-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.header__user-info .dropdown-arrow {
  font-size: 0.75rem;
  font-weight: 900;
}

.hero-unit {
  margin: 0;
}

.hero-unit-container {
  position: relative;
  width: 100%;
  background-size: cover;
  background-position: center;
}

.hero-content {
  width: 1200px;
}

.hero-title {
  font-size: 40px;
  color: #2A2A2A;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 2.5rem;
}

.search-form {
  position: relative;
  width: 100%;
}

.search-form .search input[type="search"] {
  background-color: white;
  border: 1px solid #ECEEF0;
  width: 100%;
  padding: 2rem 4.5rem;
  border-radius: 0.375rem;
  font-size: 19px;
  color: #999;
  box-sizing: border-box;
}

.search-form .search input[type="submit"] {
  display: none !important;
}

.search-input::placeholder {
  color: #999;
}

.search-icon {
  position: absolute;
  left: 30px;
  top: 50%;
  transform: translateY(-50%);
  width: 25px;
  height: 26px;
  pointer-events: none;
  fill: #FD9CBF;
}

.main-content {
  max-width: 1228px;
  margin: 0 auto;
  padding: 2.5rem 0em;
}
/* ===== FAQ Section ===== */
.faq-section {
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 1228px;
  margin: 0 auto;
  /* padding: 0 16px; */
}

.faq-title {
  font-family: 'Hero New Regular', sans-serif;  font-weight: 700;
  font-size: 23px;
  line-height: 32px;
  color: #2A2A2A;
}

/* ===== Cards container ===== */
.faq-cards {
  display: flex;
  flex-wrap: nowrap;
  gap: 16px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

/* ===== Card ===== */
.faq-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 40px 32px;
  width: 295px;
  min-width: 295px;
  max-width: 295px;
  height: 264px;
  min-height: 264px;
  max-height: 264px;
  background: #FFFFFF;
  border: 1px solid #ECECEC;
  border-radius: 16px;
  box-sizing: border-box;
  flex-shrink: 0;
}

/* Icon */
.faq-icon {
  font-size: 32px;
  color: #FD9CBF;
  margin-bottom: 16px;
}

/* Conteúdo */
.faq-content h3 {
  font-family: 'Hero New Regular', sans-serif;  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  color: #2A2A2A;
  margin: 0 0 8px;
}

.faq-content p {
  font-family: 'Hero New Regular', sans-serif;  font-weight: 400;
  font-size: 13px;
  line-height: 16px;
  color: #767676;
  margin: 0;
}

/* Link */
.faq-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
  font-family: 'Hero New Regular', sans-serif;  font-size: 13px;
  color: #027FAC;
  text-decoration: none;
}

.faq-link i {
  margin-left: 1.5em;
  text-align: center;
  font-size: 10px;
  font-weight: 600;
}


.topics__title {
  font-family: 'Hero New Regular', sans-serif;  font-style: normal;
  font-weight: 700;
  font-size: 23px;
  line-height: 32px;
  color: #2A2A2A;
}

.topics__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px 16px;
  width: 100%;
}

@media (max-width: 900px) {
  .topics__grid {
    grid-template-columns: 1fr;
    width: 100%;
  }
  .topics__card {
    width: 80vw;
    min-width: 90vw;
    max-width: 90vw;
    margin: 0 auto;
  }
}

@media (min-width: 901px) {
  .topics__grid {
    grid-template-columns: repeat(4, 1fr);
    width: 100%;
  }
  .topics__card {
    width: 100%;
    min-width: 0;
    max-width: 100%;
    margin: 0;
  }
}

/* ==========================
   Cards
   ========================== */

.topics__card {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  padding: 16px 24px;
  width: 295px;
  height: 76px;
  background: #FFFFFF;
  border: 1px solid #ECECEC;
  border-radius: 16px;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}

.topics__card:hover {
  border-color: #FD9CBF;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

/* ==========================
   Ícones e Conteúdo
   ========================== */

.card__icon {
  background-color: #00000000;
  font-size: 23px;
  line-height: 32px;
  color: #FD9CBF;
  flex-shrink: 0;
}

.card__content {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex-grow: 1;
  width: 168px;
}

.card__title {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin: 0;
  font-family: 'Hero New Regular', sans-serif;  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  color: #2A2A2A;
}

.card__subtitle {
  margin: 0;
  font-family: 'Hero New Regular', sans-serif;
  font-weight: 400;
  font-size: 13px;
  line-height: 16px;
  color: #767676;
}

.card__arrow {
  font-size: 20px;
  color: #2A2A2A;
  flex-shrink: 0;
}

@media (max-width: 900px) {
  .main-content {
    padding: 2.5rem 1em;
  }
}

section.topics {
    display: flex;
    gap: 32px;
    flex-direction: column;
}