/* =========================================================
   STEEL IMPORT 

   Estrutura:
   1. Variáveis
   2. Reset / Base
   3. Layout / Utilitários
   4. Botões / Componentes globais
   5. Topbar
   6. Header / Navegação / Idioma
   7. Hero / Slider
   8. Seções da home
   9. Produtos / Lightbox
   10. Contato
   11. Footer
   12. Página Obrigado
   13. Página Política de Privacidade
   14. Responsivo
========================================================= */

/* =========================================================
   1. VARIÁVEIS
========================================================= */
:root{
  --bg: #272525;
  --mvv: #4f4f4f;
  --text: #f2f2f2;
  --white: #ffffff;

  --muted: rgba(255,255,255,.72);
  --line: rgba(255,255,255,.14);
  --shadow: 0 10px 30px rgba(0,0,0,.35);

  --btn: #3b6f8a;
  --btn-hover: #2e5c72;
  --accent: #4f7fa1;
  --accent-dark: #2c6a86;

  --container: 1120px;

  --radius-sm: 10px;
  --radius-md: 12px;
  --radius-lg: 14px;
  --radius-xl: 16px;
  --radius-pill: 999px;
}

/* =========================================================
   2. RESET / BASE
========================================================= */
*{
  box-sizing: border-box;
}

html{
  scroll-behavior: smooth;
}

body{
  margin: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  background: var(--bg);
  color: var(--text);
}

img{
  display: block;
  max-width: 100%;
}

a{
  color: inherit;
  text-decoration: none;
}

p{
  margin: 0 0 14px;
  line-height: 1.55;
}

h1, h2, h3, h4{
  margin: 0 0 14px;
  line-height: 1.2;
}

input,
textarea,
button{
  font: inherit;
}

/* =========================================================
   3. LAYOUT / UTILITÁRIOS
========================================================= */
.container{
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 18px;
}

.center{
  text-align: center;
}

.muted{
  color: var(--muted);
}

.section{
  padding: 72px 0;
  background: var(--white);
  color: #1c1c1c;
}

.section h2{
  font-size: 34px;
  color: #1c1c1c;
}

.section h3{
  color: #1c1c1c;
}

/* =========================================================
   4. BOTÕES / COMPONENTES GLOBAIS
========================================================= */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: fit-content;
  padding: 12px 18px;
  border: 0;
  border-radius: var(--radius-md);
  background: var(--btn);
  color: #fff;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(0,0,0,.25);
  transition: background .2s ease, transform .2s ease;
}

.btn:hover{
  background: var(--btn-hover);
}

.btn--full{
  width: 100%;
}

.to-top{
  position: fixed;
  right: 20px;
  bottom: 20px;
  left: auto;
  z-index: 60;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid var(--accent);
  border-radius: var(--radius-pill);
  background: #2f2f2f;
  color: #fff;
  cursor: pointer;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .25s ease, transform .25s ease, background .25s ease;
  box-shadow: 0 6px 18px rgba(0,0,0,.28);
}

.to-top:hover{
  background: #3a3a3a;
  transform: translateY(0);
}

.to-top.is-visible{
  opacity: 1;
  transform: translateY(0);
}

