/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'DM Sans', sans-serif;
}


.hero-subtitle {
  font-weight: 400;
}

body {
  font-weight: 400;
}


/* CORES */
:root {
  --marrom-escuro: #2b1e18;
  --bege: #d8c2a4;
  --branco: #ffffff;
}

/* HERO */
.hero {
  position: relative;
  display: flex;
  min-height: 75vh;           /* nem alto demais, nem achatado */
  background-color: var(--marrom-escuro);
  overflow: hidden;
}

/* DESTAQUE DE TEXTO NO HERO */
.highlight {
  color: var(--bege);
  font-weight: 600;
}




/* LOGO */
.hero-logo {
  position: absolute;
  top: 32px;                  /* respiro elegante */
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
}

.hero-logo img {
  max-width: 380px; /* antes 300px */
}

/* CONTEÚDO ESQUERDO */
.hero-content {
  width: 50%;
  padding: 56px 64px 56px; /* 👈 sobe os “2 dedinhos” no desktop */
  color: var(--branco);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  z-index: 3;
}

.hero-content h1 {
  font-size: 1.9rem;
  line-height: 1.3;
  font-weight: 500;
}

.hero-subtitle {
  font-size: 1rem;
  line-height: 1.6;
  opacity: 0.9;
}

/* CTA */
.hero-cta {
  display: inline-block;
  width: fit-content;
  padding: 14px 28px;
  background-color: var(--bege);
  color: var(--marrom-escuro);
  text-decoration: none;
  font-weight: 600;
  border-radius: 4px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.hero-cta:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

/* IMAGEM DIREITA */
.hero-image {
  width: 50%;
  position: relative;
}

.hero-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    var(--marrom-escuro) 0%,
    rgba(43, 30, 24, 0.65) 22%,
    rgba(43, 30, 24, 0.0) 55%
  );
  z-index: 2;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top; /* evita cortar cabeça */
}

/* SEÇÃO */
.services {
  background-color: var(--bege);
  padding: 80px 64px;
}

/* GRID */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}

/* CARD */
.service-card {
  background-color: var(--marrom-escuro);
  padding: 32px 28px;
  border-radius: 12px;
  color: var(--branco);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* TÍTULO */
.service-card h3 {
  color: var(--bege);
  font-size: 1.2rem;
  line-height: 1.3;
  font-weight: 600;
}

/* LISTA */
.service-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-card li {
  font-size: 0.95rem;
  line-height: 1.5;
  position: relative;
  padding-left: 18px;
}

.service-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--bege);
  font-weight: 600;
}

/* SEÇÃO */
.about-lawyer {
  background-color: var(--bege);
  padding: 80px 64px;
}

/* CARD PRINCIPAL */
.about-card {
  max-width: 1200px;
  margin: 0 auto;
  background-color: var(--marrom-escuro);
  border-radius: 16px;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  overflow: hidden;
}

/* FOTO */
.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* CONTEÚDO */
.about-content {
  padding: 48px 56px;
  color: var(--branco);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* TÍTULOS */
.about-content h2 {
  color: var(--bege);
  font-size: 1.4rem;
  font-weight: 600;
}

.about-content h3 {
  font-size: 1.8rem;
  font-weight: 600;
}

/* TEXTO */
.about-content p {
  font-size: 1rem;
  line-height: 1.6;
  opacity: 0.95;
}

/* CTA */
.about-cta {
  margin-top: 16px;
  width: fit-content;
  padding: 14px 28px;
  background-color: var(--bege);
  color: var(--marrom-escuro);
  text-decoration: none;
  font-weight: 600;
  border-radius: 4px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.about-cta:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}



/* JORNADA DO ATENDIMENTO */
.jornada {
  background-color: var(--marrom-escuro);
  padding: 80px 64px;
  color: var(--branco);
}

.jornada-container {
  max-width: 1200px;
  margin: 0 auto;
}

.jornada-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  margin-bottom: 48px;
}

.jornada-header h2 {
  font-size: 2rem;
  line-height: 1.3;
  font-weight: 600;
}

.jornada-header h2 span {
  color: var(--bege);
}

