/* =========================================
   IR SUBSITE — INOVACON CONTABILIDADE
   Alinhado ao design system do site principal
   ========================================= */

/* Import Outfit for headings (same as main site) */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Outfit:wght@400;600;700;800&display=swap');

:root {
  /* Colors — identicas ao site principal */
  --primary-color: #0CAE5B;
  --primary-light: #21D075;
  --secondary-color: #088C48;
  --accent-color: #2b2b2b;

  --text-color: #333333;
  --text-light: #666666;
  --title-color: #2b2b2b;

  --bg-color: #f8f9fa;
  --bg-light: #ffffff;
  --bg-dark: #121212;

  /* Glassmorphism */
  --glass-bg: rgba(255, 255, 255, 0.75);
  --glass-border: rgba(255, 255, 255, 0.5);

  /* Typography */
  --body-font: 'Inter', sans-serif;
  --title-font: 'Outfit', sans-serif;

  /* Spacings */
  --mb-1: 0.5rem;
  --mb-2: 1rem;
  --mb-3: 1.5rem;
  --mb-4: 2rem;
  --mb-6: 3rem;

  /* Shadows */
  --shadow-sm: 0 4px 6px rgba(0,0,0,0.05);
  --shadow-md: 0 10px 15px rgba(0,0,0,0.07);
  --shadow-lg: 0 20px 40px rgba(0,0,0,0.12);

  /* Radius */
  --radius: 1rem;
  --radius-lg: 1.5rem;

  /* Transitions */
  --transition-fast: 0.3s ease;
  --transition-normal: 0.5s ease;

  /* Danger / Success */
  --danger: #b42318;
  --success: #027a48;
}

/* =========================================
   RESET & BASE
   ========================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--body-font);
  font-size: 1rem;
  background-color: var(--bg-color);
  color: var(--text-color);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--title-font);
  color: var(--title-color);
  font-weight: 700;
  line-height: 1.2;
}

ul { list-style: none; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
.hidden { display: none !important; }

/* =========================================
   LAYOUT
   ========================================= */
.container {
  max-width: 1200px;
  width: calc(100% - 3rem);
  margin-left: auto;
  margin-right: auto;
}

.grid { display: grid; gap: 2rem; }
.flex { display: flex; align-items: center; }
.text-center { text-align: center; }

/* =========================================
   TYPOGRAPHY HELPERS (same as main site)
   ========================================= */
.section-subtitle {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--secondary-color);
  margin-bottom: var(--mb-1);
}

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  margin-bottom: var(--mb-2);
}

.section-description {
  color: var(--text-light);
  font-size: 1.05rem;
  max-width: 600px;
  margin-bottom: var(--mb-4);
}

/* =========================================
   BUTTONS (identicos ao site principal)
   ========================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  border-radius: 50px;
  font-family: var(--title-font);
  font-weight: 600;
  font-size: 1rem;
  transition: var(--transition-fast);
  cursor: pointer;
  border: none;
  outline: none;
  text-decoration: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: #fff;
  box-shadow: 0 4px 15px rgba(12,174,91,0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(12,174,91,0.45);
  filter: brightness(1.05);
}

.btn-primary:disabled { opacity: .65; cursor: not-allowed; transform: none; }

.btn-secondary {
  background: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
  background: var(--primary-color);
  color: #fff;
  transform: translateY(-3px);
}

.btn-ghost {
  background: rgba(12,174,91,0.08);
  color: var(--primary-color);
  border: 1px solid rgba(12,174,91,0.25);
}

.btn-ghost:hover {
  background: rgba(12,174,91,0.15);
  transform: translateY(-2px);
}

.btn-full { width: 100%; }

/* =========================================
   GLASS CARD (same as main site)
   ========================================= */
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 2rem;
}

/* =========================================
   CARD (light surface)
   ========================================= */
.card {
  background: var(--bg-light);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 2rem;
}

/* =========================================
   HEADER
   ========================================= */
.site-header {
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  gap: 1rem;
}

.brand img { width: 180px; height: auto; }

.header-back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary-color);
  transition: var(--transition-fast);
}

.header-back-link:hover {
  gap: 0.7rem;
  color: var(--secondary-color);
}

/* =========================================
   COUNTDOWN BANNER
   ========================================= */