/* =========================================================
   5. TOPBAR
========================================================= */
.topbar{
  background: #1a1a1a;
  color: rgba(255,255,255,.85);
  font-size: 11px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.topbar__inner{
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 8px 18px;
}

.topbar__left{
  display: flex;
  align-items: center;
  gap: 8px;
}

.topbar__left a{
  opacity: .95;
}

.topbar__right{
  display: flex;
  align-items: center;
  gap: 14px;
}

.rate{
  display: flex;
  align-items: center;
  gap: 8px;
}

.rate strong{
  padding: 3px 6px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 6px;
  background: #2b2b2b;
  color: #e5e5e5;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .6px;
}

.rate span{
  color: var(--accent);
  font-variant-numeric: tabular-nums;
  font-weight: 600;
}

/* =========================================================
   6. HEADER / NAV / LANG
========================================================= */
.header{
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
}

.header__inner{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 18px;
}

.brand img{
  width: auto;
  height: 52px;
}

/* idioma */
.lang{
  display: flex;
  overflow: hidden;
  border-radius: 6px;
  background: #3a3a3a;
}

.lang__btn{
  border: none;
  background: transparent;
  color: #cfcfcf;
  padding: 6px 12px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: background .2s ease, color .2s ease;
}

.lang__btn.is-active{
  background: var(--accent);
  color: #fff;
}

.lang__btn:not(.is-active):hover{
  background: rgba(255,255,255,.08);
  color: #fff;
}

/* nav */
.nav{
  position: relative;
  z-index: 1100;
}

.nav__toggle{
  display: none;
  width: 44px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: transparent;
  cursor: pointer;
  transition: all .2s ease;
}

.nav__toggle:hover{
  background: rgba(255,255,255,.06);
}

.nav__toggle span{
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  border-radius: 2px;
  background: rgba(255,255,255,.85);
}

.nav__list{
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav__item--dropdown{
  position: relative;
  display: flex;
  align-items: center;
}

.nav__link{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 8px;
  border-radius: 12px;
  color: rgba(255,255,255,.92);
  font-size: 14px;
  font-weight: 600;
  transition: all .18s ease;
}

.nav__link:hover{
  background: rgba(255,255,255,.06);
  padding-left: 14px;
}

.nav__dropdownBtn{
  position: relative;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  cursor: pointer;
}

.nav__dropdownBtn::after{
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  display: inline-block;
  padding: 3px;
  margin-top: -4px;
  margin-left: -3px;
  border: solid rgba(255,255,255,.86);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.dropdown{
  position: absolute;
  top: 44px;
  left: 0;
  display: none;
  min-width: 220px;
  margin: 0;
  padding: 10px;
  list-style: none;
  background: #1c1c1c;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.nav__item--dropdown:hover .dropdown,
.nav__item--dropdown.is-open .dropdown{
  display: block;
}

.dropdown__link{
  display: block;
  padding: 10px 10px;
  border-radius: 8px;
  color: rgba(255,255,255,.9);
  font-size: 13px;
  font-weight: 600;
  transition: all .18s ease;
}

.dropdown__link:hover{
  background: rgba(255,255,255,.06);
  padding-left: 12px;
}

/* =========================================================
   7. HERO / SLIDER
========================================================= */
.hero{
  background: var(--bg);
}

.slider{
  position: relative;
  height: 560px;
  overflow: hidden;
}

.slide{
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.02);
  background-position: center;
  background-size: cover;
  transition: opacity .6s ease, transform .8s ease;
}

.slide.is-active{
  opacity: 1;
  transform: scale(1);
}

.slide__overlay{
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,.62), rgba(0,0,0,.22));
}

.slide__content{
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  height: 100%;
  max-width: 720px;
  padding: 30px 18px;
}

.slide__kicker{
  color: #fff;
  font-size: 42px;
  font-weight: 800;
  text-shadow: 0 8px 28px rgba(0,0,0,.45);
}

.slide__headline{
  max-width: 620px;
  color: rgba(255,255,255,.9);
  font-size: 15px;
}

.slider__arrow{
  position: absolute;
  top: 50%;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: var(--radius-lg);
  background: rgba(0,0,0,.28);
  color: #fff;
  cursor: pointer;
  transform: translateY(-50%);
}

.slider__arrow--left{
  left: 14px;
}

.slider__arrow--right{
  right: 14px;
}

.slider__arrow:hover{
  background: rgba(0,0,0,.42);
}

.slider__dots{
  position: absolute;
  left: 50%;
  bottom: 18px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: var(--radius-pill);
  background: rgba(0,0,0,.22);
  transform: translateX(-50%);
}

.dot{
  width: 9px;
  height: 9px;
  border: 0;
  border-radius: var(--radius-pill);
  background: rgba(255,255,255,.45);
  cursor: pointer;
}

.dot.is-active{
  width: 22px;
  background: rgba(255,255,255,.95);
}

/* =========================================================
   8. SEÇÕES DA HOME
========================================================= */
/* about */
.about{
  background: var(--white);
}

.about__grid{
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 40px;
  align-items: center;
}

.about__stats{
  display: flex;
  gap: 18px;
  margin-top: 18px;
}

.stat{
  min-width: 170px;
  padding: 14px 18px;
  border: 1px solid rgba(0,0,0,.06);
  border-radius: var(--radius-md);
  background: #f4f4f4;
  text-align: center;
}

.stat__num{
  color: var(--accent-dark);
  font-size: 22px;
  font-weight: 900;
}

.stat__label{
  width: 100%;
  margin-top: 6px;
  color: #4e4e4e;
  font-size: 12px;
  font-weight: 700;
}

.about__image img{
  border-radius: var(--radius-lg);
  box-shadow: 0 14px 38px rgba(0,0,0,.18);
}

/* mvv */
.mvv{
  background: var(--mvv);
  color: #fff;
}

.mvv h2{
  color: #fff;
}

.mvv__cards{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 26px;
}

.card{
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-xl);
  background: rgba(0,0,0,.22);
  color: #fff;
  box-shadow: 0 12px 30px rgba(0,0,0,.18);
  transition: transform .25s ease, box-shadow .25s ease;
}

