* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

:root {
  --bg: #f8fafc;
  --card: rgba(255, 255, 255, 0.82);
  --text: #0f172a;
  --muted: #64748b;
  --primary: #2563eb;
  --primary-dark: #1d4ed8;
  --success: #16a34a;
  --warning: #ca8a04;
  --danger: #dc2626;
  --line: #e2e8f0;
  --shadow: 0 20px 50px rgba(15, 23, 42, 0.12);
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, #dbeafe 0%, transparent 30%),
    radial-gradient(circle at bottom right, #e9d5ff 0%, transparent 28%),
    linear-gradient(135deg, #f8fafc 0%, #eef2ff 100%);
  min-height: 100vh;
  padding: 18px 18px 60px;
  position: relative;
  overflow-x: hidden;
}

.bg-shape {
  position: fixed;
  border-radius: 999px;
  filter: blur(80px);
  opacity: 0.22;
  z-index: 0;
}

.bg-shape-1 {
  width: 280px;
  height: 280px;
  background: #60a5fa;
  top: -70px;
  left: -60px;
}

.bg-shape-2 {
  width: 320px;
  height: 320px;
  background: #a78bfa;
  right: -80px;
  bottom: -80px;
}

.site-wrapper {
  position: relative;
  z-index: 1;
  max-width: 1240px;
  margin: 0 auto;
}

.top-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 14px 18px;
  margin-bottom: 22px;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.brand-area {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-logo {
  width: 58px;
  height: 58px;
  object-fit: contain;
  animation: logoFloat 3s ease-in-out infinite;
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand-text strong {
  font-size: 1.05rem;
  color: #0f172a;
}

.brand-text span {
  font-size: 0.92rem;
  color: var(--muted);
}

.top-nav {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.top-nav a {
  text-decoration: none;
  color: #334155;
  font-weight: 600;
  padding: 10px 14px;
  border-radius: 999px;
  transition: 0.2s ease;
}

.top-nav a:hover {
  background: #eff6ff;
  color: var(--primary-dark);
}

.header-whats {
  background: #25d366;
  color: white !important;
}

.header-whats:hover {
  background: #1fb958 !important;
  color: white !important;
}

.hero {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr;
  gap: 26px;
  align-items: center;
  margin-bottom: 26px;
}

.hero-texto,
.hero-card,
.card-orcamento {
  background: var(--card);
  border: 1px solid rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
}

.hero-texto {
  border-radius: 32px;
  padding: 38px 34px;
}

.hero-card {
  border-radius: 32px;
  padding: 28px;
}

.hero-logo-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 14px;
}

.hero-logo {
  width: 180px;
  max-width: 100%;
  height: auto;
  animation: logoFloat 3s ease-in-out infinite;
}

@keyframes logoFloat {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-6px); }
  100% { transform: translateY(0px); }
}

.mini-badge {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 999px;
  background: #dbeafe;
  color: var(--primary-dark);
  font-size: 0.92rem;
  font-weight: 700;
  margin-bottom: 18px;
}

.hero-texto h1 {
  font-size: 3.1rem;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}

.hero-texto p {
  font-size: 1.08rem;
  line-height: 1.7;
  color: #334155;
  max-width: 700px;
}

.hero-beneficios {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.hero-beneficios div {
  background: white;
  border: 1px solid var(--line);
  padding: 12px 16px;
  border-radius: 18px;
  font-weight: 600;
  color: #334155;
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-beneficios i {
  color: var(--primary);
}

.hero-card-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  font-weight: 800;
  color: #1e3a8a;
}

.hero-card-top i {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  border-radius: 16px;
}

.hero-card h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.hero-card p {
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 18px;
}

.hero-card ul {
  list-style: none;
  display: grid;
  gap: 12px;
}

.hero-card li {
  background: white;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 12px 14px;
  font-weight: 600;
  color: #334155;
}

.card-orcamento {
  border-radius: 34px;
  padding: 34px 28px;
}

.header-chamada {
  text-align: center;
  margin-bottom: 28px;
}

.header-chamada h2 {
  font-size: 2.2rem;
  margin-bottom: 8px;
}

.header-chamada p {
  color: var(--muted);
  font-size: 1.05rem;
}

.seletor-topo-projeto {
  max-width: 420px;
  margin: 0 auto 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.seletor-topo-projeto label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: #1e293b;
  justify-content: center;
}

.seletor-topo-projeto label i {
  color: var(--primary);
}

.seletor-topo-projeto select {
  width: 100%;
  border: 1.5px solid var(--line);
  background: #f8fafc;
  border-radius: 18px;
  padding: 14px 16px;
  font-size: 1rem;
  font-family: 'Inter', sans-serif;
  outline: none;
  transition: 0.2s ease;
  text-align: center;
}

.seletor-topo-projeto select:focus {
  border-color: var(--primary);
  background: white;
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12);
}

.tabela-precos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-bottom: 34px;
}

.plano-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 24px 22px;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.06);
  transition: 0.25s ease;
  position: relative;
}

