
/* ============================================
   ORKESTRIA — INTELIGÊNCIA IMOBILIÁRIA
   style.css
   ============================================ */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700;900&family=Inter:wght@400;500&display=swap');


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

:root {
  --blue: #1E40FF;
  --blue-light: #63A5FF;
  --blue-dark: #1535e0;
  --black: #080810;
  --white: #FFFFFF;
  --gray-50: #F7F7F5;
  --gray-100: #EFEFEB;
  --gray-200: #696967;
  --gray-400: #A0A098;
  --gray-600: #606058;
  --gray-800: #303028;
  --text: #111118;
  --text-muted: #6B6B60;
  --font-display: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;
  --radius: 8px;
  --radius-lg: 14px;
  --radius-xl: 20px;
  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --section-pad: 100px 0;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 40px;
}

.br-desktop { display: block; }

/* ---- TYPOGRAPHY ---- */
.section-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 16px;
  display: block;
}
.eyebrow-light { color: rgba(99,165,255,0.9); }

.section-h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 700;
  line-height: 1.12;
  color: var(--text);
  margin-bottom: 20px;
}
.section-h2 em { font-style: normal; color: var(--blue); }

.section-sub {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 600px;
  margin-bottom: 56px;
}

/* ---- BUTTONS ---- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue);
  color: #fff;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 500;
  padding: 15px 28px;
  border-radius: var(--radius);
  text-decoration: none;
  transition: background var(--transition), transform var(--transition);
  border: none;
  cursor: pointer;
  letter-spacing: 0.01em;
}
.btn-primary:hover { background: var(--blue-dark); transform: translateY(-1px); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.6);
  font-size: 14px;
  font-weight: 400;
  text-decoration: none;
  transition: color var(--transition);
  letter-spacing: 0.01em;
}
.btn-ghost:hover { color: #fff; }

/* ============================================
   NAV
   ============================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(8,8,16,0);
  backdrop-filter: blur(0px);
  transition: background 0.3s, backdrop-filter 0.3s, box-shadow 0.3s;
}
.nav.scrolled {
  background: rgba(8,8,16,0.88);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.06);
}
.nav-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 40px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.nav-logo-icon { display: flex; align-items: center; }
.nav-logo-text {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.01em;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  letter-spacing: 0.02em;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  transition: color 0.2s;
}
.nav-links a:hover { color: #63A5FF; }
.nav-links .nav-cta {
  background: var(--blue);
  color: #fff;
  padding: 9px 18px;
  border-radius: var(--radius);
  font-weight: 500;
  font-size: 13px;
}
.nav-links .nav-cta:hover { background: var(--blue-dark); color: #fff; }
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: rgba(255,255,255,0.7);
  transition: transform 0.2s, opacity 0.2s;
}
.nav-mobile {
  display: none;
  flex-direction: column;
  padding: 16px 40px 20px;
  background: rgba(8,8,16,0.95);
  border-top: 1px solid rgba(255,255,255,0.06);
}
.nav-mobile a {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.nav-mobile.open { display: flex; }

/* ============================================
   HERO
   ============================================ */
.hero {
  min-height: 100vh;
  background: var(--black);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 120px 0 80px;
}

.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(30,64,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30,64,255,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(80px);
}
.hero-orb-1 {
  width: 600px; height: 600px;
  top: -200px; right: -150px;
  background: radial-gradient(circle, rgba(30,64,255,0.18) 0%, transparent 70%);
}
.hero-orb-2 {
  width: 400px; height: 400px;
  bottom: -100px; left: -100px;
  background: radial-gradient(circle, rgba(99,165,255,0.08) 0%, transparent 70%);
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue-light);
  border: 1px solid rgba(99,165,255,0.3);
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 28px;
}

.hero-h1 {
  font-family: var(--font-display);
  font-size: clamp(42px, 6vw, 72px);
  font-weight: 800;
  line-height: 1.0;
  color: var(--white);
  margin-bottom: 28px;
}
.hero-highlight {
  color: var(--blue);
  position: relative;
}

