/* ROXPDV — página Comece */
:root {
  --rx-orange: #ff6e41;
  --rx-orange-dark: #e85a2f;
  --rx-navy: #052336;
  --rx-ink: #0f172a;
  --rx-muted: #64748b;
  --rx-border: #e2e8f0;
  --rx-peach: #fff3ed;
  --rx-font: "Poppins", system-ui, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body.rx-comece-page {
  margin: 0;
  min-height: 100%;
  font-family: var(--rx-font);
  -webkit-font-smoothing: antialiased;
}

.rx-comece-shell {
  display: flex;
  min-height: 100vh;
  min-height: 100dvh;
}

/* —— Painel benefícios —— */
.rx-comece-brand {
  position: relative;
  flex: 1 1 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px clamp(28px, 5vw, 64px);
  overflow: hidden;
  background: #000;
  color: #fff;
}

.rx-comece-brand-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 75% 60% at 50% 35%, rgba(255, 110, 65, 0.3) 0%, transparent 58%),
    radial-gradient(ellipse 60% 45% at 50% 55%, rgba(255, 90, 45, 0.1) 0%, transparent 55%);
}

.rx-comece-brand-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 580px;
  margin: 0 auto;
  animation: rx-comece-in 0.65s ease both;
}

.rx-comece-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 40px;
}

.rx-comece-logo .rx-brand-mark,
.rx-comece-logo img {
  display: block;
  height: 40px;
  width: auto;
  max-width: min(260px, 72vw);
}

.rx-comece-topbar a {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: color 0.2s;
}

.rx-comece-topbar a:hover {
  color: var(--rx-orange);
}

.rx-comece-brand h1 {
  margin: 0 0 12px;
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.03em;
}

.rx-comece-brand h1 em {
  font-style: normal;
  color: var(--rx-orange);
}

.rx-comece-brand-lead {
  margin: 0 0 28px;
  font-size: 15px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.72);
  max-width: 540px;
}

.rx-comece-benefits {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.rx-comece-benefits li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 13px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.92);
}

.rx-comece-benefits i {
  flex-shrink: 0;
  margin-top: 1px;
  font-size: 18px;
  color: var(--rx-orange);
}

.rx-comece-benefits strong {
  display: block;
  font-weight: 700;
  margin-bottom: 2px;
  color: #fff;
}

/* —— Painel CTA —— */
.rx-comece-main {
  flex: 1 1 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px clamp(28px, 5vw, 64px);
  background: linear-gradient(165deg, #fff 0%, var(--rx-peach) 100%);
}

.rx-comece-card {
  width: 100%;
  max-width: 420px;
  animation: rx-comece-in 0.65s 0.08s ease both;
}

.rx-comece-offer {
  padding: 28px 26px 26px;
  margin-bottom: 20px;
  border-radius: 20px;
  background: linear-gradient(145deg, var(--rx-orange) 0%, #ff845f 100%);
  color: #fff;
  text-align: center;
  box-shadow: 0 16px 48px rgba(255, 110, 65, 0.35);
}

.rx-comece-offer-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 14px;
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.rx-comece-offer i.lni-gift {
  font-size: 28px;
  display: block;
  margin-bottom: 8px;
}

.rx-comece-offer h2 {
  margin: 0 0 10px;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.25;
}

.rx-comece-offer p {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  opacity: 0.95;
}

.rx-comece-alert {
  padding: 12px 14px;
  margin-bottom: 16px;
  border-radius: 12px;
  font-size: 13px;
  text-align: center;
}

.rx-comece-alert--erro {
  background: #fef2f2;
  color: #b91c1c;
  border: 1px solid #fecaca;
}

.rx-comece-alert--sucesso {
  background: #ecfdf5;
  color: #047857;
  border: 1px solid #a7f3d0;
}

.rx-btn-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 16px 24px;
  border-radius: 999px;
  background: #fff;
  color: var(--rx-orange);
  font-family: inherit;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  transition: transform 0.15s, box-shadow 0.15s, background 0.15s;
}

.rx-btn-cta:hover {
  color: var(--rx-orange-dark);
  background: #fff;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.16);
}

.rx-btn-cta i {
  font-size: 18px;
}

.rx-comece-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 16px;
  margin-top: 18px;
  padding: 0;
  list-style: none;
}

.rx-comece-trust li {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--rx-muted);
}

.rx-comece-trust i {
  color: #10b981;
  font-size: 14px;
}

.rx-comece-footer-links {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--rx-border);
  text-align: center;
}

.rx-comece-footer-links p {
  margin: 0 0 10px;
  font-size: 14px;
  color: var(--rx-muted);
}

.rx-comece-footer-links a {
  font-size: 14px;
  font-weight: 700;
  color: var(--rx-navy);
  text-decoration: none;
}

.rx-comece-footer-links a:hover {
  color: var(--rx-orange);
}

.rx-comece-mobile-head {
  display: none;
  text-align: center;
  margin-bottom: 20px;
}

.rx-comece-mobile-head .rx-brand-mark,
.rx-comece-mobile-head img {
  height: 34px;
  max-width: min(220px, 80vw);
}

@keyframes rx-comece-in {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 991px) {
  .rx-comece-shell {
    flex-direction: column;
  }

  .rx-comece-brand {
    flex: none;
    display: block;
    padding: 24px 20px 20px;
  }

  .rx-comece-brand-inner {
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
  }

  .rx-comece-brand h1 {
    font-size: 22px;
    text-align: center;
  }

  .rx-comece-brand-lead {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    font-size: 14px;
    margin-bottom: 16px;
  }

  .rx-comece-benefits {
    grid-template-columns: 1fr;
  }

  .rx-comece-main {
    padding: 28px 20px 36px;
    background: #fff;
  }

  .rx-comece-mobile-head {
    display: block;
  }

  .rx-comece-topbar .rx-comece-logo {
    display: none;
  }
}

@media (max-width: 480px) {
  .rx-comece-benefits li {
    font-size: 12px;
  }
}