.deadline-banner {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: #fff;
  padding: 0.75rem 1rem;
  text-align: center;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.6;
}

.deadline-banner strong {
  background: rgba(255,255,255,0.2);
  padding: 0.1rem 0.5rem;
  border-radius: 50px;
  margin: 0 0.25rem;
  white-space: nowrap;
}

/* =========================================
   HERO SECTION
   ========================================= */
.ir-hero {
  position: relative;
  padding: 5rem 0 4rem;
  overflow: hidden;
}

.ir-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.ir-hero-bg .shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}

.ir-hero-bg .shape-1 {
  width: 500px; height: 500px;
  background: rgba(12,174,91,0.12);
  top: -150px; right: -100px;
}

.ir-hero-bg .shape-2 {
  width: 350px; height: 350px;
  background: rgba(8,140,72,0.08);
  bottom: -80px; left: -80px;
}

.ir-hero-bg .shape-3 {
  width: 250px; height: 250px;
  background: rgba(43,43,43,0.04);
  top: 40%; left: 40%;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3rem;
  align-items: start;
  position: relative;
  z-index: 1;
}

/* Eyebrow badge */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.3rem 1rem;
  background: rgba(12,174,91,0.1);
  color: var(--primary-color);
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--mb-2);
}

.hero-copy h1 {
  font-size: clamp(2rem, 4vw, 3.25rem);
  margin: 0 0 1.25rem;
  color: var(--title-color);
}

.hero-copy h1 span {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.lead {
  color: var(--text-light);
  font-size: 1.1rem;
  line-height: 1.75;
  max-width: 56ch;
  margin-bottom: var(--mb-3);
}

.hero-checklist {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-bottom: var(--mb-4);
}

.hero-checklist li {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-weight: 500;
  font-size: 0.975rem;
}

.hero-checklist li::before {
  content: '';
  width: 22px;
  height: 22px;
  min-width: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23fff'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E");
  background-size: 14px;
  background-position: center;
  background-repeat: no-repeat;
}

/* =========================================
   FORM CARD (hero right)
   ========================================= */
.hero-form-card {
  position: sticky;
  top: 100px;
}

.card-head {
  margin-bottom: 1.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(0,0,0,0.07);
}

.card-head h2 {
  font-size: 1.4rem;
  color: var(--title-color);
  margin-bottom: 0.35rem;
}

.card-head p { color: var(--text-light); font-size: 0.95rem; }

/* Fields */
.field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.field label {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--title-color);
}

.field input {
  min-height: 52px;
  padding: 0.875rem 1rem;
  border: 1.5px solid rgba(0,0,0,0.1);
  border-radius: 12px;
  background: var(--bg-color);
  font-family: var(--body-font);
  font-size: 1rem;
  color: var(--text-color);
  transition: border-color .2s ease, box-shadow .2s ease;
}

.field input:focus {
  border-color: var(--primary-color);
  outline: none;
  box-shadow: 0 0 0 4px rgba(12,174,91,0.12);
  background: #fff;
}

.grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 1rem; }
.grid-3 { display: grid; grid-template-columns: 90px 90px 1fr; gap: 1rem; }

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.turnstile-box { margin: 0.5rem 0 1rem; }

.form-note {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-top: 0.75rem;
  line-height: 1.5;
}

/* =========================================
   FEEDBACK / ALERTS
   ========================================= */
.feedback {
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  margin: 1rem 0;
  font-weight: 600;
  font-size: 0.95rem;
}

