/* ==========================================================================
   MASSA — style.css
   1. Fonts   2. Tokens   3. Base   4. Header   5. Hero   6. Marquee
   7. About   8. Menu   9. Services   10. Statement   11. Newsletter
   12. Footer   13. Animations   14. Responsive
   ========================================================================== */

/* 1. Fonts ---------------------------------------------------------------- */
@font-face {
  font-family: "Archivo Black";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(../fonts/archivo-black.woff2) format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Archivo Black";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(../fonts/archivo-black-ext.woff2) format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: "Space Grotesk";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url(../fonts/space-grotesk.woff2) format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Space Grotesk";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url(../fonts/space-grotesk-ext.woff2) format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* 2. Tokens ---------------------------------------------------------------- */
:root {
  --orange: hsl(13.39deg 88.19% 49.8%);
  --black: #111;
  --white: #fff;
  --ink: #111;
  --font-display: "Archivo Black", sans-serif;
  --font-body: "Space Grotesk", sans-serif;
  --header-h: 90px;
  --gutter: 6rem;
  --max-w: 1280px;
}

/* 3. Base ------------------------------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; }

[hidden] { display: none !important; }



body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  overflow-x: hidden;
  max-width: 100%;
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: .01em;
  margin: 0;
}



a { color: inherit; }

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.btn {
  display: inline-block;
  border-radius: 300px;
  font-family: var(--font-body);
  font-size: .95rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  text-decoration: none;
  padding: .9em 1.9em;
  cursor: pointer;
  transition: background .2s ease, color .2s ease, transform .15s ease;
}
.btn:active { transform: scale(.97); }

.btn-outline {
  border: 1px solid currentColor;
  background: transparent;
  color: var(--white);
}
.btn-outline:hover { background: var(--white); color: var(--black); }

.btn-solid {
  border: 1px solid var(--black);
  background: var(--black);
  color: var(--white);
}
.btn-solid:hover { background: transparent; color: var(--black); }

/* 4. Header ----------------------------------------------------------------- */
.site-header {
  position: absolute;
  inset: 0 0 auto 0;
  z-index: 100;
  display: flex;
  align-items: center;
  gap: 2.5rem;
  padding: 2rem var(--gutter);
  background: transparent;
  color: var(--white);
}

.logo img { width: auto; max-height: 134px; }

.main-nav { margin-left: auto; }
.main-nav ul {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.main-nav a {
  font-size: .95rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  text-decoration: none;
  opacity: .85;
  transition: opacity .2s, color .2s;
}
.main-nav a:hover { opacity: 1; color: var(--orange); }

.nav-ig {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  /* desce o ícone até o centro das maiúsculas, que fica acima do centro da caixa de texto */
  transform: translateY(2px);
}
.nav-ig svg { display: block; flex-shrink: 0; }
.mobile-menu a.nav-ig {
  display: flex;
  align-items: center;
  gap: .6rem;
  transform: none;
}
.mobile-menu a.nav-ig svg { width: 24px; height: 24px; }

.burger {
  display: none;
  margin-left: auto;
  background: none;
  border: 0;
  padding: 10px;
  cursor: pointer;
}
.burger span {
  display: block;
  width: 26px; height: 2px;
  background: var(--white);
  margin: 6px 0;
  transition: transform .25s ease, opacity .25s ease;
}
.burger.is-open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; }
.burger.is-open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 99;
  background:
    radial-gradient(120% 80% at 100% 0%, rgb(233 63 20 / .28), transparent 60%),
    var(--black);
  color: var(--white);
  padding: 7rem var(--gutter) 2.5rem;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.mobile-menu ul { list-style: none; margin: 0; padding: 0; }
.mobile-menu li { border-bottom: 1px solid rgb(255 255 255 / .12); }
.mobile-menu li:last-child { border-bottom: 0; }

.mobile-menu a:not(.btn) {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .7rem 0;
  font-family: var(--font-display);
  font-size: 1.4rem;
  text-transform: uppercase;
  text-decoration: none;
  transition: color .2s ease, padding-left .2s ease;
}
/* seta discreta que desliza no toque/hover */
.mobile-menu a:not(.btn)::after {
  content: "\2192";
  font-family: var(--font-body);
  font-size: 1.1rem;
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity .2s ease, transform .2s ease;
}
.mobile-menu a:not(.btn):hover,
.mobile-menu a:not(.btn):focus-visible { color: var(--orange); padding-left: .4rem; }
.mobile-menu a:not(.btn):hover::after,
.mobile-menu a:not(.btn):focus-visible::after { opacity: 1; transform: translateX(0); }

/* ícone + rótulo ficam juntos; a seta é empurrada para a direita */
.mobile-menu a.nav-ig { color: var(--orange); justify-content: flex-start; }
.mobile-menu a.nav-ig::after { content: "\2197"; margin-left: auto; }

.mobile-menu .btn {
  align-self: stretch;
  text-align: center;
  margin-top: auto;
}

/* entrada escalonada ao abrir */
.mobile-menu li,
.mobile-menu .btn {
  animation: menu-in .45s cubic-bezier(.22, 1, .36, 1) backwards;
}
.mobile-menu li:nth-child(1) { animation-delay: .04s; }
.mobile-menu li:nth-child(2) { animation-delay: .09s; }
.mobile-menu li:nth-child(3) { animation-delay: .14s; }
.mobile-menu li:nth-child(4) { animation-delay: .19s; }
.mobile-menu li:nth-child(5) { animation-delay: .24s; }
.mobile-menu .btn { animation-delay: .3s; }

@keyframes menu-in {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  .mobile-menu li,
  .mobile-menu .btn { animation: none; }
}

/* 5. Hero -------------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 14rem var(--gutter) 0;
  color: var(--white);
  background: var(--black);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(.55);
}

.hero-content {
  position: relative;
  max-width: 620px;
  margin-bottom: auto;
}

.hero-tagline {
  font-size: clamp(1.4rem, 3.2vw, 2.2rem);
  font-weight: 600;
  line-height: 1.35;
  margin: 0 0 2rem;
}

.hero-marquee { color: var(--white); padding-bottom: 2.5rem; }

/* 6. Marquee ------------------------------------------------------------------ */
.marquee {
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  padding: 4rem 0;
  width: 100vw;
  left: 50%;
  transform: translateX(-50%);
}
.marquee-track {
  display: inline-flex;
  animation: marquee-scroll 22s linear infinite;
  will-change: transform;
}
.marquee-track span {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 7rem);
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: .01em;
  flex-shrink: 0;
}
.marquee-track em {
  font-style: normal;
  font-size: .35em;
  vertical-align: middle;
  margin: 0 .8em;
  color: var(--orange);
}
.marquee:hover .marquee-track { animation-play-state: paused; }

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

