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

:root {
  --bg-page: #f3f4f7;
  --card-bg: #ffffff;
  --accent-main: #e63946;
  --accent-alt: #ffb703;
  --text-main: #1f2933;
  --text-muted: #6b7380;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  background: radial-gradient(circle at top, #ffffff 0, #f3f4f7 55%, #e9edf5 100%);
  color: var(--text-main);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.wrapper {
  width: 100%;
  max-width: 1120px;
}

/* ===== TOPO ===== */

.brand-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
  gap: 12px;
}

.brand-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--accent-main), var(--accent-alt));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 0.08em;
}

.brand-text-main {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.brand-text-main span {
  color: var(--accent-main);
}

.brand-sub {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--text-muted);
}

.brand-right {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--text-muted);
  text-align: right;
}

/* ===== LOGO PNG ===== */

.logo-wrapper {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.logo-image {
    max-width: 260px; /* ajuste se quiser maior/menor */
    height: auto;
    display: block;
}

.brand-sub {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--text-muted);
}

/* Mobile */
@media (max-width: 600px) {
    .logo-image {
        max-width: 200px;
    }
}


/* ===== CARD ===== */

.card {
  border-radius: 24px;
  background: var(--card-bg);
  box-shadow: 0 22px 55px rgba(15, 23, 42, 0.16);
  padding: 26px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
}

@media (max-width: 900px) {
  .card {
    grid-template-columns: 1fr;
  }
}

/* ===== TEXTO ===== */

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 999px;
  background: #f7f8fb;
  border: 1px solid #e2e6f0;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
}

h1 {
  font-size: clamp(26px, 3.4vw, 34px);
  margin-bottom: 10px;
}

h1 span {
  color: var(--accent-main);
}

.subtitle {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.highlight {
  background: #fff6f3;
  border: 1px solid #ffded2;
  border-radius: 16px;
  padding: 12px 14px;
  margin-bottom: 18px;
}

.highlight-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #b45309;
}

.highlight-main {
  font-size: 16px;
  font-weight: 600;
  color: #9a3412;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pill {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid #e2e6f0;
  background: #f7f8fb;
  color: var(--text-muted);
}

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

.right {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  min-height: 320px;

  /* AQUI ESTÁ SUA IMAGEM */
  background:
    linear-gradient(
      120deg,
      rgba(0, 0, 0, 0.15),
      rgba(0, 0, 0, 0.45)
    ),
    url("../img/01.png") center / cover no-repeat;

  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 16px;
}

.stamp {
  background: rgba(255, 255, 255, 0.85);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 6px;
}

.stamp-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22c55e;
}

.right-tag {
  background: rgba(0, 0, 0, 0.65);
  color: #fff;
  padding: 12px 14px;
  border-radius: 14px;
  max-width: 260px;
}

.right-tag-title {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #e5e7eb;
  margin-bottom: 4px;
}

.right-tag-main {
  font-size: 14px;
  line-height: 1.4;
}
