/* ==========================================================================
   Grupo Moreli — design tokens
   Colors sampled directly from the brand logo and presentation deck.
   ========================================================================== */
:root {
  --navy-950: #081226;
  --navy-900: #0c1c3a;
  --navy-800: #122a56;
  --navy-700: #17356c;
  --brand-blue: #2c4090;
  --blue-600: #2e58ac;
  --blue-500: #4574c9;
  --cyan-accent: #22aac6;
  --cyan-accent-dark: #1c8ea6;
  --ink: #12141c;
  --ink-soft: #4a5064;
  --paper: #f4f6fb;
  --paper-2: #eef1f8;
  --white: #ffffff;

  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

  --radius-lg: 28px;
  --radius-md: 16px;
  --radius-sm: 10px;
  --shadow-lg: 0 30px 60px -20px rgba(8, 18, 38, 0.35);
  --shadow-md: 0 16px 32px -12px rgba(8, 18, 38, 0.25);
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3 { margin: 0; line-height: 1.15; }
p { margin: 0; line-height: 1.7; color: var(--ink-soft); }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.container--wide { max-width: 1900px; }

/* ---------- Header ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid rgba(8,18,38,0.06);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  gap: 24px;
}
.brand__logo { height: 40px; width: auto; }

.nav {
  display: flex;
  gap: 32px;
  flex: 1;
  justify-content: center;
}
.nav a {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink);
  position: relative;
  padding: 6px 2px;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  background: var(--cyan-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}
.nav a:hover::after { transform: scaleX(1); }
.nav a:hover { color: var(--brand-blue); }

.header__actions { display: flex; align-items: center; gap: 16px; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
}
.nav-toggle span {
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s 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); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  border: 2px solid transparent;
  cursor: pointer;
  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--primary { background: var(--brand-blue); color: var(--white); }
.btn--primary:hover { background: var(--blue-600); box-shadow: var(--shadow-md); }
.btn--accent { background: var(--cyan-accent); color: var(--navy-950); }
.btn--accent:hover { background: #38c1dc; box-shadow: 0 16px 32px -12px rgba(34,170,198,0.5); }
.btn--ghost { border-color: rgba(255,255,255,0.55); color: var(--white); }
.btn--ghost:hover { background: rgba(255,255,255,0.12); }
.btn--sm { padding: 10px 20px; font-size: 0.85rem; }

/* ---------- Section basics ---------- */
.section { padding: 96px 0; }
#sobre, #missao { padding: 64px 0; }
.section--dark {
  background: linear-gradient(160deg, var(--navy-950) 0%, var(--navy-900) 55%, var(--navy-800) 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.section--muted { background: var(--paper); }

.eyebrow {
  display: block;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.8rem;
  color: var(--cyan-accent-dark);
  margin-bottom: 14px;
}
.eyebrow--light { color: var(--cyan-accent); }
.center { text-align: center; margin-left: auto; margin-right: auto; }

.section__title {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--navy-950);
  margin-bottom: 18px;
  letter-spacing: -0.01em;
}
.section__title--light { color: var(--white); }
.section__lead {
  max-width: 620px;
  margin-bottom: 48px;
  font-size: 1.05rem;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: linear-gradient(150deg, var(--navy-950) 0%, var(--navy-900) 45%, var(--brand-blue) 130%);
  color: var(--white);
  padding: 84px 0 96px;
  overflow: hidden;
}
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.shape {
  position: absolute;
  border: 3px solid rgba(255,255,255,0.08);
  transform: rotate(45deg);
}
.shape--a { width: 340px; height: 340px; top: -120px; right: 8%; border-color: rgba(34,170,198,0.22); }
.shape--b { width: 200px; height: 200px; bottom: -60px; right: 22%; border-color: rgba(255,255,255,0.08); }
.shape--c { width: 120px; height: 120px; top: 30%; right: -30px; background: rgba(34,170,198,0.08); border: none; }
.shape--d { width: 480px; height: 480px; bottom: -260px; left: -180px; border-color: rgba(255,255,255,0.06); }

.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 48px;
  align-items: center;
}
.hero__inner { max-width: 620px; }
.hero__media { position: relative; }
.hero__media-frame {
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255,255,255,0.12);
}
.hero__media-frame img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero__media-badge {
  position: absolute;
  left: -24px;
  bottom: -24px;
  max-width: 230px;
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--white);
  color: var(--ink);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  box-shadow: var(--shadow-lg);
}
.hero__media-badge-num { font-size: 1.8rem; font-weight: 800; color: var(--brand-blue); flex: none; }
.hero__media-badge-label { font-size: 0.8rem; font-weight: 600; color: var(--ink-soft); line-height: 1.3; }
.hero__title {
  font-size: clamp(2.3rem, 5vw, 3.6rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 6px 0 22px;
}
.hero__title span { color: var(--cyan-accent); }
.hero__subtitle {
  color: rgba(255,255,255,0.82);
  font-size: 1.1rem;
  max-width: 560px;
  margin-bottom: 36px;
}
.hero__cta { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 64px; }

.hero__stats { display: flex; gap: 48px; flex-wrap: wrap; }
.stat { display: flex; flex-direction: column; }
.stat__num { font-size: 2.2rem; font-weight: 800; color: var(--cyan-accent); }
.stat__label { font-size: 0.9rem; color: rgba(255,255,255,0.7); }

/* ---------- About ---------- */
.about {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 64px;
  align-items: start;
}
.about h3.about__subhead {
  margin-top: 20px;
  margin-bottom: 8px;
  font-size: 1.05rem;
  color: var(--cyan-accent-dark);
  font-weight: 700;
}
.about__text p { margin-bottom: 12px; }

.about__panel {
  background: linear-gradient(160deg, var(--navy-950), var(--navy-800));
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  color: var(--white);
  box-shadow: var(--shadow-lg);
}
.about__panel-icon {
  width: 60px; height: 60px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.16);
  margin-bottom: 18px;
}
.about__panel-icon img { width: 34px; height: auto; filter: brightness(0) invert(1); }
.about__list li {
  padding: 14px 0;
  border-top: 1px solid rgba(255,255,255,0.12);
  font-size: 0.98rem;
  color: rgba(255,255,255,0.88);
}
.about__list li:first-child { border-top: none; }
.about__list strong { color: var(--cyan-accent); }

