/* ============================================================
   Instituto de Educação Santa Maria — stylesheet
   ============================================================ */

:root {
  --red: #d72b30;
  --red-dark: #a81f24;
  --red-deep: #5c1013;
  --red-soft: #fdecec;
  --gold: #e2b24a;
  --gold-soft: #f7ecd0;
  --cream: #faf6f1;
  --white: #ffffff;
  --heading: #2a1d1d;
  --ink: #332525;
  --muted: #715f5f;
  --line: #e8dcdc;
  --shadow-sm: 0 2px 10px rgba(92, 16, 19, 0.07);
  --shadow-md: 0 12px 40px rgba(92, 16, 19, 0.13);
  --shadow-lg: 0 24px 70px rgba(92, 16, 19, 0.2);
  --radius: 18px;
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Plus Jakarta Sans", "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

.container {
  width: 100%;
  max-width: 1180px;
  margin-inline: auto;
  padding-inline: 24px;
}

.icon { width: 18px; height: 18px; flex: none; }

/* ---------- Reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--lg { padding: 15px 28px; font-size: 1rem; }
.btn--block { width: 100%; }

.btn--primary {
  background: var(--red);
  color: #fff;
  box-shadow: 0 10px 24px rgba(215, 43, 48, 0.32);
}
.btn--primary:hover { background: var(--red-dark); box-shadow: 0 14px 30px rgba(215, 43, 48, 0.42); }

.btn--secondary {
  background: var(--heading);
  color: #fff;
}
.btn--secondary:hover { background: var(--red-deep); }

.btn--ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.35);
}
.btn--ghost:hover { background: rgba(255, 255, 255, 0.1); }

.btn--light { background: #fff; color: var(--red-deep); box-shadow: 0 10px 24px rgba(0,0,0,0.2); }
.btn--light:hover { background: var(--gold-soft); }

.btn--outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,0.5); }
.btn--outline-light:hover { background: rgba(255,255,255,0.12); }

/* ---------- Top bar ---------- */
.topbar {
  background: var(--red-deep);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.82rem;
}
.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-block: 8px;
}
.topbar__items { display: flex; align-items: center; gap: 20px; }
.topbar__item { display: inline-flex; align-items: center; gap: 7px; }
.topbar__item .icon { width: 14px; height: 14px; opacity: 0.8; }
.topbar__link { opacity: 0.85; transition: opacity 0.2s; }
.topbar__link:hover { opacity: 1; }
.topbar__link .icon { width: 15px; height: 15px; }

/* ---------- Header ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.3s ease;
}
.header.is-scrolled { box-shadow: var(--shadow-sm); }
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-block: 14px;
}

.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand__emblem {
  width: 48px;
  height: 48px;
  flex: none;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.brand__emblem img { width: 100%; height: 100%; object-fit: cover; }
.brand__text { display: flex; flex-direction: column; line-height: 1.2; }
.brand__text strong { font-family: var(--font-display); font-size: 1.12rem; font-weight: 600; color: var(--heading); }
.brand__text small { font-size: 0.72rem; color: var(--muted); letter-spacing: 0.02em; }

.nav { display: flex; align-items: center; gap: 26px; }
.nav__link {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ink);
  position: relative;
  padding-block: 4px;
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: width 0.25s ease;
}
.nav__link:hover::after, .nav__link.is-active::after { width: 100%; }
.nav__link.is-active { color: var(--heading); }
.nav__cta { margin-left: 4px; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--heading);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: linear-gradient(135deg, #a81f24 0%, #5c1013 55%, #3c0a0c 100%);
  color: #fff;
  overflow: hidden;
}
.hero__bg { position: absolute; inset: 0; pointer-events: none; }
.hero__blob { position: absolute; border-radius: 50%; filter: blur(60px); opacity: 0.35; }
.hero__blob--1 { width: 460px; height: 460px; background: var(--red); top: -160px; right: -80px; }
.hero__blob--2 { width: 380px; height: 380px; background: var(--gold); bottom: -180px; left: -120px; }

.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
  padding-block: 80px 90px;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 7px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 0.85rem;
  font-weight: 600;
}
.chip__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 4px rgba(212,165,58,0.25); }

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.3rem, 5.2vw, 3.8rem);
  font-weight: 600;
  line-height: 1.08;
  margin: 24px 0 20px;
  letter-spacing: -0.01em;
}
.hero__title em { font-style: italic; color: var(--gold); }

.hero__subtitle {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.82);
  max-width: 520px;
  margin: 0 0 30px;
}

.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; }

.hero__trust { display: flex; align-items: center; gap: 14px; margin-top: 34px; }
.hero__avatars { display: flex; }
.hero__avatars span {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--i, #888); color: #fff;
  display: grid; place-items: center;
  font-weight: 700; font-size: 0.85rem;
  border: 2px solid var(--heading);
  margin-left: -10px;
}
.hero__avatars span:first-child { margin-left: 0; }
.hero__trust p { margin: 0; font-size: 0.9rem; color: rgba(255,255,255,0.8); }
.hero__trust strong { color: #fff; }

/* Hero art */
.hero__art { position: relative; }
.hero__card {
  position: relative;
  background: linear-gradient(160deg, rgba(255,255,255,0.14), rgba(255,255,255,0.05));
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 26px;
  padding: 24px;
  backdrop-filter: blur(8px);
}
.hero__card-top { display: flex; gap: 8px; margin-bottom: 8px; }
.hero__tag { font-size: 0.75rem; font-weight: 700; padding: 4px 12px; border-radius: 999px; background: rgba(255,255,255,0.14); }
.hero__illustration { width: 100%; height: auto; }
.hero__card-stat {
  display: flex; align-items: center; gap: 14px;
  margin-top: 16px; padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.14);
}
.hero__card-stat strong { font-family: var(--font-display); font-size: 2rem; color: var(--gold); }
.hero__card-stat span { font-size: 0.85rem; color: rgba(255,255,255,0.75); }

