:root{
  --bg:#ffffff;
  --bg-header:#000000;
  --bg-footer:#000000;
  --bg-card:#f8f9fa;
  --bg-surf:#eedd82;
  --bg-surf2:#e9ecef;
  --accent:#ffcc00;
  --accent2:#ff9900;
  --accent-red:#dc3545;
  --neon:#ffd700;
  --success:#28a745;
  --text:#000000;
  --text-light:#ffffff;
  --text2:#6c757d;
  --border:rgba(0,0,0,.1);
  --shadow:0 4px 16px rgba(0,0,0,.08);
  --radius:14px;
  --radius-sm:8px;
  --maxw:1180px;
}
*{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{
  font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Helvetica,Arial,sans-serif;
  background:var(--bg);
  color:var(--text);
  line-height:1.65;
  font-size:16px;
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
}
img{max-width:100%;height:auto;display:block}
a{color:var(--accent2);text-decoration:none;transition:color .2s}
a:hover{color:var(--accent);text-decoration:underline}

/* HEADER */
.site-header{
  background:var(--bg-header);
  color:var(--text-light);
  position:sticky;top:0;z-index:50;
  border-bottom:2px solid var(--accent);
}
.header-inner{
  max-width:var(--maxw);
  margin:0 auto;
  padding:14px 20px;
  display:flex;align-items:center;justify-content:space-between;
  gap:24px;
}
.logo-link{display:flex;align-items:center;flex-shrink:0}
.logo-img{height:40px;width:auto}
.nav{display:flex;align-items:center;gap:6px;flex-wrap:wrap}
.nav a{
  color:var(--text-light);
  padding:8px 12px;
  border-radius:var(--radius-sm);
  font-size:14px;
  font-weight:500;
  transition:background .2s,color .2s;
}
.nav a:hover{background:rgba(255,204,0,.15);color:var(--accent);text-decoration:none}
.play-btn{
  background:var(--accent);
  color:var(--text)!important;
  font-weight:700;
  padding:10px 18px!important;
  border-radius:var(--radius-sm);
  box-shadow:0 2px 8px rgba(255,204,0,.4);
  text-transform:uppercase;
  letter-spacing:.5px;
  font-size:13px!important;
}
.play-btn:hover{background:var(--accent2)!important;color:var(--text)!important;transform:translateY(-1px)}
.burger{display:none;background:none;border:0;color:var(--text-light);cursor:pointer;padding:6px}
.burger svg{width:28px;height:28px}

/* MAIN */
main{max-width:var(--maxw);margin:0 auto;padding:32px 20px 60px}
.breadcrumbs{
  font-size:14px;color:var(--text2);
  margin-bottom:22px;
}
.breadcrumbs a{color:var(--text2)}
.breadcrumbs a:hover{color:var(--accent2)}
.breadcrumbs span{margin:0 6px;color:var(--text2)}

.hero{
  background:linear-gradient(135deg,var(--bg-surf) 0%,#fff3a8 100%);
  border-radius:var(--radius);
  padding:36px 32px;
  margin-bottom:36px;
  display:grid;
  grid-template-columns:1.2fr 1fr;
  gap:30px;align-items:center;
  box-shadow:var(--shadow);
}
.hero h1{
  font-size:36px;
  line-height:1.2;
  margin-bottom:14px;
  color:var(--text);
}
.hero p.lead{
  font-size:17px;
  color:var(--text);
  margin-bottom:20px;
}
.hero-img{
  border-radius:var(--radius);
  overflow:hidden;
  box-shadow:0 8px 24px rgba(0,0,0,.15);
}
.hero-img img{width:100%;display:block}

h1{font-size:32px;line-height:1.25;margin-bottom:18px;color:var(--text)}
h2{font-size:26px;line-height:1.3;margin:36px 0 14px;color:var(--text)}
h3{font-size:20px;line-height:1.35;margin:24px 0 10px;color:var(--text)}
p{margin-bottom:14px}
ul,ol{margin:14px 0 18px 22px}
ul li,ol li{margin-bottom:8px}
strong{color:var(--text);font-weight:700}

.cta-row{display:flex;gap:14px;flex-wrap:wrap;margin:18px 0}
.btn{
  display:inline-block;
  background:var(--accent);
  color:var(--text);
  padding:14px 28px;
  border-radius:var(--radius-sm);
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:.5px;
  font-size:14px;
  box-shadow:0 4px 12px rgba(255,204,0,.4);
  transition:transform .2s,background .2s,box-shadow .2s;
  border:0;cursor:pointer;
}
.btn:hover{background:var(--accent2);transform:translateY(-2px);box-shadow:0 6px 18px rgba(255,153,0,.5);color:var(--text);text-decoration:none}
.btn-secondary{background:var(--bg-surf2);color:var(--text);box-shadow:none}
.btn-secondary:hover{background:#dde1e5;color:var(--text)}
.btn-big{padding:18px 36px;font-size:16px}

.card{
  background:var(--bg-card);
  padding:24px;
  border-radius:var(--radius);
  border:1px solid var(--border);
  box-shadow:var(--shadow);
  margin:18px 0;
}
.cards{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:18px;
  margin:22px 0;
}
.card h3{margin-top:0}
.card .icon{font-size:32px;margin-bottom:10px;display:block}

.callout{
  background:#fff8d8;
  border-left:4px solid var(--accent);
  padding:18px 22px;
  border-radius:var(--radius-sm);
  margin:20px 0;
}
.callout strong{color:var(--accent2)}
.warning{
  background:#fff0f1;
  border-left:4px solid var(--accent-red);
  padding:18px 22px;
  border-radius:var(--radius-sm);
  margin:20px 0;
}

table{
  width:100%;
  border-collapse:collapse;
  margin:22px 0;
  background:#fff;
  border-radius:var(--radius-sm);
  overflow:hidden;
  box-shadow:var(--shadow);
  font-size:15px;
}
th,td{
  padding:12px 14px;
  text-align:left;
  border-bottom:1px solid var(--border);
}
th{background:var(--bg-header);color:var(--text-light);font-weight:600}
tr:last-child td{border-bottom:0}
tr:nth-child(even) td{background:var(--bg-card)}

.faq{margin:30px 0}
.faq-item{
  background:var(--bg-card);
  border:1px solid var(--border);
  border-radius:var(--radius-sm);
  margin-bottom:10px;
  overflow:hidden;
}
.faq-q{
  padding:16px 20px;
  font-weight:600;
  cursor:pointer;
  display:flex;justify-content:space-between;align-items:center;
  background:#fff;
  font-size:16px;
}
.faq-q::after{content:"+";font-size:24px;color:var(--accent2);font-weight:700;line-height:1}
.faq-item.open .faq-q::after{content:"−"}
.faq-a{padding:0 20px;max-height:0;overflow:hidden;transition:max-height .3s ease,padding .3s ease}
.faq-item.open .faq-a{padding:0 20px 18px;max-height:600px}

.cta-final{
  background:linear-gradient(135deg,var(--accent) 0%,var(--accent2) 100%);
  border-radius:var(--radius);
  padding:36px 30px;
  text-align:center;
  margin:40px 0 0;
  color:var(--text);
}
.cta-final h2{margin-top:0;color:var(--text)}
.cta-final .btn{background:var(--text);color:var(--accent)}
.cta-final .btn:hover{background:#222;color:var(--accent)}

/* FOOTER */
.site-footer{
  background:var(--bg-footer);
  color:var(--text-light);
  padding:40px 20px 24px;
  margin-top:50px;
}
.footer-inner{max-width:var(--maxw);margin:0 auto}
.footer-grid{
  display:grid;
  grid-template-columns:1.4fr 1fr 1fr;
  gap:30px;
  margin-bottom:30px;
}
.footer-grid h4{
  font-size:16px;
  margin-bottom:14px;
  color:var(--accent);
  text-transform:uppercase;
  letter-spacing:.5px;
}
.footer-grid ul{list-style:none;margin:0;padding:0}
.footer-grid li{margin-bottom:8px}
.footer-grid a{color:#ccc;font-size:14px}
.footer-grid a:hover{color:var(--accent);text-decoration:none}
.footer-brand p{color:#bbb;font-size:14px;margin-bottom:12px}
.age-badge{
  display:inline-block;
  background:var(--accent-red);
  color:#fff;
  font-weight:700;
  padding:6px 12px;
  border-radius:50%;
  width:48px;height:48px;
  text-align:center;line-height:36px;
  border:2px solid #fff;
  margin-right:8px;
  vertical-align:middle;
}
.responsible-badges{display:flex;gap:10px;align-items:center;margin-top:14px;flex-wrap:wrap}
.responsible-badges span{font-size:12px;color:#888;border:1px solid #444;padding:4px 10px;border-radius:4px}
.footer-bottom{
  border-top:1px solid #222;
  padding-top:20px;
  text-align:center;
  font-size:13px;
  color:#888;
}
.footer-bottom p{margin-bottom:6px}

/* RESPONSIVE */
@media (max-width:900px){
  .hero{grid-template-columns:1fr;padding:28px 22px}
  .hero h1{font-size:28px}
  h1{font-size:26px}
  h2{font-size:22px}
  .footer-grid{grid-template-columns:1fr 1fr;gap:24px}
}
@media (max-width:700px){
  .nav{
    display:none;
    position:absolute;
    top:100%;left:0;right:0;
    background:var(--bg-header);
    flex-direction:column;
    align-items:stretch;
    padding:14px 20px;
    border-top:1px solid #222;
    gap:2px;
  }
  .nav.open{display:flex}
  .nav a{padding:12px 14px}
  .burger{display:block}
  .header-inner{position:relative}
  .footer-grid{grid-template-columns:1fr}
  main{padding:24px 16px 40px}
  .hero{padding:24px 18px}
  .hero h1{font-size:24px}
  .cta-row{flex-direction:column;align-items:stretch}
  .cta-row .btn{text-align:center}
  table{font-size:14px}
  th,td{padding:10px}
}