/* ---------- Pillars (Missão/Visão/Valores) ---------- */
.section--dark .container { position: relative; z-index: 1; }
.section--dark::before {
  content: "";
  position: absolute;
  width: 520px; height: 520px;
  border: 3px solid rgba(34,170,198,0.12);
  transform: rotate(45deg);
  top: -220px; left: -160px;
}
.section--dark::after {
  content: "";
  position: absolute;
  width: 340px; height: 340px;
  border: 3px solid rgba(255,255,255,0.06);
  transform: rotate(45deg);
  bottom: -180px; right: -100px;
}

.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 36px;
}
.pillar {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 28px 26px;
  backdrop-filter: blur(6px);
}
.pillar__dot {
  display: block;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--cyan-accent);
  margin-bottom: 14px;
  box-shadow: 0 0 0 6px rgba(34,170,198,0.18);
}
.pillar h3 { font-size: 1.2rem; margin-bottom: 8px; }
.pillar p, .pillar li { color: rgba(255,255,255,0.78); font-size: 0.94rem; }
.pillar__tags {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: 14px 0 0;
}
.pillar__tags li {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--white);
}

/* ---------- Product photo cards ---------- */
.photo-cards {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 22px;
  margin-top: 48px;
}
.photo-card {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 2 / 3;
  border-radius: var(--radius-md);
  overflow: hidden;
  isolation: isolate;
  box-shadow: var(--shadow-md);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: none;
  padding: 0;
  margin: 0;
  background: none;
  font: inherit;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
.photo-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.photo-card img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.photo-card:hover img { transform: scale(1.08); }
.photo-card__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6,12,26,0.92) 0%, rgba(6,12,26,0.45) 42%, rgba(6,12,26,0) 68%);
  z-index: 1;
}
.photo-card__plus {
  position: absolute;
  left: 50%;
  bottom: 68px;
  transform: translateX(-50%);
  z-index: 2;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.14);
  border: 1.5px solid rgba(255,255,255,0.7);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  line-height: 1;
  font-weight: 300;
  backdrop-filter: blur(2px);
  transition: background 0.25s ease, transform 0.25s ease;
}
.photo-card:hover .photo-card__plus {
  background: var(--cyan-accent);
  border-color: var(--cyan-accent);
  transform: translateX(-50%) rotate(90deg);
}
.photo-card__title {
  position: absolute;
  left: 0; right: 0;
  bottom: 22px;
  z-index: 2;
  text-align: center;
  color: var(--white);
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: 0.01em;
  padding: 0 10px;
  line-height: 1.25;
}