.hero__float {
  position: absolute;
  display: flex; align-items: center; gap: 12px;
  background: #fff; color: var(--ink);
  padding: 13px 18px; border-radius: 16px;
  box-shadow: var(--shadow-lg);
}
.hero__float .icon { width: 22px; height: 22px; color: var(--heading); }
.hero__float div { display: flex; flex-direction: column; line-height: 1.3; }
.hero__float strong { font-size: 1.1rem; color: var(--heading); }
.hero__float span { font-size: 0.78rem; color: var(--muted); }
.hero__float--a { top: -24px; right: -8px; }
.hero__float--b { bottom: -20px; left: -12px; }

/* ---------- Stats ---------- */
.stats { background: var(--cream); border-block: 1px solid var(--line); }
.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.stat { text-align: center; padding: 38px 16px; }
.stat__num {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--heading);
  display: block;
  line-height: 1;
}
.stat__label { color: var(--muted); font-size: 0.9rem; margin-top: 8px; display: block; }

/* ---------- Sections ---------- */
.section { padding-block: 88px; }
.section--tinted { background: var(--cream); }

.kicker {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--red);
  margin-bottom: 14px;
}
.kicker--light { color: var(--gold-soft); }

.section__head { max-width: 640px; margin-bottom: 48px; }
.section__head.is-center { margin-inline: auto; text-align: center; }
.section__title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.6vw, 2.6rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--heading);
  margin: 0 0 14px;
}
.section__lead { color: var(--muted); font-size: 1.05rem; margin: 0; }