.plano-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
}

.destaque-plano {
  border: 2px solid #bfdbfe;
  transform: scale(1.02);
}

.faixa-destaque {
  position: absolute;
  top: -12px;
  right: 18px;
  background: var(--primary);
  color: white;
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
}

.plano-topo {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.plano-nome {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.35rem;
  font-weight: 800;
}

.plano-tag {
  background: #f1f5f9;
  color: #475569;
  border-radius: 999px;
  padding: 7px 10px;
  font-size: 0.8rem;
  font-weight: 700;
}

.plano-card.basico .plano-nome i {
  color: var(--success);
}

.plano-card.intermediario .plano-nome i {
  color: var(--warning);
}

.plano-card.avancado .plano-nome i {
  color: var(--danger);
}

.plano-preco {
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.plano-preco small {
  font-size: 0.95rem;
  color: var(--muted);
  font-weight: 600;
}

.plano-desc {
  line-height: 1.75;
  color: #475569;
  font-weight: 500;
}

.area-form {
  background: white;
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 28px 22px;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.05);
}

.form-titulo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.form-titulo i {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
}

.subtitulo-form {
  color: var(--muted);
  margin-bottom: 24px;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 20px;
}

.campo {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.full-width {
  grid-column: span 2;
}

label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: #1e293b;
}

label i {
  color: var(--primary);
}

input,
select,
textarea {
  width: 100%;
  border: 1.5px solid var(--line);
  background: #f8fafc;
  border-radius: 18px;
  padding: 14px 16px;
  font-size: 1rem;
  font-family: 'Inter', sans-serif;
  outline: none;
  transition: 0.2s ease;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--primary);
  background: white;
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12);
}

textarea {
  resize: vertical;
  min-height: 110px;
}

.radio-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  background: #f8fafc;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 14px;
}

.radio-option {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 12px 16px;
  cursor: pointer;
  font-weight: 600;
}

.radio-option input[type="radio"] {
  accent-color: var(--primary);
}

.radio-option .fa-whatsapp {
  color: #25d366;
}

.radio-option .fa-envelope {
  color: var(--primary);
}

.resumo-orcamento {
  margin: 24px 0 18px;
  background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
  border: 1px solid #bfdbfe;
  border-radius: 22px;
  padding: 18px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.resumo-texto {
  font-size: 1.05rem;
  font-weight: 700;
  color: #1e3a8a;
}

.resumo-valor {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-dark);
}

.botao-enviar {
  width: 100%;
  border: none;
  border-radius: 20px;
  padding: 17px 24px;
  font-size: 1.15rem;
  font-weight: 800;
  cursor: pointer;
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  color: white;
  transition: 0.2s ease;
  box-shadow: 0 12px 24px rgba(37, 99, 235, 0.22);
}

.botao-enviar:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(37, 99, 235, 0.28);
}

