:root{
  --red: #ed3237;
  --text: #15171a;
  --muted: #5a606a;
  --card: rgba(255,255,255,.88);
  --line: rgba(21,23,26,.10);
  --shadow: 0 18px 60px rgba(0,0,0,.10);
  --radius: 22px;
  --max: 1100px;
}

*{ box-sizing:border-box; }
html,body{ height:100%; }

body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Helvetica Neue", sans-serif;
  color: var(--text);
  background:#fff;
  overflow-x:hidden;
}

/* BG imagem com opacidade 100% (sem opacidade) */
.page-bg{
  position: fixed;
  inset: 0;
  background: url("../../images/bg.jpg") center/cover no-repeat;
  pointer-events: none;
  z-index: 0;
}

/* Mantém leitura (branco por cima + detalhes vermelhos) */
.page-bg::after{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(700px 420px at 15% 20%, rgba(237,50,55,.10), transparent 60%),
    radial-gradient(700px 420px at 85% 40%, rgba(237,50,55,.08), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,.90), rgba(255,255,255,.95));
}

.page{
  min-height:100vh;
  display:flex;
  align-items:center;
  justify-content:center;
  padding: 26px 16px;
  position:relative;
  z-index:1;
}

.shell{
  width:min(var(--max), 100%);
}

.card{
  width:100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--card);
  box-shadow: var(--shadow);
  overflow:hidden;
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  align-items:stretch;
}

/* LEFT */
.left{
  padding: 28px 28px 22px;
  display:flex;
  flex-direction:column;
  gap: 14px;
}

.brand{
  display:flex;
  align-items:center;
  justify-content:flex-start;
}

/* LOGO MAIOR */
.brand-logo{
  width: min(320px, 78vw);
  height:auto;
  display:block;
}

.headline{
  display:flex;
  align-items:center;
  gap: 12px;
  margin-top: 6px;
}

.warn{
  width: 42px;
  height: 42px;
  display:grid;
  place-items:center;
  color: var(--red);
  border: 1px solid rgba(237,50,55,.22);
  border-radius: 14px;
  background: rgba(237,50,55,.06);
}
.warn i{
  font-size: 18px;
}

h1{
  margin:0;
  font-size: clamp(28px, 3.6vw, 44px);
  line-height:1.05;
  letter-spacing:-.02em;
}

.desc{
  margin: 0;
  max-width: 62ch;
  color: var(--muted);
  line-height:1.55;
  font-size: clamp(14px, 1.7vw, 16.5px);
}
.desc strong{ color: var(--text); font-weight: 800; }

.mini{
  margin: 6px 0 0;
  color: rgba(90,96,106,.92);
  font-size: 13px;
}

/* Social */
.social{
  display:flex;
  gap: 10px;
  align-items:center;
  margin-top: 8px;
}

.soc{
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid var(--line);
  display:grid;
  place-items:center;
  color: rgba(21,23,26,.78);
  background: rgba(255,255,255,.78);
  transition: transform .18s ease, border-color .18s ease, color .18s ease, box-shadow .18s ease;
  text-decoration:none;
}

.soc i{ font-size: 18px; }

.soc:hover{
  transform: translateY(-1px);
  border-color: rgba(237,50,55,.40);
  color: var(--red);
  box-shadow: 0 10px 22px rgba(0,0,0,.08);
}

.foot{
  margin-top: 6px;
  padding-top: 12px;
  border-top: 1px dashed rgba(21,23,26,.14);
  color: rgba(90,96,106,.85);
  font-size: 12.5px;
}

/* RIGHT */
.right{
  position:relative;
  display:flex;
  align-items:center;
  justify-content:center;
  padding: 18px;
  border-left: 1px solid var(--line);
  background:
    radial-gradient(520px 320px at 60% 40%, rgba(237,50,55,.08), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,.60), rgba(255,255,255,.30));
}

.sofa{
  width: min(520px, 92%);
  height:auto;
  display:block;
  opacity: 1;
  filter: drop-shadow(0 16px 28px rgba(0,0,0,.12));
  transform: translateY(2px);
}

/* RESPONSIVO */
@media (max-width: 920px){
  .card{ grid-template-columns: 1fr; }

  .right{
    border-left:0;
    border-top: 1px solid var(--line);
    padding: 18px 16px 24px;
  }

  .left{ padding: 24px 18px 18px; }
  .brand{ justify-content:center; }
  .headline{ justify-content:center; text-align:center; }
  .desc{ margin-inline:auto; text-align:center; }
  .social{ justify-content:center; }
  .foot{ text-align:center; }

  .brand-logo{
    width: min(300px, 82vw);
  }
}

@media (max-width: 420px){
  .warn{ width: 40px; height: 40px; border-radius: 13px; }
  .soc{ width: 42px; height: 42px; border-radius: 13px; }
}

@media (prefers-reduced-motion: reduce){
  *{ animation:none !important; transition:none !important; }
}