/* ---------- Split (Sobre) ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 56px;
  align-items: center;
}
.split__body .section__title { margin-bottom: 16px; }
.split__body .section__lead { margin-bottom: 26px; }

.frame {
  position: relative;
  border-radius: var(--radius);
  background: linear-gradient(150deg, #a81f24, #d72b30);
  padding: 20px;
}
.frame__content {
  border-radius: 14px;
  background: var(--cream);
  padding: 40px 34px;
  box-shadow: var(--shadow-md);
}
.frame--about { min-height: 300px; }
.frame__badge {
  display: inline-block;
  background: var(--gold-soft);
  color: #8a6a12;
  font-weight: 700; font-size: 0.78rem;
  padding: 5px 13px; border-radius: 999px;
  margin-bottom: 18px;
}
.frame__title { font-family: var(--font-display); font-size: 1.7rem; color: var(--heading); margin: 0 0 12px; }
.frame__content p { color: var(--muted); margin: 0; }

.checklist { list-style: none; padding: 0; margin: 0 0 30px; display: grid; gap: 14px; }
.checklist li { display: flex; align-items: flex-start; gap: 12px; }
.checklist .icon { width: 20px; height: 20px; color: var(--red); margin-top: 2px; }

/* ---------- Levels (Ensino) ---------- */
.levels { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.level {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 28px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.level:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.level__num {
  position: absolute;
  top: 24px; right: 26px;
  font-family: var(--font-display);
  font-size: 3rem; font-weight: 700;
  color: var(--cream);
  -webkit-text-stroke: 1px var(--line);
}
.level__icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  display: grid; place-items: center;
  background: color-mix(in srgb, var(--c) 12%, #fff);
  color: var(--c);
  margin-bottom: 22px;
}
.level__icon .icon { width: 26px; height: 26px; }
.level__title { font-family: var(--font-display); font-size: 1.4rem; color: var(--heading); margin: 0 0 4px; }
.level__sub { color: var(--gold); font-weight: 700; font-size: 0.85rem; margin: 0 0 12px; }
.level__text { color: var(--muted); margin: 0; font-size: 0.95rem; }

/* ---------- Features (Diferenciais) ---------- */
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.feature {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 28px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.feature:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.feature__icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--red-soft);
  color: var(--heading);
  display: grid; place-items: center;
  margin-bottom: 18px;
}
.feature__icon .icon { width: 24px; height: 24px; }
.feature h3 { font-size: 1.15rem; color: var(--heading); margin: 0 0 10px; }
.feature p { color: var(--muted); margin: 0; font-size: 0.95rem; }

/* ---------- News ---------- */
.news { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.news__card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex; flex-direction: column;
}
.news__card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.news__thumb {
  height: 180px;
  position: relative;
  display: flex; align-items: flex-end;
  padding: 16px;
}
.news__thumb--1 { background: linear-gradient(140deg, #d72b30, #5c1013); }
.news__thumb--2 { background: linear-gradient(140deg, #e2b24a, #b3541e); }
.news__thumb--3 { background: linear-gradient(140deg, #b3541e, #5c1013); }
.news__cat {
  background: rgba(255,255,255,0.92);
  color: var(--heading);
  font-size: 0.75rem; font-weight: 700;
  padding: 5px 14px; border-radius: 999px;
}
.news__body { padding: 22px 24px 26px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.news__date { color: var(--muted); font-size: 0.8rem; }
.news__body h3 { font-size: 1.15rem; color: var(--heading); margin: 0; line-height: 1.35; }
.news__body p { color: var(--muted); margin: 0; font-size: 0.93rem; flex: 1; }
.link {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--red); font-weight: 700; font-size: 0.9rem;
}
.link .icon { width: 16px; height: 16px; transition: transform 0.2s ease; }
.link:hover .icon { transform: translateX(3px); }

/* ---------- Quotes ---------- */
.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.quote {
  margin: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 28px;
  display: flex; flex-direction: column;
}
.quote__mark { width: 34px; height: 34px; color: var(--gold); margin-bottom: 14px; }
.quote blockquote { color: var(--ink); font-size: 0.98rem; margin: 0 0 22px; flex: 1; }
.quote figcaption { display: flex; align-items: center; gap: 12px; }
.quote__avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--i); color: #fff;
  display: grid; place-items: center;
  font-weight: 700; font-size: 0.85rem;
}
.quote figcaption div { display: flex; flex-direction: column; line-height: 1.3; }
.quote figcaption strong { color: var(--heading); font-size: 0.95rem; }
.quote figcaption small { color: var(--muted); font-size: 0.8rem; }

/* ---------- CTA ---------- */
.cta {
  background: linear-gradient(135deg, #a81f24, #5c1013);
  color: #fff;
  margin-block: 0;
}
.cta__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 40px; padding-block: 72px; flex-wrap: wrap;
}
.cta__title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  font-weight: 600; margin: 6px 0 10px; line-height: 1.2;
  max-width: 560px;
}
.cta__text { color: rgba(255,255,255,0.8); margin: 0; max-width: 500px; }
.cta__actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ---------- Contact ---------- */
.contact { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 56px; align-items: start; }
.contact__list { list-style: none; padding: 0; margin: 28px 0 0; display: grid; gap: 20px; }
.contact__list li { display: flex; align-items: flex-start; gap: 16px; }
.contact__icon {
  width: 46px; height: 46px; border-radius: 13px;
  background: var(--red-soft); color: var(--heading);
  display: grid; place-items: center; flex: none;
}
.contact__icon .icon { width: 21px; height: 21px; }
.contact__list div { display: flex; flex-direction: column; line-height: 1.4; }
.contact__list strong { color: var(--heading); font-size: 0.9rem; }
.contact__list span { color: var(--muted); font-size: 0.92rem; }

.contact__form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow-sm);
}
.field { margin-bottom: 18px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field label { display: block; font-weight: 600; font-size: 0.88rem; color: var(--heading); margin-bottom: 7px; }
.field input, .field select, .field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--ink);
  background: #fff;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 4px rgba(42, 127, 138, 0.12);
}
.field textarea { resize: vertical; }
.form__msg { min-height: 20px; font-size: 0.9rem; margin: 4px 0 12px; }
.form__msg.is-error { color: #c0392b; }
.form__msg.is-success { color: #1e7d4f; }

/* ---------- Footer ---------- */
.footer { background: var(--red-deep); color: rgba(255,255,255,0.75); padding-block: 64px 24px; }
.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.2fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}
.brand--light .brand__text strong { color: #fff; }
.brand--light .brand__text small { color: rgba(255,255,255,0.6); }
.footer__about { margin: 18px 0 0; font-size: 0.92rem; max-width: 320px; }
.footer__col { display: flex; flex-direction: column; gap: 12px; }
.footer__col h4 { color: #fff; font-size: 1rem; margin: 0 0 6px; font-family: var(--font-display); }
.footer__col a { font-size: 0.92rem; transition: color 0.2s; }
.footer__col a:hover { color: var(--gold); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap;
  font-size: 0.85rem;
}
.footer__bottom p { margin: 0; }
.footer__made { opacity: 0.6; }

/* ---------- Back to top ---------- */
.backtop {
  position: fixed;
  right: 22px; bottom: 22px;
  width: 48px; height: 48px;
  border-radius: 50%;
  border: none;
  background: var(--heading);
  color: #fff;
  cursor: pointer;
  display: grid; place-items: center;
  box-shadow: var(--shadow-md);
  opacity: 0; visibility: hidden; transform: translateY(12px);
  transition: opacity 0.3s, visibility 0.3s, transform 0.3s;
  z-index: 40;
}
.backtop.is-visible { opacity: 1; visibility: visible; transform: none; }
.backtop:hover { background: var(--red); }

/* ---------- Aviso / Banner (editável via CMS) ---------- */
.aviso {
  background: linear-gradient(90deg, var(--red), var(--red-dark));
  color: #fff;
  font-size: 0.92rem;
}
.aviso__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding-block: 10px;
  flex-wrap: wrap;
  text-align: center;
}
.aviso__text { margin: 0; font-weight: 600; }
.aviso__link {
  background: #fff;
  color: var(--red-dark);
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 999px;
  font-size: 0.82rem;
  transition: transform 0.2s ease;
}
.aviso__link:hover { transform: translateY(-1px); }
.aviso__close {
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  font-size: 1.3rem;
  line-height: 1;
  padding: 0 4px;
  opacity: 0.85;
}
.aviso__close:hover { opacity: 1; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 992px) {
  .hero__inner { grid-template-columns: 1fr; gap: 40px; padding-block: 56px; }
  .hero__art { max-width: 440px; }
  .levels, .features, .news, .quotes { grid-template-columns: 1fr 1fr; }
  .split { grid-template-columns: 1fr; }
  .contact { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  .topbar__item--hide { display: none; }
  .nav {
    position: fixed;
    inset: 0;
    top: 0;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
    background: rgba(18, 40, 63, 0.98);
    backdrop-filter: blur(10px);
    transform: translateY(-100%);
    transition: transform 0.35s ease;
  }
  .nav.is-open { transform: translateY(0); }
  .nav__link { color: #fff; font-size: 1.3rem; }
  .nav__link.is-active { color: var(--gold); }
  .nav__cta { margin-top: 8px; }
  .nav-toggle { display: flex; z-index: 60; }

  .stats__grid { grid-template-columns: 1fr 1fr; }
  .stat { padding: 28px 12px; }
  .levels, .features, .news, .quotes { grid-template-columns: 1fr; }
  .section { padding-block: 64px; }
  .hero__actions .btn { width: 100%; }
  .hero__float { position: static; margin-top: 14px; }
  .hero__art { max-width: 100%; }
  .cta__inner { padding-block: 56px; }
  .contact__form { padding: 24px; }
  .field-row { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
}