/* ---------- Product modal ---------- */
body.modal-open { overflow: hidden; }
.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}
.modal.is-open { visibility: visible; opacity: 1; }
.modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(6, 12, 26, 0.72);
  backdrop-filter: blur(3px);
}
.modal__box {
  position: relative;
  z-index: 1;
  width: min(820px, 94vw);
  max-height: 88vh;
  overflow-y: auto;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  display: grid;
  grid-template-columns: 320px 1fr;
  transform: translateY(18px) scale(0.98);
  transition: transform 0.28s ease;
}
.modal.is-open .modal__box { transform: translateY(0) scale(1); }
.modal__close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 3;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(6, 12, 26, 0.55);
  color: var(--white);
  border: none;
  font-size: 1.5rem;
  line-height: 1;
  font-weight: 300;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s ease;
}
.modal__close:hover { background: var(--cyan-accent); }
.modal__media { position: relative; min-height: 220px; background: var(--navy-950); }
.modal__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.modal__content { padding: 44px 40px; display: flex; flex-direction: column; gap: 8px; }
.modal__title { font-size: 1.7rem; font-weight: 800; color: var(--ink); margin: 0 0 4px; }
.modal__desc { color: var(--ink-soft); margin: 0 0 12px; line-height: 1.6; }
.modal__list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 24px;
  padding: 0;
  margin: 0 0 28px;
}
.modal__list li {
  position: relative;
  padding-left: 20px;
  color: var(--ink);
  font-weight: 600;
  font-size: 0.96rem;
  line-height: 1.35;
}
.modal__list li::before {
  content: '';
  position: absolute;
  left: 0; top: 0.5em;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--cyan-accent);
}

@media (max-width: 700px) {
  .modal__box { grid-template-columns: 1fr; }
  .modal__media { min-height: 160px; }
  .modal__content { padding: 32px 24px; }
  .modal__list { grid-template-columns: 1fr; }
}

/* ---------- Brands marquee ---------- */
.marquee {
  position: relative;
  overflow: hidden;
  margin-top: 12px;
  -webkit-mask-image: linear-gradient(to right, transparent, black 14%, black 86%, transparent);
  mask-image: linear-gradient(to right, transparent, black 14%, black 86%, transparent);
}
.marquee__track {
  display: flex;
  width: max-content;
  animation: marquee-scroll 22s linear infinite;
}
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__group { display: flex; align-items: center; flex: none; }
.marquee__item {
  flex: none;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 140px;
  padding: 0 56px;
}
.marquee__item::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px; height: 56px;
  background: rgba(8,18,38,0.1);
}
.marquee__item img {
  max-height: 76px;
  max-width: 260px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.55;
  transition: filter 0.25s ease, opacity 0.25s ease;
}
.marquee__item:hover img { filter: grayscale(0); opacity: 1; }
.marquee__item--text {
  height: 96px;
  margin: 0 14px;
  padding: 0 32px;
  background: var(--white);
  border: 1px solid rgba(8,18,38,0.08);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: 0.01em;
  color: var(--navy-800);
  white-space: nowrap;
  transition: transform 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
}
.marquee__item--text::after { display: none; }
.marquee__item--text:hover {
  color: var(--brand-blue);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.marquee__item--logo img {
  max-height: 52px;
  max-width: 150px;
  width: auto;
  height: auto;
  object-fit: contain;
}
#clientes .marquee__track { animation-duration: 18s; }

@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .marquee__track { animation: none; }
  .marquee { overflow-x: auto; }
}

