/* ============================================================
   MILIMETRADO — Landing "Site em Construção"
   ============================================================ */

:root {
  --gold: #E3A329;
  --gold-light: #F4C66A;
  --bg: #0a0a0b;
  --bg-2: #0f0f11;
  --panel: rgba(20, 20, 22, 0.55);
  --panel-border: rgba(227, 163, 41, 0.18);
  --white: #f4f4f4;
  --gray: #9a9a9a;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

html, body {
  height: 100%;
}

body {
  font-family: 'Montserrat', sans-serif;
  background: var(--bg);
  color: var(--white);
  height: 100vh;
  height: 100dvh;
  overflow: hidden;
}

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

/* ---------- LAYOUT PRINCIPAL ---------- */
.site {
  position: relative;
  display: block;
  height: 100vh;
  height: 100dvh;
  overflow: hidden;
  /* padrão de pontos sutil no fundo */
  background:
    radial-gradient(circle at 12% 18%, rgba(227,163,41,0.05), transparent 40%),
    radial-gradient(rgba(255,255,255,0.04) 1px, transparent 1px) 0 0 / 26px 26px,
    linear-gradient(135deg, #0b0b0d 0%, #050506 100%);
}

/* ============================================================
   COLUNA ESQUERDA
   ============================================================ */
.content {
  position: relative;
  z-index: 3;
  width: 48%;
  max-width: 760px;
  height: 100%;
  padding: 2vw 2vw 2vw 4vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1vh;
  overflow: hidden;
}

/* ---------- LOGO ---------- */
.logo-block { display: flex; flex-direction: column; gap: 0.6vw; }

.logo { display: flex; align-items: center; gap: 16px; }

.logo-m svg { width: 78px; height: 68px; display: block; }

.logo-divider {
  width: 3px;
  align-self: stretch;
  min-height: 60px;
  border-left: 1.5px solid rgba(255,255,255,0.45);
  border-right: 1.5px solid rgba(255,255,255,0.18);
  margin: 4px 2px;
}

.logo-text { display: flex; flex-direction: column; justify-content: center; }

.logo-name {
  display: block;
  text-align: center;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 2.3rem;
  letter-spacing: 4px;
  color: #fff;
  line-height: 1;
}

.logo-sub {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 5px;
}
.logo-sub .arrow {
  color: var(--gold);
  font-size: 0.9rem;
  line-height: 1;
  font-weight: 700;
}
.logo-slogan {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.4px;
  color: var(--gold);
  white-space: nowrap;
}

/* régua sob o slogan */
.logo-ruler {
  height: 14px;
  margin-top: 5px;
  /* trena: tracinhos longos (a cada 4) + curtos */
  background-image:
    linear-gradient(to right, var(--gold) 1.4px, transparent 1.4px), /* traço longo */
    linear-gradient(to right, var(--gold) 1px, transparent 1px);     /* traço curto */
  background-size:
    24px 100%,  /* longo a cada 24px (a cada 4 tracinhos) */
    6px 52%;    /* curto a cada 6px, com metade da altura */
  background-position: left bottom, left bottom;
  background-repeat: repeat-x, repeat-x;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent);
  opacity: 0.9;
}

.tagline {
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 2px;
  color: #e9e9e9;
  line-height: 1.5;
  margin-top: 4px;
}

/* ---------- HEADLINE ---------- */
.headline { margin: 0.6vw 0 0.2vw; }

.headline h1 {
  font-family: 'Anton', sans-serif;
  font-weight: 400;
  line-height: 0.92;
  text-transform: uppercase;
}
.headline h1 span { display: block; }

.line-white {
  font-size: clamp(2.6rem, 5.2vw, 5.4rem);
  color: #fff;
  letter-spacing: 1px;
}
.line-gold {
  font-size: clamp(3rem, 6.2vw, 6.6rem);
  color: var(--gold);
  letter-spacing: 1px;
}

.headline-rule {
  display: block;
  width: 220px;
  max-width: 60%;
  height: 2px;
  margin-top: 18px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

/* ---------- COPY ---------- */
.copy { display: flex; flex-direction: column; gap: 0.9vw; }

.lead {
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  font-size: clamp(0.85rem, 1.1vw, 1.05rem);
  letter-spacing: 2px;
  color: #eaeaea;
  line-height: 1.55;
}

.desc {
  font-size: clamp(0.72rem, 0.9vw, 0.85rem);
  color: var(--gray);
  line-height: 1.6;
  letter-spacing: 0.3px;
}

/* ---------- BOTÕES ---------- */
.cta-row {
  display: flex;
  gap: 18px;
  margin-top: 0.6vw;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 16px 26px;
  min-width: 230px;
  text-decoration: none;
  color: var(--white);
  background: rgba(15, 15, 17, 0.6);
  border: 1.5px solid var(--gold);
  border-radius: 6px;
  position: relative;
  overflow: hidden;
  transition: transform .25s ease, box-shadow .3s ease, background .3s ease;
}

.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(244,198,106,0.18), transparent);
  transform: translateX(-120%);
  transition: transform .55s ease;
}

