/* ================================================
   Indicar Empresa Page
   ================================================ */

.ie-container {
  max-width: 720px;
  margin: 0 auto;
  padding: 2rem 1.5rem 4rem;
}

/* ---- Hero ---- */
.ie-hero {
  text-align: center;
  padding: 2.5rem 1rem 2rem;
}

.ie-hero__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--accent, #0435EC);
  color: #fff;
  margin-bottom: 1.25rem;
}

html[data-theme="dark"] .ie-hero__icon {
  background: var(--accent, #5BA3FF);
}

.ie-hero__title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.75rem, 4vw, 2.4rem);
  font-weight: 700;
  color: var(--primary-dark, #21324A);
  margin: 0 0 0.75rem;
  line-height: 1.2;
}

html[data-theme="dark"] .ie-hero__title {
  color: var(--primary-dark, #F1F5F9);
}

.ie-hero__subtitle {
  font-size: 1.05rem;
  color: var(--text-muted, #64748b);
  line-height: 1.65;
  max-width: 520px;
  margin: 0 auto;
}

/* ---- Highlights ---- */
.ie-highlights {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin: 0 0 2.5rem;
}

.ie-highlight {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--surface, #F0F4F9);
  border-radius: 12px;
  padding: 1rem 1.25rem;
  transition: background 0.3s;
}

html[data-theme="dark"] .ie-highlight {
  background: rgba(255, 255, 255, 0.06);
}

.ie-highlight__icon {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: var(--accent, #0435EC);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

html[data-theme="dark"] .ie-highlight__icon {
  background: var(--accent, #5BA3FF);
}

.ie-highlight div:last-child {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.ie-highlight strong {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--primary-dark, #21324A);
}

html[data-theme="dark"] .ie-highlight strong {
  color: #F1F5F9;
}

.ie-highlight span {
  font-size: 0.88rem;
  color: var(--text-muted, #64748b);
}

/* ---- Form card ---- */
.ie-form-section {
  margin-bottom: 3rem;
}

.ie-form-card {
  background: var(--white, #FFFFFF);
  border-radius: 16px;
  padding: 2rem 2rem 2.25rem;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
  border: 1px solid rgba(0, 0, 0, 0.06);
}

html[data-theme="dark"] .ie-form-card {
  background: #1e293b;
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
}

.ie-form__title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary-dark, #21324A);
  margin: 0 0 0.35rem;
}

html[data-theme="dark"] .ie-form__title {
  color: #F1F5F9;
}

.ie-form__subtitle {
  font-size: 0.9rem;
  color: var(--text-muted, #64748b);
  margin: 0 0 1.75rem;
}

/* ---- Fields ---- */
.ie-form {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.ie-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.ie-field label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--primary-dark, #21324A);
}

html[data-theme="dark"] .ie-field label {
  color: #cbd5e1;
}

.ie-required {
  color: #ef4444;
}

.ie-optional {
  color: var(--text-muted, #94a3b8);
  font-weight: 400;
  font-size: 0.82rem;
}

.ie-field input,
.ie-field textarea {
  width: 100%;
  padding: 0.7rem 0.9rem;
  border-radius: 9px;
  border: 1.5px solid rgba(0, 0, 0, 0.12);
  background: var(--primary-light, #F0F4F9);
  color: var(--primary-dark, #21324A);
  font-size: 0.95rem;
  font-family: inherit;
  transition: border-color 0.25s, box-shadow 0.25s;
  box-sizing: border-box;
  resize: vertical;
}

html[data-theme="dark"] .ie-field input,
html[data-theme="dark"] .ie-field textarea {
  background: #0f172a;
  border-color: rgba(255, 255, 255, 0.12);
  color: #F1F5F9;
}

.ie-field input::placeholder,
.ie-field textarea::placeholder {
  color: #94a3b8;
}

.ie-field input:focus,
.ie-field textarea:focus {
  outline: none;
  border-color: var(--accent, #0435EC);
  box-shadow: 0 0 0 3px rgba(4, 53, 236, 0.12);
}

html[data-theme="dark"] .ie-field input:focus,
html[data-theme="dark"] .ie-field textarea:focus {
  border-color: var(--accent, #5BA3FF);
  box-shadow: 0 0 0 3px rgba(91, 163, 255, 0.15);
}

/* ---- Submit button ---- */
.ie-btn-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  width: 100%;
  padding: 0.85rem 1.5rem;
  margin-top: 0.5rem;
  background: #25d366;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  font-family: inherit;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
}

.ie-btn-submit:hover {
  background: #1da851;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
}

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

/* ---- Scroll reveal ---- */
.scroll-reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.scroll-reveal.visible {
  opacity: 1;
  transform: none;
}

/* ---- Responsive ---- */
@media (max-width: 480px) {
  .ie-form-card {
    padding: 1.5rem 1.25rem 1.75rem;
  }

  .ie-hero {
    padding: 1.5rem 0.5rem 1.5rem;
  }
}
