:root {
  --bg: #090909;
  --bg-soft: #111111;
  --bg-card: #151515;
  --orange: #ff6a33;
  --orange-dark: #d94812;
  --text: #ffffff;
  --muted: #a7a7a7;
  --line: rgba(255, 255, 255, 0.08);
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  min-height: 82px;
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 0 32px;
  background: rgba(9, 9, 9, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.brand-icon {
  font-size: 30px;
}

.brand-text {
  display: flex;
  align-items: baseline;
  gap: 5px;
  font-size: 20px;
  letter-spacing: -0.5px;
}

.brand-text strong {
  font-weight: 800;
  color: #fff;
}

.brand-text em {
  font-style: normal;
  font-weight: 800;
  color: var(--orange);
}

.nav {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-left: auto;
}

.nav > a {
  position: relative;
  color: #d7d7d7;
  font-size: 14px;
  font-weight: 600;
  transition: 0.25s;
}

.nav > a:hover,
.nav > a.active {
  color: #fff;
}

.nav > a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 0;
  height: 2px;
  background: var(--orange);
  transition: 0.25s;
}

.nav > a:hover::after,
.nav > a.active::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.link-login {
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 12px;
}

.link-login:hover {
  color: var(--orange);
}

.menu-toggle {
  display: none;
  margin-left: auto;
  border: 1px solid var(--line);
  background: #151515;
  color: #fff;
  width: 46px;
  height: 46px;
  border-radius: 10px;
  font-size: 22px;
  cursor: pointer;
}

.mobile-actions {
  display: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  border-radius: 10px;
  padding: 14px 22px;
  font-weight: 700;
  border: 1px solid transparent;
  transition: 0.25s;
  cursor: pointer;
}

.btn strong,
.btn small {
  display: block;
}

.btn small {
  font-weight: 500;
  opacity: 0.85;
}

.btn-primary {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 10px 30px rgba(255, 106, 51, 0.18);
}

.btn-primary:hover {
  background: #ff7b4b;
  transform: translateY(-2px);
}

.btn-outline {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
}

.btn-outline:hover {
  border-color: var(--orange);
  color: var(--orange);
  transform: translateY(-2px);
}

.btn.small {
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 14px;
}

.btn-login {
  border: 1px solid #ff6a33;
  color: #fff;
  padding: 12px 18px;
  border-radius: 8px;
}

.btn-cadastro {
  background: #ff6a33;
  color: #fff;
  padding: 12px 18px;
  border-radius: 8px;
  font-weight: 700;
}

.hero {
  position: relative;
  min-height: 680px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.97) 0%, rgba(5, 5, 5, 0.82) 46%, rgba(5, 5, 5, 0.24) 100%),
    url('https://images.unsplash.com/photo-1519167758481-83f550bb49b3?auto=format&fit=crop&w=1800&q=85') center/cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 65%, #090909 100%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  padding-top: 75px;
  padding-bottom: 75px;
}

.hero-copy {
  max-width: 720px;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
}

.hero h1 {
  max-width: 760px;
  font-size: clamp(42px, 6vw, 76px);
  line-height: 0.98;
  letter-spacing: -3px;
  margin-bottom: 22px;
}

.hero h1 span {
  display: block;
  color: var(--orange);
}

.hero-copy > p {
  max-width: 650px;
  color: #c5c5c5;
  font-size: 18px;
  margin-bottom: 28px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 34px;
}

.hero-actions .btn {
  min-width: 190px;
  flex-direction: column;
  align-items: flex-start;
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.trust-card {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 78px;
  padding: 14px;
  background: rgba(18, 18, 18, 0.82);
  border: 1px solid var(--line);
  border-radius: 14px;
  backdrop-filter: blur(10px);
}

.trust-card > span {
  font-size: 22px;
}

.trust-card strong {
  display: block;
  font-size: 13px;
}

.trust-card small {
  display: block;
  color: var(--muted);
  font-size: 11px;
}

.rating-card {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 16px 18px;
  background: rgba(14, 14, 14, 0.84);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.avatars {
  display: flex;
}

.avatars span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  margin-left: -8px;
  background: #222;
  border: 2px solid #0e0e0e;
  border-radius: 50%;
}

.avatars span:first-child {
  margin-left: 0;
}

.stars {
  color: #ffb84d;
  font-size: 13px;
}

.stars b {
  margin-left: 5px;
  color: #fff;
}

.rating-card small {
  color: var(--muted);
}

.stats-wrap {
  position: relative;
  z-index: 3;
  margin-top: -1px;
  background: #0d0d0d;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.stats article {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 110px;
  border-right: 1px solid var(--line);
}

.stats article:last-child {
  border-right: none;
}

.stats article > span {
  font-size: 28px;
}

.stats strong {
  display: block;
  color: #fff;
  font-size: 17px;
}

.stats small {
  color: var(--muted);
}

.section {
  padding-top: 100px;
  padding-bottom: 100px;
}

.section-head {
  max-width: 760px;
  margin: 0 auto 48px;
  text-align: center;
}

.section-head h2 {
  margin-bottom: 12px;
  font-size: clamp(32px, 5vw, 50px);
  line-height: 1.05;
  letter-spacing: -2px;
}

.section-head p {
  color: var(--muted);
  font-size: 16px;
}

.section-head.compact {
  margin-bottom: 34px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.step-card {
  position: relative;
  padding: 28px 24px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 18px;
  transition: 0.25s;
}

.step-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 106, 51, 0.35);
}