.btn-icon svg {
  width: 30px; height: 30px;
  fill: var(--gold);
  transition: transform .3s ease;
}

.btn-text { display: flex; flex-direction: column; line-height: 1.15; }
.btn-text small {
  font-family: 'Oswald', sans-serif;
  font-size: 0.6rem;
  letter-spacing: 1.5px;
  color: #d6d6d6;
}
.btn-text strong {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 1.5px;
  color: var(--gold);
}

/* hover */
.btn:hover {
  transform: translateY(-3px);
  background: rgba(227,163,41,0.10);
  box-shadow: 0 10px 30px rgba(227,163,41,0.25), 0 0 0 1px var(--gold) inset;
}
.btn:hover::before { transform: translateX(120%); }
.btn:hover .btn-icon svg { transform: scale(1.12) rotate(-4deg); }
.btn:active { transform: translateY(-1px); }

/* ---------- FEATURES ---------- */
.features {
  display: flex;
  align-items: stretch;
  gap: 1.2vw;
  margin-top: 1vh;
  padding: 22px 26px;
  background: var(--panel);
  border: 1px solid var(--panel-border);
  border-radius: 10px;
  backdrop-filter: blur(6px);
}

.feature {
  display: flex;
  align-items: center;
  gap: 11px;
  flex: 1;
  transition: transform .25s ease;
}
.feature:hover { transform: translateY(-4px); }

.feature-icon svg {
  width: 34px; height: 34px;
  fill: none;
  stroke: var(--gold);
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform .3s ease, filter .3s ease;
}
.feature:hover .feature-icon svg {
  transform: scale(1.1);
  filter: drop-shadow(0 0 6px rgba(227,163,41,0.6));
}

/* ícones preenchidos (fill) em vez de traçados */
.feature-icon--fill svg {
  fill: var(--gold);
  stroke: none;
}

.feature-txt h3 {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.6px;
  color: #fff;
  line-height: 1.18;
  text-transform: uppercase;
  white-space: nowrap;
  min-height: 2.1em; /* sempre reserva 2 linhas de título */
}
.feature-txt p {
  font-size: 0.6rem;
  color: var(--gray);
  line-height: 1.45;
  margin-top: 6px;
  white-space: nowrap;
  min-height: 2.6em; /* sempre reserva 3 linhas de descrição */
}

.feature-sep {
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(227,163,41,0.4), transparent);
}

/* ============================================================
   COLUNA DIREITA (IMAGEM)
   ============================================================ */
.visual {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.visual-img {
  position: absolute;
  inset: 0;
  background-image: url("marceneiro.png");
  background-size: cover;
  background-position: center;
  transform: scale(1.08);
  transform-origin: 60% 45%;
}

/* brilho dourado da iluminação LED */
.visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 78% 50%, rgba(227,163,41,0.12), transparent 55%);
  pointer-events: none;
}