.hero-sub {
  font-size: 17px;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(255,255,255,0.58);
  margin-bottom: 44px;
  max-width: 620px;
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 72px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.07);
}
.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 0 48px 0 0;
}
.hero-stat:first-child { padding-left: 0; }
.stat-num {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}
.stat-label {
  font-size: 12px;
  color: rgba(255,255,255,0.38);
  letter-spacing: 0.03em;
}
.hero-stat-div {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,0.08);
  margin-right: 48px;
  flex-shrink: 0;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
}
.hero-scroll-hint span {
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(30,64,255,0.6), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.1); }
}

/* ============================================
   REVEAL ANIMATIONS
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  animation: revealUp 0.7s cubic-bezier(0.4,0,0.2,1) forwards;
}
.reveal-delay-1 { animation-delay: 0.12s; }
.reveal-delay-2 { animation-delay: 0.24s; }
.reveal-delay-3 { animation-delay: 0.36s; }
.reveal-delay-4 { animation-delay: 0.52s; }
@keyframes revealUp {
  to { opacity: 1; transform: translateY(0); }
}

.scroll-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s cubic-bezier(0.4,0,0.2,1), transform 0.65s cubic-bezier(0.4,0,0.2,1);
}
.scroll-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   PROBLEMA
   ============================================ */
.problem {
  padding: var(--section-pad);
  background: var(--gray-50);
}
.problem .section-h2 { max-width: 580px; margin-bottom: 56px; }

.problem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1px;
  background: var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.problem-card {
  background: var(--gray-50);
  padding: 32px 28px;
  transition: background var(--transition);
}
.problem-card:hover { background: var(--white); }
.problem-icon {
  width: 40px; height: 40px;
  background: rgba(30,64,255,0.06);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.problem-card h4 {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text);
}
.problem-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ============================================
   INTRO
   ============================================ */
