* {
  margin: 0;
  padding: 0;
  border: 0;
  box-sizing: border-box;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Montserrat", sans-serif;
}

body,
html {
  font-family: "Roboto", sans-serif;
  height: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

/* main {
  min-height: 100vh;
} */

/* =========== Navbar Section =========== */
.bg-dark {
  background-color: #290007 !important;
}

.bg-darker {
  background-color: #0000001f !important;
}

.bg-one {
  background-color: #fc9c42 !important;
}

.bg-two {
  background-color: #ff6a6a !important;
}

.bg-three {
  background-color: #ff9980 !important;
}

.nav-underline {
  position: relative;
  display: inline-block;
  padding-bottom: 6px;
}

.nav-underline::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(to right, #ff6a6a, #ff9980);
  transition: width 0.3s ease;
}

.nav-underline:hover::after,
.nav-underline:focus::after,
.nav-underline.active::after {
  width: 100%;
}

/* =========== Navtabs Section =========== */

.nav-tabs .nav-link {
  color: #290007;
}

.nav-tabs .nav-link.active {
  color: #fff;
  background-color: #290007;
  border-color: #290007;
}

/* =========== Hero Section =========== */

.hero {
  position: relative;
  height: 100vh;
  background-image: url("../images/background.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.hero .content {
  position: relative;
  z-index: 1;
  color: white;
  top: 50%;
  transform: translateY(-50%);
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, #630615, #290007af);
  z-index: 0;
}

.logo-hero {
  max-width: 450px;
  margin-top: 8rem;
}

@media (max-width: 768px) {
  .logo-hero {
    max-width: 250px;
    margin-top: 2rem;
  }
}

/* =========== Countdown Section =========== */

.countdown-box {
  background-color: #290007;
  color: white;
  padding: 1.2rem 1.4rem 1rem 1rem;
  border-radius: 0.5rem;
  font-size: 4rem;
  font-weight: bold;
  display: inline-block;
  flex: 1 1 0;
  min-width: 70px;
  max-width: 25%;
  text-align: center;
  line-height: 1;
  box-sizing: border-box;
}

.countdown-box small {
  display: block;
  font-size: 1rem;
  font-weight: normal;
  opacity: 0.9;
  margin-top: 0.5rem;
}

@media (max-width: 768px) {
  .countdown-box {
    font-size: 3rem;
    padding: 0.75rem;
    max-width: 45%;
  }

  .countdown-box small {
    font-size: 1rem;
  }
}

@media (max-width: 400px) {
  .countdown-box {
    font-size: 2.2rem;
    padding: 0.5rem;
    max-width: 48%;
  }

  .countdown-box small {
    font-size: 0.875rem;
  }
}

/* =========== Special Buttons Section =========== */

.btn-gradient-primary {
  background: linear-gradient(to right, #7d1074, #6d0b65);
  border: none;
  transition:
    background 0.4s ease,
    transform 0.2s ease;
}

.btn-gradient-primary:hover {
  background: linear-gradient(to right, #580952, #380234);
  transform: scale(1.03);
}

.btn-gradient-secondary {
  background: linear-gradient(to right, #ff6a6a, #ff9980);
  border: none;
  transition:
    background 0.4s ease,
    transform 0.2s ease;
}

.btn-gradient-secondary:hover {
  background: linear-gradient(to right, #ff9980, #ff6a6a);
  transform: scale(1.03);
}

/* =========== Special Text Section =========== */

.text-gradient-primary {
  background: linear-gradient(to right, #290007, #530411);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.text-gradient-secondary {
  background: linear-gradient(to right, #ff6a6a, #ff9980);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

/* =========== Text Section =========== */
.text-primary {
  color: #290007 !important;
}
.text-secondary {
  color: #ff9980 !important;
}

.custom-link {
  color: #ff6a6a;
  text-decoration: none;
  transition: color 0.3s ease;
}

.custom-link:hover,
.custom-link:focus {
  color: #290007;
}

/* =========== Carousel Speakers Section =========== */

.custom-arrow {
  width: 50px;
  height: 50px;
  background-color: #290007;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.8;
  transition: all 0.3s ease;
  z-index: 1;
}

.custom-arrow:hover {
  opacity: 1;
  transform: translateY(-50%) scale(1.1);
}

.carousel-control-prev.custom-arrow {
  left: -10px;
}

.carousel-control-next.custom-arrow {
  right: -10px;
}

.custom-arrow span {
  color: white;
  font-size: 1rem;
  line-height: 1;
}

/* =========== Accordion Section =========== */

.accordion-button:not(.collapsed) {
  background-color: #290007;
  color: white !important;
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.125);
}

.accordion-button:focus {
  box-shadow: 0 0 0 0.25rem #29000780;
}

.accordion-body {
  background-color: #f5f3fa;
  color: #0e1e55;
}

/* =========== Footer Section =========== */

footer {
  color: white;
  text-align: center;
  padding: 10px 0;
  margin-top: 3rem;
}

/* =========== Sobre a Formação - Visual Components =========== */
.page-hero {
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 85% 15%, rgba(235, 4, 4, 0.16), transparent 28%),
    radial-gradient(circle at 12% 85%, rgba(214, 1, 1, 0.14), transparent 30%);
  pointer-events: none;
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: "Montserrat", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #ff9980 !important;
  margin-bottom: 0.75rem;
}

.section-eyebrow::before {
  content: "";
  display: inline-block;
  width: 2.4rem;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(to right, #ff9980, #922a2a);
}

.hero-pill {
  display: inline-flex;
  padding: 0.55rem 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.95rem;
}

.hero-summary-card {
  padding: 2rem;
  border-radius: 1.25rem;
  color: #290007;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.18);
  border-top: 6px solid #ff9980;
}

.soft-section {
  background: linear-gradient(180deg, #f7f9fc 0%, #ffffff 100%);
}

.lead-copy {
  font-size: 1.08rem;
  line-height: 1.8;
  color: #34425a;
}

.section-intro {
  max-width: 760px;
  color: #4b5870;
  font-size: 1.05rem;
  line-height: 1.7;
}

.insight-grid {
  display: grid;
  gap: 1rem;
}

.insight-card,
.feature-card,
.deliverable-card {
  background: #fff;
  border: 1px solid rgba(24, 62, 121, 0.12);
  border-radius: 1.25rem;
  box-shadow: 0 18px 45px rgba(24, 62, 121, 0.08);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.insight-card:hover,
.feature-card:hover,
.deliverable-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 60px rgba(24, 62, 121, 0.13);
}

.insight-card {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  column-gap: 1.15rem;
  row-gap: 0.35rem;
  padding: 1.3rem;
  align-items: start;
}

.insight-card h3 {
  margin-top: 0.2rem;
}

.insight-card p {
  grid-column: 2;
}

.insight-number {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 1rem;
  background: linear-gradient(135deg, #290007, #530411);
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
}

.insight-card h3,
.feature-card h3,
.deliverable-card h3 {
  color: #290007;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.insight-card p,
.feature-card p,
.deliverable-card p {
  color: #4b5870;
  line-height: 1.65;
  margin: 0;
}

.feature-card {
  padding: 1.6rem;
  position: relative;
  overflow: hidden;
}

.feature-card::after {
  content: "";
  position: absolute;
  right: -40px;
  top: -40px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(1, 214, 182, 0.12);
}

.feature-icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 1.1rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff6a6a, #ff9980);
  color: #290007;
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
}

.results-list {
  display: grid;
  gap: 0.85rem;
}

.result-item {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  padding: 1rem 1.15rem;
  border-radius: 1rem;
  background: #fff;
  border-left: 5px solid #7d1074;
  box-shadow: 0 12px 32px rgba(24, 62, 121, 0.07);
}

.result-item span {
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
  margin-top: 0.25rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #7d1074, #6d0b65);
  box-shadow: 0 0 0 6px rgba(214, 1, 1, 0.12);
}

.result-item p {
  margin: 0;
  color: #34425a;
  line-height: 1.55;
}

.deliverable-card {
  padding: 1.6rem;
  border-top: 6px solid #290007;
}

.deliverable-card:nth-child(1) {
  border-top-color: #290007;
}

.deliverable-tag {
  display: inline-block;
  margin-bottom: 1rem;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  color: #290007;
  background: #fbe9e9;
  font-weight: 700;
  font-size: 0.85rem;
}

.journey-callout {
  max-width: 920px;
  margin-inline: auto;
  padding: 1.4rem 1.6rem;
  border-radius: 1.25rem;
  color: #290007;
  background: linear-gradient(
    135deg,
    rgba(235, 4, 4, 0.14),
    rgba(214, 1, 1, 0.14)
  );
  border: 1px solid rgba(214, 1, 1, 0.25);
}

@media (max-width: 768px) {
  .page-hero .display-3,
  .display-5 {
    font-size: 2.2rem;
  }

  .insight-card {
    grid-template-columns: 1fr;
  }

  .insight-card p {
    grid-column: auto;
  }

  .hero-summary-card {
    padding: 1.4rem;
  }
}

/* Sobre a Formação - visual organization */
.about-opening-section {
  background: #ffffff;
}

.section-sticky-card {
  padding: 2rem;
  border-radius: 1.5rem;
  background: linear-gradient(
    180deg,
    rgba(247, 249, 252, 1),
    rgba(255, 255, 255, 1)
  );
  border: 1px solid rgba(24, 62, 121, 0.1);
  box-shadow: 0 18px 45px rgba(24, 62, 121, 0.07);
}

.about-text-grid {
  display: grid;
  gap: 1rem;
}

.content-card {
  padding: 1.35rem 1.45rem;
  border-radius: 1.25rem;
  background: #ffffff;
  border: 1px solid rgba(24, 62, 121, 0.12);
  box-shadow: 0 14px 34px rgba(24, 62, 121, 0.07);
}

.content-card h3 {
  color: #290007;
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 0.6rem;
}

.content-card p {
  color: #34425a;
  line-height: 1.7;
  margin: 0;
}

.content-card-highlight {
  border-left: 6px solid #7d1074;
  background: linear-gradient(
    135deg,
    rgba(235, 4, 4, 0.08),
    rgba(255, 255, 255, 1)
  );
}

.objective-card {
  position: relative;
  padding: 1.6rem;
  border-radius: 1.35rem;
  background: #ffffff;
  border: 1px solid rgba(24, 62, 121, 0.12);
  box-shadow: 0 18px 45px rgba(24, 62, 121, 0.08);
  overflow: hidden;
}

.objective-card::after {
  content: "";
  position: absolute;
  right: -36px;
  top: -36px;
  width: 115px;
  height: 115px;
  border-radius: 50%;
  background: rgba(214, 1, 1, 0.12);
}

.objective-number {
  display: inline-grid;
  place-items: center;
  width: 50px;
  height: 50px;
  margin-bottom: 1rem;
  border-radius: 1rem;
  background: linear-gradient(135deg, #7d1074, #6d0b65);
  color: #ffffff;
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
}

.objective-card h3 {
  color: #290007;
  font-size: 1.18rem;
  font-weight: 800;
  line-height: 1.35;
  margin-bottom: 0.75rem;
}

.objective-card p {
  color: #4b5870;
  line-height: 1.65;
  margin: 0;
}

.text-primary-custom {
  color: #290007;
}

@media (max-width: 991px) {
  .section-sticky-card,
  .content-card,
  .objective-card {
    padding: 1.25rem;
  }
}

/* Sobre a Formação - hero com cards em fundo escuro */
.about-hero-content {
  background: linear-gradient(135deg, #290007 0%, #630615 58%, #630615 100%);
}

.about-hero-content .section-eyebrow {
  color: #ff6a6a;
}

.about-hero-main-card,
.about-hero-card {
  border: 1px solid rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.08);
  border-radius: 1.25rem;
  color: #ffffff;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(6px);
}

.about-hero-main-card {
  padding: 1.4rem 1.5rem;
  border-left: 5px solid #ff9980;
}

.about-hero-main-card p,
.about-hero-card p {
  margin: 0;
  color: #ffffff;
  line-height: 1.75;
}

.about-hero-card-grid {
  display: grid;
  gap: 1rem;
}

.about-hero-card {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
  padding: 1.2rem 1.35rem;
}

.about-hero-card span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 0.9rem;
  background: rgba(214, 1, 1, 0.18);
  border: 1px solid rgba(214, 1, 1, 0.55);
  color: #ffffff;
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
}

@media (max-width: 768px) {
  .about-hero-card {
    grid-template-columns: 1fr;
  }
}

/* =========== Jornada Formativa - Visão geral em cards =========== */
.journey-overview-section {
  background: #ffffff;
}

.journey-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
}

.journey-summary-card {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  min-height: 260px;
  padding: 1.5rem;
  border-radius: 1.25rem;
  background: #ffffff;
  border: 1px solid rgba(24, 62, 121, 0.12);
  box-shadow: 0 18px 45px rgba(24, 62, 121, 0.08);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.journey-summary-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 60px rgba(24, 62, 121, 0.13);
}

.journey-summary-card::after {
  content: "";
  position: absolute;
  top: -38px;
  right: -34px;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: rgba(214, 1, 1, 0.16);
}

.journey-summary-number {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  border-radius: 0.85rem;
  color: #ffffff;
  background: linear-gradient(135deg, #290007, #530411);
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 0.9rem;
  position: relative;
  z-index: 1;
}

.journey-summary-card-two .journey-summary-number {
  background: linear-gradient(135deg, #ff6a6a, #ff9980);
}

.journey-summary-card-three .journey-summary-number {
  background: linear-gradient(135deg, #d35a32, #fc9c42);
}

.journey-summary-content {
  position: relative;
  z-index: 1;
}

.journey-summary-content span {
  display: inline-flex;
  margin-bottom: 0.45rem;
  color: #ff6a6a;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.75rem;
}

.journey-summary-content h4 {
  margin-bottom: 0.8rem;
  color: #290007;
  font-weight: 800;
  font-size: 1.35rem;
}

.journey-summary-content p {
  color: #34425a;
  line-height: 1.65;
  margin-bottom: 0.8rem;
}

.journey-question {
  font-weight: 800;
  color: #290007 !important;
}

@media (max-width: 991px) {
  .journey-card-grid {
    grid-template-columns: 1fr;
  }

  .journey-summary-card {
    min-height: auto;
  }
}

/* =========== Jornada Formativa - Experiências de Aplicação =========== */
.application-experiences-section {
  background: linear-gradient(180deg, #f7f9fc 0%, #ffffff 100%);
}

.experience-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.flow-step {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1.1rem;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid rgba(24, 62, 121, 0.14);
  box-shadow: 0 12px 30px rgba(24, 62, 121, 0.08);
  color: #290007;
}

.flow-step span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  color: #ffffff;
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 0.85rem;
}

.flow-step-one span,
.experience-card-one .experience-label,
.experience-card-one .deliverable-pill {
  background: linear-gradient(135deg, #290007, #530411);
}

.flow-step-two span,
.experience-card-two .experience-label,
.experience-card-two .deliverable-pill {
  background: linear-gradient(135deg, #ff6a6a, #ff9980);
}

.flow-step-three span,
.experience-card-three .experience-label,
.experience-card-three .deliverable-pill {
  background: linear-gradient(135deg, #d35a32, #fc9c42);
}

.flow-line {
  width: 72px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(to right, #ff6a6a, #ff9980);
}

.experience-card {
  position: relative;
  overflow: hidden;
  padding: 2rem;
  border-radius: 1.5rem;
  background: #ffffff;
  border: 1px solid rgba(24, 62, 121, 0.12);
  box-shadow: 0 22px 55px rgba(24, 62, 121, 0.1);
}

.experience-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 8px;
  background: #290007;
}

.experience-card-one::before {
  background: linear-gradient(180deg, #290007, #530411);
}
.experience-card-two::before {
  background: linear-gradient(180deg, #ff6a6a, #ff9980);
}
.experience-card-three::before {
  background: linear-gradient(180deg, #d35a32, #fc9c42);
}

.experience-card h4 {
  color: #290007;
  font-weight: 800;
  font-size: 1.65rem;
  margin-bottom: 1rem;
}

.experience-card p {
  color: #34425a;
  line-height: 1.7;
}

.experience-label,
.deliverable-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  color: #ffffff;
  font-weight: 800;
  font-size: 0.85rem;
  margin-bottom: 1rem;
}

.deliverable-pill {
  margin-top: 0.5rem;
  margin-bottom: 0;
}

.experience-panel,
.question-card {
  height: 100%;
  padding: 1.35rem;
  border-radius: 1.15rem;
  background: #f7f9fc;
  border: 1px solid rgba(24, 62, 121, 0.1);
}

.experience-panel h5,
.question-card h5 {
  color: #290007;
  font-weight: 800;
  margin-bottom: 0.85rem;
}

.experience-panel blockquote {
  margin: 1rem 0;
  padding: 1rem 1.1rem;
  border-left: 5px solid #ff9980;
  border-radius: 0.85rem;
  background: #ffffff;
  color: #290007;
  font-weight: 700;
}

.question-card ul {
  padding-left: 1rem;
  margin-bottom: 0;
}

.question-card li {
  color: #34425a;
  line-height: 1.45;
  margin-bottom: 0.55rem;
}

.activation-timeline {
  display: grid;
  gap: 0.85rem;
  margin-top: 1rem;
}

.activation-timeline div {
  padding: 1rem;
  border-radius: 1rem;
  background: #ffffff;
  border: 1px solid rgba(1, 214, 182, 0.22);
}

.activation-timeline span {
  display: inline-block;
  margin-bottom: 0.35rem;
  color: #ff6a6a;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.78rem;
}

.activation-timeline strong,
.activation-timeline small {
  display: block;
  color: #290007;
}

.activation-timeline small {
  margin-top: 0.25rem;
  color: #4b5870;
}

/* =========== Perguntas Frequentes =========== */
.faq-hero-text {
  max-width: 760px;
  font-size: 1.08rem;
  line-height: 1.75;
}

.faq-hero-card {
  padding: 1.45rem;
  border-radius: 1.25rem;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
}

.faq-hero-card strong {
  display: block;
  margin-bottom: 0.5rem;
  font-family: "Montserrat", sans-serif;
  font-size: 1.15rem;
}

.faq-hero-card p {
  margin: 0;
  line-height: 1.6;
}

.faq-section {
  background: linear-gradient(180deg, #ffffff 0%, #f7f9fc 100%);
}

.faq-search-wrapper {
  max-width: 780px;
  margin-inline: auto;
}

.faq-search-input {
  min-height: 58px;
  padding: 0 1.25rem;
  border-radius: 999px;
  border: 1px solid rgba(24, 62, 121, 0.18);
  box-shadow: 0 14px 35px rgba(24, 62, 121, 0.08);
}

.faq-search-input:focus {
  border-color: #ff9980;
  box-shadow: 0 0 0 0.25rem rgba(1, 214, 182, 0.18);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.faq-card {
  padding: 1.35rem;
  border-radius: 1.25rem;
  background: #ffffff;
  border: 1px solid rgba(121, 24, 24, 0.12);
  box-shadow: 0 18px 45px rgba(121, 24, 24, 0.08);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.faq-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 60px rgba(121, 24, 24, 0.13);
}

.faq-card-header {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  margin-bottom: 0.85rem;
}

.faq-card-header span {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  border-radius: 0.9rem;
  color: #ffffff;
  background: linear-gradient(135deg, #7d1074, #6d0b65);
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
}

.faq-card h3 {
  margin: 0;
  color: #290007;
  font-size: 1.15rem;
  font-weight: 800;
  line-height: 1.35;
}

.faq-card p {
  margin: 0;
  color: #34425a;
  line-height: 1.65;
}

.faq-empty-message {
  max-width: 780px;
  margin: 2rem auto 0;
  padding: 1.1rem 1.25rem;
  border-radius: 1rem;
  color: #290007;
  background: rgba(235, 4, 4, 0.12);
  border: 1px solid rgba(235, 4, 4, 0.25);
  text-align: center;
  font-weight: 700;
}

@media (max-width: 991px) {
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .flow-line {
    display: none;
  }
}

@media (max-width: 768px) {
  .experience-card {
    padding: 1.4rem;
  }
}

/* =========== Padronização de Heros Internos =========== */
.standard-page-hero {
  min-height: 360px;
  display: flex;
  align-items: center;
  background: linear-gradient(
    135deg,
    #290007 0%,
    #630615 58%,
    #630615 100%
  ) !important;
}

.page-hero-text {
  max-width: 860px;
  font-size: 1.05rem;
  line-height: 1.78;
}

.page-hero-card {
  padding: 1.45rem;
  border-radius: 1.25rem;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.32);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.13);
}

.page-hero-card strong {
  display: block;
  margin-bottom: 0.55rem;
  font-family: "Montserrat", sans-serif;
  font-size: 1.15rem;
}

.page-hero-card p {
  margin: 0;
  line-height: 1.65;
}

/* =========== Materiais de Apoio - Visual =========== */
.materials-section {
  background: linear-gradient(180deg, #ffffff 0%, #f7f9fc 100%);
}

.materials-category-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.materials-category-chip {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 1rem;
  border-radius: 1.1rem;
  color: #290007;
  background: #ffffff;
  text-decoration: none;
  border: 1px solid rgba(24, 62, 121, 0.12);
  box-shadow: 0 14px 34px rgba(24, 62, 121, 0.08);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.materials-category-chip:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 48px rgba(24, 62, 121, 0.12);
  color: #290007;
}

.materials-category-chip span {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  border-radius: 0.9rem;
  color: #ffffff;
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
}

.materials-chip-blue span {
  background: linear-gradient(135deg, #290007, #530411);
}
.materials-chip-green span {
  background: linear-gradient(135deg, #ff6a6a, #ff9980);
}
.materials-chip-orange span {
  background: linear-gradient(135deg, #d35a32, #fc9c42);
}
.materials-chip-purple span {
  background: linear-gradient(135deg, #604fa7, #a561ff);
}

.materials-category-block {
  position: relative;
  overflow: hidden;
  padding: 2rem;
  border-radius: 1.5rem;
  background: #ffffff;
  border: 1px solid rgba(24, 62, 121, 0.12);
  box-shadow: 0 18px 50px rgba(24, 62, 121, 0.08);
}

.materials-category-block::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 7px;
  background: linear-gradient(90deg, #290007, #ff6a6a);
}

.materials-category-green::before {
  background: linear-gradient(90deg, #ff6a6a, #ff9980);
}
.materials-category-orange::before {
  background: linear-gradient(90deg, #d35a32, #fc9c42);
}
.materials-category-purple::before {
  background: linear-gradient(90deg, #4f3aa5, #7b61ff);
}

.materials-category-header {
  display: grid;
  grid-template-columns: 1fr minmax(240px, 420px);
  gap: 1.5rem;
  align-items: end;
  margin-bottom: 1.5rem;
}

.materials-kicker {
  display: inline-flex;
  margin-bottom: 0.45rem;
  color: #ff6a6a;
  font-family: "Montserrat", sans-serif;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.materials-category-header h3 {
  color: #290007;
  font-weight: 800;
  margin: 0;
}

.materials-category-header p {
  color: #4b5870;
  line-height: 1.65;
  margin: 0;
}

.materials-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.materials-card-grid.one-card {
  grid-template-columns: minmax(0, 1fr);
}

.material-card {
  display: flex;
  gap: 1rem;
  padding: 1.25rem;
  border-radius: 1.25rem;
  background: linear-gradient(180deg, #ffffff 0%, #f9fbff 100%);
  border: 1px solid rgba(24, 62, 121, 0.12);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.material-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 44px rgba(24, 62, 121, 0.11);
}

.featured-material {
  align-items: center;
}

.material-icon {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 62px;
  height: 62px;
  border-radius: 1rem;
  color: #ffffff;
  background: linear-gradient(135deg, #7d1074, #6d0b65);
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.material-type {
  display: inline-flex;
  margin-bottom: 0.3rem;
  color: #ff6a6a;
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.material-card h4 {
  color: #290007;
  font-weight: 800;
  margin-bottom: 0.55rem;
}

.material-card p {
  color: #34425a;
  line-height: 1.65;
  margin-bottom: 1rem;
}

@media (max-width: 991px) {
  .materials-category-grid,
  .materials-card-grid,
  .materials-card-grid.one-card,
  .materials-category-header {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .materials-category-block {
    padding: 1.25rem;
  }

  .material-card {
    flex-direction: column;
  }
}


/* Ajuste solicitado: cabeçalhos internos no padrão Inspirali, com identidade UNA preservada */
.una-page-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(255, 153, 128, 0.16), transparent 32%),
    linear-gradient(135deg, #290007 0%, #630615 58%, #630615 100%) !important;
}

.una-page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.08), transparent 35%),
    radial-gradient(circle at 15% 15%, rgba(255, 153, 128, 0.12), transparent 28%);
  pointer-events: none;
}

.una-page-hero .container {
  position: relative;
  z-index: 1;
}

.una-page-hero .page-hero-card {
  backdrop-filter: blur(8px);
  border-left: 4px solid #ff9980;
}

.una-page-hero .page-hero-text {
  color: rgba(255, 255, 255, 0.92) !important;
}


/* Tabela da Home - visual mais claro e alinhado à identidade UNA */
.enade-home-table {
  overflow: hidden;
  border-collapse: separate;
  border-spacing: 0;
  border: 1px solid rgba(99, 6, 21, 0.14);
  border-radius: 1rem;
  background: #ffffff;
  box-shadow: 0 16px 36px rgba(41, 0, 7, 0.08);
}

.enade-home-table thead th {
  color: #ffffff;
  background: linear-gradient(135deg, #630615 0%, #922a2a 100%);
  border-color: rgba(255, 255, 255, 0.16);
  font-weight: 700;
}

.enade-home-table tbody th,
.enade-home-table tbody td {
  color: #290007;
  background: #ffffff;
  border-color: rgba(99, 6, 21, 0.12);
  font-weight: 500;
}

.enade-home-table tbody tr:nth-child(even) th,
.enade-home-table tbody tr:nth-child(even) td {
  background: #fff5f2;
}

.enade-home-table tbody tr:hover th,
.enade-home-table tbody tr:hover td {
  background: #ffe6df;
}


/* Tabela da Jornada Formativa - visual claro e alinhado à identidade UNA */
.enade-journey-table {
  overflow: hidden;
  border-collapse: separate;
  border-spacing: 0;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 1rem;
  background: #ffffff;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.12);
}

.enade-journey-table thead th {
  color: #ffffff;
  background: linear-gradient(135deg, #630615 0%, #8e2133 100%);
  border-bottom: 0;
  font-weight: 700;
  white-space: nowrap;
}

.enade-journey-table tbody td,
.enade-journey-table tbody th {
  color: #290007;
  background: #ffffff;
  border-color: rgba(99, 6, 21, 0.12);
}

.enade-journey-table tbody tr:nth-child(even) td,
.enade-journey-table tbody tr:nth-child(even) th {
  background: #fff5f2;
}

.enade-journey-table tbody tr:hover td,
.enade-journey-table tbody tr:hover th {
  background: #ffe7df;
}


/* Refinamento visual da tabela da Jornada Formativa */
.enade-journey-table-wrap {
  border-radius: 1.1rem;
  overflow: hidden;
  box-shadow:
    0 18px 34px rgba(0, 0, 0, 0.16),
    0 6px 14px rgba(99, 6, 21, 0.10);
  background: #ffffff;
}

.enade-journey-table {
  margin-bottom: 0;
  overflow: hidden;
  border-collapse: separate;
  border-spacing: 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 1.1rem;
  background: #ffffff;
}

.enade-journey-table thead th {
  padding: 0.95rem 1rem;
  color: #ffffff;
  background: linear-gradient(135deg, #630615 0%, #8e2133 100%);
  border-bottom: 0;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.enade-journey-table tbody td,
.enade-journey-table tbody th {
  padding: 0.9rem 1rem;
  color: #290007;
  background: #ffffff;
  border-color: rgba(99, 6, 21, 0.10);
  vertical-align: middle;
}

.enade-journey-table tbody tr:nth-child(even) td,
.enade-journey-table tbody tr:nth-child(even) th {
  background: #fff7f4;
}

.enade-journey-table tbody tr:hover td,
.enade-journey-table tbody tr:hover th {
  background: #ffe9e2;
  transition: background-color 0.2s ease-in-out;
}


/* Tabela de entregáveis da página Sobre a Formação */
.enade-deliverables-table-wrap {
  border-radius: 1.1rem;
  overflow: hidden;
  background: #ffffff;
  box-shadow:
    0 18px 34px rgba(41, 0, 7, 0.10),
    0 6px 14px rgba(99, 6, 21, 0.08);
}

.enade-deliverables-table {
  margin-bottom: 0;
  border-collapse: separate;
  border-spacing: 0;
  background: #ffffff;
}

.enade-deliverables-table thead th {
  padding: 0.95rem 1rem;
  color: #ffffff;
  background: linear-gradient(135deg, #630615 0%, #8e2133 100%);
  border-bottom: 0;
  font-weight: 700;
}

.enade-deliverables-table tbody td {
  padding: 0.9rem 1rem;
  color: #290007;
  background: #ffffff;
  border-color: rgba(99, 6, 21, 0.10);
}

.enade-deliverables-table tbody tr:nth-child(even) td {
  background: #fff7f4;
}

.enade-deliverables-table tbody tr:hover td {
  background: #ffe9e2;
  transition: background-color 0.2s ease-in-out;
}


/* Materiais de apoio - cards explicativos para docentes */
.materials-support-section .section-eyebrow {
  color: #922a2a !important;
}

.material-card,
.material-simple-card {
  background: #ffffff;
  border: 1px solid rgba(99, 6, 21, 0.12);
  border-radius: 1.25rem;
  box-shadow: 0 16px 34px rgba(41, 0, 7, 0.08);
}

.material-card {
  padding: 1.6rem;
  display: flex;
  flex-direction: column;
}

.material-card-icon {
  width: 3rem;
  height: 3rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: linear-gradient(135deg, #630615 0%, #922a2a 100%);
  border-radius: 1rem;
  font-size: 1.35rem;
  margin-bottom: 1rem;
}

.material-card-kicker {
  display: inline-block;
  color: #922a2a;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.7rem;
}

.material-card h4 {
  color: #290007;
  font-weight: 700;
  margin-bottom: 0.9rem;
}

.material-card p {
  color: #3b1b20;
  line-height: 1.65;
}

.material-card .btn {
  margin-top: auto;
  align-self: flex-start;
}

.material-simple-card {
  box-shadow: 0 12px 28px rgba(41, 0, 7, 0.06);
}

.material-simple-card h3 {
  color: #290007;
  font-weight: 700;
}

.material-simple-card .btn {
  margin-right: 0.35rem;
}


/* Separação visual entre blocos de materiais docentes e coordenadores */
.materials-support-section .row + .row .material-card {
  min-height: 100%;
}


/* Card do Hub ENADE Ânima */
.hub-enade-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(99, 6, 21, 0.14) !important;
  background:
    radial-gradient(circle at top right, rgba(255, 153, 128, 0.12), transparent 34%),
    #ffffff;
}

.hub-enade-card::after {
  content: "";
  position: absolute;
  top: -3rem;
  right: -3rem;
  width: 9rem;
  height: 9rem;
  border-radius: 50%;
  background: rgba(146, 42, 42, 0.08);
  pointer-events: none;
}

.hub-enade-card h3 {
  color: #290007;
  font-weight: 700;
}

.hub-enade-card p {
  color: #3b1b20;
  line-height: 1.65;
}


/* Página Materiais de Apoio - organização visual */
.materials-page-section {
  background: linear-gradient(180deg, #ffffff 0%, #fbf6f4 100%);
}

.materials-overview,
.hub-highlight {
  padding: 2rem;
  border-radius: 1.5rem;
  background: #ffffff;
  border: 1px solid rgba(99, 6, 21, 0.12);
  box-shadow: 0 18px 36px rgba(41, 0, 7, 0.08);
}

.materials-summary-box {
  display: grid;
  gap: 0.65rem;
  padding: 1.25rem;
  border-radius: 1rem;
  background: #fff7f4;
  border: 1px solid rgba(99, 6, 21, 0.12);
  color: #290007;
}

.materials-summary-box strong {
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  margin-bottom: 0.2rem;
}

.materials-summary-box span {
  display: flex;
  gap: 0.55rem;
  align-items: center;
  line-height: 1.35;
}

.materials-summary-box i {
  color: #922a2a;
  font-size: 1.05rem;
}

.materials-group {
  padding: 1.75rem;
  border-radius: 1.5rem;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(99, 6, 21, 0.08);
}

.materials-group-title {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.4rem;
}

.materials-group-title > span {
  min-width: 3rem;
  height: 3rem;
  border-radius: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-weight: 800;
  background: linear-gradient(135deg, #630615 0%, #922a2a 100%);
  box-shadow: 0 10px 20px rgba(99, 6, 21, 0.18);
}

.materials-group-title h3,
.hub-highlight h3 {
  color: #290007;
  font-weight: 800;
  margin-bottom: 0.25rem;
}

.materials-group-title p,
.hub-highlight p {
  color: #3b1b20;
}

.resource-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 1.45rem;
  border-radius: 1.25rem;
  background: #ffffff;
  border: 1px solid rgba(99, 6, 21, 0.12);
  box-shadow: 0 14px 28px rgba(41, 0, 7, 0.07);
}

.resource-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 38px rgba(41, 0, 7, 0.10);
  transition: 0.2s ease-in-out;
}

.resource-icon {
  width: 2.85rem;
  height: 2.85rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.95rem;
  color: #ffffff;
  background: linear-gradient(135deg, #630615 0%, #922a2a 100%);
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.resource-card small {
  color: #922a2a;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.55rem;
}

.resource-card h4 {
  color: #290007;
  font-weight: 800;
  margin-bottom: 0.8rem;
}

.resource-card p {
  color: #3b1b20;
  line-height: 1.6;
}

.resource-output {
  padding: 0.8rem;
  border-radius: 0.85rem;
  background: #fff7f4;
  color: #290007;
  font-size: 0.92rem;
  margin: auto 0 1rem 0;
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.plans-grid a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  min-height: 4.25rem;
  border-radius: 1rem;
  color: #290007;
  text-decoration: none;
  background: #ffffff;
  border: 1px solid rgba(99, 6, 21, 0.12);
  box-shadow: 0 10px 22px rgba(41, 0, 7, 0.06);
  font-weight: 700;
}

.plans-grid a:hover {
  color: #630615;
  background: #fff7f4;
}

.plans-grid i {
  color: #922a2a;
  font-size: 1.35rem;
}

.hub-highlight {
  background:
    radial-gradient(circle at top right, rgba(255, 153, 128, 0.14), transparent 30%),
    #ffffff;
}

@media (max-width: 991px) {
  .plans-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 575px) {
  .materials-overview,
  .materials-group,
  .hub-highlight {
    padding: 1.2rem;
  }

  .plans-grid {
    grid-template-columns: 1fr;
  }
}


/* Materiais de Apoio - cards objetivos */
.materials-cards-page {
  background: linear-gradient(180deg, #ffffff 0%, #fbf6f4 100%);
}

.materials-intro {
  max-width: 880px;
  color: #3b1b20;
  line-height: 1.7;
}

.support-card {
  padding: 1.7rem;
  border-radius: 1.25rem;
  background: #ffffff;
  border: 1px solid rgba(99, 6, 21, 0.12);
  box-shadow: 0 16px 34px rgba(41, 0, 7, 0.08);
}

.support-card-header {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
}

.support-card-icon {
  min-width: 3rem;
  height: 3rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: linear-gradient(135deg, #630615 0%, #922a2a 100%);
  border-radius: 1rem;
  font-size: 1.35rem;
}

.support-card-header span {
  display: block;
  color: #922a2a;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.15rem;
}

.support-card h3 {
  color: #290007;
  font-weight: 800;
  margin: 0;
}

.support-card p {
  color: #3b1b20;
  line-height: 1.65;
}

.support-file-list {
  display: grid;
  gap: 0.85rem;
  margin-top: 1.1rem;
}

.support-file-item {
  padding: 1rem;
  border-radius: 1rem;
  background: #fff7f4;
  border: 1px solid rgba(99, 6, 21, 0.10);
}

.support-file-item strong {
  display: block;
  color: #290007;
  margin-bottom: 0.35rem;
}

.support-file-item small {
  display: block;
  color: #3b1b20;
  line-height: 1.55;
  margin-bottom: 0.75rem;
}

.support-file-item a,
.support-button-grid a,
.hub-access-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 0.8rem;
  border-radius: 0.45rem;
  color: #ffffff;
  background: #79006f;
  font-weight: 800;
  font-size: 0.9rem;
  text-decoration: none;
}

.support-file-item a:hover,
.support-button-grid a:hover,
.hub-access-button:hover {
  color: #ffffff;
  background: #630615;
}

.support-button-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
  margin-top: 1rem;
}

.support-button-grid a {
  min-height: 2.75rem;
}

.support-highlight-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 1rem 0 1.15rem;
}

.support-highlight-list span {
  display: inline-flex;
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  color: #290007;
  background: #fff7f4;
  border: 1px solid rgba(99, 6, 21, 0.10);
  font-weight: 700;
  font-size: 0.86rem;
}

.hub-support-card {
  background:
    radial-gradient(circle at top right, rgba(255, 153, 128, 0.12), transparent 34%),
    #ffffff;
}

@media (max-width: 575px) {
  .support-card {
    padding: 1.2rem;
  }

  .support-button-grid {
    grid-template-columns: 1fr;
  }
}


/* Ajustes ENADE para página de materiais baseada no padrão Inspirali */
.materials-card-grid {
  align-items: stretch;
}

.materials-card-grid .material-card {
  min-height: 100%;
}

.materials-category-block .material-card-body p {
  min-height: 4.6rem;
}

.materials-category-purple .featured-material .material-card-body p {
  min-height: auto;
}

@media (min-width: 992px) {
  #planos-de-ensino .materials-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}


/* Painel do Coordenador - rotina, acompanhamento e CTA */
.coordinator-panel-section {
  background: linear-gradient(180deg, #ffffff 0%, #fbf6f4 100%);
}

.coordinator-highlight {
  padding: 2rem;
  border-radius: 1.5rem;
  color: #ffffff;
  background:
    radial-gradient(circle at top right, rgba(255, 153, 128, 0.18), transparent 34%),
    linear-gradient(135deg, #290007 0%, #630615 58%, #79006f 100%);
  box-shadow: 0 22px 44px rgba(41, 0, 7, 0.18);
}

.coordinator-highlight .materials-kicker {
  color: #ff9980;
}

.coordinator-highlight h3 {
  color: #ffffff;
  font-weight: 800;
  margin-bottom: 0.8rem;
}

.coordinator-highlight p {
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.7;
  margin-bottom: 0;
}

.coordinator-purpose-card,
.coordinator-routine-block,
.coordinator-watch-block,
.coordinator-flows-block {
  background: #ffffff;
  border: 1px solid rgba(99, 6, 21, 0.12);
  border-radius: 1.35rem;
  box-shadow: 0 16px 34px rgba(41, 0, 7, 0.08);
}

.coordinator-purpose-card {
  height: 100%;
  padding: 1.5rem;
}

.coordinator-icon {
  width: 3rem;
  height: 3rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: linear-gradient(135deg, #630615 0%, #922a2a 100%);
  border-radius: 1rem;
  font-size: 1.35rem;
  margin-bottom: 1rem;
}

.coordinator-purpose-card h3,
.coordinator-section-heading h2 {
  color: #290007;
  font-weight: 800;
}

.coordinator-purpose-card p,
.coordinator-section-heading p {
  color: #3b1b20;
  line-height: 1.65;
}

.coordinator-routine-block,
.coordinator-watch-block,
.coordinator-flows-block {
  padding: 1.75rem;
}

.coordinator-section-heading {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.coordinator-section-heading > span {
  min-width: 3rem;
  height: 3rem;
  border-radius: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-weight: 800;
  background: linear-gradient(135deg, #630615 0%, #922a2a 100%);
  box-shadow: 0 10px 20px rgba(99, 6, 21, 0.18);
}

.routine-timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.routine-item {
  padding: 1.15rem;
  border-radius: 1rem;
  background: #fff7f4;
  border: 1px solid rgba(99, 6, 21, 0.10);
}

.routine-item strong {
  display: inline-block;
  color: #922a2a;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.45rem;
}

.routine-item h4,
.watch-grid h4,
.flow-steps h4 {
  color: #290007;
  font-weight: 800;
}

.routine-item p,
.watch-grid p,
.flow-steps p {
  color: #3b1b20;
  line-height: 1.6;
  margin-bottom: 0;
}

.watch-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.watch-grid article {
  padding: 1.15rem;
  border-radius: 1rem;
  background: #ffffff;
  border: 1px solid rgba(99, 6, 21, 0.10);
  box-shadow: 0 10px 22px rgba(41, 0, 7, 0.05);
}

.watch-grid i {
  display: inline-flex;
  margin-bottom: 0.8rem;
  color: #922a2a;
  font-size: 1.45rem;
}

.flow-steps {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
}

.flow-steps div {
  position: relative;
  padding: 1.15rem;
  border-radius: 1rem;
  background: #fff7f4;
  border: 1px solid rgba(99, 6, 21, 0.10);
}

.flow-steps span {
  width: 2.2rem;
  height: 2.2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #ffffff;
  background: #79006f;
  font-weight: 800;
  margin-bottom: 0.75rem;
}

@media (max-width: 991px) {
  .routine-timeline,
  .watch-grid,
  .flow-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 575px) {
  .coordinator-highlight,
  .coordinator-routine-block,
  .coordinator-watch-block,
  .coordinator-flows-block {
    padding: 1.25rem;
  }

  .routine-timeline,
  .watch-grid,
  .flow-steps {
    grid-template-columns: 1fr;
  }

  .coordinator-section-heading {
    flex-direction: column;
  }
}


/* Ajustes finais - Painel do Coordenador e FAQ */
.coordinator-access-final {
  padding: 2rem;
  border-radius: 1.35rem;
  color: #ffffff;
  background:
    radial-gradient(circle at top right, rgba(255, 153, 128, 0.16), transparent 34%),
    linear-gradient(135deg, #290007 0%, #630615 58%, #79006f 100%);
  box-shadow: 0 22px 44px rgba(41, 0, 7, 0.18);
}

.coordinator-access-final h2 {
  color: #ffffff;
  font-weight: 800;
}

.coordinator-access-final p {
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 0;
  line-height: 1.7;
}

.faq-section {
  background: linear-gradient(180deg, #ffffff 0%, #fbf6f4 100%);
}

.faq-quick-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.faq-quick-links a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-height: 4.25rem;
  padding: 1rem 1.2rem;
  border-radius: 1rem;
  color: #290007;
  text-decoration: none;
  background: #ffffff;
  border: 1px solid rgba(99, 6, 21, 0.12);
  box-shadow: 0 12px 24px rgba(41, 0, 7, 0.06);
  font-weight: 800;
}

.faq-quick-links a:hover {
  color: #630615;
  background: #fff7f4;
}

.faq-quick-links i {
  color: #922a2a;
  font-size: 1.3rem;
}

.faq-accordion {
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow: 0 18px 36px rgba(41, 0, 7, 0.08);
}

.faq-accordion .accordion-item {
  border-color: rgba(99, 6, 21, 0.10);
}

.faq-accordion .accordion-button {
  color: #290007;
  font-weight: 800;
  background: #ffffff;
}

.faq-accordion .accordion-button:not(.collapsed) {
  color: #ffffff;
  background: linear-gradient(135deg, #630615 0%, #79006f 100%);
  box-shadow: none;
}

.faq-accordion .accordion-body {
  color: #3b1b20;
  line-height: 1.7;
  background: #ffffff;
}

@media (max-width: 991px) {
  .faq-quick-links {
    grid-template-columns: 1fr;
  }
}


/* Correção de exibição do Painel do Coordenador e FAQ aprimorado */
.coordinator-panel-section,
.coordinator-panel-section * {
  opacity: 1 !important;
  visibility: visible !important;
}

.coordinator-panel-section {
  display: block !important;
  min-height: auto !important;
  height: auto !important;
  background: linear-gradient(180deg, #ffffff 0%, #fbf6f4 100%);
}

.coordinator-highlight {
  display: block !important;
  padding: 2rem;
  border-radius: 1.5rem;
  color: #ffffff;
  background:
    radial-gradient(circle at top right, rgba(255, 153, 128, 0.18), transparent 34%),
    linear-gradient(135deg, #290007 0%, #630615 58%, #79006f 100%);
  box-shadow: 0 22px 44px rgba(41, 0, 7, 0.18);
}

.coordinator-highlight .materials-kicker {
  color: #ff9980;
}

.coordinator-highlight h3,
.coordinator-access-final h2 {
  color: #ffffff;
  font-weight: 800;
}

.coordinator-highlight p,
.coordinator-access-final p {
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.7;
  margin-bottom: 0;
}

.coordinator-purpose-card,
.coordinator-routine-block,
.coordinator-watch-block,
.coordinator-flows-block {
  background: #ffffff;
  border: 1px solid rgba(99, 6, 21, 0.12);
  border-radius: 1.35rem;
  box-shadow: 0 16px 34px rgba(41, 0, 7, 0.08);
}

.coordinator-purpose-card {
  height: 100%;
  padding: 1.5rem;
}

.coordinator-icon {
  width: 3rem;
  height: 3rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: linear-gradient(135deg, #630615 0%, #922a2a 100%);
  border-radius: 1rem;
  font-size: 1.35rem;
  margin-bottom: 1rem;
}

.coordinator-routine-block,
.coordinator-watch-block,
.coordinator-flows-block {
  padding: 1.75rem;
}

.coordinator-section-heading {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.coordinator-section-heading > span {
  min-width: 3rem;
  height: 3rem;
  border-radius: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-weight: 800;
  background: linear-gradient(135deg, #630615 0%, #922a2a 100%);
}

.coordinator-purpose-card h3,
.coordinator-section-heading h2,
.routine-item h4,
.watch-grid h4,
.flow-steps h4 {
  color: #290007;
  font-weight: 800;
}

.coordinator-purpose-card p,
.coordinator-section-heading p,
.routine-item p,
.watch-grid p,
.flow-steps p {
  color: #3b1b20;
  line-height: 1.6;
}

.routine-timeline,
.watch-grid,
.flow-steps {
  display: grid;
  gap: 1rem;
}

.routine-timeline {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.watch-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.flow-steps {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.routine-item,
.flow-steps div {
  padding: 1.15rem;
  border-radius: 1rem;
  background: #fff7f4;
  border: 1px solid rgba(99, 6, 21, 0.10);
}

.watch-grid article {
  padding: 1.15rem;
  border-radius: 1rem;
  background: #ffffff;
  border: 1px solid rgba(99, 6, 21, 0.10);
  box-shadow: 0 10px 22px rgba(41, 0, 7, 0.05);
}

.routine-item strong {
  display: inline-block;
  color: #922a2a;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.45rem;
}

.watch-grid i {
  color: #922a2a;
  font-size: 1.45rem;
  margin-bottom: 0.8rem;
}

.flow-steps span {
  width: 2.2rem;
  height: 2.2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #ffffff;
  background: #79006f;
  font-weight: 800;
  margin-bottom: 0.75rem;
}

.coordinator-access-final {
  padding: 2rem;
  border-radius: 1.35rem;
  color: #ffffff;
  background:
    radial-gradient(circle at top right, rgba(255, 153, 128, 0.16), transparent 34%),
    linear-gradient(135deg, #290007 0%, #630615 58%, #79006f 100%);
  box-shadow: 0 22px 44px rgba(41, 0, 7, 0.18);
}

/* FAQ com busca */
.faq-enhanced-section {
  background:
    radial-gradient(circle at top left, rgba(255, 153, 128, 0.10), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #fbf6f4 100%);
}

.faq-toolbox {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  align-items: center;
  padding: 1rem;
  border-radius: 1.25rem;
  background: #ffffff;
  border: 1px solid rgba(99, 6, 21, 0.12);
  box-shadow: 0 16px 34px rgba(41, 0, 7, 0.08);
}

.faq-search-wrap {
  position: relative;
}

.faq-search-wrap i {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: #922a2a;
  font-size: 1.1rem;
}

.faq-search-wrap input {
  width: 100%;
  min-height: 3.25rem;
  border-radius: 0.9rem;
  border: 1px solid rgba(99, 6, 21, 0.18);
  background: #fff7f4;
  color: #290007;
  padding: 0.8rem 1rem 0.8rem 2.8rem;
  outline: none;
  font-weight: 600;
}

.faq-search-wrap input:focus {
  border-color: #79006f;
  box-shadow: 0 0 0 0.2rem rgba(121, 0, 111, 0.12);
}

.faq-panel-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 3.25rem;
  padding: 0.8rem 1.1rem;
  border-radius: 0.9rem;
  color: #ffffff;
  text-decoration: none;
  background: linear-gradient(135deg, #630615 0%, #79006f 100%);
  font-weight: 800;
  box-shadow: 0 12px 24px rgba(41, 0, 7, 0.16);
  white-space: nowrap;
}

.faq-panel-button:hover {
  color: #ffffff;
  transform: translateY(-1px);
}

.faq-filter-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem;
}

.faq-filter-chip {
  border: 1px solid rgba(99, 6, 21, 0.16);
  background: #ffffff;
  color: #290007;
  border-radius: 999px;
  padding: 0.55rem 0.9rem;
  font-weight: 800;
  box-shadow: 0 8px 18px rgba(41, 0, 7, 0.05);
}

.faq-filter-chip.active,
.faq-filter-chip:hover {
  color: #ffffff;
  background: linear-gradient(135deg, #630615 0%, #79006f 100%);
  border-color: transparent;
}

.faq-result-count {
  color: #3b1b20;
  font-weight: 700;
  text-align: center;
}

.faq-content-accordion {
  display: grid;
  gap: 0.85rem;
  border-radius: 0;
  overflow: visible;
  box-shadow: none;
}

.faq-content-accordion .accordion-item {
  border: 1px solid rgba(99, 6, 21, 0.12);
  border-radius: 1rem;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 12px 24px rgba(41, 0, 7, 0.06);
}

.faq-content-accordion .accordion-button {
  display: flex;
  gap: 0.8rem;
  align-items: center;
  color: #290007;
  background: #ffffff;
  font-weight: 800;
  line-height: 1.35;
  padding: 1rem 1.15rem;
}

.faq-content-accordion .accordion-button:not(.collapsed) {
  color: #ffffff;
  background: linear-gradient(135deg, #630615 0%, #79006f 100%);
}

.faq-category-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: fit-content;
  padding: 0.32rem 0.58rem;
  border-radius: 999px;
  background: #fff7f4;
  color: #79006f;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 900;
}

.faq-content-accordion .accordion-button:not(.collapsed) .faq-category-pill {
  background: rgba(255, 255, 255, 0.16);
  color: #ffffff;
}

.faq-content-accordion .accordion-body {
  color: #3b1b20;
  line-height: 1.75;
  background: #ffffff;
  padding: 1.15rem 1.3rem;
}

.faq-empty-state {
  text-align: center;
  padding: 2rem;
  border-radius: 1.25rem;
  background: #ffffff;
  border: 1px solid rgba(99, 6, 21, 0.12);
  box-shadow: 0 12px 24px rgba(41, 0, 7, 0.06);
}

.faq-empty-state i {
  color: #922a2a;
  font-size: 2rem;
  margin-bottom: 0.7rem;
}

.faq-empty-state h3 {
  color: #290007;
  font-weight: 800;
}

.faq-empty-state p {
  color: #3b1b20;
  margin-bottom: 0;
}

@media (max-width: 991px) {
  .routine-timeline,
  .watch-grid,
  .flow-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .faq-toolbox {
    grid-template-columns: 1fr;
  }

  .faq-panel-button {
    width: 100%;
    white-space: normal;
    text-align: center;
  }
}

@media (max-width: 575px) {
  .routine-timeline,
  .watch-grid,
  .flow-steps {
    grid-template-columns: 1fr;
  }

  .coordinator-highlight,
  .coordinator-routine-block,
  .coordinator-watch-block,
  .coordinator-flows-block,
  .coordinator-access-final {
    padding: 1.25rem;
  }

  .coordinator-section-heading {
    flex-direction: column;
  }

  .faq-content-accordion .accordion-button {
    align-items: flex-start;
    flex-direction: column;
  }
}


/* FAQ v2 corrigido e isolado */
.faq-page-v2 {
  background:
    radial-gradient(circle at top left, rgba(255, 153, 128, 0.10), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #fbf6f4 100%) !important;
}

.faq-page-v2 a {
  text-decoration: none !important;
}

.faq-toolbar-v2 {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) auto !important;
  gap: 1rem !important;
  align-items: center !important;
  padding: 1rem !important;
  border-radius: 1.25rem !important;
  background: #ffffff !important;
  border: 1px solid rgba(99, 6, 21, 0.12) !important;
  box-shadow: 0 16px 34px rgba(41, 0, 7, 0.08) !important;
}

.faq-search-box-v2 {
  position: relative !important;
}

.faq-search-box-v2 i {
  position: absolute !important;
  left: 1rem !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  color: #922a2a !important;
  font-size: 1.1rem !important;
  z-index: 2 !important;
}

.faq-search-box-v2 input {
  display: block !important;
  width: 100% !important;
  min-height: 3.25rem !important;
  border-radius: 0.9rem !important;
  border: 1px solid rgba(99, 6, 21, 0.18) !important;
  background: #fff7f4 !important;
  color: #290007 !important;
  padding: 0.8rem 1rem 0.8rem 2.8rem !important;
  outline: none !important;
  font-weight: 600 !important;
  line-height: 1.2 !important;
}

.faq-search-box-v2 input:focus {
  border-color: #79006f !important;
  box-shadow: 0 0 0 0.2rem rgba(121, 0, 111, 0.12) !important;
}

.faq-panel-cta-v2 {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 0.55rem !important;
  min-height: 3.25rem !important;
  padding: 0.8rem 1.1rem !important;
  border-radius: 0.9rem !important;
  color: #ffffff !important;
  background: linear-gradient(135deg, #630615 0%, #79006f 100%) !important;
  font-weight: 800 !important;
  box-shadow: 0 12px 24px rgba(41, 0, 7, 0.16) !important;
  white-space: nowrap !important;
}

.faq-panel-cta-v2:hover {
  color: #ffffff !important;
  transform: translateY(-1px) !important;
}

.faq-filter-list-v2 {
  display: flex !important;
  flex-wrap: wrap !important;
  justify-content: center !important;
  gap: 0.65rem !important;
}

.faq-filter-list-v2 .faq-filter-chip {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  border: 1px solid rgba(99, 6, 21, 0.16) !important;
  background: #ffffff !important;
  color: #290007 !important;
  border-radius: 999px !important;
  padding: 0.55rem 0.9rem !important;
  font-weight: 800 !important;
  line-height: 1.2 !important;
  box-shadow: 0 8px 18px rgba(41, 0, 7, 0.05) !important;
}

.faq-filter-list-v2 .faq-filter-chip.active,
.faq-filter-list-v2 .faq-filter-chip:hover {
  color: #ffffff !important;
  background: linear-gradient(135deg, #630615 0%, #79006f 100%) !important;
  border-color: transparent !important;
}

.faq-result-count-v2 {
  color: #3b1b20 !important;
  font-weight: 700 !important;
  text-align: center !important;
}

.faq-accordion-v2 {
  display: grid !important;
  gap: 0.85rem !important;
  border-radius: 0 !important;
  overflow: visible !important;
  box-shadow: none !important;
}

.faq-accordion-v2 .accordion-item {
  border: 1px solid rgba(99, 6, 21, 0.12) !important;
  border-radius: 1rem !important;
  overflow: hidden !important;
  background: #ffffff !important;
  box-shadow: 0 12px 24px rgba(41, 0, 7, 0.06) !important;
}

.faq-accordion-v2 .accordion-button {
  display: flex !important;
  gap: 0.8rem !important;
  align-items: center !important;
  color: #290007 !important;
  background: #ffffff !important;
  font-weight: 800 !important;
  line-height: 1.35 !important;
  padding: 1rem 1.15rem !important;
  white-space: normal !important;
  text-align: left !important;
}

.faq-accordion-v2 .accordion-button:not(.collapsed) {
  color: #ffffff !important;
  background: linear-gradient(135deg, #630615 0%, #79006f 100%) !important;
}

.faq-accordion-v2 .accordion-button::after {
  flex-shrink: 0 !important;
  margin-left: auto !important;
}

.faq-category-pill {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-width: fit-content !important;
  padding: 0.32rem 0.58rem !important;
  border-radius: 999px !important;
  background: #fff7f4 !important;
  color: #79006f !important;
  font-size: 0.72rem !important;
  text-transform: uppercase !important;
  letter-spacing: 0.05em !important;
  font-weight: 900 !important;
  flex-shrink: 0 !important;
}

.faq-accordion-v2 .accordion-button:not(.collapsed) .faq-category-pill {
  background: rgba(255, 255, 255, 0.16) !important;
  color: #ffffff !important;
}

.faq-question-text {
  display: inline !important;
}

.faq-accordion-v2 .accordion-body {
  color: #3b1b20 !important;
  line-height: 1.75 !important;
  background: #ffffff !important;
  padding: 1.15rem 1.3rem !important;
}

.faq-empty-state-v2 {
  text-align: center !important;
  padding: 2rem !important;
  border-radius: 1.25rem !important;
  background: #ffffff !important;
  border: 1px solid rgba(99, 6, 21, 0.12) !important;
  box-shadow: 0 12px 24px rgba(41, 0, 7, 0.06) !important;
}

.faq-empty-state-v2 i {
  color: #922a2a !important;
  font-size: 2rem !important;
  margin-bottom: 0.7rem !important;
}

.faq-empty-state-v2 h3 {
  color: #290007 !important;
  font-weight: 800 !important;
}

.faq-empty-state-v2 p {
  color: #3b1b20 !important;
  margin-bottom: 0 !important;
}

@media (max-width: 991px) {
  .faq-toolbar-v2 {
    grid-template-columns: 1fr !important;
  }

  .faq-panel-cta-v2 {
    width: 100% !important;
    white-space: normal !important;
    text-align: center !important;
  }
}

@media (max-width: 575px) {
  .faq-accordion-v2 .accordion-button {
    align-items: flex-start !important;
    flex-direction: column !important;
  }

  .faq-accordion-v2 .accordion-button::after {
    position: absolute !important;
    right: 1rem !important;
    top: 1.25rem !important;
  }
}
