/* ==============================
   VARIABLES
================================= */

:root{
  --bg:#0b0c0f;
  --panel:#0f1117;
  --fg:#f2f3f5;
  --muted:#a7abb3;
  --line:rgba(255,255,255,.10);
  --line2:rgba(255,255,255,.16);
}

/* ==============================
   RESET
================================= */

*{box-sizing:border-box}
body{
  margin:0;
  background:var(--bg);
  color:var(--fg);
  font-family:system-ui,-apple-system,Segoe UI,Roboto,Arial;
  line-height:1.6;
}
a{color:inherit;text-decoration:none}

/* ==============================
   LAYOUT
================================= */

.wrap{
  max-width:980px;
  margin:0 auto;
  padding:88px 24px;
}

section{
  padding:64px 0;
  border-bottom:1px solid var(--line);
}

/* ==============================
   TYPO / GLOBAL
================================= */

h2{
  margin:0 0 16px;
  font-size:12px;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:var(--muted);
}

p{
  margin:0 0 14px;
  max-width:78ch;
}

.small{
  font-size:12px;
  color:var(--muted);
  line-height:1.5;
}

.bigLine{
  font-size:22px;
  line-height:1.25;
  letter-spacing:-.01em;
  max-width:70ch;
}

@media(min-width:900px){
  .bigLine{font-size:24px}
}

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

.hero{
  border-bottom:1px solid var(--line);
  padding-bottom:64px;
}

.heroBig{
  padding-top:6px;
}

.logo{margin-bottom:22px}
.logo img{
  height:72px;
  width:auto;
  opacity:.92;
  transition:opacity .35s ease;
}
.logo img:hover{opacity:1}

.tag{
  display:inline-block;
  font-size:11px;
  letter-spacing:.12em;
  text-transform:uppercase;
  color:var(--muted);
  border:1px solid var(--line);
  padding:8px 12px;
  border-radius:999px;
  background:rgba(255,255,255,.02);
  margin-bottom:18px;
}

.heroTitle{
  margin:0;
  font-size:44px;
  line-height:1.05;
  letter-spacing:-.02em;
}

.heroSub{
  margin-top:16px;
  color:var(--muted);
  font-size:18px;
  max-width:70ch;
}

@media(min-width:900px){
  .heroTitle{font-size:58px}
  .heroSub{font-size:19px}
}

/* Br helper */
.brDesktop{display:none}
@media(min-width:900px){
  .brDesktop{display:inline}
}

/* ==============================
   CTA
================================= */

.ctaRow{
  display:flex;
  gap:14px;
  align-items:center;
  margin-top:30px;
  flex-wrap:wrap;
}

.btn{
  display:inline-block;
  padding:14px 22px;
  border:1px solid var(--line2);
  border-radius:14px;
  transition:border-color .25s ease, transform .2s ease;
}

.btn:hover{
  border-color:rgba(255,255,255,.32);
  transform:translateY(-1px);
}

.btnPrimary{
  border-color:rgba(255,255,255,.24);
}

/* ==============================
   SECTION RHYTHM (tamaños)
================================= */

.sectionTight{
  padding:46px 0;
}

.sectionMid{
  padding:60px 0;
}

.sectionBig{
  padding:86px 0;
}

.sectionTight,
.sectionMid,
.sectionBig{
  border-bottom:1px solid var(--line);
}

/* ==============================
   EQUATION
================================= */

.equation{
  margin-top:16px;
  padding:22px;
  border:1px solid var(--line);
  border-radius:18px;
  background:rgba(255,255,255,.02);
  max-width:720px;
}

.eqRow{
  font-size:18px;
  letter-spacing:-.01em;
  padding:6px 0;
}

.eqOp{
  color:var(--muted);
  font-size:14px;
  letter-spacing:.2em;
  text-transform:uppercase;
  padding:6px 0;
}

.eqEq{
  margin-top:6px;
}

.eqResult{
  font-size:20px;
  line-height:1.2;
  letter-spacing:-.01em;
  padding-top:10px;
}

@media(min-width:900px){
  .eqRow{font-size:19px}
  .eqResult{font-size:22px}
}

/* ==============================
   PUNCH LIST (calienta)
================================= */

.punchList{
  display:grid;
  gap:12px;
  font-size:26px;
  line-height:1.1;
  letter-spacing:-.02em;
  max-width:26ch;
}

@media(min-width:900px){
  .punchList{font-size:34px}
}

/* ==============================
   LISTAS
================================= */

ul{
  margin:14px 0 0;
  padding-left:18px;
  line-height:1.9;
}

/* ==============================
   BLOQUE DE SILENCIO
================================= */

.silence{
  padding:86px 0;
  border-bottom:none;
}

.silenceLine{
  height:1px;
  background:var(--line);
  opacity:.55;
  max-width:520px;
}

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

.anchor{
  scroll-margin-top:22px;
}

.preForm{
  margin:10px 0 0;
  color:var(--muted);
  max-width:72ch;
}

.form{
  padding:24px;
  border:1px solid var(--line);
  border-radius:18px;
  background:rgba(255,255,255,.02);
  margin-top:24px;
  max-width:720px;
}

label{
  display:block;
  font-size:12px;
  color:var(--muted);
  letter-spacing:.08em;
  text-transform:uppercase;
  margin:18px 0 8px;
}

input,select,textarea{
  width:100%;
  padding:14px;
  border-radius:14px;
  border:1px solid var(--line);
  background:var(--panel);
  color:var(--fg);
  outline:none;
}

textarea{
  min-height:120px;
  resize:vertical;
}

.submit{
  margin-top:20px;
  width:100%;
  padding:16px;
  border-radius:14px;
  border:1px solid var(--line2);
  background:transparent;
  color:var(--fg);
  cursor:pointer;
  transition:border-color .25s ease, transform .2s ease;
}

.submit:hover{
  border-color:rgba(255,255,255,.32);
  transform:translateY(-1px);
}

.hp{display:none !important}

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

footer{
  padding:46px 0 20px;
  color:var(--muted);
  font-size:12px;
}



/* ==============================
   MEDIA (renders)
================================= */

.mediaBlock {
  border-bottom: 1px solid var(--line);
}

.mediaGrid {
  border-bottom: 1px solid var(--line);
}

.mediaFrame {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  background: rgba(255,255,255,.02);
}

.mediaFrame img {
  display: block;
  width: 100%;
  height: auto;
  transform: scale(1.01);          /* micro “fill” premium */
  filter: saturate(0.92) contrast(1.02) brightness(0.92);
}

.mediaCaption {
  margin-top: 14px;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.media2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-top: 18px;
  max-width: 980px;
}

@media (min-width: 900px) {
  .media2 {
    grid-template-columns: 1fr 1fr;
    gap: 22px;
  }
}

.mediaMini {
  padding: 12px 14px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.4;
  border-top: 1px solid var(--line);
  background: rgba(255,255,255,.02);
}


/* =============================
   MODAL AGENDAR LLAMADA
============================= */

.modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.65);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999;
  padding: 20px;
}

.modal.active {
  display: flex;
}

.modalContent {
  width: 100%;
  max-width: 520px;
  background: #0f1117;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 28px;
  position: relative;
}

.modalClose {
  position: absolute;
  top: 14px;
  right: 14px;
  border: none;
  background: transparent;
  color: var(--muted);
  font-size: 22px;
  cursor: pointer;
}

.modal h3 {
  margin-top: 0;
  margin-bottom: 10px;
}

.hidden {
  display: none;
}