.feedback.error { background: #fef3f2; color: var(--danger); border: 1px solid #fecdca; }
.feedback.success { background: #ecfdf3; color: var(--success); border: 1px solid #abefc6; }
.feedback.info { background: #eef4ff; color: #1849a9; border: 1px solid #c7d7fe; }

/* =========================================
   RESULT CARD
   ========================================= */
.result-wrapper { padding: 1rem 0; }

.result-card {
  border-left: 4px solid var(--primary-color);
}

.result-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(0,0,0,0.07);
}

.result-header h2 { font-size: 1.5rem; }

.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  background: rgba(12,174,91,0.1);
  color: var(--secondary-color);
  font-weight: 700;
  font-size: 0.85rem;
  white-space: nowrap;
}

.result-message { color: var(--text-light); margin-bottom: 1.5rem; }

.result-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* =========================================
   CONTRACT SECTION
   ========================================= */
.contract-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.price-box {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: #fff;
  padding: 1.5rem;
  border-radius: var(--radius);
  margin-top: 1.25rem;
  box-shadow: 0 8px 20px rgba(12,174,91,0.3);
}

.price-box span {
  font-size: 0.85rem;
  opacity: 0.85;
  display: block;
  margin-bottom: 0.25rem;
}

.price-box strong { font-size: 2.25rem; font-family: var(--title-font); }

.checkbox-line {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  color: var(--text-light);
  font-size: 0.9rem;
  margin: 0.75rem 0 1.25rem;
}

.checkbox-line input { margin-top: 3px; accent-color: var(--primary-color); }

/* =========================================
   PAYMENT SECTION
   ========================================= */
.payment-header {
  margin-bottom: 1.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(0,0,0,0.07);
}

.payment-header h2 { font-size: 1.5rem; margin-bottom: 0.35rem; }
.payment-header p { color: var(--text-light); }

.payment-link-area { margin: 1rem 0; }
.payment-link-area .btn { width: 100%; font-size: 1rem; }

.pix-box {
  background: rgba(12,174,91,0.05);
  border: 1px solid rgba(12,174,91,0.2);
  padding: 1.25rem;
  border-radius: var(--radius);
}

.pix-box label { font-weight: 600; font-size: 0.9rem; color: var(--title-color); display: block; margin-bottom: 0.75rem; }

.copy-row { display: flex; gap: 0.75rem; align-items: stretch; }

.copy-row input {
  flex: 1;
  min-height: 50px;
  border: 1.5px solid rgba(0,0,0,0.1);
  border-radius: 12px;
  padding: 0.75rem 1rem;
  font-family: var(--body-font);
  font-size: 0.9rem;
  background: #fff;
}

.qr-wrap { margin-top: 1.25rem; display: flex; justify-content: center; }

.qr-wrap img {
  width: min(240px, 100%);
  background: #fff;
  border-radius: var(--radius);
  padding: 0.75rem;
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: var(--shadow-sm);
}

/* =========================================
   PRAZO COUNTER
   ========================================= */
.prazo-section {
  background: linear-gradient(135deg, rgba(12,174,91,0.06), rgba(8,140,72,0.1));
  border: 1px solid rgba(12,174,91,0.2);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  text-align: center;
  margin: 2.5rem 0;
}

.prazo-section .section-subtitle { margin-bottom: 0.5rem; }
.prazo-section h2 { font-size: 1.75rem; margin-bottom: 1.5rem; }

.countdown-grid {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.count-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  min-width: 80px;
}

.count-num {
  font-family: var(--title-font);
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.count-label {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-light);
}

.count-separator {
  font-family: var(--title-font);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  align-self: flex-start;
  padding-top: 0.1rem;
}

/* =========================================
   LOTES DE RESTITUIÇÃO
   ========================================= */
.lotes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.lote-card {
  background: var(--bg-light);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 1.75rem 1.25rem;
  text-align: center;
  border: 1px solid rgba(0,0,0,0.06);
  transition: var(--transition-fast);
}

.lote-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.lote-num {
  font-family: var(--title-font);
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.lote-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-light);
  margin: 0.25rem 0 0.5rem;
}

.lote-date {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--title-color);
}

/* =========================================
   HOW IT WORKS (STEPS)
   ========================================= */
.steps-section {
  padding: 2.5rem 0;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.step-card {
  background: var(--bg-light);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,0.06);
  transition: var(--transition-fast);
}

.step-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.step-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: #fff;
  font-family: var(--title-font);
  font-weight: 800;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  box-shadow: 0 4px 12px rgba(12,174,91,0.35);
}

.step-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}

