/*
Theme Name: Nonno Amado
Theme URI: https://nonnoamado.com.ar
Author: Nonno Amado
Description: Tema oficial de Nonno Amado – Producción artesanal de fiambres
Version: 1.0.0
Text Domain: nonnoamado
*/

:root{
  --bg:#0b0c0f;
  --card:#11131a;
  --text:#e8e8ea;
  --muted:#b8b8bf;
  --gold:#caa24a;
  --gold2:#f0d27a;
  --border: rgba(255,255,255,.10);
}

*{ box-sizing:border-box; }
body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: radial-gradient(1000px 600px at 30% 0%, rgba(202,162,74,.10), transparent 55%),
              radial-gradient(900px 500px at 70% 30%, rgba(202,162,74,.06), transparent 55%),
              var(--bg);
  color:var(--text);
}
a{ color:var(--gold2); text-decoration:none; }
a:hover{ text-decoration:underline; }

.container{ width:min(1100px, 92vw); margin:0 auto; }
.nav{
  display:flex; align-items:center; justify-content:space-between;
  padding:20px 0;
}
.brand{ display:flex; align-items:center; gap:12px; }
.brand img{ display:block; max-height:70px; width:auto; }

.menu a{ margin-left:16px; color:var(--text); opacity:.9; }
.menu a:hover{ opacity:1; }

.hero{
  margin-top:10px;
  border-radius:24px;
  overflow:hidden;
}
.hero-inner{
  padding:56px 28px 46px;
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:22px;
  align-items:stretch;
  background:
    linear-gradient(rgba(0,0,0,.55), rgba(0,0,0,.78)),
    url('https://nonnoamado.com.ar/wp-content/uploads/2026/01/01.jpeg')
    center / cover no-repeat;
}

.card{
  background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
  border:1px solid var(--border);
  border-radius:18px;
  padding:26px;
  box-shadow: 0 14px 40px rgba(0,0,0,.35);
  backdrop-filter: blur(6px);
}
.kicker{
  color:var(--gold2);
  text-transform:uppercase;
  letter-spacing:.14em;
  font-size:.78rem;
}
.h1{
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  line-height:1.05;
  margin:12px 0;
}
.sub{
  color:var(--muted);
  font-size:1.05rem;
  line-height:1.55;
}
.btns{ display:flex; gap:12px; margin-top:18px; flex-wrap:wrap; }
.btn{
  display:inline-block;
  padding:12px 16px;
  border-radius:12px;
  border:1px solid var(--border);
  color:var(--text);
  background: rgba(255,255,255,.02);
}
.btn.primary{
  background: linear-gradient(90deg, var(--gold), var(--gold2));
  color:#17120a;
  border: none;
  font-weight:700;
}
.section{ padding:36px 0; }
.section h2{ margin:0 0 12px; font-size:1.55rem; }
.grid2{ display:grid; grid-template-columns:1fr 1fr; gap:20px; }
.muted{ color:var(--muted); line-height:1.65; }

.badges{ display:flex; gap:10px; flex-wrap:wrap; margin-top:12px; }
.badge{
  padding:8px 10px; border-radius:999px;
  border:1px solid var(--border);
  background: rgba(255,255,255,.02);
  font-size:.9rem;
}

.footer{
  margin-top:30px;
  padding:28px 0 36px;
  border-top:1px solid var(--border);
  color:var(--muted);
}
hr.sep{ border:none; border-top:1px solid var(--border); margin:18px 0; }

.form-row{ display:grid; gap:10px; }
input, textarea{
  width:100%;
  padding:12px 12px;
  border-radius:12px;
  border:1px solid var(--border);
  background: rgba(0,0,0,.25);
  color:var(--text);
  outline:none;
}
textarea{ min-height:130px; resize:vertical; }

.notice{
  padding:12px 14px;
  border-radius:12px;
  border:1px solid var(--border);
  background: rgba(202,162,74,.10);
  color: var(--text);
}

img.resp{
  width:100%;
  height:auto;
  border-radius:18px;
  box-shadow:0 20px 50px rgba(0,0,0,.45);
}

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