.botao-enviar:disabled {
  opacity: 0.75;
  cursor: not-allowed;
}

.status-msg {
  margin-top: 14px;
  min-height: 22px;
  font-weight: 700;
  font-size: 0.95rem;
}

.status-msg.sucesso {
  color: var(--success);
}

.status-msg.erro {
  color: var(--danger);
}

.footer-observacao {
  margin-top: 18px;
  text-align: center;
  color: var(--muted);
}

.como-funciona,
.faq {
  margin-top: 34px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 24px;
}

.como-funciona h3,
.faq h3 {
  font-size: 1.55rem;
  margin-bottom: 20px;
}

.passos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.passo {
  background: #f8fafc;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 20px;
}

.passo span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  font-weight: 800;
  margin-bottom: 14px;
}

.passo h4 {
  margin-bottom: 8px;
}

.passo p,
.faq-item p {
  color: var(--muted);
  line-height: 1.65;
}

.faq-item {
  border-top: 1px solid var(--line);
  padding: 16px 0;
}

.faq-item:first-of-type {
  border-top: none;
  padding-top: 0;
}

.faq-item h4 {
  margin-bottom: 8px;
}

.footer-site {
  margin-top: 34px;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  color: #e2e8f0;
  border-radius: 28px;
  padding: 28px 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand h4 {
  font-size: 1.4rem;
  margin-bottom: 8px;
  color: #ffffff;
}

.footer-brand p {
  color: #cbd5e1;
  line-height: 1.6;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 22px 0 18px;
}

.footer-links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: #e2e8f0;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 12px 16px;
  border-radius: 999px;
  transition: 0.2s ease;
}

.footer-links a:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-2px);
}

.footer-links .fa-whatsapp {
  color: #25d366;
}

.footer-links .fa-envelope {
  color: #93c5fd;
}

.footer-links .fa-instagram {
  color: #f9a8d4;
}

.footer-copy {
  color: #94a3b8;
  font-size: 0.95rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 16px;
}

.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: #25d366;
  color: white;
  display: grid;
  place-items: center;
  font-size: 1.8rem;
  text-decoration: none;
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.18);
  z-index: 30;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 20px 34px rgba(0, 0, 0, 0.22);
}

@media (max-width: 1024px) {
  .top-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .top-nav {
    width: 100%;
  }

  .hero {
    grid-template-columns: 1fr;
  }

  .tabela-precos,
  .passos {
    grid-template-columns: 1fr;
  }

  .destaque-plano {
    transform: none;
  }
}

@media (max-width: 768px) {
  .brand-area {
    width: 100%;
  }

  .brand-logo {
    width: 52px;
    height: 52px;
  }

  .top-nav {
    flex-direction: column;
    align-items: stretch;
  }

  .top-nav a {
    text-align: center;
  }

  .hero-texto h1 {
    font-size: 2.2rem;
  }

  .card-orcamento,
  .hero-texto,
  .hero-card {
    border-radius: 24px;
    padding: 22px 16px;
  }

  .hero-logo {
    width: 140px;
  }

  .grid-2 {
    grid-template-columns: 1fr;
  }

  .full-width {
    grid-column: span 1;
  }

  .form-titulo {
    font-size: 1.4rem;
  }

  .resumo-valor {
    font-size: 1.6rem;
  }

  .footer-site {
    padding: 22px 16px;
    border-radius: 22px;
  }

  .footer-links {
    flex-direction: column;
  }

  .footer-links a {
    width: 100%;
    justify-content: center;
  }

  .whatsapp-float {
    width: 56px;
    height: 56px;
    font-size: 1.6rem;
    right: 16px;
    bottom: 16px;
  }
}

.manutencao-site{
  margin-top:40px;
}

.form-manutencao{
margin-top:30px;
background:white;
border:1px solid var(--line);
border-radius:28px;
padding:28px 22px;
box-shadow:0 10px 25px rgba(15,23,42,0.05);
}