.intro { padding: var(--section-pad); }
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.intro-left .section-h2 { margin-bottom: 0; }
.intro-right p {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.intro-results {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.intro-result-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
}
.check {
  width: 22px; height: 22px;
  background: rgba(30,64,255,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: var(--blue);
  flex-shrink: 0;
}

/* ============================================
   SOLUÇÕES
   ============================================ */
.solucoes {
  padding: var(--section-pad);
  background: var(--gray-50);
}
.solucoes .section-h2 { margin-bottom: 64px; }

.sol-blocks {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: var(--gray-200);
  border-radius: var(--radius-xl);
  overflow: hidden;
}
.sol-block {
  background: var(--white);
  padding: 40px 40px 36px;
  transition: background var(--transition);
}
.sol-block:hover { background: var(--gray-50); }

.sol-block-header {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  margin-bottom: 24px;
}
.sol-block-num {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 800;
  color: var(--gray-200);
  line-height: 1;
  min-width: 60px;
  flex-shrink: 0;
  transition: color var(--transition);
}
.sol-block:hover .sol-block-num { color: rgb(35, 66, 238); }
.sol-block-tag {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 8px;
}
.sol-block-title {
  font-family: var(--font-display);
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 700;
  line-height: 1.25;
  color: var(--text);
  margin-bottom: 10px;
}
.sol-block-desc {
  font-size: 15px;
  font-weight: 400;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 560px;
}
.sol-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-left: 88px;
}
.sol-pill {
  font-size: 12px;
  font-weight: 400;
  color: var(--gray-600);
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
  padding: 6px 14px;
  border-radius: 20px;
  transition: all var(--transition);
}
.sol-pill:hover {
  background: rgba(30,64,255,0.06);
  border-color: rgba(30,64,255,0.2);
  color: var(--blue);
}

/* ============================================
   IMPLANTADAS
   ============================================ */
.implantadas {
  padding: var(--section-pad);
  background: var(--black);
}
.implantadas .section-eyebrow { color: rgba(99,165,255,0.8); }
.implantadas .section-h2 { color: var(--white); }
.implantadas .section-sub { color: rgba(255,255,255,0.45); }

.impl-groups {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1px;
  background: rgba(255,255,255,0.06);
  border-radius: var(--radius-xl);
  overflow: hidden;
}
.impl-group {
  background: rgba(255,255,255,0.02);
  padding: 32px 28px;
  transition: background var(--transition);
}
.impl-group:hover { background: rgba(255,255,255,0.05); }

.impl-group-header {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
}
.impl-group-icon {
  width: 38px; height: 38px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.impl-icon-1 { background: rgba(30,64,255,0.15); color: var(--blue-light); }
.impl-icon-2 { background: rgba(99,165,255,0.12); color: #93c5fd; }
.impl-icon-3 { background: rgba(30,200,100,0.1); color: #6ee7b7; }
.impl-icon-4 { background: rgba(250,180,40,0.1); color: #fcd34d; }
.impl-icon-5 { background: rgba(200,80,200,0.1); color: #e879f9; }

.impl-group-title {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  line-height: 1.35;
  margin-bottom: 4px;
}
.impl-count {
  font-size: 11px;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.04em;
}
.impl-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.impl-list li {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  line-height: 1.55;
  padding-left: 14px;
  position: relative;
}
.impl-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(30,64,255,0.5);
}

/* ============================================
   DIAGNÓSTICO CTA
   ============================================ */
.diagnostico { 
  padding: var(--section-pad);
  background: var(--black);
  border-top: 1px solid rgba(255,255,255,0.06);
}
.diag-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(30,64,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30,64,255,0.05) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}
.diag-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.diag-h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 800;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 20px;
}
.diag-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.5);
  line-height: 1.75;
  margin-bottom: 48px;
}
.diag-sub em { font-style: italic; color: var(--blue-light); }

.diag-steps { display: flex; flex-direction: column; gap: 0; }
.diag-step {
  display: flex;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.diag-step:last-child { border-bottom: none; padding-bottom: 0; }
.diag-step-num {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--blue);
  min-width: 28px;
  flex-shrink: 0;
  padding-top: 2px;
}
.diag-step h4 {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 6px;
}
.diag-step p {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  line-height: 1.65;
}

/* FORM */
.diag-form-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--radius-xl);
  padding: 40px 36px;
  backdrop-filter: blur(12px);
}
.diag-form-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(30,64,255,0.2);
  color: var(--blue-light);
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 20px;
}
.diag-form-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.3;
}
.diag-form-sub {
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  line-height: 1.65;
  margin-bottom: 28px;
}
.diag-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-group label {
  font-size: 12px;
  font-weight: 500;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.03em;
}
.form-group input,
.form-group select {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--white);
  outline: none;
  transition: border-color var(--transition), background var(--transition);
  appearance: none;
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1L6 6L11 1' stroke='rgba(255,255,255,0.3)' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  cursor: pointer;
}
.form-group select option { background: #1a1a2e; color: #fff; }
.form-group input::placeholder { color: rgba(255,255,255,0.2); }
.form-group input:focus,
.form-group select:focus {
  border-color: rgba(30,64,255,0.6);
  background: rgba(30,64,255,0.06);
}
.btn-diag {
  width: 100%;
  background: var(--blue);
  color: #fff;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  padding: 16px 24px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  letter-spacing: 0.02em;
  transition: background var(--transition), transform var(--transition);
  margin-top: 4px;
}
.btn-diag:hover { background: var(--blue-dark); transform: translateY(-1px); }
.form-disclaimer {
  font-size: 11px;
  color: rgba(255,255,255,0.25);
  text-align: center;
  letter-spacing: 0.02em;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--black);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 40px 0;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.footer-logo .nav-logo-text { font-size: 15px; color: rgba(255,255,255,0.7); }
.footer-logo p {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  line-height: 1.6;
  margin-top: 8px;
}
.footer-copy {
  font-size: 12px;
  color: rgba(255,255,255,0.2);
  letter-spacing: 0.02em;
}

/* ============================================
   RESPONSIVE
   ============================================ */
/* Tablet */
@media (max-width: 900px) {
  .intro-grid { grid-template-columns: 1fr; gap: 40px; }
  .br-desktop { display: none; }
  .hero-stat { padding-right: 32px; }
  .hero-stat-div { margin-right: 32px; }

  /* Diagnóstico: empilha em coluna no tablet */
  .diag-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .diag-h2 { font-size: clamp(24px, 4vw, 34px); }
  .diag-sub { font-size: 15px; margin-bottom: 36px; }
}

/* Mobile largo */
@media (max-width: 720px) {
  :root { --section-pad: 64px 0; }
  .container { padding: 0 20px; }
  .nav-inner { padding: 0 20px; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .nav-mobile { padding: 16px 20px 20px; }

  /* Hero */
  .hero { padding: 100px 0 56px; }
  .hero-stats { gap: 20px; flex-wrap: wrap; }
  .hero-stat { padding-right: 0; }
  .hero-stat-div { display: none; }

  /* Soluções */
  .sol-block { padding: 24px 20px; }
  .sol-block-header { flex-direction: column; gap: 10px; }
  .sol-block-num { font-size: 32px; }
  .sol-pills { padding-left: 0; }

  /* Implantadas */
  .impl-groups { grid-template-columns: 1fr; }

  /* Diagnóstico */
  .diagnostico { padding: 64px 0; }
  .diag-content { gap: 40px; }
  .diag-left { max-width: 360px;}
  .diag-right { max-width: 360px;}
  .diag-h2 { font-size: clamp(22px, 6vw, 30px); }
  .diag-sub { font-size: 14px; margin-bottom: 28px; }
  .diag-step { gap: 14px; padding: 18px 0; }
  .diag-step h4 { font-size: 14px; }
  .diag-step p { font-size: 12px; }

  /* Form card */
  .diag-form-card {
    padding: 24px 20px;
    border-radius: var(--radius-lg);
  }
  .diag-form-title { font-size: 18px; }
  .diag-form-sub { font-size: 13px; margin-bottom: 20px; }
  .diag-form { gap: 14px; }
  .form-group input,
  .form-group select {
    padding: 13px 14px;
    font-size: 16px; /* Prevents iOS auto-zoom on focus */
  }
  .btn-diag {
    padding: 15px 20px;
    font-size: 15px;
  }
}

/* Mobile iPhone SE / small */
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .nav-inner { padding: 0 16px; }
  .nav-mobile { padding: 16px 16px 20px; }

  /* Hero */
  .hero { padding: 90px 0 48px; }
  .hero-label { font-size: 10px; padding: 5px 12px; }
  .hero-ctas { flex-direction: column; align-items: stretch; gap: 12px; }
  .btn-primary { text-align: center; justify-content: center; }
  .hero-stats { flex-direction: column; gap: 16px; }
  .stat-num { font-size: 26px; }

  /* Problema */
  .problem-grid { grid-template-columns: 1fr; }

  /* Intro */
  .intro-grid { gap: 32px; }

  /* Soluções */
  .solucoes .section-h2 { margin-bottom: 36px; }
  .sol-block { padding: 20px 16px; }
  .sol-block-title { font-size: 17px; }
  .sol-pills { gap: 6px; }
  .sol-pill { font-size: 11px; padding: 5px 11px; }

  /* Implantadas */
  .impl-group { padding: 24px 20px; }
  .impl-group-title { font-size: 13px; }
  .impl-list li { font-size: 12px; }

  /* Diagnóstico */
  .diagnostico { padding: 56px 0; }
  .diag-content { gap: 32px; }
  .diag-h2 { font-size: clamp(20px, 7vw, 26px); }
  .diag-sub { font-size: 13px; line-height: 1.7; margin-bottom: 24px; }
  .diag-steps { gap: 0; }
  .diag-step { gap: 12px; padding: 16px 0; }
  .diag-step-num { font-size: 12px; min-width: 24px; }
  .diag-step h4 { font-size: 13px; margin-bottom: 4px; }
  .diag-step p { font-size: 12px; line-height: 1.6; }

  /* Form */
  .diag-form-card { padding: 20px 16px; }
  .diag-form-badge { font-size: 10px; padding: 4px 12px; }
  .diag-form-title { font-size: 17px; }
  .diag-form-sub { font-size: 12px; margin-bottom: 18px; }
  .form-group label { font-size: 11px; }
  .form-group input,
  .form-group select {
    padding: 13px 12px;
    font-size: 16px; /* Prevents iOS auto-zoom */
    border-radius: var(--radius);
  }
  .btn-diag {
    padding: 16px 16px;
    font-size: 14px;
    border-radius: var(--radius);
  }
  .form-disclaimer { font-size: 10px; }

  /* Footer */
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 16px; }
}

/* ============================================
   FORM SUCCESS STATE
   ============================================ */
.form-success {
  text-align: center;
  padding: 40px 20px;
  display: none;
}
.form-success.show { display: block; }
.success-icon {
  width: 56px; height: 56px;
  background: rgba(30,64,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 22px;
}
.form-success h4 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}
.form-success p {
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  line-height: 1.65;
}