.step-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  background: rgba(255, 106, 51, 0.12);
  border-radius: 14px;
  font-size: 26px;
}

.step-number {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  background: var(--orange);
  border-radius: 50%;
  font-size: 12px;
  font-weight: 800;
}

.step-card h3 {
  margin-bottom: 10px;
  font-size: 18px;
}

.step-card p {
  color: var(--muted);
  font-size: 14px;
}

.benefits-section {
  padding: 100px 0;
  background: #0d0d0d;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.benefit-card {
  padding: 30px;
  background: #141414;
  border: 1px solid var(--line);
  border-radius: 20px;
}

.benefit-icon {
  display: block;
  margin-bottom: 18px;
  font-size: 34px;
}

.benefit-card h3 {
  margin-bottom: 10px;
  font-size: 21px;
}

.benefit-card p {
  margin-bottom: 22px;
  color: var(--muted);
}

.benefit-card a {
  color: var(--orange);
  font-weight: 700;
}

.pricing-section {
  padding: 100px 0;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  max-width: 930px;
  margin: 0 auto;
}

.pricing-card {
  padding: 32px;
  background: #131313;
  border: 1px solid var(--line);
  border-radius: 22px;
}

.pricing-card.featured {
  border-color: rgba(255, 106, 51, 0.45);
  box-shadow: 0 20px 50px rgba(255, 106, 51, 0.07);
}

.pricing-label {
  display: inline-block;
  margin-bottom: 16px;
  padding: 7px 10px;
  background: rgba(255, 106, 51, 0.12);
  color: var(--orange);
  border-radius: 7px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
}

.pricing-card h3 {
  font-size: 25px;
  margin-bottom: 12px;
}

.price {
  margin-bottom: 16px;
  color: var(--orange);
  font-size: 32px;
  font-weight: 800;
}

.pricing-card > p {
  margin-bottom: 20px;
  color: var(--muted);
}

.pricing-card ul {
  list-style: none;
  margin-bottom: 26px;
}

.pricing-card li {
  padding: 8px 0;
  color: #d5d5d5;
  border-bottom: 1px solid var(--line);
}

.pricing-card .btn {
  width: 100%;
}

.example-budget {
  max-width: 930px;
  margin: 24px auto 0;
  padding: 28px 30px;
  background: #111;
  border: 1px solid var(--line);
  border-radius: 18px;
}

.example-budget h3 {
  margin-bottom: 18px;
}

.budget-values {
  margin-bottom: 12px;
}

.budget-values p {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.budget-values span {
  color: var(--muted);
}

.budget-values strong {
  text-align: right;
}

.budget-total strong {
  color: var(--orange);
}

.example-budget > small {
  color: var(--muted);
}

.partners {
  padding: 90px 0;
  background: #0d0d0d;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.partner-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
}

.partner-grid > div {
  min-height: 100px;
  display: grid;
  place-items: center;
  padding: 15px;
  text-align: center;
  background: #141414;
  border: 1px solid var(--line);
  border-radius: 14px;
  color: #fff;
  font-weight: 800;
}

.partner-grid small {
  color: var(--muted);
  font-weight: 500;
}

.faq-section {
  padding: 100px 0;
}

.faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 12px;
  background: #131313;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 22px;
  background: transparent;
  color: #fff;
  border: none;
  text-align: left;
  font-weight: 700;
  cursor: pointer;
}

.faq-question span {
  color: var(--orange);
  font-size: 24px;
  transition: 0.25s;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer p {
  padding: 0 22px 20px;
  color: var(--muted);
}

.faq-item.open .faq-answer {
  max-height: 220px;
}

.faq-item.open .faq-question span {
  transform: rotate(45deg);
}

.cta-section {
  padding: 40px 0 100px;
}

.cta-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 40px;
  background: linear-gradient(135deg, rgba(255, 106, 51, 0.16), rgba(255, 106, 51, 0.04));
  border: 1px solid rgba(255, 106, 51, 0.25);
  border-radius: 24px;
}

.cta-box h2 {
  max-width: 650px;
  margin-bottom: 10px;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.05;
}

.cta-box p {
  max-width: 650px;
  color: var(--muted);
}

.cta-actions {
  display: flex;
  flex-shrink: 0;
  gap: 12px;
}

.contact-section {
  padding: 100px 0;
  background: #0d0d0d;
  border-top: 1px solid var(--line);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 55px;
  align-items: start;
}

.contact-copy h2 {
  margin-bottom: 14px;
  font-size: clamp(32px, 5vw, 50px);
  line-height: 1.05;
}

.contact-copy > p {
  max-width: 520px;
  margin-bottom: 30px;
  color: var(--muted);
}