.card:hover{
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0,0,0,.28);
}

.card__icon{
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: var(--accent);
  transition: transform .25s ease, background .25s ease;
}

.card:hover .card__icon{
  transform: scale(1.08);
  background: var(--btn);
}

.card__icon i{
  color: #fff;
  font-size: 18px;
}

.card__content{
  display: flex;
  flex-direction: column;
}

.card h3{
  margin-bottom: 10px;
  color: #fff;
}

.card__content h3{
  margin-bottom: 6px;
  transition: color .25s ease;
}

.card:hover .card__content h3{
  color: #fff;
}

.card p{
  margin: 0;
  color: rgba(255,255,255,.85);
}

/* =========================================================
   9. PRODUTOS / LIGHTBOX
========================================================= */
.products{
  background: var(--white);
}

.products__block{
  margin-top: 22px;
}

.products__row{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 20px;
}

.products__header h3{
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .9px;
}

.products__desc{
  margin-top: -6px;
  color: #5b5b5b;
  font-size: 13px;
}

.grid{
  display: grid;
  gap: 14px;
  margin-top: 12px;
}

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

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

.tile{
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,.06);
  border-radius: var(--radius-sm);
  background: #eee;
  cursor: pointer;
}

.tile img{
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform .25s ease;
}

.tile:hover img{
  transform: scale(1.04);
}

/* proporções específicas */
.products__row .tile img{
  aspect-ratio: 4 / 3;
}

#acos-inoxidaveis .tile img,
#acos-especiais .tile img{
  aspect-ratio: 16 / 9;
}

#aluminio .tile img{
  aspect-ratio: 21 / 9;
  object-fit: cover;
}

/* lightbox */
.lightbox{
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(0,0,0,.86);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .25s ease, visibility .25s ease;
}

.lightbox.is-open{
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.lightbox__img{
  width: auto;
  max-width: min(1100px, 92vw);
  max-height: 88vh;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px rgba(0,0,0,.45);
}

.lightbox__close{
  position: absolute;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: var(--radius-pill);
  background: rgba(255,255,255,.12);
  color: #fff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.lightbox__close:hover{
  background: rgba(255,255,255,.2);
}

/* =========================================================
   10. CONTATO
========================================================= */
.contact{
  background: #2f2f2f;
  color: #fff;
}

.contact h2{
  color: #fff;
}

.contact__grid{
  display: grid;
  grid-template-columns: 1fr .9fr;
  gap: 22px;
  align-items: start;
  margin-top: 22px;
}

.form,
.contact__info{
  padding: 18px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-xl);
  background: rgba(0,0,0,.18);
}

.field{
  display: block;
  margin-bottom: 12px;
}

.field span{
  display: block;
  margin-bottom: 6px;
  color: rgba(255,255,255,.86);
  font-size: 12px;
  font-weight: 700;
}

input,
textarea{
  width: 100%;
  padding: 12px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-md);
  background: rgba(0,0,0,.22);
  color: #fff;
  outline: none;
}

textarea{
  resize: vertical;
}

.contact__info h3{
  margin-bottom: 12px;
  color: #fff;
}

.info-row{
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-top: 1px solid rgba(255,255,255,.10);
}

.info-row:first-of-type{
  padding-top: 0;
  border-top: 0;
}

.info-row i{
  margin-top: 2px;
  opacity: .95;
}

