:root{
  --bg:#f5ecd3;
  --card:#ffffff;
  --text:#2c2416;
  --muted:#6b5d47;
  --accent:#c9a961;
  --border:rgba(0,0,0,.12);
  --shadow: 0 18px 40px rgba(0,0,0,.08);
  --radius: 18px;
  --max: 1000px;
}
*{box-sizing:border-box}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  color:var(--text);
  background:#f5ecd3;
  display:flex;
  flex-direction:column;
  min-height:100vh;
  position:relative;
}
body::before{
  content:'';
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background-image:url('background.jpeg');
  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
  filter:blur(4px);
  z-index:-1;
}
a{color:inherit}
.wrap{max-width:var(--max); margin:0 auto; padding:24px}
header .wrap{padding:8px 24px}
header{
  position:sticky; top:0; z-index:50;
  backdrop-filter: blur(10px);
  background: rgba(255,255,255,.85);
  border-bottom: 1px solid var(--border);
}
.nav{display:flex; align-items:center; justify-content:space-between; gap:12px; padding:4px 0}
.brand{display:flex; align-items:center; gap:8px; text-decoration:none}
.logo{
  width:32px; height:32px; border-radius:8px;
  background: rgba(0,0,0,.04);
  border: 1px solid var(--border);
  display:grid; place-items:center;
  overflow:hidden;
  font-weight:800;
  color:var(--accent);
  letter-spacing:.04em;
}
.logo img{width:100%; height:100%; object-fit:cover}
.brand h1{font-size:13px; margin:0; letter-spacing:.10em; line-height:1.2}
.brand span{display:block; font-size:10px; color:var(--muted); line-height:1.2}
.links{display:flex; gap:10px; flex-wrap:wrap}
.links a{
  text-decoration:none;
  padding:4px 10px;
  border-radius:999px;
  border:1px solid var(--border);
  color:var(--muted);
  background: rgba(0,0,0,.03);
  font-size:13px;
}
.links a:hover{color:var(--text); border-color: rgba(201,169,97,.45); background: rgba(0,0,0,.06)}
.hero{
  padding:48px 0 22px;
  display:grid;
  grid-template-columns: 1fr;
  gap:14px;
  align-items:center;
}
.heroCard{
  display:grid;
  grid-template-columns: 1fr 1.2fr;
  gap:22px;
  align-items:center;
}
.heroLogoCard{
  display:flex;
  justify-content:center;
  align-items:center;
}
.heroLogoCard img{
  max-width:100%;
  width:100%;
  height:auto;
  display:block;
}
.heroMembershipCard{
  grid-column: 1 / -1;
  display:grid;
  grid-template-columns: 1fr;
  gap:22px;
}
@media (max-width: 900px){ 
  .hero{
    padding-top:34px;
  }
  .heroCard{
    grid-template-columns: 1fr;
  }
  .heroLogoCard{
    order: -1;
  }
  .heroMembershipCard{
    grid-column: 1;
    grid-template-columns: 1fr;
  }
}
.card{
  border: 1px solid var(--border);
  background: rgba(255,255,255,.7225);
  border-radius: var(--radius);
  padding:22px;
  box-shadow: var(--shadow);
}
.kicker{
  display:inline-flex; gap:8px; align-items:center;
  padding:8px 12px;
  border: 1px solid rgba(201,169,97,.35);
  background: rgba(201,169,97,.15);
  border-radius: 999px;
  color: var(--muted);
  font-size: 12px;
}
.kicker b{color:var(--text)}
h2{margin:12px 0 10px; font-size:42px; line-height:1.05; letter-spacing:.02em}
@media (max-width: 520px){ h2{font-size:32px} }
p{margin:0; color:var(--muted); line-height:1.5}
.ctaRow{display:flex; gap:10px; flex-wrap:wrap; margin-top:16px}
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:12px 14px;
  border-radius: 14px;
  border: 1px solid var(--border);
  text-decoration:none;
  background: rgba(0,0,0,.04);
  color: var(--text);
  font-weight: 650;
}
.btn:hover{background: rgba(0,0,0,.08)}
.btnPrimary{
  border-color: #2d8659;
  background: #2d8659;
  color: #ffffff;
}
.btnPrimary:hover{background: #256b4a; border-color: #256b4a}
.mini{font-size:12px; color:var(--muted)}
main{flex:1; display:flex; flex-direction:column}
section{padding:18px 0}
.grid2{display:grid; grid-template-columns:1fr 1fr; gap:14px}
@media (max-width: 900px){ .grid2{grid-template-columns:1fr} }
.list{margin:12px 0 0; padding:0; list-style:none; display:grid; gap:10px}
.list li{
  padding:12px;
  border:1px solid var(--border);
  border-radius: 14px;
  background: rgba(0,0,0,.04);
  display:flex; justify-content:space-between; gap:10px; flex-wrap:wrap;
  color: var(--text);
}
.tag{
  color: var(--muted);
  border: 1px solid var(--border);
  background: rgba(0,0,0,.04);
  padding:4px 10px;
  border-radius: 999px;
  font-size: 12px;
  white-space:nowrap;
}
footer{
  border-top:1px solid rgba(0,0,0,.15);
  padding:12px 0;
  color:#ffffff;
  margin-top:auto;
  width:100%;
  background:rgba(26,90,63,.85);
  backdrop-filter:blur(8px);
  z-index:10;
}
footer .wrap{
  padding:10px 24px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  flex-wrap:wrap;
  gap:10px;
}
footer a{
  color:#ffffff;
  text-decoration:none;
  transition:color 0.2s ease;
}
footer a.footer-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:6px;
  padding:8px 12px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.3);
  background:rgba(255,255,255,.08);
  color:#ffffff;
  font-size:12px;
  letter-spacing:0.01em;
  transition:all 0.2s ease;
}
footer a.footer-btn:hover{
  color:#ffffff;
  background:rgba(255,255,255,.15);
  border-color:rgba(255,255,255,.5);
  text-decoration:none;
}
footer .mini{
  color:rgba(255,255,255,.95);
  display:flex;
  align-items:center;
  line-height:1.4;
  font-size:12px;
  letter-spacing:0.02em;
  font-weight:400;
}
.whatsapp-icon,
.email-icon{
  display:inline-block;
  width:16px;
  height:16px;
  flex-shrink:0;
  opacity:0.9;
}
.hr{height:1px; background:var(--border); margin:12px 0}
input, textarea{
  width:100%;
  margin:6px 0 12px;
  padding:12px 12px;
  border-radius:14px;
  border:1px solid var(--border);
  background:#ffffff;
  color:var(--text);
  resize:vertical;
}
input:focus, textarea:focus{
  outline:none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(201,169,97,.1);
}
.modal{
  display:none;
  position:fixed;
  top:0;
  left:0;
  right:0;
  bottom:0;
  z-index:100;
  background: rgba(0,0,0,.5);
  backdrop-filter: blur(4px);
  align-items:center;
  justify-content:center;
  padding:24px;
  overflow-y:auto;
}
.modal.active{
  display:flex;
}
.modalContent{
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding:28px;
  box-shadow: var(--shadow);
  max-width:600px;
  width:100%;
  position:relative;
  max-height:90vh;
  overflow-y:auto;
}
.modalClose{
  position:absolute;
  top:16px;
  right:16px;
  width:32px;
  height:32px;
  border:none;
  background: rgba(0,0,0,.04);
  border-radius:8px;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:center;
  color:var(--text);
  font-size:20px;
  line-height:1;
  padding:0;
}
.modalClose:hover{
  background: rgba(0,0,0,.1);
}

