
:root {
  --bg: #efeae0;
  --text: #1a1a1a;
  --accent: #941913;
  --muted: rgba(26, 26, 26, 0.72);
  --border: rgba(0, 0, 0, 0.1);
  --card: rgba(255, 255, 255, 0.32);
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  --whatsapp: #25d366;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: var(--bg);
  color: var(--text);
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container { width: min(1280px, calc(100% - 48px)); margin: 0 auto; }
.eyebrow {
  font-size: 12px; text-transform: uppercase; letter-spacing: .3em; color: var(--accent);
}
.section-title, .hero-title, .legal-title {
  margin: 20px 0 0;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  line-height: 1.05;
  font-weight: 600;
  letter-spacing: -0.03em;
}
.hero-title { max-width: 900px; }
.section-description, .hero-text, .legal-copy, .legal-page li {
  font-size: 18px; line-height: 1.8; color: var(--muted);
}
.site-header {
  position: sticky; top: 0; z-index: 50;
  border-bottom: 1px solid var(--border);
  background: rgba(239, 234, 224, 0.9);
  backdrop-filter: blur(16px);
}
.site-header-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 20px 0;
}
.site-logo img { height: 90px; width: auto; object-fit: contain; }
.nav { display: flex; align-items: center; gap: 32px; }
.nav a { font-size: 14px; color: rgba(26,26,26,.72); transition: color .2s ease; }
.nav a:hover, .footer-links a:hover, .contact-link:hover, .legal-page a:hover { color: var(--accent); }
.btn {
  display: inline-flex; align-items: center; justify-content: center; border-radius: 999px;
  padding: 14px 24px; font-size: 14px; font-weight: 600; transition: all .2s ease; cursor: pointer;
}
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { opacity: .9; }
.btn-outline { border: 1px solid var(--accent); color: var(--accent); background: transparent; }
.btn-outline:hover { background: var(--accent); color: #fff; }
.hero {
  position: relative; overflow: hidden; border-bottom: 1px solid var(--border);
  min-height: 86vh; display: flex; align-items: center;
}
.hero-bg, .hero-overlay { position: absolute; inset: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; opacity: .55; animation: heroZoom 20s ease-in-out infinite alternate; }
.hero-overlay { background: linear-gradient(to right, #efeae0, rgba(239,234,224,.78), rgba(239,234,224,.2)); }
.hero-content { position: relative; padding: 80px 0; width: 100%; }
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.hero-text { margin-top: 32px; max-width: 760px; }
.hero-actions { margin-top: 40px; display: flex; flex-wrap: wrap; gap: 16px; }
.section { scroll-margin-top: 120px; border-bottom: 1px solid var(--border); padding: 96px 0; }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; }
.text-stack { display: grid; gap: 28px; font-size: 18px; line-height: 1.8; color: var(--muted); }
.operate-grid { display: grid; grid-template-columns: 0.42fr 1fr; gap: 40px; align-items: start; }
.card-grid-3, .card-grid-4, .card-grid-2, .card-grid-contact { display: grid; gap: 24px; }
.card-grid-3 { grid-template-columns: repeat(3, 1fr); }
.card-grid-4 { grid-template-columns: repeat(4, 1fr); margin-top: 56px; }
.card-grid-2 { grid-template-columns: repeat(2, 1fr); margin-top: 56px; }
.card-grid-contact { grid-template-columns: repeat(3, 1fr); margin-top: 56px; }
.card {
  border: 1px solid var(--border); background: var(--card); box-shadow: var(--shadow);
  border-radius: 24px; padding: 28px;
}
.card h3 { margin: 0; font-size: 1.5rem; font-weight: 500; }
.card p { margin: 16px 0 0; color: var(--muted); line-height: 1.75; }
.step-number, .card-label {
  font-size: .8rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--accent);
}
.network-card { overflow: hidden; padding: 0; }
.network-card img { width: 100%; height: 288px; object-fit: cover; }
.network-card-body { padding: 28px; }
.membership-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.image-frame {
  border: 1px solid var(--border); background: var(--card); padding: 12px;
  border-radius: 28px; box-shadow: var(--shadow); overflow: hidden;
}
.image-frame img { width: 100%; height: 420px; object-fit: cover; border-radius: 20px; }
.site-footer { background: var(--bg); }
.footer-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 48px; padding: 64px 0; }
.footer-title { font-weight: 600; }
.footer-copy, .footer-links { margin-top: 16px; color: var(--muted); line-height: 1.75; }
.footer-links { display: grid; gap: 12px; }
.legal-page { padding: 96px 0; min-height: calc(100vh - 180px); }
.legal-content {
  max-width: 920px; background: rgba(255,255,255,.28); border: 1px solid var(--border);
  border-radius: 28px; padding: 40px; box-shadow: var(--shadow);
}
.legal-meta { margin-top: 16px; color: var(--muted); font-size: 14px; }
.legal-section { margin-top: 32px; }
.legal-section h2 { margin: 0 0 12px; font-size: 1.4rem; }
.legal-page ul { padding-left: 22px; }
.whatsapp-float { position: fixed; right: 20px; bottom: 20px; z-index: 100; }
.whatsapp-expanded {
  display: flex; align-items: center; gap: 12px; background: #fff; border: 1px solid var(--border);
  border-radius: 999px; padding: 12px; box-shadow: 0 12px 30px rgba(0,0,0,.18);
}
.whatsapp-link {
  display: inline-flex; align-items: center; gap: 10px; background: var(--whatsapp); color: #fff;
  border-radius: 999px; padding: 14px 18px; font-size: 14px; font-weight: 600;
}
.whatsapp-minimize, .whatsapp-restore {
  border: 1px solid var(--border); background: #fff; color: rgba(26,26,26,.7); cursor: pointer; transition: all .2s ease;
}
.whatsapp-minimize { width: 44px; height: 44px; border-radius: 999px; }
.whatsapp-restore {
  width: 56px; height: 56px; border-radius: 999px; background: var(--whatsapp); color: #fff;
  border: none; box-shadow: 0 12px 30px rgba(0,0,0,.18);
}
.whatsapp-minimize:hover, .whatsapp-restore:hover, .whatsapp-link:hover { opacity: .92; }
@media (max-width: 1100px) {
  .hero-grid, .two-col, .operate-grid, .membership-grid, .footer-grid, .card-grid-contact { grid-template-columns: 1fr; }
  .card-grid-3, .card-grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 760px) {
  .container { width: min(1280px, calc(100% - 32px)); }
  .nav { display: none; }
  .site-header-inner { flex-wrap: wrap; }
  .card-grid-3, .card-grid-4, .card-grid-2, .card-grid-contact { grid-template-columns: 1fr; }
  .hero { min-height: auto; }
  .hero-content, .section, .legal-page { padding: 72px 0; }
  .legal-content { padding: 28px; }
  .whatsapp-expanded { max-width: calc(100vw - 32px); }
}

@keyframes heroZoom { from { transform: scale(1); } to { transform: scale(1.05); } }