.label{
  margin-bottom: 2px;
  font-size: 12px;
  font-weight: 700;
  opacity: .85;
}

.contact__info a{
  color: rgba(255,255,255,.92);
}

/* =========================================================
   11. FOOTER
========================================================= */
.footer{
  padding: 26px 0 14px;
  border-top: 1px solid var(--line);
  background: var(--bg);
  color: #fff;
}

.footer__inner{
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 80px;
  padding-bottom: 18px;
}

.footer__left{
  flex: 1;
  max-width: 820px;
}

.footer__logo{
  width: auto;
  height: 46px;
  margin-bottom: 16px;
}

.footer__text{
  max-width: 543px;
  margin: 0;
  color: rgba(255,255,255,.92);
  font-size: 14px;
  line-height: 1.55;
}

.footer__right{
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 260px;
  padding-top: 6px;
  text-align: center;
}

.footer__right h4{
  margin: 0 0 10px;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
}

.social{
  display: flex;
  justify-content: center;
}

.social a{
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: var(--radius-md);
  background: var(--accent);
}

.social a:hover{
  transform: translateY(-1px);
}

.social i{
  color: #fff;
  font-size: 16px;
}

.footer__bottom{
  display: flex;
  justify-content: center;
  width: 100%;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,.12);
}

.footer__copy{
  margin: 0;
  color: rgba(255,255,255,.88);
  font-size: 13px;
  line-height: 1.4;
  text-align: center;
}

.footer__sep{
  margin: 0 8px;
  color: rgba(255,255,255,.55);
}

.privacy{
  color: rgba(255,255,255,.88);
}

.privacy:hover{
  color: #fff;
}

/* variações */
.footer--simple{
  padding: 18px 0;
}

.footer__inner--center{
  justify-content: center;
}

.footer__left--center{
  text-align: center;
}

.footer__left--center .footer__logo{
  margin: 0 auto 10px;
}

/* =========================================================
   12. PÁGINA OBRIGADO
========================================================= */
.thanks{
  background: var(--bg);
  color: #fff;
}

.thanks__main{
  display: grid;
  place-items: center;
  min-height: calc(100vh - 140px);
  padding: 40px 18px;
}

.thanks__card{
  width: min(720px, 100%);
  padding: 28px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 18px;
  background: rgba(255,255,255,.06);
  text-align: center;
  box-shadow: var(--shadow);
}

.thanks__icon{
  margin-bottom: 10px;
  font-size: 42px;
}

/* =========================================================
   13. PÁGINA POLÍTICA DE PRIVACIDADE
========================================================= */
.policy-hero{
  padding: 52px 0 26px;
  background: #ffffff;
  color: #1c1c1c;
}

.policy-hero h1{
  margin: 0 0 10px;
  font-size: 34px;
  line-height: 1.15;
}

.policy-hero p{
  max-width: 860px;
  margin: 0;
  color: #5b5b5b;
}

.policy{
  padding: 28px 0 72px;
  background: #ffffff;
  color: #1c1c1c;
}

.policy .paper{
  max-width: 980px;
  margin: 0 auto;
  padding: 28px;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: var(--radius-xl);
  background: #fff;
  box-shadow: 0 14px 34px rgba(0,0,0,.10);
}

.policy h2{
  margin: 18px 0 10px;
  font-size: 18px;
}

.policy p,
.policy li{
  color: #3b3b3b;
  font-size: 14px;
  line-height: 1.7;
}

.policy ul{
  margin: 8px 0 14px 18px;
}

.policy .meta{
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 10px;
  color: #6b6b6b;
  font-size: 13px;
}

.policy .meta span{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border: 1px solid rgba(0,0,0,.06);
  border-radius: var(--radius-pill);
  background: #f6f6f6;
}

.policy a{
  color: var(--accent-dark);
  font-weight: 700;
  text-decoration: none;
}

.policy a:hover{
  text-decoration: underline;
}

.policy .toc{
  margin: 18px 0 6px;
  padding: 14px;
  border: 1px solid rgba(0,0,0,.06);
  border-radius: var(--radius-lg);
  background: #f6f6f6;
}

.policy .toc strong{
  display: block;
  margin-bottom: 8px;
}