/* 7. About --------------------------------------------------------------------- */
.about { background: var(--white); padding: 7vw var(--gutter); }

.about-inner { max-width: 820px; margin: 0 auto; text-align: center; }

.about-text {
  font-size: clamp(1.15rem, 2.2vw, 1.55rem);
  line-height: 1.6;
  margin: 0;
}
.about-text em {
  font-style: normal;
  font-family: var(--font-display);
  color: var(--orange);
}

/* 8. Menu ------------------------------------------------------------------------ */
.menu {
  background: var(--orange);
  color: var(--ink);
  padding: 7vw var(--gutter) 8vw;
  overflow: hidden;
}

.menu-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: start;
}

.menu-copy { position: sticky; top: 6rem; }

.menu h2 {
  font-size: clamp(2.6rem, 6.5vw, 5.5rem);
  letter-spacing: .02em;
  margin-bottom: 1.4rem;
}

.menu-tagline {
  font-weight: 700;
  font-size: .95rem;
  text-transform: uppercase;
  letter-spacing: .22em;
  color: var(--white);
  margin: 0 0 1.6rem;
}

.menu-text {
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  line-height: 1.6;
  max-width: 46ch;
  margin: 0 0 2.6rem;
}

.menu-highlights {
  list-style: none;
  margin: 0;
  padding: 0;
  max-width: 440px;
}
.menu-highlights li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding: .9rem 0;
  border-bottom: 2px dashed rgb(0 0 0 / .3);
  font-weight: 600;
  font-size: 1.34rem;
}
.menu-highlights li:first-child { border-top: 2px dashed rgb(0 0 0 / .3); }
.menu-highlights em {
  font-style: normal;
  font-family: var(--font-display);
  font-size: 1.1rem;
  white-space: nowrap;
}

/* Pôster do menu como papel colado na parede */
.menu-paper {
  position: relative;
  max-width: 540px;
  justify-self: center;
  transform: rotate(2deg);
}
.menu-paper img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 6px;
  box-shadow: 14px 18px 0 rgb(0 0 0 / .22);
}
.menu-paper::before,
.menu-paper::after {
  content: "";
  position: absolute;
  top: -15px;
  width: 110px;
  height: 34px;
  background: rgb(255 255 255 / .45);
  box-shadow: 0 1px 3px rgb(0 0 0 / .15);
  z-index: 1;
}
.menu-paper::before { left: -28px; transform: rotate(-40deg); }
.menu-paper::after  { right: -28px; transform: rotate(40deg); }

/* 9. Services ---------------------------------------------------------------------- */
.services {
  background: var(--orange);
  color: var(--white);
  padding: 5vw var(--gutter);
  text-align: center;
}

.services h2 { font-size: clamp(2rem, 4.5vw, 3.2rem); margin-bottom: 3rem; }