.step-card p {
  color: var(--text-light);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* =========================================
   DOCS SECTION
   ========================================= */
.docs-section {
  background: var(--bg-light);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: 2.5rem;
  margin-top: 2rem;
  margin-bottom: 2rem;
  border: 1px solid rgba(0,0,0,0.06);
}

.docs-section h2 {
  margin-bottom: 0.5rem;
}

.docs-section > p {
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.docs-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

.doc-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem 1rem;
  background: var(--bg-color);
  border-radius: var(--radius);
  font-size: 0.92rem;
  font-weight: 500;
}

.doc-item i {
  font-size: 1.2rem;
  color: var(--secondary-color);
}


/* =========================================
   INFO SECTIONS (Obrigatoriedade, Novidades)
   ========================================= */
.info-section {
  padding: 3rem 0;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.info-card {
  background: var(--bg-light);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: var(--shadow-sm);
  padding: 1.75rem;
  transition: var(--transition-fast);
  position: relative;
  overflow: hidden;
}

.info-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-normal);
}

.info-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.info-card:hover::before { transform: scaleX(1); }

.info-card-icon {
  width: 52px; height: 52px;
  background: rgba(12,174,91,0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.info-card h3 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.info-card p { color: var(--text-light); font-size: 0.95rem; line-height: 1.65; }

/* Requisitos list */
.requisitos-section {
  background: var(--bg-light);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 2.5rem;
  margin: 2.5rem 0;
}

.requisitos-section h2 { font-size: 1.75rem; margin-bottom: 0.5rem; }
.requisitos-section > p { color: var(--text-light); margin-bottom: 1.75rem; }

.requisitos-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

.requisito-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.875rem 1rem;
  background: var(--bg-color);
  border-radius: var(--radius);
  font-size: 0.92rem;
  line-height: 1.5;
}

.requisito-item::before {
  content: '';
  width: 20px;
  min-width: 20px;
  height: 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23fff'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E");
  background-size: 12px;
  background-position: center;
  background-repeat: no-repeat;
  margin-top: 1px;
}

/* Restituição lotes */
.lotes-section { margin: 2.5rem 0; }
.lotes-section h2 { font-size: 1.75rem; margin-bottom: 1.5rem; }

.lotes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.lote-card {
  background: var(--bg-light);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 1.5rem;
  text-align: center;
  border: 1px solid rgba(0,0,0,0.06);
  transition: var(--transition-fast);
  position: relative;
  overflow: hidden;
}

.lote-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }

.lote-num {
  font-family: var(--title-font);
  font-size: 2rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}

.lote-label { font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; color: var(--text-light); margin: 0.25rem 0 0.5rem; }
.lote-date { font-size: 1rem; font-weight: 700; color: var(--title-color); }

/* =========================================
   HOW IT WORKS
   ========================================= */
.steps-section { padding: 3rem 0; }
.steps-section h2 { font-size: 1.75rem; margin-bottom: 1.5rem; }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.step-card {
  background: var(--bg-light);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,0.06);
  position: relative;
  transition: var(--transition-fast);
}

.step-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }

.step-num {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: #fff;
  font-family: var(--title-font);
  font-weight: 800;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  box-shadow: 0 4px 12px rgba(12,174,91,0.35);
}

.step-card h3 { font-size: 1.05rem; margin-bottom: 0.5rem; }
.step-card p { color: var(--text-light); font-size: 0.9rem; line-height: 1.6; }

/* =========================================
   DOCS SECTION
   ========================================= */
.docs-section {
  background: var(--bg-light);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: 2.5rem;
  margin-top: 2.5rem;
  margin-bottom: 2.5rem;
  border: 1px solid rgba(0,0,0,0.06);
}

.docs-section h2 { margin-bottom: 0.5rem; }
.docs-section > p { color: var(--text-light); margin-bottom: 1.5rem; }

.docs-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

.doc-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem 1rem;
  background: var(--bg-color);
  border-radius: var(--radius);
  font-size: 0.92rem;
  font-weight: 500;
}

.doc-item i {
  font-size: 1.2rem;
  color: var(--secondary-color);
}

/* =========================================
   FAQ SECTION
   ========================================= */
.faq-section {
  padding: 3rem 0;
}

.faq-section h2 { font-size: 1.75rem; margin-bottom: 2rem; }

.accordion-item {
  background: var(--bg-light);
  border-radius: var(--radius);
  margin-bottom: 0.75rem;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.06);
}

.accordion-header {
  width: 100%;
  text-align: left;
  padding: 1.25rem 1.5rem;
  background: transparent;
  border: none;
  font-family: var(--title-font);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--title-color);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition-fast);
}