.policy .toc a{
  display: inline-block;
  margin: 4px 10px 0 0;
  font-size: 13px;
}

.footer__left--center{
  flex: 0 1 auto;
  width: 100%;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.footer__left--center .footer__logo{
  margin: 0 auto 12px;
}

.footer__left--center .footer__text,
.footer__left--center .footer__copy{
  width: 100%;
  text-align: center;
}

.footer--simple .container{
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* =========================================================
   14. RESPONSIVO
========================================================= */
@media (max-width: 980px){
  .about__grid{
    grid-template-columns: 1fr;
  }

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

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

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

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

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

  .about,
  .mvv,
  .products,
  .contact{
    text-align: center;
  }

  .about__text,
  .products__header,
  .contact .muted{
    text-align: center;
  }

  .slide__content{
    align-items: center;
    margin: 0 auto;
    text-align: center;
  }

  .slide__headline,
  .slide__kicker{
    text-align: center;
  }

  .slide .btn{
    margin: 0 auto;
  }

  .mvv .card{
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .contact label{
    display: block;
    text-align: left;
  }

  .contact__info,
  .contact__info h3{
    text-align: center;
  }

  .info-row{
    display: grid;
    grid-template-columns: max-content max-content;
    grid-template-areas:
      "icon label"
      "email email";
    justify-content: center;
    align-items: center;
    column-gap: 4px;
    row-gap: 4px;
  }

  .info-row i{
    margin: 0;
    justify-self: end;
  }

  .info-row > div{
    display: contents;
  }

  .info-row .label{
    grid-area: label;
    margin: 0;
    line-height: 1;
    text-align: left;
    justify-self: start;
  }

  .info-row a{
    grid-area: email;
    text-align: center;
  }

  .footer__inner{
    flex-direction: column;
    gap: 24px;
    padding-bottom: 16px;
  }

  .footer__left{
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer__text{
    text-align: center;
  }

  .footer__right{
    width: 100%;
    min-width: auto;
    align-items: center;
    padding-top: 0;
    text-align: center;
  }

  .social{
    justify-content: center;
  }

  .footer__logo{
    height: 44px;
    margin: 0 auto 12px;
  }

  .footer__bottom{
    padding-top: 14px;
  }

  .footer__copy{
    line-height: 1.6;
  }

  .slide__kicker{
    font-size: 34px;
  }
}

@media (max-width: 860px){
  .nav__toggle{
    display: block;
    position: relative;
    z-index: 1200;
  }

  .nav__list{
    position: absolute;
    top: 54px;
    right: 0;
    z-index: 1150;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    min-width: 260px;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: var(--radius-xl);
    background: #1b1b1b;
    box-shadow: var(--shadow);
  }

  .nav__list.is-open{
    display: flex;
  }

  .nav__item--dropdown{
    flex-direction: column;
    align-items: stretch;
  }

  .nav__dropdownBtn{
    align-self: flex-end;
    margin-top: -44px;
    margin-right: 6px;
  }

  .nav__item--dropdown:hover .dropdown{
    display: none;
  }

  .nav__item--dropdown.is-open .dropdown{
    display: block;
  }

  .dropdown{
    position: static;
    display: none;
    margin-top: 6px;
    background: rgba(255,255,255,.04);
  }
}

@media (max-width: 768px){
  .header__inner{
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .nav{
    order: 1;
  }

  .brand{
    position: absolute;
    left: 50%;
    order: 2;
    transform: translateX(-50%);
  }

  .brand img{
    height: 40px;
  }

  .lang{
    order: 3;
  }

  .nav__list{
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    min-width: 0;
    padding: 12px;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius-lg);
    background: #1f1f1f;
    box-shadow: 0 18px 40px rgba(0,0,0,0.35);
    opacity: 0;
    transform: translateY(-8px);
    transition: opacity .25s ease, transform .25s ease;
  }

  .nav__list.is-open{
    display: block;
    opacity: 1;
    transform: translateY(0);
  }

  .nav__list .nav__item{
    margin: 0;
  }

  .nav__list .nav__link{
    display: flex;
    padding: 12px 10px;
    border-radius: 10px;
  }
}

@media (max-width: 720px){
  .policy .paper{
    padding: 18px;
  }

  .policy-hero h1{
    font-size: 28px;
  }
}