/* =========================================================
   LANDING PAGE — editável no Adobe Dreamweaver
   ========================================================= */

:root {
  --cream: #f4efe6;
  --white: #fffdf8;
  --ink: #757263;
  --green: #757263;
  --red: #ef7100;
  --line: rgba(24, 33, 24, .18);
  --serif: "Playfair Display", Georgia, serif;
  --sans: "DM Sans", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--sans);
}

img,
video {
  display: block;
  width: 100%;
}

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

button,
input,
textarea {
  font: inherit;
}

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

/* =========================================================
   HEADER
   ========================================================= */

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 4vw;
  color: var(--white);
}

.brand {
  display: flex;
  gap: 12px;
  align-items: center;
  font-weight: 600;
  letter-spacing: .02em;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-family: var(--serif);
}

.main-nav {
  display: flex;
  gap: 34px;
  font-size: .92rem;
}

.main-nav a {
  position: relative;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: -6px;
  left: 0;
  height: 1px;
  content: "";
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .25s ease;
}

.main-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-button {
  display: none;
  width: 42px;
  padding: 8px;
  border: 0;
  color: var(--white);
  background: transparent;
  cursor: pointer;
}

.menu-button span:not(.sr-only) {
  display: block;
  height: 1px;
  margin: 6px 0;
  background: currentColor;
}

/* =========================================================
   HERO
   ========================================================= */

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  color: var(--white);
  background: #1d261c;
}

.hero-video {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(8, 15, 8, .72) 0%,
      rgba(8, 15, 8, .36) 46%,
      rgba(8, 15, 8, .18) 100%
    ),
    linear-gradient(
      0deg,
      rgba(8, 15, 8, .38),
      transparent 45%
    );
}

.hero-content {
  position: relative;
  z-index: 3;
  display: flex;
  min-height: 100svh;
  width: min(680px, 88vw);
  padding: 160px 4vw 90px;
  flex-direction: column;
  justify-content: center;
}

.eyebrow {
  margin: 0 0 24px;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--red);
}

h1,
h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 500;
  line-height: .92;
}

h1 {
  font-size: clamp(4.5rem, 10vw, 10rem);
  letter-spacing: -.055em;
}

h1 em,
h2 em {
  font-weight: 500;
}

.hero-copy {
  max-width: 510px;
  margin: 34px 0;
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  line-height: 1.7;
}

.button {
  align-self: flex-start;
  padding: 14px 22px;
  border: 1px solid rgba(255, 255, 255, .75);
  border-radius: 999px;
  transition:
    color .25s ease,
    background .25s ease;
}

.button:hover {
  color: var(--ink);
  background: var(--white);
}

.hero-image-wrap {
  position: absolute;
  z-index: 10;
  top: 50%;
  left: 50%;
  width: min(60%, 900px);
  transform: translate(-50%, -50%);
}

.hero-image-wrap img {
  display: block;
  width: 100%;
  height: auto;
}

.scroll-cue {
  position: absolute;
  z-index: 4;
  right: 4vw;
  bottom: 24px;
  display: flex;
  gap: 12px;
  align-items: center;
  font-size: .76rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}

/* =========================================================
   CONTENT
   ========================================================= */

.section {
  padding: 110px 7vw;
}

.intro {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 9vw;
  align-items: end;
}

.intro h2 {
  font-size: clamp(2.5rem, 5vw, 4.8rem);
  letter-spacing: -.045em;
}

.intro > p {
  max-width: 540px;
  margin: 0 0 8px;
  font-size: 1.08rem;
  line-height: 1.8;
}

