/* ═══════════════════════════════════════════════════════════
   INOVAÇÃO RH – Landing Page de Captura
   Paleta: Azul marinho #0d2b52  |  Azul médio #1a4a8a
           Azul ciano  #2196c4   |  Branco #ffffff
   Tipografia: Lora (serif) + Open Sans (sans)
═══════════════════════════════════════════════════════════ */

/* ─ Reset & Base ─────────────────────────── */
.irh-landing-body {
  margin: 0;
  padding: 0;
  background: #0d2b52;
  font-family: 'Open Sans', sans-serif;
  color: #1a1a2e;
  -webkit-font-smoothing: antialiased;
}

.irh-lp-root * {
  box-sizing: border-box;
}

.irh-lp-root a {
  text-decoration: none;
  color: inherit;
}

.irh-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ─ HERO ────────────────────────────────── */
.irh-hero {
  position: relative;
  min-height: 100vh;
  background: linear-gradient(135deg, #0d2b52 0%, #1a4a8a 60%, #0d2b52 100%);
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 40px 0 60px;
}

.irh-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 80% 50%, rgba(33,150,196,0.18) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 10% 80%, rgba(13,43,82,0.6) 0%, transparent 70%);
  pointer-events: none;
}

.irh-hero-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.irh-hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.irh-logo-wrap {
  text-align: center;
  margin-bottom: 48px;
}

.irh-logo {
  height: 64px;
  width: auto;
}

.irh-hero-inner {
  display: grid;
  grid-template-columns: 1fr 440px;
  gap: 56px;
  align-items: center;
}

/* ─ Hero Text ─── */
.irh-eyebrow {
  font-family: 'Open Sans', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  color: #2196c4;
  margin: 0 0 16px;
  text-transform: uppercase;
}

.irh-headline {
  font-family: 'Lora', serif;
  font-size: clamp(28px, 3.8vw, 48px);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  margin: 0 0 20px;
}

.irh-highlight {
  color: #2196c4;
  font-style: italic;
}

.irh-subheadline {
  font-family: 'Open Sans', sans-serif;
  font-size: 17px;
  color: rgba(255,255,255,0.78);
  line-height: 1.7;
  margin: 0 0 32px;
  max-width: 520px;
}

.irh-checklist {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.irh-checklist li {
  font-family: 'Open Sans', sans-serif;
  font-size: 15px;
  color: rgba(255,255,255,0.85);
  display: flex;
  align-items: center;
  gap: 10px;
}

.irh-check {
  background: #2196c4;
  color: #fff;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  flex-shrink: 0;
  font-weight: 700;
}

/* ─ Form Card ─── */
.irh-form-wrap {
  display: flex;
  justify-content: flex-end;
}

.irh-form-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 40px 36px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.35), 0 0 0 1px rgba(255,255,255,0.08);
  width: 100%;
  max-width: 420px;
}

.irh-form-title {
  font-family: 'Lora', serif;
  font-size: 22px;
  font-weight: 700;
  color: #0d2b52;
  margin: 0 0 6px;
  text-align: center;
}

.irh-form-sub {
  font-size: 14px;
  color: #666;
  text-align: center;
  margin: 0 0 28px;
}

.irh-field {
  margin-bottom: 18px;
}

.irh-field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #333;
  margin-bottom: 6px;
}

