:root {
  --color-primary: #0d1b2a;
  --color-secondary: #1e6b8a;
  --color-accent: #c9963a;
  --color-light: #f5f1ed;
  --color-dark: #0d1b2a;
  --color-text: #2c3e50;
  --color-border: #e0d5c7;
  --font-serif: 'Cormorant Garamond', serif;
  --font-sans: 'Lato', sans-serif;
  --spacing-unit: 1rem;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  color: var(--color-text);
  background-color: var(--color-light);
  line-height: 1.6;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-unit);
}

/* HEADER */
.site-header {
  background: white;
  padding: 1.5rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.site-header--scrolled {
  padding: 1rem 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.header__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--color-primary);
  font-weight: 600;
  font-size: 1.25rem;
}

.header__logo-img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.header__nav {
  display: flex;
  gap: 2rem;
}

.nav__list {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav__link {
  text-decoration: none;
  color: var(--color-text);
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

.nav__link:hover {
  color: var(--color-accent);
}

.nav__link--cta {
  background: var(--color-accent);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  transition: background 0.3s ease;
}

.nav__link--cta:hover {
  background: #b8852f;
  color: white;
}

.header__menu-toggle {
  display: none;
  flex-direction: column;
  gap: 0.5rem;
  background: none;
  border: none;
  cursor: pointer;
}

.menu-toggle__bar {
  width: 25px;
  height: 3px;
  background: var(--color-primary);
  transition: all 0.3s ease;
}

.header__menu-toggle--active .menu-toggle__bar:nth-child(1) {
  transform: rotate(45deg) translate(10px, 10px);
}

.header__menu-toggle--active .menu-toggle__bar:nth-child(2) {
  opacity: 0;
}

.header__menu-toggle--active .menu-toggle__bar:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

.mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  padding: 2rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.mobile-menu--open {
  display: block;
}

.mobile-menu__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mobile-menu__link {
  text-decoration: none;
  color: var(--color-text);
  font-weight: 500;
}

/* HERO */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  color: white;
  overflow: hidden;
}

.hero__background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.3;
}

.hero__bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(13, 27, 42, 0.7);
}

.hero__container {
  position: relative;
  z-index: 10;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.hero__symbol {
  animation: float 3s ease-in-out infinite;
}

.hero__symbol-img {
  width: 120px;
  height: 120px;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.hero__headline {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 8vw, 4rem);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.hero__headline em {
  font-style: italic;
  color: var(--color-accent);
}

.hero__subheadline {
  font-size: clamp(1rem, 2vw, 1.25rem);
  max-width: 600px;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.hero__cta {
  margin-top: 1rem;
}

.hero__scroll-indicator {
  position: absolute;
  bottom: 30px;
  animation: bounce 2s infinite;
}

.scroll-indicator__line {
  display: block;
  width: 2px;
  height: 30px;
  background: white;
  margin: 0 auto;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* BUTTONS */
.btn {
  display: inline-block;
  padding: 0.875rem 2rem;
  border: none;
  border-radius: 4px;
  font-family: var(--font-sans);
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
}

.btn--primary {
  background: var(--color-accent);
  color: white;
}

.btn--primary:hover {
  background: #b8852f;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(201, 150, 58, 0.3);
}

/* MANIFESTO */
.manifesto {
  padding: 6rem 0;
  background: white;
}

.manifesto__container {
  position: relative;
}

.manifesto__deco {
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background: linear-gradient(135deg, var(--color-accent), transparent);
  border-radius: 50%;
  opacity: 0.1;
}

.manifesto__content {
  max-width: 800px;
  margin: 0 auto;
}

.manifesto__title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 600;
  margin-bottom: 2rem;
  line-height: 1.3;
  color: var(--color-primary);
}

.manifesto__title em {
  font-style: italic;
  color: var(--color-accent);
}

.manifesto__text p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  color: var(--color-text);
}

.manifesto__roots {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin: 2rem 0;
  padding: 2rem 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.roots__item {
  font-weight: 600;
  color: var(--color-secondary);
  font-size: 0.95rem;
}

.roots__separator {
  color: var(--color-accent);
}

.manifesto__quote {
  text-align: center;
  font-style: italic;
  font-size: 1.3rem;
  color: var(--color-accent);
  margin-top: 2rem;
  padding: 2rem;
  border-left: 4px solid var(--color-accent);
}

/* SECTION HEADER */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--color-primary);
  line-height: 1.3;
}

.section-title em {
  font-style: italic;
  color: var(--color-accent);
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--color-text);
  max-width: 600px;
  margin: 0 auto;
}

/* PORTAIS */
.portais {
  padding: 6rem 0;
  background: linear-gradient(180deg, #f9f7f4 0%, white 100%);
}

.portais__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.portal-card {
  background: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: all 0.3s ease;
  border-top: 4px solid transparent;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.portal-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
  border-top-color: var(--color-accent);
}

.portal-card__icon {
  font-size: 3rem;
}

.portal-card__title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-primary);
}

