/* TudoAqui Standalone Site - Styles */
:root {
  --red: #D62828;
  --gold: #FCBF49;
  --teal: #0D9488;
  --dark: #0A0A0A;
  --purple: #9333EA;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', -apple-system, sans-serif; background: var(--dark); color: #fff; line-height: 1.6; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container-sm { max-width: 800px; }

/* NAV */
#navbar { position: fixed; top: 0; width: 100%; z-index: 100; background: rgba(10,10,10,0.9); backdrop-filter: blur(12px); border-bottom: 1px solid rgba(255,255,255,0.05); }
.nav-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; height: 64px; display: flex; align-items: center; justify-content: space-between; }
.logo { font-size: 24px; font-weight: 900; color: #fff; text-decoration: none; }
.logo span { color: var(--red); }
.nav-links { display: flex; gap: 24px; }
.nav-links a { color: rgba(255,255,255,0.5); text-decoration: none; font-size: 14px; font-weight: 500; transition: color 0.2s; }
.nav-links a:hover { color: #fff; }
.nav-actions { display: flex; gap: 8px; }
.mobile-toggle { display: none; background: none; border: none; color: #fff; font-size: 20px; cursor: pointer; }

/* BUTTONS */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 10px 24px; border-radius: 12px; font-weight: 700; font-size: 14px; text-decoration: none; transition: all 0.2s; cursor: pointer; border: none; }
.btn-primary { background: var(--red); color: #fff; }
.btn-primary:hover { background: #b52222; }
.btn-outline { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,0.2); }
.btn-outline:hover { background: rgba(255,255,255,0.1); }
.btn-ghost { background: transparent; color: #fff; }
.btn-ghost:hover { background: rgba(255,255,255,0.1); }
.btn-lg { padding: 16px 32px; font-size: 16px; }

/* HERO */
.hero { min-height: 100vh; display: flex; align-items: center; position: relative; padding-top: 64px; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; background: url('https://images.pexels.com/photos/16337695/pexels-photo-16337695.jpeg?auto=compress&cs=tinysrgb&dpr=2&h=650&w=940') center/cover; opacity: 0.15; }
.hero::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to bottom, var(--dark), rgba(10,10,10,0.8), var(--dark)); }
.hero-content { position: relative; z-index: 2; max-width: 1200px; margin: 0 auto; padding: 60px 24px; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(214,40,40,0.15); color: var(--red); padding: 8px 16px; border-radius: 99px; font-size: 14px; font-weight: 700; margin-bottom: 24px; }
.hero h1 { font-size: clamp(40px, 6vw, 72px); font-weight: 900; line-height: 0.95; margin-bottom: 24px; }
.hero h1 span { color: var(--red); }
.hero-text > p { font-size: 18px; color: rgba(255,255,255,0.5); max-width: 480px; margin-bottom: 32px; }
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-checks { display: flex; gap: 20px; margin-top: 24px; font-size: 13px; color: rgba(255,255,255,0.4); }
.hero-checks i { color: #34d399; margin-right: 4px; }

/* Phone Frame */
.hero-visual { display: flex; justify-content: center; position: relative; }
.phone-frame { width: 280px; height: 480px; background: linear-gradient(135deg, rgba(214,40,40,0.2), rgba(147,51,234,0.2)); border-radius: 40px; border: 1px solid rgba(255,255,255,0.1); padding: 12px; }
.phone-screen { width: 100%; height: 100%; background: #1a1a1a; border-radius: 32px; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.phone-logo { font-size: 28px; font-weight: 900; }
.phone-logo span { color: var(--red); }
.phone-sub { color: rgba(255,255,255,0.4); font-size: 12px; margin: 4px 0 24px; }
.phone-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; padding: 0 24px; width: 100%; }
.phone-module { background: rgba(255,255,255,0.05); border-radius: 12px; padding: 12px; text-align: center; }
.phone-module i { font-size: 18px; }
.phone-module span { display: block; font-size: 11px; color: rgba(255,255,255,0.5); margin-top: 4px; }
.float-badge { position: absolute; padding: 8px 16px; border-radius: 12px; font-size: 13px; font-weight: 700; white-space: nowrap; }
.float-1 { bottom: 20px; right: -20px; background: var(--teal); color: #fff; animation: bounce 3s infinite; }
.float-2 { top: 80px; left: -20px; background: var(--gold); color: #1a1a1a; animation: bounce 3s infinite 1.5s; }
@keyframes bounce { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

/* STATS */
.stats { padding: 40px 0; border-top: 1px solid rgba(255,255,255,0.05); border-bottom: 1px solid rgba(255,255,255,0.05); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; text-align: center; }
.stat i { font-size: 20px; color: var(--red); margin-bottom: 8px; }
.stat h3 { font-size: 32px; font-weight: 900; }
.stat p { font-size: 13px; color: rgba(255,255,255,0.4); }

/* SECTIONS */
.section { padding: 96px 0; }
.section-alt { background: rgba(255,255,255,0.02); }
.section-header { text-align: center; margin-bottom: 60px; }
.section-header .label { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; }
.section-header h2 { font-size: clamp(28px, 4vw, 48px); font-weight: 900; margin-top: 8px; }
.section-header > p { color: rgba(255,255,255,0.5); max-width: 600px; margin: 16px auto 0; }

/* FEATURES */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.feature-card { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.05); border-radius: 16px; padding: 24px; transition: background 0.2s; }
.feature-card:hover { background: rgba(255,255,255,0.06); }
.feature-icon { width: 48px; height: 48px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 20px; margin-bottom: 16px; }
.feature-card .tag { font-size: 11px; color: rgba(255,255,255,0.3); background: rgba(255,255,255,0.05); padding: 2px 8px; border-radius: 6px; float: right; margin-top: -40px; }
.feature-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.feature-card p { font-size: 14px; color: rgba(255,255,255,0.5); }

/* STEPS */
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.step { position: relative; }
.step-num { position: absolute; top: -8px; right: calc(50% - 40px); width: 28px; height: 28px; background: var(--red); border-radius: 99px; color: #fff; font-size: 11px; font-weight: 900; display: flex; align-items: center; justify-content: center; }
.step i { font-size: 28px; color: var(--red); background: rgba(214,40,40,0.1); width: 64px; height: 64px; border-radius: 16px; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; }
.step h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.step p { font-size: 13px; color: rgba(255,255,255,0.5); }

/* TESTIMONIALS */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.testimonial { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.05); border-radius: 16px; padding: 24px; }
.quote-icon { color: rgba(252,191,73,0.3); font-size: 20px; margin-bottom: 12px; }
.testimonial p { font-size: 14px; color: rgba(255,255,255,0.7); margin-bottom: 16px; line-height: 1.6; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.avatar { width: 40px; height: 40px; background: linear-gradient(135deg, var(--red), var(--gold)); border-radius: 99px; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 13px; }
.testimonial-author strong { display: block; font-size: 14px; }
.testimonial-author span { font-size: 12px; color: rgba(255,255,255,0.4); }
.stars { margin-top: 12px; color: var(--gold); font-size: 12px; }

/* PRICING */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; max-width: 900px; margin: 0 auto; }
.price-card { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.05); border-radius: 16px; padding: 24px; position: relative; }
.price-card.popular { background: linear-gradient(135deg, var(--red), rgba(214,40,40,0.7)); border-color: var(--red); }
.popular-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--gold); color: #1a1a1a; font-size: 11px; font-weight: 700; padding: 4px 12px; border-radius: 99px; }
.price-card h3 { font-size: 20px; font-weight: 700; }
.price { font-size: 36px; font-weight: 900; margin: 16px 0; }
.price span { font-size: 14px; font-weight: 400; color: rgba(255,255,255,0.4); }
.price-card ul { list-style: none; margin: 0 0 20px; }
.price-card li { font-size: 14px; padding: 6px 0; color: rgba(255,255,255,0.7); }
.price-card li i { color: #34d399; margin-right: 8px; font-size: 12px; }
.popular li i { color: rgba(255,255,255,0.8); }
.price-card .btn { width: 100%; justify-content: center; }

/* TEAM */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; max-width: 700px; margin: 0 auto; }
.team-card { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.05); border-radius: 16px; padding: 24px; text-align: center; }
.team-avatar { width: 64px; height: 64px; background: linear-gradient(135deg, var(--red), rgba(214,40,40,0.5)); border-radius: 99px; display: flex; align-items: center; justify-content: center; font-weight: 900; font-size: 18px; margin: 0 auto 12px; }
.team-card h4 { font-size: 14px; font-weight: 700; }
.team-card p { font-size: 12px; color: var(--gold); font-weight: 600; margin-top: 4px; }

/* ROADMAP */
.roadmap-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.roadmap-card { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.05); border-radius: 16px; padding: 20px; }
.rm-dot { width: 8px; height: 8px; border-radius: 99px; margin-bottom: 12px; }
.done .rm-dot { background: #34d399; } .done .rm-phase { color: #34d399; }
.current .rm-dot { background: var(--gold); } .current .rm-phase { color: var(--gold); }
.next .rm-dot { background: var(--red); } .next .rm-phase { color: var(--red); }
.future .rm-dot { background: rgba(255,255,255,0.2); } .future .rm-phase { color: rgba(255,255,255,0.4); }
.rm-phase { font-size: 12px; font-weight: 700; }
.roadmap-card h3 { font-size: 16px; font-weight: 700; margin: 4px 0 12px; }
.roadmap-card ul { list-style: none; }
.roadmap-card li { font-size: 12px; color: rgba(255,255,255,0.5); padding: 3px 0; }
.roadmap-card li::before { content: '›'; margin-right: 6px; color: rgba(255,255,255,0.2); }

/* FAQ */
.faq-list { display: flex; flex-direction: column; gap: 8px; }
.faq-item { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.05); border-radius: 12px; overflow: hidden; }
.faq-question { width: 100%; display: flex; justify-content: space-between; align-items: center; padding: 16px 20px; background: none; border: none; color: #fff; font-weight: 600; font-size: 14px; cursor: pointer; text-align: left; }
.faq-question i { transition: transform 0.3s; color: rgba(255,255,255,0.3); }
.faq-question.active i { transform: rotate(180deg); }
.faq-answer { padding: 0 20px 16px; font-size: 14px; color: rgba(255,255,255,0.5); display: none; }
.faq-answer.show { display: block; }

/* CONTACT */
.contact-info { display: flex; flex-direction: column; gap: 20px; }
.contact-item { display: flex; gap: 16px; align-items: flex-start; }
.contact-item i { width: 40px; height: 40px; background: rgba(214,40,40,0.1); color: var(--red); border-radius: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-item strong { display: block; font-size: 14px; margin-bottom: 2px; }
.contact-item p { font-size: 13px; color: rgba(255,255,255,0.5); }

/* CTA */
.cta-section { padding: 96px 0; }
.cta-section h2 { font-size: clamp(28px, 4vw, 48px); font-weight: 900; margin-bottom: 16px; }
.cta-section p { color: rgba(255,255,255,0.5); font-size: 18px; max-width: 600px; margin: 0 auto 32px; }

/* FOOTER */
footer { border-top: 1px solid rgba(255,255,255,0.05); padding: 60px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-grid p, .footer-grid small { color: rgba(255,255,255,0.4); font-size: 13px; margin-top: 8px; display: block; }
.footer-grid h4 { font-size: 14px; font-weight: 700; margin-bottom: 12px; }
.footer-grid a { display: block; color: rgba(255,255,255,0.4); text-decoration: none; font-size: 13px; padding: 3px 0; }
.footer-grid a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.05); padding-top: 20px; text-align: center; }
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.3); }

/* MOBILE */
@media (max-width: 768px) {
  .nav-links, .nav-actions { display: none; }
  .mobile-toggle { display: block; }
  .hero-content { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { display: none; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .features-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .roadmap-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-btns { flex-direction: column; }
  .hero-checks { flex-direction: column; gap: 8px; }
}
