/* ═══════════════════════════════════════
   ELY CABELEIREIRO — index.css
   Estilos específicos da página Início
═══════════════════════════════════════ */

/* ── HERO ── */
.hero {
  position: relative;
  height: 70vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center top;
  filter: brightness(0.5);
}

.hero-content {
  position: relative;
  text-align: center;
  color: #fff;
  padding: 0 1.5rem;
}

.hero-sub {
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--ouro-light);
  margin-bottom: 1.2rem;
  font-weight: 400;
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 7vw, 5rem);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: #fff;
}

.hero-title em {
  font-style: italic;
  color: var(--ouro-light);
}

.hero-desc {
  font-size: 14px;
  font-weight: 300;
  color: rgba(255,255,255,0.8);
  max-width: 420px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── CONTACT BAR ── */
.contact-bar {
  background: var(--preto);
  padding: 1rem 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.contact-bar a {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: rgba(245,240,232,0.7);
  text-decoration: none;
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 0.04em;
  transition: color 0.2s;
}

.contact-bar a:hover { color: var(--ouro); }

.contact-bar svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  stroke: var(--ouro);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ── SOBRE NÓS ── */
.sobre {
  padding: 7rem 2rem;
  background: var(--bg-alt);
}

.sobre-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.sobre-img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: center top;
}

.sobre-text h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--preto);
  line-height: 1.2;
  margin-bottom: 2rem;
}

.sobre-text p {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.85;
  color: #1A1A1A;
  margin-bottom: 1.25rem;
}

.sobre-divider {
  width: 40px;
  height: 1px;
  background: var(--ouro);
  margin: 1.75rem 0;
}

/* ── SERVIÇOS ── */
.srv-section {
  background: var(--bg);
  padding: 6rem 2rem;
}

.srv-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 3rem;
}

/* ── PORQUÊ ── */
.porque {
  background: var(--preto);
  padding: 7rem 2rem;
}

.porque .section-label { color: var(--ouro); }
.porque .section-title { color: var(--branco); }

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

.porque-item { text-align: center; }

.porque-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 1.5rem;
  stroke: var(--ouro);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.porque-item h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--branco);
  margin-bottom: 0.75rem;
}

.porque-item p {
  font-size: 13px;
  font-weight: 300;
  color: rgba(245,240,232,0.55);
  line-height: 1.75;
}

/* ── CTA FINAL ── */
.cta-final {
  background: var(--bg-alt);
  padding: 5rem 2rem;
  text-align: center;
  border-top: 1px solid var(--border);
}

.cta-final h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem;
  font-weight: 300;
  color: var(--preto);
  margin-bottom: 1rem;
}

.cta-final p {
  font-size: 14px;
  font-weight: 300;
  color: #1A1A1A;
  margin-bottom: 2.5rem;
}

.cta-final-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── ANIMAÇÕES ── */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .sobre-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .porque-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-bar { gap: 1.25rem; padding: 1rem 1.5rem; }
}

@media (max-width: 580px) {
  .porque-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .sobre-text h2,
  .sobre-text p,
  .sobre-divider {
    display: none;
  }
  .sobre {
    padding: 2.5rem 1.5rem;
    text-align: center;
  }
  .sobre-text {
    display: flex;
    justify-content: center;
  }
}
