/* ══════════════════════════════════════════
   Estudos Bíblicos — página pública
══════════════════════════════════════════ */

/* ── Hero ── */
.eb-hero {
  min-height: 100vh;
  background: linear-gradient(135deg, #1A5C2A 0%, #2D7A3A 60%, #4A9A5A 100%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 120px 8% 80px;
}

.eb-hero-inner {
  max-width: 580px;
}

.eb-label {
  display: inline-block;
  background: rgba(255,255,255,.15);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 24px;
}

.eb-hero h1 {
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 20px;
}

.eb-hero h1 span {
  color: #D4E8A0;
}

.eb-hero p {
  font-size: 18px;
  color: rgba(255,255,255,.85);
  line-height: 1.7;
  margin-bottom: 36px;
}

.eb-btn-portal {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  color: #1A5C2A;
  font-size: 16px;
  font-weight: 700;
  padding: 16px 32px;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 8px 32px rgba(0,0,0,.2);
  transition: transform .15s, box-shadow .15s;
}

.eb-btn-portal:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(0,0,0,.28);
}

.eb-btn-large {
  font-size: 17px;
  padding: 18px 36px;
}

.eb-hero-visual {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.eb-book-icon {
  font-size: 160px;
  opacity: .25;
  filter: drop-shadow(0 20px 60px rgba(0,0,0,.3));
  animation: float 4s ease-in-out infinite;
}

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

/* ── Sections ── */
.eb-section {
  padding: 80px 8%;
}

.eb-section-alt {
  background: #f5f8f5;
}

.eb-container {
  max-width: 1100px;
  margin: 0 auto;
}

.eb-section-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #2D7A3A;
  margin-bottom: 12px;
}

.eb-section-title {
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 800;
  color: #1D1D1F;
  line-height: 1.2;
  margin-bottom: 56px;
}

.eb-section-title span {
  color: #2D7A3A;
}

/* ── Steps ── */
.eb-steps {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.eb-step {
  flex: 1;
  min-width: 200px;
  background: #fff;
  border: 1.5px solid #E8F5E9;
  border-radius: 16px;
  padding: 28px 24px;
  position: relative;
}

.eb-step-num {
  position: absolute;
  top: -14px;
  left: 20px;
  width: 28px;
  height: 28px;
  background: #2D7A3A;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.eb-step-icon {
  font-size: 32px;
  margin-bottom: 12px;
}

.eb-step h4 {
  font-size: 16px;
  font-weight: 700;
  color: #1A5C2A;
  margin-bottom: 8px;
}

.eb-step p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}

.eb-step-arrow {
  font-size: 24px;
  color: #bdd5be;
  flex-shrink: 0;
}

/* ── Feature cards ── */
.eb-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.eb-feature-card {
  background: #fff;
  border-radius: 16px;
  border: 1.5px solid #E8F5E9;
  padding: 28px 24px;
  transition: box-shadow .15s, transform .15s;
}

.eb-feature-card:hover {
  box-shadow: 0 8px 32px rgba(45,122,58,.12);
  transform: translateY(-4px);
}

.eb-feature-icon {
  font-size: 36px;
  margin-bottom: 16px;
}

.eb-feature-card h4 {
  font-size: 16px;
  font-weight: 700;
  color: #1A5C2A;
  margin-bottom: 8px;
}

.eb-feature-card p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

/* ── CTA ── */
.eb-cta {
  background: linear-gradient(135deg, #1A5C2A, #2D7A3A);
  padding: 72px 8%;
}

.eb-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.eb-cta h2 {
  font-size: 32px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
}

.eb-cta p {
  font-size: 16px;
  color: rgba(255,255,255,.8);
}

/* ── Footer ── */
.eb-footer {
  background: #1A5C2A;
  text-align: center;
  padding: 20px;
  font-size: 13px;
  color: rgba(255,255,255,.6);
}

.eb-footer a {
  color: rgba(255,255,255,.8);
}

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

/* ── Responsive ── */
@media (max-width: 768px) {
  .eb-hero {
    flex-direction: column;
    padding: 100px 6% 60px;
    text-align: center;
  }

  .eb-hero-visual { display: none; }

  .eb-step-arrow { display: none; }

  .eb-steps { flex-direction: column; }

  .eb-cta-inner {
    flex-direction: column;
    text-align: center;
  }
}