.portal-card__desc {
  color: var(--color-text);
  font-size: 0.95rem;
  line-height: 1.6;
  flex-grow: 1;
}

.portal-card__link {
  display: inline-block;
  color: var(--color-accent);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  margin-top: auto;
}

.portal-card__link:hover {
  color: #b8852f;
  gap: 0.5rem;
}

.portal-card__arrow {
  display: inline-block;
  transition: transform 0.3s ease;
}

.portal-card:hover .portal-card__arrow {
  transform: translateX(4px);
}

.portal-card--ordo {
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  color: white;
}

.portal-card--ordo .portal-card__title {
  color: var(--color-accent);
}

.portal-card--ordo .portal-card__desc {
  color: rgba(255, 255, 255, 0.9);
}

/* PALAVRAS DO MAGO */
.palavras-do-mago {
  padding: 6rem 0;
  background: white;
}

.conteudo__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.conteudo-card {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.conteudo-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

.conteudo-card__image-wrap {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.conteudo-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.conteudo-card:hover .conteudo-card__image {
  transform: scale(1.05);
}

.conteudo-card__tag {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--color-accent);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
}

.conteudo-card__body {
  padding: 2rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.conteudo-card__title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--color-primary);
}

.conteudo-card__excerpt {
  color: var(--color-text);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  flex-grow: 1;
}

