/* =========================
   MOBILE FIRST, LIMPO E SEGURO
========================= */

:root{
  --bg: #0b0c0f;
  --bg2: #111318;
  --paper: #ffffff;
  --paper2: #f6f7f9;

  --text: rgba(14, 16, 20, 0.92);
  --muted: rgba(14, 16, 20, 0.68);

  --textOnDark: rgba(255,255,255,0.92);
  --mutedOnDark: rgba(255,255,255,0.72);

  --line: rgba(14, 16, 20, 0.12);
  --lineOnDark: rgba(255,255,255,0.16);

  --accent: #ff8a3d;
  --accent2: #ffd2b2;

  --shadow: 0 10px 26px rgba(0,0,0,0.18);
  --radius: 18px;

  --container: 1120px;
  --pad: 18px;
}

*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Helvetica Neue", sans-serif;
  color: var(--text);
  background: var(--paper);
  line-height: 1.55;
}

img{
  max-width: 100%;
  height: auto;
  display: block;
}

a{ color: inherit; text-decoration: none; }
a:focus{ outline: 2px solid var(--accent); outline-offset: 3px; }

.container{
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
}

.srOnly{
  position:absolute;
  width:1px; height:1px;
  padding:0; margin:-1px;
  overflow:hidden; clip:rect(0,0,0,0);
  white-space:nowrap; border:0;
}

/* =========================
   TOPBAR
========================= */

.topbar{
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255,255,255,0.86);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.topbar__inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding-top: 12px;
  padding-bottom: 12px;
}

.brand{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}
.brand__dot{
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(255,138,61,0.14);
}
.brand__name{
  font-weight: 700;
  letter-spacing: 0.2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.nav{
  display: none;
  align-items: center;
  gap: 16px;
}
.nav a{
  color: var(--muted);
  font-weight: 600;
  font-size: 14px;
}
.nav a:hover{ color: var(--text); }

.menuBtn{
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 12px;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.06);
}
.menuBtn__bar{
  width: 18px;
  height: 2px;
  background: rgba(14, 16, 20, 0.7);
  border-radius: 999px;
}

.mobileMenu{
  display: none;
  border-top: 1px solid var(--line);
  background: rgba(255,255,255,0.92);
}
.mobileMenu.isOpen{ display: block; }
.mobileMenu__inner{
  padding-top: 10px;
  padding-bottom: 14px;
  display: grid;
  gap: 10px;
}
.mobileMenu a{
  padding: 12px 12px;
  border: 1px solid var(--line);
  border-radius: 14px;
  font-weight: 650;
  color: var(--text);
  background: #fff;
}

/* =========================
   HERO
========================= */

.hero{
  background: radial-gradient(1200px 600px at 10% 0%, rgba(255,138,61,0.16), transparent 60%),
              radial-gradient(1000px 600px at 90% 30%, rgba(0,0,0,0.06), transparent 55%),
              linear-gradient(180deg, #ffffff 0%, var(--paper2) 100%);
  padding: 30px 0 26px;
}

.hero__grid{
  display: grid;
  gap: 18px;
}

.eyebrow{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-weight: 700;
  letter-spacing: 0.3px;
  margin: 0 0 10px;
}
.eyebrow__dot{
  width: 10px; height: 10px;
  border-radius: 999px;
  background: var(--accent);
}

.hero__title{
  margin: 0 0 12px;
  font-weight: 820;
  line-height: 1.1;
  letter-spacing: -0.6px;
  font-size: clamp(28px, 6.4vw, 46px);
}
.accent{ color: var(--accent); }

.hero__subtitle{
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 16px;
  max-width: 62ch;
}

.hero__cta{
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 16px;
}

.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  border-radius: 14px;
  border: 1px solid rgba(255,138,61,0.28);
  background: var(--accent);
  color: #111;
  font-weight: 800;
  letter-spacing: 0.2px;
  box-shadow: 0 10px 20px rgba(255,138,61,0.18);
}

.btn--ghost{
  background: rgba(255,255,255,0.9);
  border: 1px solid var(--line);
  color: var(--text);
  box-shadow: 0 10px 20px rgba(0,0,0,0.06);
}

.btn--small{
  padding: 10px 12px;
  border-radius: 12px;
  font-size: 14px;
}

.hero__meta{
  display: grid;
  gap: 10px;
}

.pill{
  display: grid;
  gap: 4px;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(255,255,255,0.86);
  border: 1px solid var(--line);
}
.pill__label{
  font-size: 12px;
  font-weight: 800;
  color: rgba(14, 16, 20, 0.55);
  text-transform: uppercase;
  letter-spacing: 0.6px;
}
.pill__value{
  font-weight: 700;
  color: var(--text);
}

.hero__photo{
  border-radius: 26px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.hero__photo img{
  width: 100%;
  height: auto;
  object-fit: cover;
  transform: scaleX(-1);
}

/* =========================
   SECTIONS
========================= */

.section{
  padding: 42px 0;
}

.sectionTitle{
  font-size: clamp(22px, 4.6vw, 30px);
  margin: 0 0 10px;
  letter-spacing: -0.3px;
}
.sectionDesc{
  margin: 0;
  color: var(--muted);
  max-width: 70ch;
}

.sectionHeader{
  margin-bottom: 18px;
}

.section--dark{
  position: relative;
  color: var(--textOnDark);
  background: var(--bg);
  overflow: hidden;
}

.sectionHeader--dark .sectionTitle,
.sectionTitle--dark{ color: var(--textOnDark); }

.sectionDesc--dark{ color: var(--mutedOnDark); }

/* background media (safe overlay, sem textos por cima) */
.bgMedia{
  position: absolute;
  inset: 0;
  z-index: 0;
}
.bgMedia img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  filter: saturate(0.95);
}
.bgMedia__overlay{
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.62), rgba(0,0,0,0.58));
}
.bgMedia__overlay--strong{
  background: linear-gradient(180deg, rgba(0,0,0,0.74), rgba(0,0,0,0.70));
}

