/* ============================
   Fonts
   ============================ */
/* Certifique-se de importar no <head> do HTML:
   Cormorant Garamond + Jost via Google Fonts
   (já incluído no terapia-luto.html)
*/

/* Mini navbar */
.mini-nav {
  background: #1e2d4a;
  height: 52px;
}

.mini-nav__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* herda o .logo que você já tem, só ajusta as cores */
.mini-nav .logo-icon {
  color: #b8955a;
  font-size: 1.3rem;
}

.mini-nav .logo-name {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.88rem;
}

.mini-nav__back {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.78rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.04em;
  text-decoration: none;
  transition:
    color 0.2s,
    gap 0.2s;
}

.mini-nav__back:hover {
  color: #fff;
  gap: 10px;
}

.mini-nav__back svg {
  width: 13px;
  height: 13px;
  transition: transform 0.2s;
}

.mini-nav__back:hover svg {
  transform: translateX(-2px);
}

.mini-nav .logo {
  text-decoration: none;
}

/* ============================
   Service Hero
   ============================ */

.service-hero {
  padding: 80px 0 72px;
  background: #f7f3ed;
}

.service-hero__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.kicker {
  font-family: "Jost", sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #b8955a;
  margin-bottom: 14px;
}

.service-hero h1 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 3rem;
  font-weight: 700;
  color: #1e2d4a;
  line-height: 1.1;
  margin-bottom: 20px;
}

.service-hero p {
  font-family: "Jost", sans-serif;
  font-size: 0.96rem;
  line-height: 1.78;
  color: #5a6a7a;
  font-weight: 300;
  max-width: 420px;
  margin-bottom: 32px;
}

.service-hero__image img {
  width: 100%;
  border-radius: 14px;
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.11);
  display: block;
  object-fit: cover;
  height: 380px;
}

/* ============================
   Divider
   ============================ */

.section-divider {
  height: 1px;
  background: linear-gradient(to right, transparent, #d6cabb, transparent);
  margin: 0 auto;
  max-width: 760px;
}

/* ============================
   Sections
   ============================ */

.section {
  padding: 72px 0;
}

.section-alt {
  background: #faf7f2;
}

.section h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2rem;
  font-weight: 600;
  color: #1e2d4a;
  line-height: 1.2;
  margin-bottom: 18px;
}

.section p {
  font-family: "Jost", sans-serif;
  font-size: 0.93rem;
  line-height: 1.8;
  color: #5a6a7a;
  font-weight: 300;
  max-width: 580px;
  margin-bottom: 14px;
}

.section p:last-child {
  margin-bottom: 0;
}

/* ============================
   Sobre o Luto — barra lateral
   ============================ */

.sobre-grid {
  display: grid;
  grid-template-columns: 3px 1fr;
  gap: 32px;
  align-items: start;
}

.sobre-bar {
  background: #b8955a;
  border-radius: 2px;
  align-self: stretch;
  min-height: 80px;
}

.sobre-text h2 {
  margin-bottom: 16px;
}

/* ============================
   Benefits
   ============================ */

.benefits {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: grid;
  gap: 0;
  max-width: 560px;
}

.benefits li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 15px 0;
  border-bottom: 1px solid #ede6d8;
  font-family: "Jost", sans-serif;
  font-size: 0.92rem;
  line-height: 1.6;
  color: #3a4d62;
  font-weight: 400;
}

.benefits li:last-child {
  border-bottom: none;
}

.benefit-dot {
  width: 6px;
  height: 6px;
  min-width: 6px;
  background: #b8955a;
  border-radius: 50%;
  margin-top: 7px;
  flex-shrink: 0;
}

/* ============================
   Como funciona — card
   ============================ */

.como-meta {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 32px;
  max-width: 560px;
  border: 1px solid #ede6d8;
  border-radius: 10px;
  overflow: hidden;
}

.como-meta-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 20px 20px;
  border-right: 1px solid #ede6d8;
  background: #fff;
}

.como-meta-item:last-child {
  border-right: none;
}

.como-meta-label {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #b8955a;
}

.como-meta-value {
  font-size: 0.9rem;
  color: #1e2d4a;
  font-weight: 500;
  line-height: 1.4;
}

/* ============================
   Buttons
   ============================ */

.btn {
  display: inline-block;
  font-family: "Jost", sans-serif;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  border: none;
  cursor: pointer;
  text-decoration: none;
  border-radius: 6px;
  transition:
    background 0.25s,
    transform 0.2s,
    box-shadow 0.2s;
}

.btn--primary {
  background: #1e2d4a;
  color: #ffffff;
  padding: 13px 30px;
}

.btn--primary:hover {
  background: #162038;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(30, 45, 74, 0.2);
}

.btn--cta {
  background: #b8955a;
  color: #ffffff;
  padding: 14px 36px;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
}

.btn--cta:hover {
  background: #c9a66b;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(184, 149, 90, 0.3);
}

/* ============================
   CTA
   ============================ */

.cta {
  padding: 80px 0;
  text-align: center;
  background: #1e2d4a;
  color: #ffffff;
}

.cta h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2.1rem;
  font-weight: 600;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 10px;
}

.cta__sub {
  font-family: "Jost", sans-serif;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 300;
  letter-spacing: 0.02em;
  margin-bottom: 32px;
  max-width: 100%;
}

/* ============================
   Responsive
   ============================ */

@media (max-width: 780px) {
  .como-meta {
    grid-template-columns: 1fr 1fr;
    max-width: 100%;
  }

  .como-meta-item:nth-child(2) {
    border-right: none;
  }

  .como-meta-item:nth-child(1),
  .como-meta-item:nth-child(2) {
    border-bottom: 1px solid #ede6d8;
  }

  .service-hero__grid {
    grid-template-columns: 1fr;
    gap: 36px;
    /* impede o grid de vazar */
    min-width: 0;
    width: 100%;
  }

  /* garante que o container não ultrapasse a tela */
  .container {
    padding-left: 24px;
    padding-right: 24px;
    width: 100%;
    max-width: 100%;
  }

  .service-hero p {
    max-width: 100%;
  }

  .section p {
    max-width: 100%;
  }
}