.jornada-cta {
  background-color: var(--bege);
  color: var(--marrom-escuro);
  padding: 14px 28px;
  border-radius: 24px;
  text-decoration: none;
  font-weight: 600;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.jornada-cta:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

/* ETAPAS */
.jornada-etapas {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.etapa {
  display: grid;
  grid-template-columns: 140px 1fr;
  align-items: center;
  padding: 24px 0;
  border-top: 1px solid rgba(255,255,255,0.15);
}

.etapa:last-child {
  border-bottom: 1px solid rgba(255,255,255,0.15);
}

.etapa-numero {
  color: var(--bege);
  font-weight: 600;
  font-size: 1rem;
}

.etapa-texto {
  font-size: 1rem;
  line-height: 1.6;
  opacity: 0.9;
}


/* FAQ */
.faq {
  background-color: var(--bege);
  padding: 80px 24px;
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-title {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 40px;
  color: var(--branco);
}

.faq-title span {
  color: var(--bege); 
}

/* ITEM */
.faq-item {
  background-color: rgba(0,0,0,0.25);
  border-radius: 6px;
  margin-bottom: 16px;
  overflow: hidden;
}

/* PERGUNTA */
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 18px 20px;
  color: var(--branco);
  font-size: 1rem;
  font-weight: 500;
  text-align: left;
  cursor: pointer;

  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question:hover {
  background-color: rgba(255,255,255,0.04);
}

/* SETA */
.arrow {
  transition: transform 0.3s ease;
  color: #c93a3a;
}

/* RESPOSTA */
.faq-answer {
  display: none;
  padding: 0 20px 20px;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--bege);
}
.faq-item.active .faq-answer {
  display: block;
}
.faq-item.active .arrow {
  transform: rotate(180deg);
}


/* FOOTER */
.footer {
  width: 100%;
}

/* PARTE CLARA */
.footer-top {
  background-color: var(--bege);
  padding: 48px 24px;
  text-align: center;
}

.footer-title {
  font-size: 0.9rem;
  letter-spacing: 1px;
  margin-bottom: 24px;
  color: #4a382e;
  font-weight: 600;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.footer-links a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #4a382e;
  text-decoration: none;
  font-size: 0.95rem;
}

.footer-links svg {
  width: 22px;
  height: 22px;
  fill: #4a382e;
}

/* PARTE ESCURA */
.footer-bottom {
  background-color: var(--marrom-escuro);
  padding: 40px 24px;
  text-align: center;
}

.footer-bottom img {
  max-width: 180px;
  margin-bottom: 16px;
}

.footer-bottom p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
}





/* CARDS DE SERVIÇO – hover só, sem scroll */
.service-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.25);
}

/* BOTÕES */
.hero-cta,
.about-cta,
.jornada-cta {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hero-cta:hover,
.about-cta:hover,
.jornada-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}


/* RESPONSIVO */
@media (max-width: 900px) {
  .hero {
    flex-direction: column;
    min-height: auto;
  }

  .hero-logo {
    position: relative;
    top: 0;
    left: 0;
    transform: none;
    margin: 32px auto 0;
  }

  .hero-logo img {
    max-width: 220px; /* diminui só no mobile */
  }

 .hero-content {
    width: 100%;
    padding: 32px 24px 24px;
    text-align: left;
  }


  .hero-content h1 {
    font-size: 1.6rem;
  }
	
	 

  .hero-image {
    width: 100%;
    height: auto;
  }

  .hero-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
  }

  .hero-image::before {
    background: none;
  }

  .services {
    padding: 48px 24px;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .about-lawyer {
    padding: 48px 24px;
  }

  .about-card {
    grid-template-columns: 1fr;
  }

  .about-photo {
    height: 320px;
  }

  .about-content {
    padding: 32px 28px;
  }

  .about-content h3 {
    font-size: 1.5rem;
  }
    .jornada {
    padding: 64px 24px;
  }

  .jornada-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .jornada-header h2 {
    font-size: 1.6rem;
  }

  .etapa {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .etapa-numero {
    font-size: 0.95rem;
  }

   .faq-title {
    font-size: 1.6rem;
  }

  .faq-question {
    font-size: 0.95rem;
  }

  .faq-answer {
    font-size: 0.9rem;
  }
   .footer-links {
    flex-direction: column;
    gap: 20px;
  }



}
  
  


