/* regalos/style.css
   Tema coherente con el landing principal (papel suave, dorados, separadores).
   Todo el estilo va aquí (sin depender de CSS externos del sitio).
*/
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;600;700&family=Great+Vibes&display=swap');

:root{
  --bg:#f5f0f2;
  --paper:#fbf7f8;
  --ink:#3a3537;
  --muted:#6b6366;
  --gold:#b08a2e;
  --gold-2:#d6b35a;
  --line: rgba(176,138,46,.35);
  --shadow: 0 18px 40px rgba(20, 14, 16, .10);
  --radius: 18px;
  --radius-sm: 14px;
  --maxw: 980px;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  color:var(--ink);
  background:
    radial-gradient(1200px 600px at 50% -200px, rgba(214,179,90,.16), transparent 60%),
    radial-gradient(900px 500px at 10% 10%, rgba(176,138,46,.08), transparent 60%),
    radial-gradient(900px 500px at 90% 90%, rgba(176,138,46,.06), transparent 65%),
    var(--bg);
  font-family: "Cormorant Garamond", Georgia, serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a{color:inherit}
.container{
  width:min(var(--maxw), calc(100% - 32px));
  margin: 28px auto 48px;
}

.shell{
  position:relative;
  background:linear-gradient(180deg, rgba(255,255,255,.88), rgba(255,255,255,.82));
  border: 1px solid rgba(176,138,46,.25);
  border-radius: 22px;
  box-shadow: var(--shadow);
  overflow:hidden;
}

.paper{
  position:relative;
  padding: 22px 22px 28px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.8), rgba(255,255,255,.74)),
    radial-gradient(900px 700px at 40% 20%, rgba(176,138,46,.06), transparent 55%),
    var(--paper);
}

.corner{
  position:absolute;
  width:min(220px, 26vw);
  opacity:.55;
  pointer-events:none;
  filter: saturate(.92);
}
.corner.tl{top:-6px; left:-6px;}
.corner.br{bottom:-6px; right:-6px; transform: rotate(1deg);}

.topbar{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
  padding: 16px 18px;
  border-bottom: 1px solid rgba(176,138,46,.18);
  background: rgba(255,255,255,.55);
  backdrop-filter: blur(3px);
}

.brand{
  display:flex;
  flex-direction:column;
  gap:2px;
  line-height:1.1;
}
.brand .kicker{
  font-size: 13px;
  letter-spacing:.08em;
  color: var(--muted);
  text-transform: uppercase;
}
.brand .names{
  font-family: "Great Vibes", cursive;
  font-size: 34px;
  color: var(--ink);
}

.nav{
  display:flex;
  gap:10px;
  align-items:center;
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(176,138,46,.35);
  background: rgba(255,255,255,.6);
  text-decoration:none;
  cursor:pointer;
  transition: transform .06s ease, background .15s ease, border-color .15s ease;
  font-weight: 600;
}
.btn:hover{background: rgba(255,255,255,.78); border-color: rgba(176,138,46,.55)}
.btn:active{transform: translateY(1px)}

.header{
  padding: 26px 10px 12px;
  text-align:center;
}
.h1{
  font-size: 46px;
  margin: 0 0 4px;
  font-weight: 700;
}
.sub{
  margin: 0 auto;
  max-width: 720px;
  font-size: 18px;
  color: var(--muted);
}
.sub .soft{
  display:block;
  margin-top:8px;
  font-style: italic;
  color: rgba(58,53,55,.85);
}

.sep{
  display:flex;
  align-items:center;
  justify-content:center;
  gap: 14px;
  margin: 18px auto 12px;
  color: var(--gold);
}
.sep:before, .sep:after{
  content:"";
  height:1px;
  width: min(260px, 30vw);
  background: var(--line);
}
.sep .dot{
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(176,138,46,.55);
}

.grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding: 14px 10px 24px;
}

.card{
  position:relative;
  border-radius: var(--radius);
  border: 1px solid rgba(176,138,46,.22);
  background: rgba(255,255,255,.78);
  box-shadow: 0 10px 20px rgba(20, 14, 16, .06);
  overflow:hidden;
  min-height: 220px;
}
.card .inner{
  padding: 18px 18px 16px;
}
.card h2{
  margin:0 0 6px;
  font-size: 26px;
}
.card p{
  margin:0 0 12px;
  color: var(--muted);
  font-size: 18px;
}
.badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing:.08em;
  color: rgba(58,53,55,.78);
  border: 1px solid rgba(176,138,46,.22);
  border-radius: 999px;
  padding: 7px 10px;
  background: rgba(255,255,255,.55);
}

.card .actions{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top: 12px;
}
.btn.primary{
  background: linear-gradient(180deg, rgba(214,179,90,.55), rgba(176,138,46,.18));
  border-color: rgba(176,138,46,.55);
}
.btn.primary:hover{
  background: linear-gradient(180deg, rgba(214,179,90,.65), rgba(176,138,46,.22));
}

.reveal{
  margin-top: 10px;
  border-top: 1px solid rgba(176,138,46,.18);
  padding-top: 12px;
}
.hidden{display:none}

.dl{
  display:grid;
  grid-template-columns: 130px 1fr;
  gap: 8px 10px;
  margin: 10px 0 0;
  font-size: 17px;
}
.dt{color: rgba(58,53,55,.78); font-weight: 600;}
.dd{margin:0}

.decogift{
  position:absolute;
  right: 14px;
  bottom: 10px;
  width: 120px;
  opacity: .28;
  pointer-events:none;
  filter: drop-shadow(0 10px 18px rgba(0,0,0,.10));
}

.footer{
  text-align:center;
  padding: 4px 10px 22px;
  color: rgba(58,53,55,.70);
  font-size: 16px;
}

@media (max-width: 820px){
  .grid{grid-template-columns: 1fr;}
  .h1{font-size: 40px;}
  .brand .names{font-size: 30px;}
  .dl{grid-template-columns: 120px 1fr;}
}

@media (max-width: 460px){
  .topbar{flex-direction:column; align-items:flex-start;}
  .nav{width:100%}
  .btn{width:100%}
  .h1{font-size: 36px;}
}
