* { box-sizing: border-box }
html, body { margin: 0; padding: 0; font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica, Arial, sans-serif; color: #222; background: #fff }
.site-header { position: sticky; top: 0; z-index: 1000; display: flex; align-items: center; justify-content: space-between; padding: 16px 22px; background: linear-gradient(90deg, #ffffff 0%, #fff5e9 10%, #ff7a00 24%, #ff9f40 100%); color: #fff }
.logo a { color: #fff; text-decoration: none; font-weight: 700; letter-spacing: .5px; display: inline-flex; align-items: center }
.logo img { height: 56px; display: block }
.nav { display: flex; gap: 16px }
.nav a { color: #fff; text-decoration: none; padding: 8px 10px; border-radius: 6px }
.nav a:hover { background: rgba(255,255,255,.15) }
.lang-switcher { position: absolute; right: 20px; top: 12px; font-weight: 600 }
.lang-switcher a { color: #fff; text-decoration: none; padding: 2px 6px; border-radius: 4px }
.lang-switcher a.active { background: rgba(255,255,255,.2) }
.actions { display: flex; gap: 12px; align-items: center }
.pill { display: inline-block; padding: 10px 16px; border-radius: 12px; text-decoration: none; font-weight: 700; color: #fff; box-shadow: 0 2px 8px rgba(0,0,0,.15) }
.pill.login { background: #e74c3c }
.pill.join { background: #e74c3c }
.pill.whatsapp { background: #25D366 }
.lang-flag { width: 36px; height: 36px; border-radius: 50%; background: #fff; color: #ff7a00; display: flex; align-items: center; justify-content: center; font-size: 20px; border: 2px solid #ff7a00; box-shadow: 0 2px 8px rgba(0,0,0,.15); cursor: pointer }
.more-toggle { display: none; background: linear-gradient(90deg,#ff7a00,#ff9f40); color: #fff; padding: 10px 14px; border-radius: 12px; font-weight: 700; text-decoration: none; box-shadow: 0 2px 8px rgba(0,0,0,.15); align-items: center; gap: 8px }
.more-toggle:hover { filter: brightness(1.05) }
.more-toggle:active { transform: scale(.98) }
.more-toggle svg { width: 18px; height: 18px; fill: #fff }
.more-backdrop { position: fixed; inset: 0; background: rgba(0,0,0,.35); z-index: 1100; opacity: 0; pointer-events: none; transition: opacity .2s ease }
.more-menu { position: fixed; right: 0; top: 0; height: 100vh; width: 280px; background: #fff; z-index: 1101; box-shadow: -12px 0 30px rgba(0,0,0,.25); transform: translateX(100%); transition: transform .2s ease }
.more-menu .header { display: flex; align-items: center; justify-content: space-between; padding: 12px 16px; border-bottom: 1px solid #eee; font-weight: 800 }
.more-menu .quick-actions { display: flex; gap: 8px; padding: 12px 16px; border-bottom: 1px solid #eee }
.pill.small { padding: 8px 12px; font-size: 14px }
.more-menu .links { display: grid; gap: 8px; padding: 12px 16px }
.more-menu .links a { padding: 10px 12px; border-radius: 8px; text-decoration: none; color: #222; border: 1px solid #eee }
.more-menu .links a:hover { background: #f9f9f9 }
.more-open .more-backdrop { opacity: 1; pointer-events: auto }
.more-open .more-menu { transform: translateX(0) }
.container { max-width: 960px; margin: 24px auto; padding: 0 20px }
.home-banner-wrap { width: 100%; margin: 0; padding: 0 }
.home-banner { position: relative; overflow: hidden; border-radius: 0; height: clamp(220px, 38vw, 420px); box-shadow: 0 4px 12px rgba(0,0,0,.06); background: #ff7a00 }
.home-banner img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; opacity: 0; animation: bannerCycle 15s infinite ease-in-out }
.home-banner img:nth-child(1) { animation-delay: 0s }
.home-banner img:nth-child(2) { animation-delay: 5s }
.home-banner img:nth-child(3) { animation-delay: 10s }
@keyframes bannerCycle { 0% { opacity: 0 } 4% { opacity: 1 } 30% { opacity: 1 } 33% { opacity: 0 } 100% { opacity: 0 } }
.hero { padding: 24px 0 }
.hero h1 { margin: 0 0 8px }
.accent { color: #ff7a00 }
.title-bold { font-weight: 800 }
.text-small { font-size: 14px; line-height: 1.6 }
.card { background: #fff; border: 1px solid #eee; border-radius: 12px; padding: 20px; box-shadow: 0 4px 12px rgba(0,0,0,.06) }
.card + .card { margin-top: 16px }
.footer { margin: 40px 0 20px; text-align: center; color: #666; font-size: 14px }

.site-footer { background: #121212; color: #eaeaea; margin-top: 40px; padding: 32px 20px 20px }
.site-footer a { color: #eaeaea; text-decoration: none }
.footer-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; max-width: 960px; margin: 0 auto }
.footer-col .footer-title { font-weight: 700; margin-bottom: 12px; color: #fff }
.footer-links { display: grid; gap: 8px }
.footer-links a:hover { text-decoration: underline }
.footer-note { border-top: 1px solid #2a2a2a; margin-top: 24px; padding-top: 16px; text-align: center; font-size: 13px; color: #bdbdbd }
.badge { display: inline-block; border: 1px solid #2a2a2a; border-radius: 6px; padding: 4px 8px; margin-right: 6px; font-size: 12px; color: #bdbdbd }
@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr }
}
@media (max-width: 768px) {
  .logo img { height: 44px }
  .site-header { padding: 12px 18px }
}

.faq { padding: 20px }
.faq h2 { margin-top: 0 }
.faq details { border: 1px solid #eee; border-radius: 12px; margin: 12px 0; background: #fff; box-shadow: 0 4px 12px rgba(0,0,0,.04) }
.faq summary { padding: 14px 16px; font-weight: 600; cursor: pointer; list-style: none; position: relative }
.faq summary::-webkit-details-marker { display: none }
.faq .answer { padding: 0 16px 16px; color: #444; line-height: 1.6 }
.faq details[open] summary { border-bottom: 1px solid #eee }

.slogan { text-align: center; font-weight: 800; font-size: clamp(24px, 5vw, 40px); margin: 24px 0; color: #ff7a00 }
.embed { margin-top: 16px; position: relative; overflow: hidden }
.embed iframe { width: 100%; height: 80vh; border: 0; border-radius: 12px; box-shadow: 0 4px 12px rgba(0,0,0,.06); position: relative; z-index: 0; pointer-events: auto }
.embed-mask { position: absolute; top: 0; left: 0; right: 0; height: 56px; background: #fff; border-top-left-radius: 12px; border-top-right-radius: 12px; pointer-events: none; z-index: 1 }
.fallback { margin-top: 12px }
.btn { display: inline-block; background: #ff7a00; color: #fff; text-decoration: none; padding: 10px 14px; border-radius: 8px; font-weight: 600 }
.btn:hover { background: #f06700 }
.btn.join-now { padding: 14px 18px; font-size: 16px }
.
.wa-float { position: fixed; right: 18px; bottom: 84px; width: 56px; height: 56px; border-radius: 50%; background: #25D366; color: #fff; display: flex; align-items: center; justify-content: center; text-decoration: none; z-index: 1102; box-shadow: 0 4px 16px rgba(0,0,0,.2); cursor: pointer }
.wa-float svg { width: 28px; height: 28px; fill: #fff }
@media (max-width: 640px) { .wa-float { width: 52px; height: 52px; bottom: 72px } .wa-float svg { width: 26px; height: 26px } }
.to-top { position: fixed; right: 18px; bottom: 18px; width: 44px; height: 44px; border-radius: 50%; background: #25D366; color: #fff; display: flex; align-items: center; justify-content: center; text-decoration: none; z-index: 1100; box-shadow: none }
.to-top svg { width: 22px; height: 22px; fill: #fff }
@media (max-width: 640px) { .to-top { width: 40px; height: 40px } .to-top svg { width: 20px; height: 20px } }
.lang-backdrop { position: fixed; inset: 0; background: rgba(0,0,0,.4); z-index: 1000; opacity: 0; pointer-events: none; transition: opacity .2s ease }
.lang-dialog { position: fixed; z-index: 1001; left: 50%; top: 50%; transform: translate(-50%, -50%) scale(.96); background: #fff; border-radius: 16px; width: min(520px, 92vw); box-shadow: 0 16px 40px rgba(0,0,0,.25); opacity: 0; pointer-events: none; transition: opacity .2s ease, transform .2s ease }
.lang-dialog .dlg-body { padding: 20px }
.lang-dialog .dlg-title { text-align: center; font-weight: 800; font-size: 22px; margin: 8px 0 16px }
.lang-dialog .flag { width: 80px; height: 80px; border-radius: 50%; background: #fff; border: 3px solid #ff7a00; display: flex; align-items: center; justify-content: center; font-size: 40px; margin: 0 auto 8px }
.lang-list { display: grid; gap: 8px; margin-top: 8px }
.lang-option { display: block; text-align: center; padding: 10px 14px; border-radius: 12px; background: linear-gradient(90deg, #ff7a00, #ff9f40); color: #fff; text-decoration: none; font-weight: 700 }
.lang-close { position: absolute; right: 10px; top: 8px; width: 28px; height: 28px; border-radius: 50%; background: #ff7a00; color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 800; cursor: pointer }
.lang-open .lang-backdrop { opacity: 1; pointer-events: auto }
.lang-open .lang-dialog { opacity: 1; pointer-events: auto; transform: translate(-50%, -50%) scale(1) }
.card.full-frame { padding: 0; border: 0; border-radius: 0; box-shadow: none; margin: 0 }
.card.full-frame h2, .card.full-frame p { padding: 12px 20px }
.card.full-frame .embed { left: 50%; margin-left: -50vw; margin-right: -50vw; width: 100vw; right: 50%; }
.card.full-frame .embed iframe { width: 100vw; height: 100vh; border-radius: 0; box-shadow: none }
.card.full-frame .embed-mask { border-radius: 0; height: 140px }
@media (max-width: 640px) {
  .card.full-frame .embed-mask { height: 120px }
}
@media (max-width: 640px) {
  .home-banner { height: auto; background: transparent }
  .home-banner img { position: static; width: 100%; height: auto; object-fit: contain; object-position: center; opacity: 1; animation: none; display: block }
  .home-banner img:nth-child(n+2) { display: none }
}
.section-title { display: flex; align-items: center; gap: 10px; font-size: 22px; margin: 8px 0 16px; font-weight: 700 }
.section-title .tag { background: #ffe4cc; color: #ff7a00; border: 1px solid #ffd1a3; padding: 4px 8px; border-radius: 999px; font-size: 12px; font-weight: 700 }
.steps { display: grid; grid-template-columns: 1fr; gap: 16px }
@media (min-width: 768px) { .steps.two { grid-template-columns: 1fr 1fr } }
.step { background: #fff; border: 1px solid #eee; border-radius: 12px; padding: 16px; box-shadow: 0 4px 10px rgba(0,0,0,.05) }
.step-header { display: flex; align-items: center; gap: 12px; margin-bottom: 8px }
.step-number { width: 36px; height: 36px; border-radius: 50%; background: #ff7a00; color: #fff; display: inline-flex; align-items: center; justify-content: center; font-weight: 800 }
.step h3 { margin: 0; font-size: 18px }
.step ul { margin: 8px 0 0 24px }
.kicker { background: #f7f7f7; border: 1px dashed #e0e0e0; border-radius: 12px; padding: 16px; font-weight: 600; margin-top: 12px }
.tip { background: #e6f7ff; border: 1px solid #b3e5ff; color: #033c5a; border-radius: 12px; padding: 12px; margin-top: 12px }
.cta-row { display: flex; gap: 10px; margin-top: 10px }
.illustration { margin-top: 12px }
.illustration img { width: 100%; height: auto; border: 1px solid #eee; border-radius: 12px; box-shadow: 0 4px 12px rgba(0,0,0,.06) }
.illustration figcaption { text-align: center; color: #666; font-size: 13px; margin-top: 6px }
.
.feedback { padding: 20px }
.feedback h2 { margin: 0 0 12px }
.feedback-grid { display: grid; grid-template-columns: 1fr; gap: 12px }
@media (min-width: 768px) { .feedback-grid { grid-template-columns: 1fr 1fr } }
.feedback-scroller { overflow: hidden }
.feedback-track { display: flex; gap: 12px; width: max-content; animation: marqueeX 60s linear infinite }
.feedback-scroller:hover .feedback-track { animation-play-state: paused }
.feedback-seq { display: flex; gap: 12px }
.feedback .card { min-width: 280px }
.stars { color: #ffb400; font-weight: 700; letter-spacing: 1px }
@keyframes marqueeX { from { transform: translateX(0) } to { transform: translateX(-50%) } }
.feedback .card .quote { font-style: italic; line-height: 1.6 }
.feedback .card .meta { margin-top: 8px; color: #666; font-size: 13px; font-weight: 600 }
@media (max-width: 768px) {
  .nav { display: none }
  .more-toggle { display: inline-flex; cursor: pointer }
  .pill.login, .pill.whatsapp { display: none }
}
.buy-top { display: grid; gap: 14px }
.date-select { display: flex; align-items: center; gap: 8px; flex-wrap: wrap }
.date-select select { padding: 8px 12px; border: 1px solid #e0e0e0; border-radius: 8px; background: #fff; font-weight: 600; box-shadow: 0 2px 6px rgba(0,0,0,.06) }
.date-select select:hover { border-color: #ffa24d }
.date-select select:focus { outline: none; border-color: #ff7a00; box-shadow: 0 0 0 3px rgba(255,122,0,.15) }
.date-display { background: #ffe4cc; color: #ff7a00; border: 1px solid #ffd1a3; padding: 6px 10px; border-radius: 999px; font-weight: 700 }
@media (min-width: 768px) { .buy-top { grid-template-columns: 1fr 1fr } }
@media (max-width: 640px) {
  .date-select select { min-width: 86px }
  .date-select .date-display { order: 4; margin-top: 4px }
}
.date-list { display: flex; flex-wrap: wrap; gap: 10px }
.date-pill { background: #e74c3c; color: #fff; padding: 10px 14px; border-radius: 12px; text-decoration: none; font-weight: 700; box-shadow: 0 2px 6px rgba(0,0,0,.1) }
.date-pill.secondary { background: #ff7a00 }
.pool-list { display: flex; flex-wrap: wrap; gap: 10px; align-items: center }
.pool-chip { display: inline-flex; align-items: center; gap: 8px; background: #fff; border: 1px solid #eee; border-radius: 12px; padding: 8px 10px; box-shadow: 0 2px 6px rgba(0,0,0,.06); cursor: pointer }
.pool-chip.active { outline: 2px solid #25D366 }
.buy-grid { width: 100%; overflow-x: auto }
.buy-head, .buy-row { display: grid; grid-template-columns: 40px 140px 80px 80px 80px 90px 64px 64px 64px 64px 64px 64px 56px 64px; gap: 8px; align-items: center }
.buy-head { font-weight: 800; color: #333; padding: 8px 0; font-size: 13px }
.buy-row { padding: 6px 0; border-top: 1px solid #f1f1f1 }
.buy-head div { text-align: center }
.buy-head div:nth-child(2) { text-align: left }
.buy-row input[type="text"], .buy-row input[type="number"] { width: 100%; padding: 8px 10px; border: 1px solid #e0e0e0; border-radius: 8px }
.buy-row input[type="checkbox"] { width: 18px; height: 18px; margin: 0 auto }
.buy-row input[type="checkbox"] { width: 18px; height: 18px }
.buy-actions { display: flex; align-items: center; justify-content: center }
.buy-actions .trash { width: 28px; height: 28px; border-radius: 6px; background: #fff; border: 1px solid #eee; display: inline-flex; align-items: center; justify-content: center; cursor: pointer }
.add-row { margin-top: 10px }
.buy-cta { display: flex; gap: 10px; justify-content: flex-end; margin-top: 12px }
.form-grid { display: grid; grid-template-columns: 140px 1fr; gap: 12px 10px; align-items: center }
.form-grid label { font-weight: 600 }
.form-grid input[type="text"], .form-grid input[type="password"] { padding: 10px 12px; border: 1px solid #e0e0e0; border-radius: 8px }
.auth-actions { margin-top: 8px }
.auth-note { margin-top: 8px; color: #555 }
.
.blog-grid { display: grid; grid-template-columns: 1fr; gap: 12px }
@media (min-width: 768px) { .blog-grid { grid-template-columns: 1fr 1fr } }
@media (min-width: 1024px) { .blog-grid { grid-template-columns: 1fr 1fr 1fr } }
.post-card { display: block; background: #fff; border: 1px solid #eee; border-radius: 12px; padding: 14px 16px; box-shadow: 0 4px 10px rgba(0,0,0,.05); text-decoration: none; color: #222 }
.post-card:hover { border-color: #ffd1a3; box-shadow: 0 6px 14px rgba(0,0,0,.08) }
.post-card .title { font-weight: 700; margin: 0 0 6px }
.post-card .desc { color: #555; font-size: 14px }
.feature-card { display: grid; grid-template-columns: 1fr; gap: 12px; align-items: center }
@media (min-width: 768px) { .feature-card { grid-template-columns: 1fr 1fr } }
.feature-card .copy { padding: 8px 12px }
.feature-card .copy .title { font-weight: 800; font-size: 20px; margin: 0 0 8px }
.feature-card .copy .desc { color: #555 }
.feature-card .image img { width: 100%; height: auto; border-radius: 12px; box-shadow: 0 4px 12px rgba(0,0,0,.06) }
.
.article { line-height: 1.75 }
.article .lead { font-size: 16px; color: #444 }
.article h2 { margin: 20px 0 10px; font-size: 20px }
.callout { background: #ffe4cc; border: 1px solid #ffd1a3; color: #5a2a00; border-radius: 12px; padding: 12px 14px; font-weight: 700 }
.note { background: #f7f7f7; border: 1px solid #e6e6e6; border-radius: 12px; padding: 12px 14px }
.checklist { list-style: none; padding-left: 0 }
.checklist li { position: relative; padding-left: 26px; margin: 6px 0 }
.checklist li::before { content: ''; position: absolute; left: 0; top: 2px; width: 16px; height: 16px; background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpolyline points='20 6 9 17 4 12' fill='none' stroke='%2325D366' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center / contain }
.accent { color: #ff7a00; font-weight: 800 }
.cta-image { width: 100%; height: auto; border-radius: 12px; box-shadow: 0 4px 12px rgba(0,0,0,.06); margin: 10px 0 14px }
.table-wrap { overflow-x: auto; margin: 10px 0 14px }
.table { width: 100%; border-collapse: collapse; font-size: 14px }
.table th, .table td { border: 1px solid #eee; padding: 10px 12px; text-align: left }
.table thead th { background: #fff5e9; color: #5a2a00; font-weight: 700 }
.table tbody tr:nth-child(odd) { background: #fafafa }
.badge { display: inline-block; background: #ff7a00; color: #fff; border-radius: 999px; padding: 4px 10px; font-size: 12px; font-weight: 700 }
.auth-actions .btn { display: block; width: 100%; text-align: center; padding: 14px 18px; font-size: 16px }
