:root{
  --bg: #fff7f4;
  --card: #ffffff;
  --text: #2b2b2b;
  --muted: #6b6b6b;
  --accent: #e78aa6;   /* rosa suave */
  --accent2:#f7c6b8;   /* melocotón */
  --border:#f0e4e0;
  --shadow: 0 18px 40px rgba(0,0,0,.08);
  --radius: 22px;
}

*{ box-sizing:border-box; }

body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  color:var(--text);
  background:
    radial-gradient(1100px 500px at 15% 0%, rgba(231,138,166,.18), transparent 60%),
    radial-gradient(900px 450px at 85% 10%, rgba(247,198,184,.22), transparent 60%),
    var(--bg);
  min-height:100vh;
  display:flex;
  align-items:center;
  justify-content:center;
  padding: 28px 16px;
}

.wrap{
  width: min(920px, 100%);
}

.card{
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow:hidden;
}

.topbar{
  padding: 18px 22px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
  background: linear-gradient(90deg, rgba(231,138,166,.16), rgba(247,198,184,.16));
  border-bottom: 1px solid var(--border);
}

.brand{
  display:flex;
  align-items:center;
  min-width: 0;
}

.brand__logo{
  display:flex;
  align-items:center;
  text-decoration:none;
}

.brand__logo img{
  height: 34px;
  width: auto;
  display:block;
}

.badge{
  font-size: 12px;
  color: var(--muted);
  padding: 8px 10px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255,255,255,.65);
  white-space: nowrap;
}

.content{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 0;
}

.left{
  padding: 28px 26px 26px 26px;
}

.title{
  font-size: clamp(28px, 3.2vw, 40px);
  margin: 0 0 10px 0;
  line-height: 1.08;
  letter-spacing: -.2px;
}

.subtitle{
  margin: 0 0 18px 0;
  color: var(--muted);
  line-height: 1.55;
  font-size: 15.5px;
}

.message{
  margin: 0;
  padding: 14px 14px 14px 16px;
  border-left: 4px solid rgba(231,138,166,.55);
  background: rgba(231,138,166,.08);
  border-radius: 14px;
  color: #3a3a3a;
  line-height: 1.7;
  font-size: 15.5px;
}

.message p{
  margin: 0 0 10px 0;
}

.message p:last-child{
  margin-bottom: 0;
}

.divider{
  height: 1px;
  background: var(--border);
  margin: 18px 0;
}

.note{
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
  font-size: 14.5px;
}

.info{
  margin-top: 16px;
  display:flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill{
  font-size: 13px;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: #fff;
  color: #3b3b3b;
}

.right{
  border-left: 1px solid var(--border);
  background:
    radial-gradient(600px 400px at 30% 0%, rgba(231,138,166,.10), transparent 55%),
    radial-gradient(600px 400px at 70% 40%, rgba(247,198,184,.15), transparent 60%),
    #fff;
  display:flex;
  flex-direction:column;
  justify-content:center;
  padding: 26px;
}

.imgwrap{
  border-radius: 18px;
  overflow:hidden;
  border: 1px solid var(--border);
  background: #fafafa;
  aspect-ratio: 4/3;
  display:flex;
  align-items:center;
  justify-content:center;
}

.imgwrap img{
  width:100%;
  height:100%;
  object-fit: cover;
  display:block;
}

.aside-note{
  margin: 14px 0 0 0;
  color: var(--muted);
  line-height: 1.6;
  font-size: 14.5px;
}

.muted{ color: var(--muted); }

.footer{
  padding: 16px 22px;
  border-top: 1px solid var(--border);
  display:flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items:center;
  justify-content:space-between;
  color: var(--muted);
  font-size: 13px;
  background: rgba(255,255,255,.6);
}

.footer__small{
  color: var(--muted);
}

@media (max-width: 860px){
  .content{ grid-template-columns: 1fr; }
  .right{ border-left: 0; border-top: 1px solid var(--border); }
}
