/* ===== INDICAÇÃO PAGE ===== */

.indicacao-banner {
  width: 100%;
  aspect-ratio: 1920 / 700;
  background-image: url("../../media/img/banner_conecte.jpeg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

@media screen and (max-width: 768px) {
  .indicacao-banner {
    aspect-ratio: 1920 / 900;
  }
}

.indicacao-hero {
  background: linear-gradient(135deg, #004968 0%, #0077aa 100%);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.indicacao-hero::before {
  content: "";
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.05) 0%,
    transparent 70%
  );
  border-radius: 50%;
}

.hero-content {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-text {
  color: white;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: 0.625rem 1.25rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 700;
  margin-bottom: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-badge i {
  font-size: 1.15rem;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.hero-description {
  font-size: 1.2rem;
  line-height: 1.7;
  opacity: 0.95;
  margin-bottom: 2.5rem;
  max-width: 500px;
}

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

.btn-primary {
  background: #f97316;
  color: white;
  padding: 0.875rem 1.75rem;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  transition: all 0.3s;
  border: 2px solid #f97316;
}

.btn-primary:hover {
  background: #ea580c;
  border-color: #ea580c;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(249, 115, 22, 0.4);
  color: white;
}

.btn-primary i {
  font-size: 1.25rem;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  padding: 0.875rem 1.75rem;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  transition: all 0.3s;
  border: 2px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
  color: white;
}

.hero-image {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-card {
  background: white;
  padding: 3rem 2.5rem;
  border-radius: 24px;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  animation: floatAnimation 3s ease-in-out infinite;
}

@keyframes floatAnimation {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

.card-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #e0f2fe 0%, #bae6fd 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.card-icon i {
  font-size: 2.5rem;
  color: #004968;
}

.hero-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #004968;
  margin-bottom: 0.75rem;
}

.hero-card p {
  color: #6b7280;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Formulário */
.indicacao-form-section {
  padding: 5rem 0;
  background: #f9fafb;
}

.form-wrapper {
  max-width: 700px;
  margin: 0 auto;
  background: white;
  padding: 3rem;
  border-radius: 24px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.form-header {
  text-align: center;
  margin-bottom: 3rem;
}

.form-header h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 0.75rem;
}

.form-header p {
  font-size: 1rem;
  color: #6b7280;
}

/* Steps Indicator */
.steps-indicator {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 3rem;
  gap: 1rem;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0.4;
  transition: all 0.3s;
}

.step.active {
  opacity: 1;
}

.step-number {
  width: 48px;
  height: 48px;
  background: #e5e7eb;
  color: #9ca3af;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.25rem;
  transition: all 0.3s;
}

.step.active .step-number {
  background: #004968;
  color: white;
  box-shadow: 0 4px 15px rgba(0, 73, 104, 0.3);
}

.step-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: #6b7280;
  text-align: center;
}

.step-line {
  width: 80px;
  height: 2px;
  background: #e5e7eb;
}

/* Form Steps */
.form-step {
  display: none;
}

.form-step.active {
  display: block;
  animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group input {
  padding: 0.875rem 1.25rem;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  font-size: 1rem;
  transition: all 0.3s;
  font-family: inherit;
}

.form-group input:focus {
  outline: none;
  border-color: #004968;
  box-shadow: 0 0 0 3px rgba(0, 73, 104, 0.1);
}

.form-group input::placeholder {
  color: #9ca3af;
}

/* Buttons */
.btn-next {
  width: 100%;
  background: #f97316;
  color: white;
  padding: 0.875rem 1.5rem;
  border-radius: 12px;
  border: none;
  font-weight: 700;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-next:hover {
  background: #ea580c;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(249, 115, 22, 0.3);
}

.btn-next i {
  font-size: 1.25rem;
}

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

.btn-back {
  flex: 1;
  background: white;
  color: #374151;
  padding: 0.875rem 1.5rem;
  border-radius: 12px;
  border: 2px solid #e5e7eb;
  font-weight: 700;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-back:hover {
  border-color: #004968;
  color: #004968;
}

.btn-submit {
  flex: 2;
  background: #25d366;
  color: white;
  padding: 0.875rem 1.5rem;
  border-radius: 12px;
  border: none;
  font-weight: 700;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-submit:hover {
  background: #20ba5a;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
}

.btn-submit i {
  font-size: 1.25rem;
}

/* Success Step */
.success-step {
  text-align: center;
  padding: 3rem 2rem;
}

.success-icon {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  animation: successPulse 1s ease;
}

@keyframes successPulse {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.success-icon i {
  font-size: 4rem;
  color: white;
}

.success-step h3 {
  font-size: 1.75rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 0.75rem;
}

.success-step p {
  font-size: 1rem;
  color: #6b7280;
  margin-bottom: 2rem;
}

.btn-home {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  background: #004968;
  color: white;
  padding: 0.875rem 1.75rem;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.3s;
}

.btn-home:hover {
  background: #0077aa;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 73, 104, 0.3);
  color: white;
}

/* Disclaimer */
.form-disclaimer {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid #e5e7eb;
}

.form-disclaimer p {
  font-size: 0.875rem;
  color: #6b7280;
  line-height: 1.6;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.form-disclaimer p i {
  font-size: 1rem;
  color: #f97316;
  margin-top: 0.125rem;
  flex-shrink: 0;
}

/* Como Funciona */
.como-funciona-section {
  padding: 5rem 0;
  background: white;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1f2937;
  text-align: center;
  margin-bottom: 4rem;
}

.timeline {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.timeline-item {
  flex: 1;
  text-align: center;
}

.timeline-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  box-shadow: 0 8px 25px rgba(249, 115, 22, 0.3);
}

.timeline-icon i {
  font-size: 2.25rem;
  color: white;
}

.timeline-content h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 0.5rem;
}

.timeline-content p {
  font-size: 0.9rem;
  color: #6b7280;
  line-height: 1.6;
}

.timeline-line {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, #f97316 0%, #ea580c 100%);
  margin: 0 1rem;
  flex-shrink: 0;
  align-self: flex-start;
  margin-top: 40px;
}

/* Foi Indicado */
.foi-indicado-section {
  padding: 5rem 0;
  background: #f9fafb;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.benefit-card {
  background: white;
  padding: 2.5rem 2rem;
  border-radius: 16px;
  text-align: center;
  transition: all 0.3s;
  border: 2px solid transparent;
}

.benefit-card:hover {
  border-color: #004968;
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(0, 73, 104, 0.15);
}

.benefit-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #e0f2fe 0%, #bae6fd 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.benefit-icon i {
  font-size: 2rem;
  color: #004968;
}

.benefit-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

.benefit-card p {
  font-size: 0.9rem;
  color: #6b7280;
  line-height: 1.6;
}

/* ===== RESPONSIVE ===== */

@media (max-width: 1024px) {
  .hero-content {
    gap: 3rem;
  }

  .hero-title {
    font-size: 2.75rem;
  }

  .timeline {
    flex-direction: column;
    gap: 2rem;
  }

  .timeline-line {
    width: 2px;
    height: 40px;
    margin: 0;
  }
}

@media (max-width: 768px) {
  .indicacao-hero {
    padding: 4rem 0;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }

  .hero-title {
    font-size: 2.25rem;
  }

  .hero-description {
    max-width: 100%;
  }

  .hero-actions {
    justify-content: center;
  }

  .form-wrapper {
    padding: 2rem 1.5rem;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .steps-indicator {
    gap: 0.5rem;
  }

  .step-label {
    font-size: 0.75rem;
  }

  .step-line {
    width: 40px;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .section-title {
    font-size: 2rem;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero-description {
    font-size: 1rem;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    justify-content: center;
  }

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

  .form-actions {
    flex-direction: column;
  }

  .btn-back {
    order: 2;
  }

  .btn-submit {
    order: 1;
  }
}