.service-grid {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: var(--max-w);
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.service { flex: 0 1 250px; }

.shape {
  width: 230px;
  height: 230px;
  margin: 0 auto 1.4rem;
  overflow: hidden;
  transition: transform .25s ease;
}
.shape img { width: 100%; height: 100%; object-fit: cover; }
.shape-circle { border-radius: 50%; }
.shape-clover { clip-path: url(#clover); }
.service:hover .shape { transform: scale(1.05); }

.service h3 { font-size: 1.25rem; margin-bottom: .5rem; }
.service p { font-size: .95rem; line-height: 1.5; margin: 0; color: rgb(255 255 255 / .92); }

/* 10. Statement (reveal) --------------------------------------------------------------- */
.statement {
  background: var(--white);
  text-align: center;
  min-height: 65vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6rem 1rem;
}
.statement p {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 8vw, 6.5rem);
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: .01em;
  margin: 0;
}
.statement span {
  display: inline-block;
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
}
.statement span:nth-child(2) { transition-delay: .18s; }
.statement span:nth-child(3) { transition-delay: .36s; }
.statement .accent { color: var(--orange); }
.statement.is-in span { opacity: 1; transform: translateY(0); }

/* 11. Newsletter -------------------------------------------------------------------------- */
.newsletter {
  background: var(--orange);
  color: var(--ink);
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 3rem;
  align-items: center;
  padding: 5vw var(--gutter);
}

.newsletter-copy { max-width: 640px; margin-left: auto; }
.newsletter h2 { font-size: clamp(2.4rem, 5.5vw, 4.2rem); margin-bottom: 1.2rem; }
.newsletter-copy > p { font-size: 1.1rem; line-height: 1.5; margin: 0 0 2rem; }

.newsletter-form { display: flex; flex-direction: column; gap: 1rem; align-items: flex-start; }
.form-row { display: flex; gap: 1rem; width: 100%; }
.form-row input { flex: 1; }

.newsletter-form input,
.newsletter-form textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 1rem;
  padding: .9em 1em;
  border: 2px solid var(--black);
  background: var(--white);
  color: var(--ink);
}
.newsletter-form textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.4;
}
.newsletter-form input:focus-visible,
.newsletter-form textarea:focus-visible,
.btn:focus-visible,
a:focus-visible,
.burger:focus-visible {
  outline: 3px solid var(--black);
  outline-offset: 2px;
}

.form-thanks { font-weight: 600; margin: 0; }

.newsletter-photo {
  display: flex;
  justify-content: center;
}
.newsletter-photo img {
  width: 100%;
  max-width: 440px;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center 22%;
}

/* 12. Footer --------------------------------------------------------------------------------- */
.site-footer {
  background: var(--black);
  color: var(--white);
  padding: 4rem var(--gutter) 2rem;
}

.footer-top {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 3rem;
  flex-wrap: wrap;
}

.footer-logo {
  width: auto;
  height: 44px;
}
.footer-brand p {
  color: rgb(255 255 255 / .65);
  margin: .6rem 0 0;
  font-size: .95rem;
}

.footer-nav { display: flex; gap: 1.8rem; flex-wrap: wrap; }
.footer-nav a {
  text-decoration: none;
  font-size: .95rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  opacity: .85;
  transition: opacity .2s, color .2s;
}
.footer-nav a:hover { opacity: 1; color: var(--orange); }

.social { display: flex; gap: 1.2rem; align-items: center; }
.social a {
  display: inline-flex;
  padding: .4rem;
  opacity: .9;
  transition: opacity .2s, transform .2s;
}
.social a:hover { opacity: 1; transform: scale(1.1); }

.footer-bottom {
  max-width: 1100px;
  margin: 3rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgb(255 255 255 / .15);
  font-size: .85rem;
  color: rgb(255 255 255 / .5);
}

/* 13. Animations (reveal genérico) -------------------------------------------------------------- */
.reveal-fade > * {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal-fade.is-in > * { opacity: 1; transform: translateY(0); }



/* 14. Responsive --------------------------------------------------------------------------------- */
@media (max-width: 980px) {
  .menu-inner { grid-template-columns: 1fr; }
  .menu-copy { position: static; }
  .newsletter { grid-template-columns: 1fr; }
  .newsletter-copy { margin: 0; }
  .newsletter-photo { order: -1; }
  .newsletter-photo img { max-width: 100%; aspect-ratio: 16 / 10; }
}

@media (max-width: 880px) {
  .main-nav, .header-cta { display: none; }
  .burger { display: block; }
}

@media (max-width: 640px) {
  :root { --gutter: 1.25rem; }
  .logo img { max-height: 45px; }
  .hero { padding-top: 9rem; }
  .menu-paper { transform: rotate(1.5deg); }
  .menu-paper::before, .menu-paper::after { width: 80px; height: 26px; top: -10px; }
  .service-grid { gap: 2rem; }
  .shape { width: 180px; height: 180px; }
  .form-row { flex-direction: column; }
  .footer-top { flex-direction: column; gap: 2rem; }
  .marquee { padding: 2.5rem 0; }
}