.irh-field input {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid #dde3ee;
  border-radius: 8px;
  font-size: 15px;
  font-family: 'Open Sans', sans-serif;
  color: #222;
  background: #f7f9fc;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}

.irh-field input:focus {
  border-color: #2196c4;
  box-shadow: 0 0 0 3px rgba(33,150,196,0.15);
  background: #fff;
}

.irh-field input::placeholder {
  color: #aab0be;
}

.irh-field-error {
  background: #fff0f0;
  border: 1px solid #ffb3b3;
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 13px;
  color: #c0392b;
  margin-bottom: 14px;
  display: none;
}

.irh-field-error.irh-visible {
  display: block;
}

.irh-submit-btn {
  width: 100% !important;
  box-sizing: border-box !important;
  padding: 16px !important;
  background: linear-gradient(135deg, #1a4a8a 0%, #0d2b52 100%) !important;
  color: #ffffff !important;
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  font-weight: 700;
  border: none !important;
  border-radius: 10px;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s, opacity 0.15s;
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 12px;
  letter-spacing: 0.5px;
  text-align: center;
  text-decoration: none !important;
  position: relative;
  overflow: hidden;
}

.irh-submit-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(13,43,82,0.4);
}

.irh-submit-btn:active {
  transform: translateY(0);
}

.irh-submit-btn.irh-loading {
  opacity: 0.8;
  pointer-events: none;
}

.irh-btn-loader {
  display: none;
  width: 18px;
  height: 18px;
  border: 2.5px solid rgba(255,255,255,0.35);
  border-top-color: #fff;
  border-radius: 50%;
  animation: irh-spin 0.7s linear infinite;
}

.irh-submit-btn.irh-loading .irh-btn-loader {
  display: block;
}

@keyframes irh-spin {
  to { transform: rotate(360deg); }
}

.irh-privacy {
  font-size: 12px;
  color: #999;
  text-align: center;
  margin: 14px 0 0;
}

/* ─ Success View ─── */
.irh-success-view {
  text-align: center;
  padding: 12px 0;
}

.irh-success-icon {
  font-size: 56px;
  margin-bottom: 16px;
  line-height: 1;
}

.irh-success-view h2 {
  font-family: 'Lora', serif;
  font-size: 22px;
  color: #0d2b52;
  margin: 0 0 12px;
}

.irh-success-view p {
  font-size: 14px;
  color: #555;
  margin: 0 0 10px;
  line-height: 1.7;
}

.irh-whatsapp-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 14px 24px;
  background: #25d366;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  border-radius: 10px;
  transition: background 0.2s, transform 0.15s;
}

.irh-whatsapp-btn:hover {
  background: #1ebe5c;
  transform: translateY(-1px);
}

/* ─ BENEFITS ─────────────────────────────── */
.irh-benefits {
  background: #f7f9fc;
  padding: 80px 0;
}

.irh-section-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3.5px;
  color: #2196c4;
  text-transform: uppercase;
  text-align: center;
  margin: 0 0 12px;
}

.irh-section-title {
  font-family: 'Lora', serif;
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  color: #0d2b52;
  text-align: center;
  margin: 0 0 16px;
  line-height: 1.25;
}

.irh-section-lead {
  font-size: 16px;
  color: #555;
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
  line-height: 1.75;
}

.irh-benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.irh-benefit-card {
  background: #fff;
  border-radius: 12px;
  padding: 32px 24px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
  border-top: 3px solid #2196c4;
}

.irh-benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}

.irh-benefit-icon {
  font-size: 40px;
  margin-bottom: 16px;
  line-height: 1;
}

.irh-benefit-card h3 {
  font-family: 'Lora', serif;
  font-size: 17px;
  font-weight: 700;
  color: #0d2b52;
  margin: 0 0 10px;
}

.irh-benefit-card p {
  font-size: 14px;
  color: #666;
  line-height: 1.65;
  margin: 0;
}

/* ─ CONTENTS ─────────────────────────────── */
.irh-contents {
  background: linear-gradient(135deg, #0d2b52 0%, #1a4a8a 100%);
  padding: 80px 0;
}

.irh-eyebrow-light { color: #64b5e8 !important; }

.irh-title-light {
  color: #ffffff !important;
}

.irh-contents-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 48px;
}

.irh-content-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  padding: 28px 24px;
  transition: background 0.2s;
}

.irh-content-item:hover {
  background: rgba(255,255,255,0.11);
}

.irh-content-num {
  font-family: 'Lora', serif;
  font-size: 40px;
  font-weight: 700;
  color: rgba(33,150,196,0.6);
  line-height: 1;
  flex-shrink: 0;
}