.section--dark > .container{
  position: relative;
  z-index: 1;
}

/* =========================
   ABOUT
========================= */

.about__card{
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: 0 10px 22px rgba(0,0,0,0.06);
}

.about__grid{
  display: grid;
  gap: 16px;
}

.about__photo{
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #fff;
}
.about__photo img{
  width: 100%;
  height: auto;
  object-fit: cover;
}

.lead{
  margin: 0 0 10px;
  font-weight: 720;
  color: rgba(14, 16, 20, 0.88);
  font-size: 16px;
}

.about__content p{
  margin: 0 0 10px;
  color: var(--muted);
}

.about__highlights{
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 12px;
  margin-bottom: 10px;
}

.highlight{
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 12px 12px;
  background: rgba(255,255,255,0.9);
}
.highlight__kicker{
  display: block;
  font-size: 12px;
  font-weight: 900;
  color: rgba(14, 16, 20, 0.55);
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin-bottom: 2px;
}
.highlight__value{
  font-weight: 800;
  color: var(--text);
}

.textLink{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 850;
  color: rgba(14, 16, 20, 0.88);
  border-bottom: 1px solid rgba(255,138,61,0.45);
  padding-bottom: 2px;
}

/* =========================
   DARK CARDS (what I do)
========================= */

.cardsGrid{
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.card{
  border-radius: 18px;
  padding: 16px;
  border: 1px solid var(--line);
  background: #fff;
}

.card--dark{
  background: rgba(17, 19, 24, 0.72);
  border: 1px solid var(--lineOnDark);
}

.card__icon{
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.06);
  margin-bottom: 12px;
  color: rgba(255,255,255,0.92);
}
.card__icon svg{
  width: 22px;
  height: 22px;
}

.card__title{
  margin: 0 0 6px;
  font-size: 18px;
  letter-spacing: -0.2px;
}
.card--dark .card__title{ color: var(--textOnDark); }

.card__text{
  margin: 0;
  color: rgba(255,255,255,0.72);
}

/* =========================
   FORMATS
========================= */

.formatGrid{
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

.format{
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 16px;
  background: #fff;
  box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.format__title{
  margin: 0 0 10px;
  font-size: 18px;
  letter-spacing: -0.2px;
}

.list{
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}
.list li{ margin: 8px 0; }

/* =========================
   CONTACT
========================= */

.contact{
  position: relative;
  z-index: 1;
}

.contact__card{
  border-radius: 20px;
  border: 1px solid var(--lineOnDark);
  background: rgba(10, 11, 14, 0.60);
  box-shadow: 0 14px 26px rgba(0,0,0,0.24);
  padding: 18px;
}

.contact__header{
  margin-bottom: 14px;
}

.contact__grid{
  display: grid;
  gap: 12px;
  margin-top: 12px;
}

.contactItem{
  border-radius: 16px;
  border: 1px solid var(--lineOnDark);
  padding: 12px 12px;
  background: rgba(255,255,255,0.06);
}

.contactItem__label{
  display: block;
  font-size: 12px;
  font-weight: 900;
  color: rgba(255,255,255,0.70);
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin-bottom: 4px;
}

.contactItem__value{
  font-weight: 800;
  color: rgba(255,255,255,0.92);
}

.contactItem__hint{
  display: block;
  margin-top: 6px;
  font-size: 12px;
  color: rgba(255,255,255,0.70);
}

.contactItem--full{
  grid-column: 1 / -1;
}

.contact__cta{
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 14px;
}

.section--dark .btn--ghost{
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.22);
  color: rgba(255,255,255,0.92);
  box-shadow: none;
}

/* =========================
   FOOTER
========================= */

.footer{
  margin-top: 18px;
  padding: 18px 0 10px;
}

.footer__row{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.74);
  font-weight: 650;
  font-size: 14px;
}

.footer__link{
  color: rgba(255,255,255,0.90);
  border-bottom: 1px solid rgba(255,138,61,0.38);
  padding-bottom: 2px;
}

.footer__sep{
  opacity: 0.65;
}

/* =========================
   RESPONSIVO (desktop)
========================= */

@media (min-width: 860px){
  :root{ --pad: 22px; }

  .nav{ display: inline-flex; }
  .menuBtn{ display: none; }
  .mobileMenu{ display: none !important; }

  .hero{
    padding: 54px 0 46px;
  }

  .hero__grid{
    grid-template-columns: 1.25fr 0.75fr;
    align-items: center;
    gap: 26px;
  }

  .hero__meta{
    grid-template-columns: 1fr 1fr;
  }

  .about__card{ padding: 18px; }
  .about__grid{
    grid-template-columns: 0.85fr 1.15fr;
    align-items: center;
    gap: 18px;
  }

  .about__highlights{
    grid-template-columns: 1fr 1fr 1fr;
  }

  .cardsGrid{
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

  .formatGrid{
    grid-template-columns: 1fr 1fr 1fr;
    gap: 14px;
  }

  .contact__card{
    padding: 22px;
  }

  .contact__grid{
    grid-template-columns: 1fr 1fr;
  }
}