/* ícones sociais flutuantes */
.social-floating {
  position: absolute;
  top: 26px;
  right: 28px;
  display: flex;
  gap: 12px;
  z-index: 5;
}
.social-floating a {
  width: 42px; height: 42px;
  display: grid; place-items: center;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  background: rgba(10,10,12,0.5);
  backdrop-filter: blur(4px);
  transition: transform .25s ease, background .3s ease, box-shadow .3s ease;
}
.social-floating svg {
  width: 20px; height: 20px;
  fill: none; stroke: var(--gold); stroke-width: 1.6;
}
/* ícone preenchido (WhatsApp) dentro do círculo */
.social-floating svg.ic-fill {
  fill: var(--gold);
  stroke: none;
}
.social-floating a:hover svg.ic-fill { fill: #0a0a0b; }
.social-floating a:hover {
  transform: translateY(-3px) scale(1.08);
  background: var(--gold);
  box-shadow: 0 8px 22px rgba(227,163,41,0.4);
}
.social-floating a:hover svg { stroke: #0a0a0b; }
.social-floating a:hover svg circle[fill] { fill: #0a0a0b; }

/* painel escuro + curva dourada divisória */
.curve-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
  filter: blur(14px); /* suaviza/mescla a borda do painel com a imagem */
}
.curve-gold {
  filter: drop-shadow(0 0 5px rgba(243,198,106,0.75))
          drop-shadow(0 0 14px rgba(227,163,41,0.45));
}

/* ============================================================
   RESPONSIVO — TABLET / MOBILE
   ============================================================ */
@media (max-width: 980px) {
  /* libera a rolagem (o "sem scroll" vale só pro desktop) */
  html, body { height: auto; }
  body {
    height: auto;
    min-height: 100dvh;
    overflow-x: hidden;
    overflow-y: auto;
  }
  .site {
    display: block;
    height: auto;
    min-height: 100dvh;
    overflow: visible;
  }

  /* imagem fixa de fundo cobrindo toda a tela durante a rolagem */
  .visual { position: fixed; inset: 0; z-index: 0; }
  .visual-img {
    background-image:
      linear-gradient(180deg,
        rgba(10,10,11,0.82) 0%,
        rgba(10,10,11,0.72) 40%,
        rgba(10,10,11,0.88) 100%),
      url("marceneiro.png");
    background-position: center;
    background-size: cover;
    transform: none;
  }
  .curve-overlay { display: none; }
  .visual::after { background: radial-gradient(circle at 50% 30%, rgba(227,163,41,0.10), transparent 60%); }

  /* ícones sociais flutuantes do topo: só no desktop */
  .social-floating { display: none; }

  /* conteúdo empilhado por cima, com rolagem */
  .content {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: none;
    height: auto;
    min-height: 100dvh;
    padding: 28px 22px 40px;
    justify-content: flex-start;
    gap: 16px;
    overflow: visible;
  }

  /* logo */
  .logo-m svg { width: 58px; height: 50px; }
  .logo-name { font-size: 1.5rem; letter-spacing: 3px; }
  .logo-slogan { font-size: 0.7rem; }

  /* títulos */
  .line-white { font-size: clamp(2.4rem, 8vw, 3.4rem); }
  .line-gold  { font-size: clamp(2.8rem, 9.5vw, 4rem); }

  /* botões */
  .cta-row { flex-wrap: wrap; gap: 12px; }
  .btn { flex: 1 1 100%; min-width: 0; justify-content: flex-start; }

  /* cards em grade 2x2, texto pode quebrar livremente */
  .features { flex-wrap: wrap; gap: 16px 14px; padding: 18px; }
  .feature { flex: 1 1 42%; align-items: flex-start; }
  .feature-sep { display: none; }
  .feature-txt h3 { white-space: normal; min-height: 0; }
  .feature-txt p  { white-space: normal; min-height: 0; }
}

@media (max-width: 560px) {
  .content { padding: 24px 18px 36px; gap: 14px; }

  .social-floating { top: 16px; right: 16px; gap: 10px; }
  .social-floating a { width: 38px; height: 38px; }

  .logo { gap: 12px; }
  .logo-name { font-size: 1.35rem; letter-spacing: 2px; }

  .line-white { font-size: clamp(2.1rem, 11vw, 2.8rem); }
  .line-gold  { font-size: clamp(2.4rem, 13vw, 3.2rem); }

  .cta-row { flex-direction: column; }
  .btn { width: 100%; }

  /* 1 card por linha no celular pequeno */
  .feature { flex: 1 1 100%; align-items: center; }
}