.irh-content-item h4 {
  font-family: 'Lora', serif;
  font-size: 17px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 8px;
}

.irh-content-item p {
  font-size: 14px;
  color: rgba(255,255,255,0.72);
  margin: 0;
  line-height: 1.65;
}

/* ─ ABOUT ────────────────────────────────── */
.irh-about {
  background: #f7f9fc;
  padding: 80px 0;
}

.irh-about-inner {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 64px;
  align-items: center;
}

.irh-about-text .irh-section-title {
  text-align: left;
}

.irh-about-text .irh-section-eyebrow {
  text-align: left;
}

.irh-about-text p {
  font-size: 15px;
  color: #555;
  line-height: 1.75;
  margin: 0 0 16px;
}

.irh-cta-secondary {
  display: inline-block;
  margin-top: 8px;
  padding: 14px 28px;
  background: linear-gradient(135deg, #1a4a8a 0%, #0d2b52 100%);
  color: #fff !important;
  font-weight: 700;
  font-size: 14px;
  border-radius: 8px;
  letter-spacing: 0.5px;
  text-decoration: none !important;
  transition: transform 0.15s, box-shadow 0.15s;
}

.irh-cta-secondary:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(13,43,82,0.3);
}

.irh-about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.irh-stat-box {
  background: #fff;
  border-radius: 12px;
  padding: 28px 20px;
  text-align: center;
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
  border-top: 3px solid #2196c4;
}

.irh-stat-big {
  display: block;
  font-family: 'Lora', serif;
  font-size: 40px;
  font-weight: 700;
  color: #0d2b52;
  line-height: 1;
  margin-bottom: 8px;
}

.irh-stat-label {
  display: block;
  font-size: 12px;
  color: #888;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ─ CTA FINAL ────────────────────────────── */
.irh-cta-final {
  background: linear-gradient(135deg, #1a4a8a 0%, #0d2b52 100%);
  padding: 80px 0;
}

.irh-cta-final-inner {
  text-align: center;
}

.irh-cta-final h2 {
  font-family: 'Lora', serif;
  font-size: clamp(22px, 3vw, 34px);
  color: #fff;
  margin: 0 0 16px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.irh-cta-final p {
  font-size: 16px;
  color: rgba(255,255,255,0.75);
  margin: 0 0 36px;
}

.irh-cta-final-btn {
  display: inline-flex;
  width: auto;
  padding: 18px 48px;
  font-size: 17px;
  border-radius: 12px;
  background: #2196c4;
}

.irh-cta-final-btn:hover {
  background: #1a7aab;
}

/* ─ FOOTER ───────────────────────────────── */
.irh-footer {
  background: #081929;
  padding: 40px 24px;
  text-align: center;
  color: rgba(255,255,255,0.55);
  font-size: 13px;
}

.irh-footer-logo {
  height: 44px;
  width: auto;
  margin-bottom: 16px;
  opacity: 0.85;
}

.irh-footer p {
  margin: 4px 0;
}

.irh-footer a {
  color: rgba(255,255,255,0.65);
  transition: color 0.2s;
}

.irh-footer a:hover {
  color: #2196c4;
}

/* ─ RESPONSIVE ───────────────────────────── */
@media (max-width: 900px) {
  .irh-hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .irh-form-wrap {
    justify-content: center;
  }

  .irh-benefits-grid {
    grid-template-columns: 1fr 1fr;
  }

  .irh-contents-list {
    grid-template-columns: 1fr;
  }

  .irh-about-inner {
    grid-template-columns: 1fr;
  }

  .irh-about-stats {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px) {
  .irh-hero {
    padding: 28px 0 48px;
  }

  .irh-logo {
    height: 48px;
  }

  .irh-logo-wrap {
    margin-bottom: 32px;
  }

  .irh-form-card {
    padding: 28px 20px;
  }

  .irh-benefits-grid {
    grid-template-columns: 1fr;
  }

  .irh-about-stats {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .irh-stat-big {
    font-size: 32px;
  }
}
