/* ============================================================
   HOME.CSS — Estilos específicos da página inicial (index.html)
   ============================================================ */

/* ==================== HERO ==================== */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, #0D1B2A 0%, #1A3C34 100%);
  display: flex;
  align-items: center;
  position: relative;
  padding: 120px 0 80px;
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 150px;
  background: linear-gradient(to bottom, transparent, rgba(13, 27, 42, 0.3));
  pointer-events: none;
}

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

.hero-content {
  color: white;
}

.hero-title {
  color: white !important;
  font-size: clamp(2.8rem, 5vw, 4.5rem) !important;
  line-height: 1.05 !important;
  margin-bottom: 1.25rem;
}

.hero-crm {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.45);
  margin-bottom: 1rem;
  margin-top: -0.5rem;
}

.hero-tagline {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.05rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.hero-tagline strong {
  color: #52B788;
}

.hero-quote {
  border-left: 3px solid #52B788;
  padding: 0.75rem 1.25rem;
  margin: 1.5rem 0;
  background: rgba(82, 183, 136, 0.08);
  border-radius: 0 8px 8px 0;
}

.hero-quote span {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.25rem;
  font-style: italic;
  color: #B7E4C7;
  line-height: 1.5;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.hero-credentials {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.credential-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
}

.credential-item i {
  color: #52B788;
  width: 16px;
}

/* Hero image side */
.hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-photo {
  min-height: 480px !important;
  max-width: 420px;
  width: 100%;
}

/* ==================== ABOUT SECTION ==================== */
.section-about {
  padding: 90px 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

/* ==================== NEUROBRAIN SECTION ==================== */
.neurobrain-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

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

  .hero-credentials {
    align-items: center;
  }

  .hero-image {
    display: none; /* Hide image on tablets to keep hero clean */
  }

  .about-grid,
  .neurobrain-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 100px 0 60px;
    min-height: auto;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: center;
  }

  .hero-ctas .btn {
    width: 100%;
    justify-content: center;
  }
}
