/* Ordem obrigatória: base, layout, components, sections, responsivo */
@import url("layout/header.css");
@import url("sections/01_hero.css");
@import url("layout/Pallettes/palette_global.css");
@import url("layout/menu.css");
@import url("layout/rodape.css");
@import url("components/preloader.css");
@import url("components/modal_img.css");
@import url("sections/03_comofunciona.css");
@import url("sections/07_faq.css");
@import url("sections/06_feedback.css");
@import url("sections/04_planos.css");
@import url("sections/02_sobre.css");
@import url("base/responsive.css");

/* Titles de todas as seções */

/* As cores agora são controladas exclusivamente pelo arquivo layout/palette.css */


.section-title {
  color: var(--section-title-color);
  font-size: var(--section-title-size);
  font-weight: var(--section-title-weight);
  text-align: center;
  margin-bottom: 2.5rem;
  letter-spacing: 0.5px;
  text-shadow: 0 0 40px var(--section-title-glow);
  position: relative;
  z-index: 2;
  line-height: 1.2;
}

.section-title::after {
  content: '';
  display: block;
  width: 56px;
  height: 3px;
  background: linear-gradient(90deg, var(--section-title-line-from), var(--section-title-line-to));
  border-radius: 999px;
  margin: 14px auto 0;
  box-shadow: 0 0 12px var(--section-title-glow);
}

section, .section-title, .container, .about-content, .process-section, .faq-section, .plans-grid, .feedback-deck {
  text-align: center;
}