/* =========================================================
   BOTC Theme — premium blue (CLEAN)
   ========================================================= */

:root{
  --bg0:#050B1A;
  --bg1:#06102A;

  --card: rgba(255,255,255,.06);
  --border: rgba(255,255,255,.12);

  --text:#EAF2FF;
  --muted: rgba(234,242,255,.75);

  --accent:#2F7BFF;
  --accent2:#26C6FF;

  --shadow: 0 18px 55px rgba(0,0,0,.45);
}

*{ box-sizing:border-box; margin:0; padding:0; }
html,body{ height:100%; }

body{
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Apple Color Emoji","Segoe UI Emoji";
  color: var(--text);
  background:
    radial-gradient(1200px 700px at 20% 10%, rgba(47,123,255,.28), transparent 55%),
    radial-gradient(900px 600px at 80% 20%, rgba(38,198,255,.22), transparent 55%),
    linear-gradient(180deg, var(--bg0), var(--bg1));
  line-height: 1.55;
}

a{ color: inherit; text-decoration: none; }

/* =========================================================
   LAYOUT
   ========================================================= */

.container{
  max-width: 1100px;
  margin: 0 auto;
  padding: 28px 18px;
}

/* =========================================================
   TOPBAR / HEADER
   ========================================================= */

.topbar{
  position: sticky;
  top: 12px;
  z-index: 50;

  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 18px;

  padding: 14px 18px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.04);
  border-radius: 16px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

/* BRAND (logo + title) */
.brand{
  display:flex;
  align-items:center;
  gap: 12px;
  min-width: 260px;
}

.brand-avatar{
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  box-shadow: 0 0 0 2px rgba(255,255,255,0.15);
}

.brand-title{
  font-size: 18px;
  font-weight: 800;
  letter-spacing: .4px;
}

.brand-sub{
  font-size: 12px;
  opacity: .75;
}

/* NAV LINKS */
.nav{
  display:flex;
  gap: 14px;
  align-items:center;

  color: var(--muted);
  font-weight: 700;
  font-size: 14px;
}

.nav a{
  padding: 8px 10px;
  border-radius: 10px;
}

.nav a:hover{
  background: rgba(255,255,255,.06);
  color: var(--text);
}

/* LANGUAGE SWITCH (se estiveres a usar) */
.lang-switch{
  display:flex;
  gap: 8px;
  align-items:center;
}

.lang-switch button{
  padding: 7px 10px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(0,0,0,.18);
  color: var(--text);
  cursor: pointer;
  font-weight: 800;
  font-size: 12px;
}

.lang-switch button:hover{
  border-color: rgba(47,123,255,.55);
  box-shadow: 0 0 0 4px rgba(47,123,255,.12);
}

/* =========================================================
   HERO
   ========================================================= */

.hero{
  margin-top: 18px;
  padding: 34px 18px;
  border-radius: 22px;
  border: 1px solid var(--border);
  background:
    radial-gradient(800px 400px at 20% 30%, rgba(47,123,255,.22), transparent 60%),
    radial-gradient(600px 400px at 80% 30%, rgba(38,198,255,.18), transparent 60%),
    rgba(255,255,255,.03);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.hero h1{
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.12;
}

.subtitle{
  margin-top: 10px;
  color: var(--muted);
  font-size: 16px;
  max-width: 760px;
}

/* se usares uma imagem no HERO com class="hero-poster" */
.hero-poster{
  width: 100%;
  max-width: 520px;   /* <<< controla o tamanho */
  height: auto;
  display: block;
  margin: 22px auto 0;
  border-radius: 14px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.6);
}

/* =========================================================
   SECTIONS / CARDS
   ========================================================= */

.section{
  padding: 26px 0;
}

.section h2{
  font-size: 26px;
  margin-bottom: 14px;
}

.grid{
  margin-top: 18px;
  display:grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 14px;
}

.card{
  grid-column: span 6;
  border-radius: 18px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.04);
  padding: 18px;
  box-shadow: var(--shadow);
}

.card h3{
  font-size: 18px;
  margin-bottom: 10px;
}

.card p{
  color: var(--muted);
}

/* =========================================================
   FOUNDER IMAGES (FIXED SIZES)
   ========================================================= */