.accordion-header:hover { color: var(--primary-color); }

.accordion-header i {
  font-size: 1.4rem;
  transition: transform var(--transition-fast);
  color: var(--text-light);
  flex-shrink: 0;
}

.accordion-header.active i {
  transform: rotate(180deg);
  color: var(--primary-color);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out;
  background: #fafafa;
}

.accordion-content p {
  padding: 0 1.5rem 1.5rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* =========================================
   CTA SECTION
   ========================================= */
.ir-cta {
  background: linear-gradient(135deg, var(--title-color) 0%, #1a1a2e 100%);
  border-radius: var(--radius-lg);
  padding: 3rem 2rem;
  text-align: center;
  margin: 2.5rem 0 4rem;
  position: relative;
  overflow: hidden;
}

.ir-cta::before {
  content: '';
  position: absolute;
  width: 400px; height: 400px;
  background: rgba(12,174,91,0.1);
  border-radius: 50%;
  top: -200px; right: -100px;
  filter: blur(60px);
}

.ir-cta h2 {
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  color: #fff;
  margin-bottom: 0.75rem;
  position: relative;
}

.ir-cta p {
  color: #bbb;
  max-width: 520px;
  margin: 0 auto 1.75rem;
  font-size: 1.05rem;
  position: relative;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}

.ir-cta .btn-primary {
  font-size: 1.05rem;
}

.ir-cta .btn-ghost {
  background: rgba(255,255,255,0.1);
  color: #fff;
  border-color: rgba(255,255,255,0.25);
}

.ir-cta .btn-ghost:hover {
  background: rgba(255,255,255,0.2);
}

/* =========================================
   FOOTER
   ========================================= */
.site-footer {
  background-color: var(--title-color);
  color: #fff;
}

.footer-main {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  padding: 3rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand img {
  width: 180px;
  filter: brightness(0) invert(1);
  margin-bottom: 1rem;
}

.footer-brand p {
  color: #aaa;
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 300px;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.social-link {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.1rem;
  transition: var(--transition-fast);
  text-decoration: none;
}

.social-link:hover {
  background: var(--secondary-color);
  transform: translateY(-3px);
}

.footer-col h4 {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 1rem;
}

.footer-col ul li {
  margin-bottom: 0.75rem;
}

.footer-col ul li a {
  color: #aaa;
  font-size: 0.9rem;
  transition: var(--transition-fast);
}

.footer-col ul li a:hover {
  color: var(--primary-light);
  padding-left: 4px;
}

.footer-bottom {
  padding: 1.25rem 0;
  background: #111;
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  color: #888;
  font-size: 0.85rem;
}

.footer-bottom-inner a {
  color: #888;
  transition: var(--transition-fast);
}

.footer-bottom-inner a:hover { color: #fff; }

/* =========================================
   SUCESSO PAGE
   ========================================= */
.success-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 3rem 0;
}

.success-card {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding: 3rem;
}

.success-logo { width: 180px; margin: 0 auto 1rem; }

.success-card h1 { font-size: 2rem; margin-bottom: 0.75rem; }
.success-card p { color: var(--text-light); margin-bottom: 1.75rem; }

.success-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.info-banner {
  margin: 1.5rem 0;
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius);
  background: rgba(12,174,91,0.06);
  border: 1px solid rgba(12,174,91,0.2);
  text-align: left;
}

.info-banner h2 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.info-banner ul { list-style: disc; padding-left: 1.25rem; color: var(--text-light); line-height: 1.8; }

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 1024px) {
  .lotes-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
  .hero-grid,
  .contract-card,
  .footer-main { grid-template-columns: 1fr; }

  .hero-form-card { position: static; }

  .info-grid,
  .requisitos-grid,
  .docs-list { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .ir-hero { padding: 3rem 0 2.5rem; }
  .lotes-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: 1fr; }
  .result-actions,
  .cta-buttons,
  .success-actions { flex-direction: column; }
  .result-actions .btn,
  .cta-buttons .btn { width: 100%; }
  .grid-2,
  .grid-3 { grid-template-columns: 1fr; }
  .copy-row { flex-direction: column; }
  .countdown-grid { gap: 0.75rem; }
  .count-num { font-size: 2.25rem; }
  .footer-main { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
}