.feature {
  display: grid;
  padding-top: 15px;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feature-card {
  min-height: 290px;
  padding: 30px;
  border-top: 1px solid var(--line);
}

.feature-card span {
  color: var(--red);
  font-size: .78rem;
}

.feature-card h3 {
  margin: 90px 0 16px;
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 500;
}

.feature-card p {
  max-width: 320px;
  line-height: 1.65;
}

/* =========================================================
   FOOTER
   ========================================================= */

.site-footer {
  display: grid;
  padding: 72px 4vw 32px;
  color: var(--white);
  background: #757263;
  grid-template-columns: 1.25fr .55fr .75fr;
  gap: 5vw;
  align-items: start;
}

.site-footer h2 {
  max-width: 760px;
  margin: 22px 0 20px;
  font-size: clamp(3.4rem, 5.2vw, 6.4rem);
  line-height: .88;
  letter-spacing: -.05em;
}

.footer-heading > p:last-child {
  max-width: 760px;
  margin: 0;
  font-size: 1rem;
  line-height: 1.65;
}

.footer-contact,
.footer-social {
  display: flex;
  padding-top: 8px;
  flex-direction: column;
  gap: 16px;
}

.footer-contact a,
.footer-contact p {
  margin: 0;
  font-size: .98rem;
  line-height: 1.5;
}

.footer-contact p {
  color: rgba(255, 255, 255, .66);
}

.footer-social {
  align-items: flex-start;
}

/* =========================================================
   CONTACT FORM
   ========================================================= */

.contact-form {
  display: grid;
  width: 100%;
  gap: 18px;
  padding-top: 8px;
}

.contact-form label {
  display: grid;
  gap: 9px;
}

.contact-form label span {
  color: rgba(255, 255, 255, .72);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .17em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px 0;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, .38);
  border-radius: 0;
  color: var(--white);
  background: transparent;
  outline: none;
  font-family: var(--sans);
  font-size: 1rem;
  appearance: none;
}

.contact-form textarea {
  min-height: 95px;
  resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 255, 255, .45);
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-bottom-color: var(--white);
}

.contact-form button {
  justify-self: start;
  margin-top: 10px;
  padding: 13px 23px;
  border: 1px solid var(--white);
  border-radius: 999px;
  color: #757263;
  background: var(--white);
  cursor: pointer;
  transition:
    color .25s ease,
    background .25s ease;
}

.contact-form button:hover {
  color: var(--white);
  background: transparent;
}

.form-note {
  max-width: 340px;
  margin: 0;
  color: rgba(255, 255, 255, .58);
  font-size: .72rem;
  line-height: 1.5;
}

.footer-bottom {
  display: flex;
  padding-top: 24px;
  margin-top: 45px;
  border-top: 1px solid rgba(255, 255, 255, .18);
  grid-column: 1 / -1;
  justify-content: space-between;
  gap: 20px;
  color: rgba(255, 255, 255, .64);
  font-size: .8rem;
}

.legal-links {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}


/* Legal pages */
.legal-page { min-height: 100vh; background: var(--cream); }

.legal-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 28px 7vw; color: var(--ink); border-bottom: 1px solid var(--line);
}

.legal-header .brand { color: var(--ink); }
.legal-back { font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; }

.legal-main {
  width: min(920px, calc(100% - 48px));
  margin: 0 auto; padding: 95px 0 120px;
}

.legal-main .kicker { color: var(--red); }
.legal-main h1 {
  margin-bottom: 28px; font-size: clamp(3.8rem, 8vw, 7rem); color: var(--ink);
}

.legal-updated { margin: 0 0 58px; color: rgba(36,37,31,.62); font-size: .86rem; }
.legal-intro { margin-bottom: 58px; font-size: 1.15rem; line-height: 1.8; }

.legal-section { padding: 36px 0; border-top: 1px solid var(--line); }
.legal-section h2 {
  margin-bottom: 18px; font-size: clamp(1.8rem, 3vw, 2.7rem); letter-spacing: -.025em;
}
.legal-section p, .legal-section li { line-height: 1.85; }
.legal-section ul { padding-left: 22px; }

.legal-contact { padding: 28px; background: rgba(117,114,99,.09); }

.legal-footer {
  display: flex; justify-content: space-between; gap: 20px;
  padding: 30px 7vw; color: var(--white); background: var(--olive); font-size: .8rem;
}
.legal-footer nav, .legal-links { display: flex; gap: 22px; flex-wrap: wrap; }



/* =========================================================
   TABLET E TELEMÓVEL
   ========================================================= */