/* Foto redonda */
.founder-passport{
  width: 140px;
  height: 140px;
  object-fit: cover;
  border-radius: 50%;
  display: block;
  margin: 0 auto 16px;
  border: 2px solid rgba(255,255,255,0.2);
}

/* Poster (NÃO enorme) */
.founder-poster{
  width: 100%;
  max-width: 520px;   /* <<< baixa aqui se quiseres (ex: 420px) */
  height: auto;
  display: block;
  margin: 18px auto 28px;
  border-radius: 14px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.6);
}

/* =========================================================
   NOTICE / DISCLAIMER
   ========================================================= */

.notice{
  margin-top: 18px;
  border-radius: 18px;
  border: 1px solid rgba(255,120,120,.25);
  background: rgba(255,60,60,.06);
  padding: 18px;
}

.notice h3{ margin-bottom: 8px; }
.notice p{ color: rgba(234,242,255,.85); }

/* =========================================================
   FOOTER
   ========================================================= */

.footer{
  margin: 22px 0 10px;
  color: rgba(234,242,255,.65);
  font-size: 13px;
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  justify-content:space-between;
}

.footer a{
  text-decoration: underline;
  opacity: .9;
}

.footer a:hover{ opacity: 1; }

/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 880px){
  .nav{ display:none; }
  .card{ grid-column: span 12; }

  .brand{ min-width: auto; }
  .topbar{ top: 8px; }

  .brand-avatar{
    width: 44px;
    height: 44px;
  }
   /* HEADER ROW (teu HTML usa .container.nav) */
header .container.nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
}

/* MENU (teu HTML usa nav.menu) */
.menu{
  display:flex;
  align-items:center;
  gap:22px;
  flex-wrap:wrap;
  color: var(--muted);
  font-weight:700;
  font-size:14px;
}

.menu a{
  padding:8px 10px;
  border-radius:10px;
}
.menu a:hover{
  background: rgba(255,255,255,.06);
  color: var(--text);
}
.hero-grid{
  display:grid;
  grid-template-columns: 520px 1fr;
  gap:26px;
  align-items:center;
}

.hero-text p{
  color: var(--muted);
  margin-top: 10px;
  max-width: 680px;
}

@media (max-width: 900px){
  .hero-grid{ grid-template-columns: 1fr; }
}
/* =========================
   FINAL ALIGNMENT — MATCH HTML
   ========================= */

/* HEADER ROW */
header .container.nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
}

/* MENU */
.menu{
  display:flex;
  align-items:center;
  gap:22px;
  flex-wrap:wrap;
  color: var(--muted);
  font-weight:700;
  font-size:14px;
}
.menu a{
  padding:8px 10px;
  border-radius:10px;
}
.menu a:hover{
  background: rgba(255,255,255,.06);
  color: var(--text);
}

/* HERO GRID */
.hero-grid{
  display:grid;
  grid-template-columns: 520px 1fr;
  gap:26px;
  align-items:center;
}

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

/* POSTER — FINAL SIZE */
.founder-poster{
  width:100%;
  max-width:420px;
  height:auto;
  display:block;
  margin:22px auto;
  border-radius:14px;
  box-shadow:0 10px 40px rgba(0,0,0,.6);
}

/* AVATAR HEADER */
.brand-avatar{
  width:48px;
  height:48px;
  border-radius:50%;
  object-fit:cover;
  display:block;
}

/* FOUNDER PASSPORT */
.founder-passport{
  width:140px;
  height:140px;
  object-fit:cover;
  border-radius:50%;
  display:block;
  margin:0 auto 16px;
  border:2px solid rgba(255,255,255,.2);
}
.founder-poster{
  width:100%;
  max-width:300px;   /* 👈 tamanho ideal */
  height:auto;
  display:block;
  margin:20px auto;
  border-radius:14px;
  box-shadow:0 10px 30px rgba(0,0,0,.6);
}
.founder-poster{
  width:100%;
  max-width:180px;   /* 👈 3x menor */
  height:auto;
  display:block;
  margin:14px auto;
  border-radius:12px;
  box-shadow:0 8px 24px rgba(0,0,0,.55);
}
.founder-poster{
  width:100%;
  max-width:50px;   /* 👈 tamanho mini */

}
/* FORCE founder poster size */
.founder-poster{
  max-width: 50px !important;
  width: 50px !important;
  height: auto !important;
  margin: 10px auto !important;
  display: block !important;
}


