/* SOLO estilos del contenido registrarse (header/footer ya vienen de index.css) */

.regHero{
  position:relative;
  min-height:420px;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:90px 18px 70px;
  background:#000;
  overflow:hidden;
}
.regHero::before{
  content:"";
  position:absolute;
  inset:0;
  background-image:url("https://source.unsplash.com/6HR8vpjYUHo/2400x1400");
  background-size:cover;
  background-position:center;
  transform:scale(1);
  animation: regZoom 22s ease-in-out infinite alternate;
  z-index:0;
}
.regHero::after{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(180deg, rgba(0,0,0,.60), rgba(0,0,0,.30) 60%, rgba(0,0,0,.20));
  z-index:1;
}
@keyframes regZoom{ from{transform:scale(1)} to{transform:scale(1.07)} }

.regHero__inner{
  position:relative;
  z-index:2;
  width:min(980px, calc(100% - 24px));
  text-align:center;
  color:#fff;
  text-shadow:0 10px 22px rgba(0,0,0,.55);
}
.regHero__kicker{
  margin:0 0 10px;
  font-family:"Pacifico", cursive;
  font-size:28px;
  font-weight:400;
  opacity:.98;
}
.regHero h1{
  margin:0 0 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(40px, 5vw, 72px);
  font-weight:800;
  line-height:1.05;
}
.regHero__sub{
  margin:0 auto;
  max-width:860px;
  font-size:18px;
  font-weight:650;
  line-height:1.6;
  opacity:.95;
}

.regMain{
  background:#f3f3f5;
  padding:50px 20px 90px;
}
.regWrap{
  width:min(var(--max), calc(100% - 40px));
  margin:0 auto;
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:18px;
  align-items:start;
}

.regCard, .sideCard{
  background:#fff;
  border:1px solid rgba(0,0,0,.08);
  border-radius:16px;
  box-shadow:0 16px 40px rgba(0,0,0,.07);
}

.regCard{ padding:18px; }
.regCard h2{
  margin:6px 0 6px;
  font-size:22px;
  font-weight:900;
  color:#111;
}
.regNote{
  margin:0 0 16px;
  color:#26324f;
  font-weight:650;
  line-height:1.6;
}

.regForm{
  display:flex;
  flex-direction:column;
  gap:12px;
}

.grid2{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:12px;
}

.fLabel{
  display:flex;
  flex-direction:column;
  gap:8px;
  font-weight:900;
  color:#111;
  font-size:13px;
}
.fLabel input{
  height:44px;
  border-radius:12px;
  border:1px solid rgba(0,0,0,.14);
  padding:0 14px;
  font-weight:700;
  outline:none;
  font-family:"Sofia Sans", system-ui, sans-serif;
}
.fLabel input:focus{
  border-color: rgba(255,0,0,.55);
  box-shadow: 0 0 0 4px rgba(255,0,0,.12);
}

.passWrap{
  display:flex;
  align-items:center;
  gap:10px;
}
.passWrap input{ flex:1; }
.passToggle{
  height:44px;
  padding:0 14px;
  border-radius:12px;
  border:1px solid rgba(0,0,0,.14);
  background:#fff;
  cursor:pointer;
  font-weight:900;
}
.passToggle:hover{ background:#f3f4f7; }

.checks{
  display:flex;
  flex-direction:column;
  gap:10px;
  margin-top:6px;
}
.checkRow{
  display:flex;
  gap:10px;
  align-items:flex-start;
  font-weight:800;
  color:#26324f;
  line-height:1.35;
}
.checkRow a{
  color:#1a2a7a;
  font-weight:900;
  text-decoration:none;
}
.checkRow a:hover{ text-decoration:underline; }

.btnPrimary{
  height:46px;
  border:0;
  border-radius:14px;
  background: var(--rosa);
  color:#fff;
  font-weight:900;
  cursor:pointer;
}
.btnPrimary:hover{ filter:brightness(1.05); }

.msg{
  margin:4px 0 0;
  min-height:18px;
  font-weight:800;
  color:#1a0446;
}

.regLinks{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
  align-items:center;
  font-weight:800;
  color:#26324f;
}
.regLinks a{
  font-weight:900;
  color:#1a2a7a;
  text-decoration:none;
}
.regLinks a:hover{ text-decoration:underline; }

.sideCard{ padding:18px; }
.sideCard h3{
  margin:6px 0 10px;
  font-size:18px;
  font-weight:900;
  color:#111;
}
.sideCard ul{
  margin:0 0 14px;
  padding-left:18px;
  color:#26324f;
  font-weight:650;
  line-height:1.7;
}
.btnGhost2{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  height:44px;
  padding:0 16px;
  border-radius:12px;
  background:#fff;
  color:#111;
  text-decoration:none;
  font-weight:900;
  border:1px solid rgba(0,0,0,.16);
}
.btnGhost2:hover{ background:#f3f4f7; }

@media (max-width:980px){
  .regHero{ min-height:380px; padding:70px 18px 60px; }
  .regHero__kicker{ font-size:24px; }
  .regWrap{ grid-template-columns:1fr; }
  .grid2{ grid-template-columns:1fr; }
}