/* ---------- Contact ---------- */
.contact {
  display: grid;
  grid-template-columns: minmax(0, 460px) minmax(0, 480px);
  gap: 64px;
  align-items: stretch;
  justify-content: center;
  text-align: left;
}
.contact__text { display: flex; flex-direction: column; align-items: flex-start; }
.contact__highlights {
  display: flex;
  gap: 32px;
  margin-top: auto;
  padding-top: 40px;
}
.contact__highlight { display: flex; flex-direction: column; gap: 4px; }
.contact__highlight-num { font-size: 1.6rem; font-weight: 800; color: var(--cyan-accent); }
.contact__highlight-label { font-size: 0.82rem; color: rgba(255,255,255,0.65); }
.contact__logo { height: 44px; margin-bottom: 28px; filter: brightness(0) invert(1); }
.contact__text p { margin: 18px 0 30px; font-size: 1.05rem; color: rgba(255,255,255,0.8); }
.contact__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 36px;
  font-size: 1.05rem;
  font-weight: 600;
}
.contact__links a:hover { color: var(--cyan-accent); }

.contact__form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.contact__honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }
.contact__field { display: flex; flex-direction: column; gap: 6px; min-width: 0; }
.contact__field label { font-size: 0.85rem; font-weight: 700; color: var(--navy-800); }
.contact__field input,
.contact__field select,
.contact__field textarea {
  width: 100%;
  font: inherit;
  font-size: 0.95rem;
  color: var(--ink);
  border: 1.5px solid rgba(8,18,38,0.14);
  border-radius: 10px;
  padding: 12px 14px;
  background: var(--white);
  transition: border-color 0.2s ease;
  resize: vertical;
}
.contact__field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none' stroke='%234a5064' stroke-width='2'%3E%3Cpath d='M5 7.5l5 5 5-5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 38px;
}
.contact__field input:focus,
.contact__field select:focus,
.contact__field textarea:focus {
  outline: none;
  border-color: var(--cyan-accent);
}
.contact__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact__submit { margin-top: 4px; border: none; cursor: pointer; }
.contact__status {
  font-size: 0.9rem;
  font-weight: 600;
  min-height: 1.2em;
  margin: 0;
}
.contact__status.is-success { color: #1f9d5c; }
.contact__status.is-error { color: #d3453a; }

@media (max-width: 980px) {
  .contact { grid-template-columns: 1fr; gap: 40px; }
  .contact__form { padding: 32px 26px; }
  .contact__row { grid-template-columns: 1fr; }
}

/* ---------- Footer ---------- */
.footer { background: var(--navy-950); color: rgba(255,255,255,0.55); padding: 32px 0; }
.footer__inner {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  text-align: center;
  font-size: 0.85rem;
}
.footer__mark { height: 22px; opacity: 0.55; filter: brightness(0) invert(1); }
.footer__site { margin-left: auto; }

/* ---------- WhatsApp float ---------- */
.whatsapp-float {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 58px; height: 58px;
  background: #25D366;
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 12px 28px -8px rgba(37,211,102,0.6);
  z-index: 200;
  transition: transform 0.2s ease;
}
.whatsapp-float:hover { transform: scale(1.08); }
.whatsapp-float svg { width: 30px; height: 30px; }

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

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .about { grid-template-columns: 1fr; }
  .pillars { grid-template-columns: 1fr; }
  .photo-cards { grid-template-columns: repeat(3, 1fr); }
  .hero__grid { grid-template-columns: 1fr; gap: 40px; }
  .hero__inner { max-width: none; }
  .hero__media { max-width: 380px; margin: 0 auto; }
  .hero__media-badge { left: 16px; bottom: -20px; }
}

@media (max-width: 760px) {
  .nav {
    position: fixed;
    top: 0; right: 0;
    height: 100vh;
    width: min(320px, 82vw);
    background: var(--navy-950);
    flex-direction: column;
    justify-content: flex-start;
    padding: 100px 32px;
    gap: 26px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 90;
  }
  .nav.is-open { transform: translateX(0); }
  .nav a { color: var(--white); font-size: 1.1rem; }
  .header__actions .btn--primary { display: none; }
  .nav-toggle { display: flex; }
  .photo-cards { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .photo-card__plus { bottom: 54px; width: 34px; height: 34px; font-size: 1.15rem; }
  .photo-card__title { font-size: 1.02rem; bottom: 16px; }
  .hero__stats { gap: 28px; }
  .footer__inner { flex-direction: column; }
  .footer__site { margin-left: 0; }
}
