@import url('https://api.fontshare.com/v2/css?f[]=cabinet-grotesk@800,400,700&f[]=satoshi@500,700&display=swap');

:root {
  --primary: #52b76c; /* Green from logo */
  --secondary: #4854a2; /* Blue from logo */
  --bg-light: #efece1; /* Beige from logo */
  --carvao: #171e19;
  --branco: #ffffff;
  --preto: #1a1a1a;
  --cinza-escuro: #272727;
  --cinza-claro: #e6e6e6;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: 'Satoshi', sans-serif;
  font-weight: 500;
  color: var(--preto);
  background-color: var(--bg-light);
  overflow-x: hidden;
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6, .font-heading {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.05em;
  color: var(--preto);
}

.container { width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 1.25rem; }
@media (min-width: 768px) { .container { padding: 0 2rem; } }

.bg-primary { background-color: var(--primary); border-bottom: 2px solid var(--preto); }
.bg-carvao { background-color: var(--carvao); color: var(--branco); border-bottom: 2px solid var(--preto); }
.bg-light { background-color: var(--bg-light); border-bottom: 2px solid var(--preto); }
.bg-branco { background-color: var(--branco); border-bottom: 2px solid var(--preto); }

.pattern-dots {
  background-image: radial-gradient(rgba(0, 0, 0, 0.08) 2px, transparent 2px);
  background-size: 32px 32px;
}

.text-stroke { -webkit-text-stroke: 2px var(--preto); color: transparent; }

/* Navbar */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; height: 5rem;
  background-color: var(--bg-light); border-bottom: 2px solid var(--preto);
  z-index: 50; display: flex; align-items: center;
}
.nav-container { display: flex; justify-content: space-between; align-items: center; width: 100%; }
.logo-wrapper { display: flex; align-items: center; gap: 0.35rem; text-decoration: none; color: var(--preto); }
@media (min-width: 768px) { .logo-wrapper { gap: 0.75rem; } }
.logo-icon {
  width: 2.5rem; height: 2.5rem;
  border-radius: 0.5rem;
  display: flex; align-items: center; justify-content: center;
  background-color: var(--preto); color: var(--branco);
}
.logo-icon svg { width: 1.5rem; height: 1.5rem; fill: currentColor; }
.logo-text { font-family: 'Cabinet Grotesk', sans-serif; font-weight: 800; font-size: 0.8rem; text-transform: uppercase; letter-spacing: -0.02em; white-space: nowrap; margin-top: 0.1rem; }
@media (min-width: 768px) { .logo-text { font-size: 1.5rem; margin-top: 0; } }
.nav-links { display: none !important; }
.nav-cta { 
  display: inline-flex !important; 
  padding: 0.4rem 0.6rem !important; 
  font-size: 0.75rem !important; 
  box-shadow: 3px 3px 0px 0px var(--preto) !important;
}
@media (min-width: 768px) { 
  .nav-links { display: flex !important; gap: 2rem; } 
  .nav-cta { 
    padding: 0.5rem 1rem !important; 
    font-size: 1rem !important; 
    box-shadow: 6px 6px 0px 0px var(--preto) !important;
  }
}
.nav-links a { font-weight: 700; color: var(--preto); text-decoration: none; font-size: 1.125rem; transition: all 0.2s; }
.nav-links a:hover { text-decoration: underline; text-decoration-thickness: 2px; text-underline-offset: 4px; }

/* Buttons */
.btn-brutal, .btn-brutal-white, .btn-brutal-primary {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 1rem 2rem; font-family: 'Satoshi', sans-serif; font-weight: 700; font-size: 1.125rem;
  border: 2px solid var(--preto); border-radius: 0.5rem;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  text-decoration: none; cursor: pointer; text-align: center;
}
.btn-brutal {
  background-color: var(--preto); color: var(--branco);
  box-shadow: 6px 6px 0px 0px var(--preto);
}
.btn-brutal:hover { transform: translateY(-4px) scale(1.02); box-shadow: 8px 10px 0px 0px var(--preto); filter: brightness(1.2); }