.conteudo-card__link {
  color: var(--color-accent);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.conteudo-card__link:hover {
  color: #b8852f;
}

.palavras__redes {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid var(--color-border);
}

.redes__texto {
  margin-bottom: 1rem;
  color: var(--color-text);
  font-weight: 500;
}

.redes__links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.redes__link {
  color: var(--color-accent);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.redes__link:hover {
  color: #b8852f;
  transform: translateY(-2px);
}

/* PILARES */
.pilares {
  padding: 6rem 0;
  background: linear-gradient(180deg, #f9f7f4 0%, white 100%);
}

.pilares__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.pilar-card {
  background: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: all 0.3s ease;
}

.pilar-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

.pilar-card__icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.pilar-card__title {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--color-primary);
}

.pilar-card__desc {
  color: var(--color-text);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* CURA E BEM-ESTAR */
.cura-bem-estar {
  padding: 6rem 0;
  background: white;
}

.cura__hero {
  text-align: center;
  margin-bottom: 4rem;
}

.cura__title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 1rem;
}

.cura__subtitle {
  font-size: 1.1rem;
  color: var(--color-text);
  margin-bottom: 1rem;
}

.cura__description {
  max-width: 600px;
  margin: 0 auto;
  color: var(--color-text);
  font-size: 1rem;
}

.cura__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.cura__card {
  background: white;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.cura__card:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  border-color: var(--color-accent);
}

.cura__card--highlighted {
  border: 2px solid var(--color-accent);
  background: linear-gradient(135deg, rgba(201, 150, 58, 0.05), transparent);
}

.card__header {
  padding: 1.5rem;
  border-bottom: 1px solid var(--color-border);
}

.card__title {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
}

.card__professional {
  font-weight: 600;
  color: var(--color-accent);
  font-size: 0.95rem;
}

.card__credential {
  font-size: 0.85rem;
  color: var(--color-text);
  font-style: italic;
}

.card__content {
  padding: 1.5rem;
  flex-grow: 1;
}

.card__tagline {
  margin-bottom: 1rem;
  color: var(--color-primary);
  font-weight: 600;
}

.card__subtitle {
  font-weight: 600;
  color: var(--color-primary);
  margin: 1rem 0 0.5rem 0;
  font-size: 0.95rem;
}

.card__benefits {
  list-style: none;
  margin-bottom: 1rem;
}

.card__benefits li {
  padding: 0.5rem 0;
  color: var(--color-text);
  font-size: 0.9rem;
}

.card__description {
  color: var(--color-text);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.card__pricing {
  background: rgba(201, 150, 58, 0.1);
  padding: 1rem;
  border-radius: 4px;
  margin: 1rem 0;
  font-size: 0.9rem;
}

.card__pricing p {
  margin: 0.5rem 0;
  color: var(--color-primary);
}

.card__cta-teaser {
  font-style: italic;
  color: var(--color-text);
  font-size: 0.9rem;
}

.card__footer {
  padding: 1.5rem;
  border-top: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cta-button {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  text-align: center;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 0.9rem;
}

.cta-button--primary {
  background: var(--color-accent);
  color: white;
}

.cta-button--primary:hover {
  background: #b8852f;
  transform: translateY(-2px);
}

.cta-button--primary--featured {
  background: var(--color-secondary);
}

.cta-button--primary--featured:hover {
  background: #155a77;
}

.cta-button--secondary {
  background: transparent;
  color: var(--color-accent);
  border: 2px solid var(--color-accent);
}

.cta-button--secondary:hover {
  background: var(--color-accent);
  color: white;
}

.card__contact {
  font-size: 0.85rem;
  color: var(--color-text);
}

/* CONHECIMENTO */
.conhecimento {
  padding: 6rem 0;
  background: linear-gradient(180deg, #f9f7f4 0%, white 100%);
}

.conhecimento__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.conhecimento__header {
  text-align: center;
  margin-bottom: 4rem;
}

.conhecimento__title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 1rem;
}

.conhecimento__subtitle {
  font-size: 1.1rem;
  color: var(--color-text);
}

.conhecimento__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.product-card {
  background: white;
  border-radius: 8px;
  padding: 2rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
  transform: translateY(-8px);
}

.product-card__badge {
  display: inline-block;
  background: var(--color-accent);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 1rem;
  width: fit-content;
}

.product-card__image-wrapper {
  margin: 1rem 0;
  text-align: center;
}

.product-card__image {
  max-width: 100%;
  height: auto;
  max-height: 300px;
  border-radius: 4px;
}

.product-card__title {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
}

.product-card__subtitle {
  font-style: italic;
  color: var(--color-accent);
  margin-bottom: 0.5rem;
}

.product-card__tagline {
  font-size: 1.1rem;
  color: var(--color-text);
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.product-card__divider {
  height: 1px;
  background: var(--color-border);
  margin: 1.5rem 0;
}

.product-card__benefits {
  list-style: none;
  margin-bottom: 1.5rem;
}

.product-card__benefit-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  color: var(--color-text);
  font-size: 0.95rem;
  line-height: 1.6;
}

.benefit-icon {
  flex-shrink: 0;
  font-size: 1.2rem;
}

.product-card__review {
  color: var(--color-text);
  line-height: 1.8;
  font-size: 0.95rem;
}

.product-card__review p {
  margin-bottom: 1rem;
}

.product-card__review strong {
  color: var(--color-primary);
}

.product-card__cta {
  margin-top: auto;
  padding: 1rem 2rem;
  font-size: 1rem;
  text-align: center;
}

/* NEWSLETTER */
.newsletter {
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  color: white;
  position: relative;
  overflow: hidden;
}

.newsletter__container {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.newsletter__content {
  max-width: 500px;
}

.newsletter__title {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 600;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.newsletter__title em {
  font-style: italic;
  color: var(--color-accent);
}

.newsletter__subtitle {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  opacity: 0.95;
}

.newsletter__form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.newsletter__fields {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-label {
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.form-input {
  padding: 0.875rem 1rem;
  border: none;
  border-radius: 4px;
  font-family: var(--font-sans);
  font-size: 0.95rem;
}

.form-input::placeholder {
  color: #999;
}

.newsletter__btn {
  background: var(--color-accent);
  color: white;
  padding: 1rem;
  border: none;
  border-radius: 4px;
  font-weight: 600;
}

.newsletter__btn:hover {
  background: #b8852f;
  cursor: pointer;
}

.newsletter__disclaimer {
  text-align: center;
  font-size: 0.85rem;
  opacity: 0.9;
}

.newsletter__deco {
  position: absolute;
  bottom: -50px;
  right: -50px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(201, 150, 58, 0.1), transparent);
  border-radius: 50%;
}

/* FOOTER */
.site-footer {
  background: var(--color-dark);
  color: white;
  padding: 4rem 0 2rem;
}

.footer__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 3rem;
}

.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer__logo-link {
  display: inline-block;
  width: fit-content;
}

.footer__logo {
  width: 50px;
  height: 50px;
  border-radius: 50%;
}

.footer__tagline {
  font-style: italic;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
}

.footer__bottom-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer__quote {
  font-style: italic;
  color: var(--color-accent);
  font-size: 0.9rem;
}

.footer__legal {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer__legal-link {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.3s ease;
}

.footer__legal-link:hover {
  color: var(--color-accent);
}

.footer__copyright {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
}

/* RESPONSIVIDADE */
@media (max-width: 1024px) {
  .header__nav {
    display: none;
  }

  .header__menu-toggle {
    display: flex;
  }

  .newsletter__container {
    grid-template-columns: 1fr;
  }

  .footer__container {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .portais__grid,
  .conteudo__grid,
  .pilares__grid,
  .cura__grid,
  .conhecimento__grid {
    grid-template-columns: 1fr;
  }

  .manifesto__content {
    padding: 0 1rem;
  }

  .hero__headline {
    font-size: 2rem;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .footer__bottom-container {
    flex-direction: column;
    text-align: center;
  }

  .footer__legal {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero__symbol-img {
    width: 80px;
    height: 80px;
  }

  .hero__headline {
    font-size: 1.5rem;
  }

  .header__logo-text {
    display: none;
  }

  .cura__title,
  .conhecimento__title,
  .newsletter__title {
    font-size: 1.3rem;
  }
}

/* ANIMAÇÕES */
.fade-in {
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.is-visible {
  animation: fadeInUp 0.8s ease forwards;
}