
:root{
  --bg:#ffffff;
  --card:#ffffff;
  --text:#0f172a;
  --muted:#475569;
  --accent:#0ea5e9;
  --accent2:#22c55e;
  --border: rgba(15, 23, 42, 0.10);
  --shadow: 0 12px 30px rgba(2, 6, 23, 0.08);
  --radius:18px;
}
*{box-sizing:border-box}
body{
  margin:0;
  font-family: 'Times New Roman', Times, serif;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  color:var(--text);
  line-height:1.6;
}
a{color:var(--accent); text-decoration:none}
a:hover{text-decoration:underline}

.container{max-width:1120px; margin:0 auto; padding:0px}

.nav{
  position:sticky; top:0; z-index:30;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(10px);
  border-bottom:1px solid var(--border);
}
.nav-inner{display:flex; align-items:center; justify-content:space-between; gap:16px}
.brand{display:flex; gap:14px; align-items:center}
.brand img{width:250px !important;height:200px !important;object-fit:contain !important;transform:scale(1.08)}
.brand .t1{font-weight:850; letter-spacing:.2px}
.brand .t2{font-size:13px; color:var(--muted)}

.menu{display:flex; flex-wrap:wrap; gap:8px; align-items:center}
.menu a{
  font-size:14px; color:var(--text);
  padding:8px 10px; border-radius:12px;
  border:1px solid transparent;
}
.menu a.active, .menu a:hover{
  border-color: var(--border);
  background: rgba(14,165,233,.08);
  text-decoration:none;
}

.hero{
  border:1px solid var(--border);
  background:#fff;
  border-radius: 24px;
  box-shadow: var(--shadow);
  overflow:hidden;
}
.hero .cover{
  width:100%;
  height:280px;
  background:#e2e8f0;
  display:block;
  object-fit:cover;
}
.hero .content{padding:26px}
.badges{display:flex; flex-wrap:wrap; gap:8px; margin-top:10px}
.badge{
  font-size:12px; color:var(--text);
  padding:6px 10px;
  border:1px solid var(--border);
  background: rgba(2,6,23,.02);
  border-radius:999px;
}
.h1{font-size:38px; margin:0 0 6px 0; line-height:1.1}
.lead{color:var(--muted); max-width:78ch}

.actions{display:flex; flex-wrap:wrap; gap:10px; margin-top:18px}
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  gap:8px;
  padding:10px 14px;
  border-radius:14px;
  border:1px solid var(--border);
  background:#fff;
  color: var(--text);
  font-weight:700;
  box-shadow: 0 6px 18px rgba(2,6,23,.06);
}
.btn.primary{
  background: linear-gradient(90deg, rgba(14,165,233,.14), rgba(34,197,94,.14));
  border-color: rgba(14,165,233,.25);
}

.grid{display:grid; grid-template-columns: repeat(12, 1fr); gap:14px; margin-top:18px}
.card{
  grid-column: span 12;
  border:1px solid var(--border);
  background: var(--card);
  border-radius: var(--radius);
  padding:18px;
  box-shadow: var(--shadow);
}
@media (min-width: 900px){
  .card.span6{grid-column: span 6;}
  .card.span4{grid-column: span 4;}
}
.card h2{margin:0 0 8px 0; font-size:18px}
.card p{margin:0; color:var(--muted)}

.table{
  width:100%;
  border-collapse: collapse;
  margin-top:10px;
  font-size:14px;
}
.table th,.table td{
  border:1px solid var(--border);
  padding:10px;
  vertical-align:top;
}
.table th{background: #f1f5f9; text-align:left; color:#0f172a}

.kv{display:grid; grid-template-columns: 170px 1fr; gap:8px; margin-top:8px}
.kv div:nth-child(odd){color:var(--muted)}

.footer{
  margin-top:26px;
  border-top:1px solid var(--border);
  color: var(--muted);
  padding:18px 0 6px;
  font-size:13px;
}
.small{font-size:13px; color:var(--muted)}
.notice{
  border:1px dashed rgba(14,165,233,.35);
  background: rgba(14,165,233,.06);
  padding:12px 14px;
  border-radius: 14px;
  color: var(--text);
}


/* Module visuals */
.module-card{
  display:flex; flex-direction:column; gap:12px;
}
.module-card .thumb{
  width:100%; height:160px; border-radius:16px;
  border:1px solid var(--border);
  background:#f1f5f9;
  overflow:hidden;
}
.module-card .thumb img{width:100%; height:100%; object-fit:cover; display:block}
.module-actions{display:flex; flex-wrap:wrap; gap:10px; margin-top:10px}
.btn.whatsapp{
  border-color: rgba(34,197,94,.25);
  background: rgba(34,197,94,.08);
}
/* Home sections with images */
.feature-row{
  display:grid;
  grid-template-columns: 1fr;
  gap:14px;
  align-items:center;
}
@media (min-width: 900px){
  .feature-row{grid-template-columns: 1.2fr .8fr;}
}
.feature-img{
  width:100%;
  height:260px;
  border-radius: 18px;
  border:1px solid var(--border);
  overflow:hidden;
  background:#f1f5f9;
}
.feature-img img{width:100%; height:100%; object-fit:cover; display:block}

.nav-disabled{font-size:14px;color:var(--muted);padding:8px 10px;border-radius:12px}
.brand-link{display:flex;align-items:center;gap:14px;color:inherit;text-decoration:none}
.brand-link:hover{text-decoration:none}

.table{margin-left:auto;margin-right:auto}
.table th,.table td{text-align:center}


/* Modal (embed form) */
.modal{position:fixed;inset:0;display:none;z-index:1000}
.modal.open{display:block}
.modal-backdrop{position:absolute;inset:0;background:rgba(2,6,23,.55)}
.modal-dialog{
  position:relative;
  width:min(920px, calc(100% - 24px));
  margin: 6vh auto 0;
  background:#fff;
  border-radius:18px;
  border:1px solid var(--border);
  box-shadow: var(--shadow);
  overflow:hidden;
}
.modal-header{display:flex;align-items:center;justify-content:space-between;padding:12px 14px;border-bottom:1px solid var(--border)}
.modal-title{font-weight:800}
.modal-close{border:1px solid var(--border);background:#fff;border-radius:12px;padding:6px 10px;cursor:pointer}
.modal-body{padding:0}
.modal-body iframe{width:100%;height:72vh;border:0}

.brand img{width:190px !important;height:140px !important;object-fit:contain !important;transform:scale(1.08)}

/* Ensure module images display */
.module-card .thumb{background:#f1f5f9}
.module-card .thumb img{width:100%;height:100%;object-fit:cover;display:block}

.module-card .thumb{background:#f1f5f9}
.module-card .thumb img{width:100%;height:100%;object-fit:cover;display:block}


/* ITTA9 enhancements */
.card:hover,.module-card:hover,.trainer-card:hover{transform:translateY(-4px);transition:.25s ease}
.card,.module-card,.trainer-card{transition:.25s ease}