.contact-info {
  display: grid;
  gap: 14px;
}

.contact-info > div {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  background: #131313;
  border: 1px solid var(--line);
  border-radius: 14px;
}

.contact-info > div > span {
  font-size: 24px;
}

.contact-info strong {
  display: block;
}

.contact-info small {
  color: var(--muted);
}

.contact-form {
  padding: 30px;
  background: #131313;
  border: 1px solid var(--line);
  border-radius: 20px;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  margin-bottom: 7px;
  color: #ddd;
  font-size: 13px;
  font-weight: 700;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  border: 1px solid #292929;
  background: #0d0d0d;
  color: #fff;
  padding: 13px 14px;
  border-radius: 9px;
  outline: none;
  transition: 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(255, 106, 51, 0.08);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-group option {
  background: #111;
  color: #fff;
}

.contact-submit {
  width: 100%;
}

footer {
  padding: 48px 0 20px;
  background: #070707;
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 30px;
  padding-bottom: 30px;
}

.footer-about p {
  margin-top: 14px;
  max-width: 300px;
  color: var(--muted);
  font-size: 14px;
}

.footer-links,
.footer-access {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a,
.footer-access a {
  color: var(--muted);
  font-size: 14px;
}

.footer-links a:hover,
.footer-access a:hover {
  color: var(--orange);
}

.footer-bottom {
  padding-top: 20px;
  border-top: 1px solid var(--line);
  color: #777;
  font-size: 13px;
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 54px;
  padding: 0 17px;
  background: #25d366;
  color: #fff;
  border-radius: 999px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.35);
  font-weight: 700;
  transition: 0.25s;
}

.whatsapp-float:hover {
  transform: translateY(-3px);
}

.whatsapp-float span {
  font-size: 24px;
}

.whatsapp-float small {
  font-size: 12px;
}

@media (max-width: 1100px) {
  .nav {
    gap: 16px;
  }

  .nav > a {
    font-size: 13px;
  }

  .steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .partner-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 950px) {
  .topbar {
    padding: 0 20px;
  }

  .menu-toggle {
    display: block;
  }

  .header-actions {
    display: none;
  }

  .nav {
    display: none;
    position: absolute;
    top: 82px;
    left: 0;
    right: 0;
    margin-left: 0;
    padding: 16px 20px 22px;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: #090909;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 18px 30px rgba(0, 0, 0, 0.3);
  }

  .nav.open {
    display: flex;
  }

  .nav > a {
    padding: 13px 4px;
    border-bottom: 1px solid var(--line);
  }

  .nav > a::after {
    display: none;
  }

  .mobile-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 16px;
  }

  .mobile-actions a {
    text-align: center;
  }

  .hero {
    min-height: auto;
  }

  .hero-content {
    align-items: flex-start;
    flex-direction: column;
    padding-top: 80px;
    padding-bottom: 70px;
  }

  .rating-card {
    align-self: flex-start;
  }

  .trust-row {
    grid-template-columns: 1fr;
  }

  .stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .stats article:nth-child(2) {
    border-right: none;
  }

  .stats article:nth-child(-n+2) {
    border-bottom: 1px solid var(--line);
  }

  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .cta-box {
    align-items: flex-start;
    flex-direction: column;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 650px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .topbar {
    min-height: 74px;
    padding: 0 14px;
  }

  .nav {
    top: 74px;
  }

  .brand-text {
    font-size: 17px;
  }

  .brand-icon {
    font-size: 25px;
  }

  .hero {
    background-position: 64% center;
  }

  .hero-content {
    padding-top: 64px;
    padding-bottom: 56px;
  }

  .hero h1 {
    font-size: 43px;
    letter-spacing: -2px;
  }

  .hero-copy > p {
    font-size: 16px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
    align-items: center;
  }

  .rating-card {
    width: 100%;
  }

  .stats {
    grid-template-columns: 1fr;
  }

  .stats article {
    justify-content: flex-start;
    padding: 0 22px;
    border-right: none;
    border-bottom: 1px solid var(--line);
  }

  .stats article:last-child {
    border-bottom: none;
  }

  .steps {
    grid-template-columns: 1fr;
  }

  .section {
    padding-top: 75px;
    padding-bottom: 75px;
  }

  .benefits-section,
  .pricing-section,
  .partners,
  .faq-section,
  .contact-section {
    padding-top: 75px;
    padding-bottom: 75px;
  }

  .section-head {
    margin-bottom: 34px;
  }

  .section-head h2 {
    font-size: 35px;
  }

  .partner-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .budget-values p {
    flex-direction: column;
    gap: 5px;
  }

  .budget-values strong {
    text-align: left;
  }

  .cta-section {
    padding-bottom: 75px;
  }

  .cta-box {
    padding: 26px;
  }

  .cta-actions {
    width: 100%;
    flex-direction: column;
  }

  .cta-actions .btn {
    width: 100%;
  }

  .contact-form {
    padding: 22px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    width: 56px;
    min-height: 56px;
    justify-content: center;
    padding: 0;
  }

  .whatsapp-float small {
    display: none;
  }
}