.btn-brutal-white {
  background-color: var(--branco); color: var(--preto);
  box-shadow: 4px 4px 0px 0px var(--preto);
}
.btn-brutal-white:hover { transform: translateY(-4px) scale(1.02); box-shadow: 6px 8px 0px 0px var(--preto); filter: brightness(0.95); }

.btn-brutal-primary {
  background-color: var(--primary); color: var(--preto);
  box-shadow: 6px 6px 0px 0px var(--preto);
}
.btn-brutal-primary:hover { transform: translateY(-4px) scale(1.02); box-shadow: 8px 10px 0px 0px var(--preto); filter: brightness(1.15); }

/* Layout Utils */
.pt-32 { padding-top: 6rem; }
@media (min-width: 768px) { .pt-32 { padding-top: 8rem; } }

.py-20 { padding-top: 3.5rem; padding-bottom: 3.5rem; }
@media (min-width: 768px) { .py-20 { padding-top: 5rem; padding-bottom: 5rem; } }

.py-24 { padding-top: 4rem; padding-bottom: 4rem; }
@media (min-width: 768px) { .py-24 { padding-top: 6rem; padding-bottom: 6rem; } }

.pb-24 { padding-bottom: 4rem; }
@media (min-width: 768px) { .pb-24 { padding-bottom: 6rem; } }
.mb-2 { margin-bottom: 0.5rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-8 { margin-bottom: 2rem; }

.grid-2 { display: grid; grid-template-columns: 1fr; gap: 4rem; align-items: center; }
@media (min-width: 1024px) { .grid-2 { grid-template-columns: 1fr 1fr; } }
.grid-3 { display: grid; grid-template-columns: 1fr; gap: 2rem; }
@media (min-width: 768px) { .grid-3 { grid-template-columns: repeat(3, 1fr); } }
.grid-2-alt { display: grid; grid-template-columns: 1fr; gap: 2rem; }
@media (min-width: 768px) { .grid-2-alt { grid-template-columns: repeat(2, 1fr); } }

/* Hero */
.hero-badge {
  display: inline-flex; background-color: var(--primary); color: var(--preto); border: 2px solid var(--preto);
  padding: 0.5rem 1.25rem; border-radius: 9999px; font-weight: 700; font-size: 0.875rem; margin-bottom: 2rem;
  box-shadow: 2px 2px 0px var(--preto);
}
.hero-title { font-size: 2.25rem; margin-bottom: 1rem; }
@media (min-width: 768px) { .hero-title { font-size: 4.5rem; margin-bottom: 1.5rem; } }
.hero-desc { font-size: 1.125rem; margin-bottom: 2rem; font-weight: 500; max-width: 600px; }
@media (min-width: 768px) { .hero-desc { font-size: 1.25rem; margin-bottom: 2.5rem; } }
.hero-buttons { display: flex; gap: 1rem; flex-direction: column; }
@media (min-width: 768px) { .hero-buttons { flex-direction: row; flex-wrap: wrap; } }

/* WP Mockup */
.wp-mockup {
  background-color: #efeae2; border: 2px solid var(--preto); border-radius: 1rem;
  overflow: hidden; display: flex; flex-direction: column; height: auto; padding-bottom: 1rem;
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0h20v20H0V0zm10 17.5a7.5 7.5 0 100-15 7.5 7.5 0 000 15z' fill='%23d1cec5' fill-opacity='0.4' fill-rule='evenodd'/%3E%3C/svg%3E");
}
@media (min-width: 768px) { .wp-mockup { height: 450px; padding-bottom: 0; } }
.wp-header {
  background-color: var(--carvao); padding: 1rem; display: flex; align-items: center; gap: 1rem; border-bottom: 2px solid var(--preto); color: var(--branco);
}
.wp-avatar { width: 2.5rem; height: 2.5rem; background-color: var(--cinza-claro); border-radius: 50%; min-width: 2.5rem; }
.wp-msg-client {
  background-color: var(--branco); border: 2px solid var(--preto); border-radius: 0.75rem 0.75rem 0.75rem 0;
  padding: 0.875rem; margin: 1rem 1rem 0.5rem 1rem; max-width: 85%; font-size: 0.875rem;
  box-shadow: 2px 2px 0px var(--preto);
}
@media (min-width: 768px) { .wp-msg-client { padding: 1rem; margin: 1.5rem 1.5rem 0.5rem 1.5rem; max-width: 80%; font-size: 1rem; } }
.wp-msg-me {
  background-color: #dcf8c6; border: 2px solid var(--preto); border-radius: 0.75rem 0.75rem 0 0.75rem;
  padding: 0.875rem; margin: 0.5rem 1rem 1.4rem auto; max-width: 85%; font-size: 0.875rem;
  box-shadow: 2px 2px 0px var(--preto);
}
@media (min-width: 768px) { .wp-msg-me { padding: 1rem; margin: 0.5rem 1.5rem 1.5rem auto; max-width: 80%; font-size: 1rem; } }
.wp-time { font-size: 0.75rem; color: #666; text-align: right; margin-top: 0.5rem; }

/* Social Proof Stats Bar */
.stats-bar {
  display: flex; flex-direction: column; gap: 2rem; padding: 3rem 0;
}
@media (min-width: 768px) {
  .stats-bar { flex-direction: row; justify-content: space-around; text-align: center; }
}
.stat-item { display: flex; flex-direction: column; align-items: center; }
.stat-number { font-family: 'Cabinet Grotesk', sans-serif; font-size: 2.5rem; font-weight: 800; color: var(--primary); -webkit-text-stroke: 1px var(--preto); }
@media (min-width: 768px) { .stat-number { font-size: 3rem; } }
.stat-label { font-weight: 700; font-size: 1.125rem; }

/* Section Generic */
.section-title { font-size: 2rem; text-align: center; margin-bottom: 2rem; }
@media(min-width: 768px) { .section-title { font-size: 3.5rem; margin-bottom: 3rem; } }

/* Cards & Grid Items */
/* Cards & Grid Items */
.card-brutal {
  background-color: var(--branco); border: 2px solid var(--preto); border-radius: 1rem; padding: 1.5rem;
}
@media (min-width: 768px) { .card-brutal { padding: 2.5rem; } }

.card-feature {
  background-color: var(--bg-light); color: var(--preto); border: 2px solid var(--preto); border-radius: 1rem; padding: 1.5rem;
  display: flex; flex-direction: column;
}
@media (min-width: 768px) { .card-feature { padding: 2rem; } }

.card-feature-icon {
  width: 3.5rem; height: 3.5rem; background-color: var(--primary); border: 2px solid var(--preto); border-radius: 0.5rem;
  display: flex; align-items: center; justify-content: center; margin-bottom: 1.5rem;
}

/* Problema vs Solucao */
.card-problem { background-color: var(--cinza-claro); border: 4px dashed #999; border-radius: 1rem; padding: 1.5rem; }
@media (min-width: 768px) { .card-problem { padding: 3rem; } }

.card-solution { background-color: var(--primary); border: 2px solid var(--preto); border-radius: 1rem; padding: 1.5rem; }
@media (min-width: 768px) { .card-solution { padding: 3rem; } }

.list-item { display: flex; align-items: flex-start; gap: 0.75rem; margin-bottom: 1rem; font-size: 1rem; font-weight: 700; }
@media (min-width: 768px) { .list-item { align-items: center; gap: 1rem; margin-bottom: 1.5rem; font-size: 1.125rem; } }
.icon-x { display: flex; align-items: center; justify-content: center; width: 2rem; min-width: 2rem; height: 2rem; border-radius: 50%; border: 2px solid var(--preto); font-weight: bold; background-color: #ff5f57; color: var(--branco); }
.icon-check { display: flex; align-items: center; justify-content: center; width: 2rem; min-width: 2rem; height: 2rem; border-radius: 50%; border: 2px solid var(--preto); font-weight: bold; background-color: var(--branco); color: var(--preto); }

/* How It Works */
.flow-container { display: flex; flex-direction: column; gap: 3rem; position: relative; }
@media (min-width: 768px) { .flow-container { flex-direction: row; justify-content: space-between; align-items: flex-start; } }
.flow-step { display: flex; flex-direction: column; align-items: center; text-align: center; z-index: 10; flex: 1; }
.flow-circle {
  width: 5rem; height: 5rem; background-color: var(--primary); border: 2px solid var(--preto); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-family: 'Cabinet Grotesk', sans-serif; font-size: 2.5rem; font-weight: 800; margin-bottom: 1.5rem;
}
.flow-line { display: none; }
@media (min-width: 768px) { .flow-line { display: block; position: absolute; top: 2.5rem; left: 15%; width: 70%; height: 2px; border-bottom: 2px dashed var(--preto); z-index: 0; } }

/* Persona */
.persona-card { background-color: var(--secondary); color: var(--branco); padding: 1.5rem; border: 2px solid var(--preto); border-radius: 1rem; }
@media (min-width: 768px) { .persona-card { padding: 3rem; } }

/* Testimonials */
.stars { color: #f59e0b; font-size: 1.25rem; margin-bottom: 1rem; letter-spacing: 2px; }
.client-name { font-family: 'Cabinet Grotesk', sans-serif; font-weight: 800; font-size: 1.25rem; }

/* Interactive Form */
.form-wrapper { background-color: var(--branco); border: 2px solid var(--preto); border-radius: 1rem; padding: 1.5rem; max-width: 700px; margin: 0 auto; text-align: left; }
@media (min-width: 768px) { .form-wrapper { padding: 2.5rem; } }
.form-step { display: none; animation: fadeIn 0.3s ease-in-out; }
.form-step.active { display: block; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

.form-label { display: block; font-family: 'Cabinet Grotesk', sans-serif; font-weight: 800; font-size: 1.25rem; margin-bottom: 0.75rem; }
@media (min-width: 768px) { .form-label { font-size: 1.5rem; margin-bottom: 1rem; } }

.form-input, .form-select {
  width: 100%; padding: 1rem; font-family: 'Satoshi', sans-serif; font-size: 1rem; font-weight: 500;
  border: 2px solid var(--preto); border-radius: 0.5rem; margin-bottom: 1.5rem; background-color: var(--bg-light);
  box-shadow: inset 4px 4px 0px rgba(0,0,0,0.03); transition: all 0.2s;
}
@media (min-width: 768px) { .form-input, .form-select { padding: 1.25rem; font-size: 1.125rem; margin-bottom: 2rem; } }
.form-input:focus, .form-select:focus { outline: none; border-color: var(--primary); background-color: var(--branco); box-shadow: 4px 4px 0px var(--primary); }
.step-indicator { font-weight: 700; color: #666; margin-bottom: 1rem; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 1px; }
.urgency-badge { display: inline-flex; align-items: center; gap: 0.5rem; background-color: #fee2e2; color: #b91c1c; padding: 0.5rem 1rem; border: 2px solid var(--preto); border-radius: 0.5rem; font-weight: 700; font-size: 0.75rem; margin-bottom: 1.5rem; }

/* Floating WS */
.floating-wp {
  position: fixed; bottom: 2rem; right: 2rem; width: 4rem; height: 4rem; background-color: #25D366; color: white;
  border-radius: 50%; display: flex; align-items: center; justify-content: center; border: 2px solid var(--preto);
  box-shadow: 4px 4px 0px var(--preto); z-index: 100; transition: all 0.2s; text-decoration: none;
}
.floating-wp:hover { transform: translate(4px, 4px); box-shadow: 0px 0px 0px var(--preto); }
.floating-wp svg { width: 2rem; height: 2rem; fill: currentColor; }

/* Footer */
.footer { background-color: var(--carvao); color: var(--branco); padding: 4rem 0 2rem 0; border-top: 2px solid var(--preto); }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; margin-bottom: 3rem; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr; gap: 3rem; margin-bottom: 4rem; } }
.footer-title { font-family: 'Cabinet Grotesk', sans-serif; font-weight: 800; font-size: 1.5rem; margin-bottom: 1.5rem; color: var(--branco); }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 1rem; }
.footer-links a { color: #a1a1aa; text-decoration: none; font-weight: 500; transition: color 0.2s; }
.footer-links a:hover { color: var(--primary); }
.footer-bottom { border-top: 1px solid #333; padding-top: 2rem; text-align: center; color: #888; font-size: 0.875rem; }