@media (max-width: 900px) {
  .site-header {
    padding: 22px;
  }

  .menu-button {
    position: relative;
    z-index: 30;
    display: block;
  }

  .main-nav {
    position: fixed;
    inset: 0;
    display: none;
    padding: 110px 30px;
    flex-direction: column;
    color: var(--white);
    background: var(--ink);
    font-family: var(--serif);
    font-size: 2.6rem;
  }

  .main-nav.is-open {
    display: flex;
  }

  .hero-content {
    width: 100%;
    padding: 140px 24px 42vh;
    justify-content: flex-start;
  }

  h1 {
    font-size: clamp(4rem, 19vw, 7rem);
  }

  .hero-image-wrap {
    top: auto;
    right: 22px;
    bottom: 46px;
    left: 22px;
    width: auto;
    max-width: none;
    transform: none;
  }

  .scroll-cue {
    display: none;
  }

  .section {
    padding: 72px 24px;
  }

  .intro,
  .feature,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .intro {
    gap: 38px;
  }

  .intro h2 {
    max-width: 340px;
    font-size: clamp(2.8rem, 12vw, 4.2rem);
    line-height: .9;
  }

  .intro > p {
    max-width: none;
    font-size: 1.05rem;
    line-height: 1.65;
  }

  .feature {
    gap: 0;
  }

  .site-footer {
    padding: 68px 24px 28px;
    gap: 34px;
  }

  .site-footer h2 {
    max-width: 390px;
    margin: 18px 0 24px;
    font-size: clamp(2.8rem, 12vw, 4.5rem);
    line-height: .9;
  }

  .footer-heading > p:last-child {
    max-width: none;
    font-size: 1.02rem;
    line-height: 1.55;
  }

  .footer-contact,
  .footer-social,
  .contact-form {
    padding-top: 0;
  }

  .contact-form textarea {
    min-height: 110px;
  }

  .contact-form button {
    width: 100%;
    justify-self: stretch;
    padding: 15px 20px;
  }

  .footer-bottom {
    margin-top: 20px;
    gap: 14px;
    flex-direction: column;
  }

  .legal-links {
    gap: 12px;
    flex-direction: column;
  }
}


/* =========================================================
   PÁGINAS LEGAIS
   ========================================================= */

.legal-page {
  min-height: 100vh;
  background: var(--cream);
}

.legal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 7vw;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
}

.legal-header .brand {
  color: var(--ink);
}

.legal-back {
  font-size: .8rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.legal-main {
  width: min(920px, calc(100% - 48px));
  margin: 0 auto;
  padding: 95px 0 120px;
}

.legal-main .kicker {
  color: var(--red);
}

.legal-main h1 {
  margin-bottom: 28px;
  color: var(--ink);
  font-size: clamp(3.8rem, 8vw, 7rem);
}

.legal-updated {
  margin: 0 0 58px;
  color: rgba(36, 37, 31, .62);
  font-size: .86rem;
}

.legal-intro {
  margin-bottom: 58px;
  font-size: 1.15rem;
  line-height: 1.8;
}

.legal-section {
  padding: 36px 0;
  border-top: 1px solid var(--line);
}

.legal-section h2 {
  margin-bottom: 18px;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  letter-spacing: -.025em;
}

.legal-section p,
.legal-section li {
  line-height: 1.85;
}

.legal-section ul {
  padding-left: 22px;
}

.legal-contact {
  padding: 28px;
  background: rgba(117, 114, 99, .09);
}

.legal-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 30px 7vw;
  color: var(--white);
  background: var(--green);
  font-size: .8rem;
}

.legal-footer nav {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}

@media (max-width: 700px) {
  .legal-header,
  .legal-footer {
    align-items: flex-start;
    flex-direction: column;
  }
	
	.legal-header, .legal-footer { align-items: flex-start; flex-direction: column; }
  .legal-main { padding-top: 65px; }

  .legal-main {
    padding-top: 65px;
  }
}

/* =========================================================
   ACESSIBILIDADE
   ========================================================= */

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  /*.hero-video {
    display: none;
  }
}*/