/* =========================================================
   CÃ“DIGO ORGANIZADO E COMENTADO
   ObservaÃ§Ã£o: a ordem original foi mantida para nÃ£o alterar o comportamento.
   Como existem seletores repetidos, mudar a ordem mudaria o resultado visual.
   ========================================================= */

/* =========================================================
   ETAPA 1 â€” VARIÃVEIS GLOBAIS
   Define cores reutilizadas no site.
   ========================================================= */
:root {
  --bg: #000000;
  --gold: #c8a45a;
  --text: #ffffff;
  --muted: #cfd6dd;
}

/* =========================================================
   ETAPA 2 â€” RESET
   Remove margens/paddings padrÃµes e padroniza o box-sizing.
   ========================================================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* =========================================================
   ETAPA 3 â€” BASE DO SITE
   Define fonte padrÃ£o, fundo e cor principal do texto.
   ========================================================= */
body {
  font-family: 'Inter', sans-serif;
  color: var(--text);

  background: linear-gradient(
      to right,
      rgba(0, 0, 0, 0.95),
      rgba(38, 38, 38, 0.8)
    ),
    url('https://images.unsplash.com/photo-1589829545856-d10d557cf95f?q=80&w=1600') center/cover no-repeat;

  background-attachment: fixed;
}

/* =========================================================
   ETAPA 4 â€” NAV / MENU SUPERIOR
   Controla logo, menu, posiÃ§Ã£o e espaÃ§amento da navegaÃ§Ã£o.
   ========================================================= */
.nav {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 20px 10px;
  position: absolute;
  width: 100%;
  z-index: 10;
}

.logo {
  font-weight: 600;
  font-size: 20px;
}

.logo span {
  color: var(--gold);
}

.menu a {
  margin-left: 25px;
  text-decoration: none;
  color: var(--muted);
  font-size: 14px;
}


.nav {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px 60px;
  z-index: 10;
  background: transparent;
}

/* =========================================================
   ETAPA 5 â€” HERO / PRIMEIRA DOBRA
   Controla altura, imagem de fundo, gradiente e alinhamento do conteÃºdo inicial.
   ========================================================= */
.

/* =========================================================
   ETAPA 6 â€” TAG / SELO DO HERO
   Estiliza uma etiqueta pequena acima do tÃ­tulo, caso seja usada.
   ========================================================= */
.tag {
  display: inline-block;
  border: 1px solid var(--gold);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  margin-bottom: 20px;
  color: var(--gold);
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 64px;
  line-height: 1.1;
}

.hero h1 span {
  display: block;
  color: var(--gold);
  font-style: italic;
}

.hero p {
  margin-top: 20px;
  max-width: 500px;
  color: var(--muted);
  line-height: 1.6;
}

/* =========================================================
   ETAPA 7 â€” BOTÃƒO PRINCIPAL
   Estiliza o botÃ£o dourado de chamada para aÃ§Ã£o.
   ========================================================= */
.cta {
  margin-top: 30px;
  display: inline-block;
  background: var(--gold);
  color: #000;
  padding: 14px 22px;
  text-decoration: none;
  font-weight: 500;
  border-radius: 4px;
}

.info {
  margin-top: 20px;
  font-size: 14px;
  color: var(--muted);
}

/* =========================================================
   ETAPA 8 â€” BOTÃƒO FLUTUANTE DO WHATSAPP
   MantÃ©m o botÃ£o fixo no canto inferior direito.
   ========================================================= */
.whatsapp {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 55px;
  height: 55px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
}

.whatsapp img {
  width: 28px;
}

/* =========================================================
   ETAPA 9 â€” SEÃ‡ÃƒO PARA TRABALHADOR
   Controla cards, tÃ­tulo, subtÃ­tulo e CTA da Ã¡rea do trabalhador.
   ========================================================= */
.worker-section {
  background: #f5f5f7;
  padding: 90px 20px 80px;
}

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

.worker-title {
  text-align: center;
  font-family: 'Playfair Display', serif;
  font-size: 56px;
  line-height: 1.1;
  color: #000000;
  margin-bottom: 18px;
  font-weight: 700;
}

.worker-title span {
  color: var(--gold);
  font-style: italic;
  font-weight: 500;
}

.worker-subtitle {
  max-width: 720px;
  margin: 0 auto 54px;
  text-align: center;
  font-size: 16px;
  line-height: 1.7;
  color: #6b7280;
}

.worker-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.worker-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 26px;
  min-height: 210px;
  box-shadow: 0 2px 6px rgba(15, 23, 42, 0.04);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.worker-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.worker-icon {
  width: 46px;
  height: 46px;
  border-radius: 10px;
  background: #f3f4f6;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #000000;
  margin-bottom: 22px;
}

.worker-card h3 {
  font-size: 18px;
  line-height: 1.35;
  color: #000000;
  margin-bottom: 12px;
  font-weight: 700;
}

.worker-card p {
  font-size: 16px;
  line-height: 1.75;
  color: #6b7280;
}

/* =========================================================
   ETAPA 10 â€” SEÃ‡ÃƒO CORRESPONDÃŠNCIA
   Controla a seÃ§Ã£o escura de correspondÃªncia jurÃ­dica.
   ========================================================= */
.correspondencia-section {
  padding: 80px 20px;
  background:
    linear-gradient(180deg, #050505 0%, #000000 100%);
  position: relative;
  overflow: hidden;
}

.correspondencia-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top center, rgba(212, 169, 58, 0.08), transparent 32%);
  pointer-events: none;
}

.correspondencia-container {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.correspondencia-box {
  background: linear-gradient(180deg, rgba(255,255,255,0.03) 0%, rgba(255,255,255,0.01) 100%);
  border: 1px solid rgba(212, 169, 58, 0.18);
  border-radius: 18px;
  padding: 42px 36px;
  text-align: center;
  box-shadow: 0 18px 50px rgba(0,0,0,0.28);
}

.correspondencia-tag {
  display: inline-block;
  padding: 7px 16px;
  margin-bottom: 20px;
  border: 1px solid rgba(212, 169, 58, 0.35);
  border-radius: 999px;
  color: #d4a93a;
  background: rgba(212, 169, 58, 0.06);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.correspondencia-title {
  font-family: 'Playfair Display', serif;
  font-size: 40px;
  line-height: 1.2;
  color: #ffffff;
  margin-bottom: 18px;
}

.correspondencia-title span {
  color: #d4a93a;
  font-style: italic;
  font-weight: 500;
}

.correspondencia-text {
  max-width: 860px;
  margin: 0 auto 18px;
  font-size: 18px;
  line-height: 1.8;
  color: rgba(255,255,255,0.78);
}

.correspondencia-servicos {
  max-width: 860px;
  margin: 0 auto;
  font-size: 17px;
  line-height: 1.8;
  color: #f3f4f6;
}

.correspondencia-servicos strong {
  color: #d4a93a;
  font-weight: 700;
}

@media (max-width: 640px) {
  .correspondencia-section {
    padding: 60px 16px;
  }

  .correspondencia-box {
    padding: 30px 22px;
    border-radius: 14px;
  }

  .correspondencia-title {
    font-size: 28px;
  }

  .correspondencia-text {
    font-size: 16px;
  }

  .correspondencia-servicos {
    font-size: 15px;
  }
}

.worker-cta-wrap {
  display: flex;
  justify-content: center;
  margin-top: 50px;
}

.worker-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #000000;
  color: #fff;
  padding: 16px 28px;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 500;
  transition: 0.2s ease;
}

.worker-cta:hover {
  background: #000000;
  transform: translateY(-2px);
}

.footer-logo-img {
  width: auto;
  max-height: 150px;
  object-fit: contain;
  display: block;
}

/* =========================================================
   ETAPA 11 â€” SEÃ‡ÃƒO EMPRESA
   Controla bloco escuro, cards e chamada para empresas.
   ========================================================= */
.empresa-section {
  background: linear-gradient(90deg, #000000 0%, #06090c 50%, #131313 100%);
  padding: 90px 20px;
  position: relative;
  overflow: hidden;
}

.empresa-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at left center, rgba(182, 182, 171, 0.08), transparent 28%),
    radial-gradient(circle at center, rgba(255, 255, 255, 0.03), transparent 35%);
  pointer-events: none;

}


.empresa-container {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.correspondencia-section {
  padding: 10px 10px;
  background: #000000;
  color: #ffffff;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.correspondencia-container {
  max-width: 800px;
  margin: 0 auto;
}

.correspondencia-title {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  margin-bottom: 20px;
  color: #ffffff;
}

.correspondencia-title span {
  color: #d4a93a;
  font-style: italic;
  font-weight: 500;
}

.correspondencia-section p {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255,255,255,0.75);
  margin-bottom: 0px;
}

.correspondencia-section p:last-of-type {
  margin-bottom: 10px;
}

.correspondencia-section p strong {
  color: #d4a93a;
}
.empresa-left {
  max-width: 320px;
}

.empresa-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  color: #f3f4f6;
  font-size: 14px;
  line-height: 1;
  margin-bottom: 22px;
  background: rgba(255, 255, 255, 0.04);
}

.empresa-badge-icon {
  color: #d4a93a;
  font-size: 12px;
}

.empresa-title {
  font-family: 'Playfair Display', serif;
  font-size: 62px;
  line-height: 0.95;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 24px;
}

.empresa-title span {
  display: block;
  color: #d4a93a;
  font-style: italic;
  font-weight: 500;
}

.empresa-text {
  font-size: 17px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 28px;
}

.empresa-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 203px;
  height: 46px;
  padding: 0 22px;
  background: #d4a93a;
  color: #000000;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.2s ease;
}

.empresa-button:hover {
  transform: translateY(-2px);
  filter: brightness(1.04);
}

.empresa-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(240px, 1fr));
  gap: 20px;
}

.empresa-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 26px 26px 24px;
  min-height: 184px;
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.empresa-card:hover {
  transform: translateY(-4px);
  border-color: rgba(212, 169, 58, 0.35);
  background: rgba(255, 255, 255, 0.1);
}

.empresa-icon {
  font-size: 28px;
  line-height: 1;
  color: #d4a93a;
  margin-bottom: 22px;
}

.empresa-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  line-height: 1.3;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 12px;
}

.empresa-card p {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.72);
  margin: 0;
}

/* =========================================================
   ETAPA 12 â€” SEÃ‡ÃƒO SOBRE
   Controla layout da imagem, carrossel, badge e textos sobre o escritÃ³rio.
   ========================================================= */
.sobre-section {
  background: #f5f5f7;
  padding: 90px 20px;
}

.sobre-container {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(320px, 470px) minmax(320px, 430px);
  justify-content: center;
  gap: 48px;
  align-items: center;
}

.sobre-image-wrap {
  position: relative;
}

.sobre-image {
  width: 100%;
  height: 560px;
  object-fit: cover;
  border-radius: 14px;
  display: block;
  box-shadow: 0 18px 40px rgba(3, 5, 9, 0.12);
}

.sobre-badge {
  position: absolute;
  right: -14px;
  bottom: -14px;
  width: 124px;
  min-height: 92px;
  background: #f2f2f2;
  border-radius: 12px;
  padding: 14px 14px 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 12px;
}

.carousel-item {
  width: 100%;
  display: none;
}

.carousel-item.active {
  display: block;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.4);
  color: #fff;
  border: none;
  font-size: 28px;
  padding: 6px 12px;
  cursor: pointer;
}

.carousel-btn.prev {
  left: 10px;
}

.carousel-btn.next {
  right: 10px;
}

.sobre-badge strong {
  font-size: 34px;
  line-height: 1;
  color: #d4a93a;
  font-weight: 700;
  margin-bottom: 8px;
}

.sobre-badge span {
  font-size: 10px;
  line-height: 1.5;
  color: #6b7280;
}

.sobre-content {
  max-width: 430px;
}

.sobre-title {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  line-height: 1.05;
  color: #000000;
  font-weight: 700;
  margin: 0 0 18px;
}

.sobre-title span {
  display: block;
  color: #d4a93a;
  font-style: italic;
  font-weight: 500;
  margin-top: 4px;
}

.sobre-text {
  font-size: 14px;
  line-height: 2;
  color: #6b7280;
  margin-bottom: 14px;
}

.sobre-quote {
  margin: 18px 0 20px;
  padding: 12px 14px;
  background: #eeeeee;
  border-left: 3px solid #d4a93a;
  font-size: 13px;
  line-height: 1.7;
  color: #000000;
  font-style: italic;
}

.sobre-areas {
  margin-top: 10px;
}

.sobre-areas-title {
  font-size: 20px;
  color: #000000;
  font-weight: 700;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid #d1d5db;
}

.sobre-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sobre-list li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 12px;
  font-size: 13px;
  line-height: 1.7;
  color: #6b7280;
}

.sobre-list li::before {
  content: "â–£";
  position: absolute;
  left: 0;
  top: 0;
  color: #d4a93a;
  font-size: 12px;
  line-height: 1.7;
}

/* =========================================================
   ETAPA 13 â€” SEÃ‡ÃƒO ÃREAS DE ATUAÃ‡ÃƒO
   Controla cards, tÃ­tulos e grid das Ã¡reas jurÃ­dicas.
   ========================================================= */
.areas-section {
  background: #f5f5f7;
  padding: 90px 20px 80px;
}

.areas-container {
  max-width: 1120px;
  margin: 0 auto;
}

.areas-title {
  text-align: center;
  font-family: 'Playfair Display', serif;
  font-size: 56px;
  line-height: 1.1;
  color: #000000;
  margin-bottom: 18px;
  font-weight: 700;
}

.areas-title span {
  color: #c8a45a;
  font-style: italic;
  font-weight: 500;
}

.areas-subtitle {
  max-width: 860px;
  margin: 0 auto 54px;
  text-align: center;
  font-size: 16px;
  line-height: 1.8;
  color: #6b7280;
}

.areas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.areas-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 32px;
  min-height: 230px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.areas-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

.areas-icon {
  width: 58px;
  height: 58px;
  border-radius: 14px;
  background: #f3f4f6;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: #000000;
  margin-bottom: 24px;
}

.areas-card h3 {
  font-size: 18px;
  line-height: 1.35;
  color: #000000;
  margin-bottom: 14px;
  font-weight: 700;
}

.areas-card p {
  font-size: 16px;
  line-height: 1.85;
  color: #6b7280;
}

@media (max-width: 991px) {
  .areas-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .areas-title {
    font-size: 44px;
  }
}

@media (max-width: 640px) {
  .areas-section {
    padding: 70px 16px 60px;
  }

  .areas-grid {
    grid-template-columns: 1fr;
  }

  .areas-title {
    font-size: 34px;
  }

  .areas-subtitle {
    font-size: 15px;
    margin-bottom: 36px;
  }

  .areas-card {
    min-height: auto;
    padding: 24px;
  }

  .areas-card h3 {
    font-size: 17px;
  }

  .areas-card p {
    font-size: 15px;
    line-height: 1.7;
  }
}


/* =========================================================
   ETAPA 14 â€” RESPONSIVO GERAL
   Ajusta grids, tamanhos, espaÃ§amentos e layout em telas menores.
   ========================================================= */
@media (max-width: 991px) {
  .worker-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .worker-title {
    font-size: 44px;
  }

  .empresa-container {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .empresa-left {
    max-width: 100%;
  }

  .empresa-title {
    font-size: 52px;
  }

  .sobre-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .sobre-content {
    max-width: 100%;
  }

  .sobre-image {
    height: 500px;
  }
  
}



@media (max-width: 768px) {
  .hero {
    padding: 0 20px;
  }

  .nav {
    padding: 10px;
  }

  .hero h1 {
    font-size: 38px;
  }
}

@media (max-width: 640px) {
  .worker-section {
    padding: 70px 16px 60px;
  }

  .worker-grid {
    grid-template-columns: 1fr;
  }

  .worker-title {
    font-size: 34px;
  }

  .worker-subtitle {
    font-size: 15px;
    margin-bottom: 36px;
  }

  .worker-card {
    min-height: auto;
    padding: 22px;
  }

  .worker-card h3 {
    font-size: 17px;
  }

  .worker-card p {
    font-size: 15px;
    line-height: 1.65;
  }

  .worker-cta {
    width: 100%;
    max-width: 340px;
    text-align: center;
  }

  .empresa-section {
    padding: 70px 16px;
  }

  .empresa-title {
    font-size: 42px;
  }

  .empresa-text {
    font-size: 16px;
  }

  .empresa-grid {
    grid-template-columns: 1fr;
  }

  .empresa-card {
    min-height: auto;
    padding: 22px;
  }

  .empresa-button {
    width: 100%;
    max-width: 320px;
  }

  .sobre-section {
    padding: 70px 16px;
  }

  .sobre-title {
    font-size: 24px;
  }

  .sobre-text {
    font-size: 15px;
    line-height: 1.8;
  }

  .sobre-image {
    height: 420px;
  }

  .sobre-badge {
    right: 10px;
    bottom: 10px;
    width: 120px;
  }

  .sobre-areas-title {
    font-size: 18px;
  }

  .sobre-list li {
    font-size: 14px;
  }

    .sobre-list li {
    font-size: 14px;
  }
}

/* =========================================================
   ETAPA 15 â€” SEÃ‡ÃƒO PILARES
   Controla os cards de pilares e a barra inferior.
   ========================================================= */
.pilares-section {
  background: #f5f5f7;
  padding: 90px 20px 70px;
}

.pilares-container {
  max-width: 1120px;
  margin: 0 auto;
}

.pilares-title {
  text-align: center;
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  line-height: 1.1;
  color: #000000;
  font-weight: 700;
  margin-bottom: 46px;
  position: relative;
}

.pilares-title::after {
  content: "";
  display: block;
  width: 42px;
  height: 2px;
  background: #d4a93a;
  margin: 12px auto 0;
  border-radius: 999px;
}

.pilares-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 980px;
  margin: 0 auto 32px;
}

.pilares-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 26px 22px 22px;
  min-height: 170px;
  text-align: center;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.pilares-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.pilares-icon {
  width: 40px;
  height: 40px;
  margin: 0 auto 18px;
  border-radius: 999px;
  background: #000000;
  color: #d4a93a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  line-height: 1;
}

.pilares-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  line-height: 1.3;
  color: #000000;
  font-weight: 700;
  margin-bottom: 10px;
}

.pilares-card p {
  font-size: 14px;
  line-height: 1.65;
  color: #6b7280;
  max-width: 240px;
  margin: 0 auto;
}

.pilares-bar {
  max-width: 980px;
  margin: 0 auto;
  background: #000000;
  border-radius: 10px;
  padding: 18px 22px;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 16px;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.12);
}

.pilares-bar-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.pilares-bar-icon {
  color: #d4a93a;
  font-size: 18px;
  line-height: 1;
  flex-shrink: 0;
}

.pilares-bar-item p {
  font-size: 13px;
  line-height: 1.45;
  color: #ffffff;
  margin: 0;
}

.pilares-divider {
  width: 1px;
  height: 30px;
  background: rgba(255, 255, 255, 0.18);
}

/* =========================================================
   ETAPA 16 â€” FAQ / PERGUNTAS FREQUENTES
   Controla acordeÃµes, perguntas, respostas e setas.
   ========================================================= */
.faq-section {
  background: #f5f5f7;
  padding: 90px 20px 80px;
}

.faq-container {
  max-width: 1120px;
  margin: 0 auto;
}

.faq-header {
  text-align: center;
  margin-bottom: 34px;
}

.faq-icon {
  width: 34px;
  height: 34px;
  margin: 0 auto 14px;
  color: #d4a93a;
}

.faq-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.faq-title {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  line-height: 1.1;
  color: #000000;
  font-weight: 700;
  margin-bottom: 10px;
}

.faq-subtitle {
  font-size: 15px;
  line-height: 1.7;
  color: #6b7280;
}

.faq-list {
  max-width: 760px;
  margin: 0 auto;
}

.faq-item {
  background: #f5f5f7;
  border: 1px solid #cfd5dd;
  border-radius: 8px;
  margin-bottom: 10px;
  overflow: hidden;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 16px;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 600;
  color: #000000;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-arrow {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  position: relative;
}

.faq-arrow::before,
.faq-arrow::after {
  content: "";
  position: absolute;
  top: 7px;
  width: 7px;
  height: 1.5px;
  background: #d4a93a;
  border-radius: 999px;
  transition: transform 0.2s ease;
}

.faq-arrow::before {
  left: 2px;
  transform: rotate(45deg);
}

.faq-arrow::after {
  right: 2px;
  transform: rotate(-45deg);
}

.faq-item[open] .faq-arrow::before {
  transform: rotate(-45deg);
}

.faq-item[open] .faq-arrow::after {
  transform: rotate(45deg);
}
.nav {
  background: transparent;
}

/* Ajuste na navegaÃ§Ã£o para nÃ£o sobrepor */
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 60px;
  position: relative;
  width: 100%;
  z-index: 10;
}

/* Ajuste no Hero para compensar a mudanÃ§a da nav */
.hero {
  min-height: 10vh; /* Mudado de height para min-height */
  height: auto;
  display: flex;
  flex-direction: column; /* Organiza Nav e Content verticalmente */
  align-items: flex-start;
  justify-content: center;
  padding: 0 60px 60px; /* Padding inferior para respiro */
  position: relative;
  /* ... mantenha o background existente ... */
}

/* Remove o padding fixo exagerado que causava o conflito */
.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 40px; /* Reduzido, jÃ¡ que a nav agora ocupa espaÃ§o real */
}

.faq-content {
  border-top: 1px solid #d9dee5;
  padding: 14px 16px 16px;
  font-size: 14px;
  line-height: 1.8;
  color: #6b7280;
}

/* =========================================================
   ETAPA 17 â€” RODAPÃ‰
   Controla footer, navegaÃ§Ã£o inferior, contatos e redes sociais.
   ========================================================= */
.footer-seo {
  background: #000000;
  position: relative;
}

.footer-seo-top-line {
  width: 100%;
  height: 3px;
  background: #d4a93a;
}

.footer-seo-container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 42px 20px 18px;
}

.footer-seo-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.9fr 1.5fr;
  gap: 52px;
  align-items: start;
}

@media (max-width: 768px) {
  .nav {
    padding: 20px;
    flex-direction: column; /* Se a logo e menu forem grandes, empilha-os */
    align-items: center;
    gap: 20px;
  }

  .hero {
    padding: 0 20px;
    text-align: center;
    align-items: center;
  }

  .logo-image img {
    height: 80px; /* Garante que a logo diminua em telas pequenas */
    margin: 0 auto 20px;
  }
}

.footer-logo {
  display: inline-block;
  font-family: 'Playfair Display', serif;
  font-size: 34px;
  line-height: 1;
  font-weight: 700;
  color: #ffffff;
  text-decoration: none;
  margin-bottom: 14px;
}

.footer-logo span {
  color: #d4a93a;
}

.footer-tagline {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.74);
  font-style: italic;
  max-width: 260px;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social-link {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.2s ease;
}

.footer-social-link:hover {
  color: #d4a93a;
  border-color: rgba(212, 169, 58, 0.35);
  transform: translateY(-2px);
}

.footer-social-link svg {
  width: 16px;
  height: 16px;
}

.footer-title {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  line-height: 1.2;
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 18px;
}

.footer-nav ul,
.footer-contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-nav li {
  margin-bottom: 10px;
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  font-size: 14px;
  line-height: 1.7;
  transition: 0.2s ease;
}

.footer-nav a:hover {
  color: #d4a93a;
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
}

.footer-contact-list a,
.footer-address {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  font-size: 14px;
  line-height: 1.65;
  font-style: normal;
}

.footer-contact-list a:hover {
  color: #d4a93a;
}

.footer-contact-icon {
  width: 18px;
  height: 18px;
  color: #d4a93a;
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-contact-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.footer-address-row {
  align-items: flex-start;
}

.hero {
  padding-top: 20px;
}

.footer-address {
  max-width: 420px;
}

.footer-bottom {
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
}

.footer-bottom-left p {
  font-size: 12px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.56);
}

.footer-top-button {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: 0.2s ease;
}

.footer-top-button:hover {
  background: rgba(212, 169, 58, 0.18);
  color: #d4a93a;
  transform: translateY(-2px);
}

.footer-top-button svg {
  width: 15px;
  height: 15px;
}

.logo-image {
  display: flex;
  align-items: center;
}

.logo-image {
  margin-bottom: 30px;
}



.logo-image img {
  display: block;
  width: auto;
  height: clamp(90px, 10vw, 160px);
  object-fit: contain;
  margin-bottom: 30px;
}

.logo-image {
  position: relative;
  z-index: 20;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 40px;
}


@media (max-width: 991px) {
  .footer-seo-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

  .footer-contact {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .hero-content {
    padding-top: 20px;
  }
}

@media (max-width: 640px) {
  .footer-seo-container {
    padding: 36px 16px 18px;
  }

  .footer-seo-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-contact {
    grid-column: auto;
  }

  .footer-logo {
    font-size: 30px;
  }

  .footer-title {
    font-size: 18px;
    margin-bottom: 14px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 1200px) {
  .logo-image img {
    height: 110px;
  }

  .hero h1 {
    font-size: 56px;
  }
}

@media (max-width: 900px) {
  .logo-image img {
    height: 85px;
  }

  .hero h1 {
    font-size: 42px;
  }
}

@media (max-width: 640px) {
  .faq-section {
    padding: 70px 16px 60px;
  }

  .faq-title {
    font-size: 32px;
  }

  .faq-subtitle {
    font-size: 14px;
  }

  .faq-item summary {
    padding: 16px 14px;
    font-size: 13px;
  }

  .faq-content {
    padding: 13px 14px 15px;
    font-size: 13px;
    line-height: 1.75;
  }
}

@media (max-width: 991px) {
  .pilares-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pilares-bar {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .pilares-divider {
    display: none;
  }
}

@media (max-width: 640px) {
  .pilares-section {
    padding: 70px 16px 60px;
  }

  .pilares-title {
    font-size: 32px;
    margin-bottom: 34px;
  }

  .pilares-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 24px;
  }

  .pilares-card {
    min-height: auto;
    padding: 22px 18px;
  }

  .pilares-bar {
    padding: 18px 16px;
  }

  .pilares-bar-item p {
    font-size: 13px;
  }
}

/* =========================================================
   ETAPA 18 â€” AJUSTES FINAIS / SOBRESCRITAS
   Ãšltimas regras com !important. Como estÃ£o no final, elas vencem regras anteriores.
   ========================================================= */
.hero {
  justify-content: flex-start !important;
  padding-top: 40px !important;
}

.hero-content {
  padding-top: 0 !important;
  margin-top: 0 !important;
}

.nav {
  padding-bottom: 20px !important;
}

@media (max-width: 768px) {
  .nav {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 80px !important;
    padding: 18px 22px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    flex-direction: row !important;
    z-index: 100 !important;
  }

  .logo-image {
    margin: 0 !important;
  }

  .logo-image img {
    height: 150px !important;
    margin: 0 !important;
    padding-top: 20px;
  }

  .hamburger {
    display: block !important;
    background: transparent !important;
    border: none !important;
    color: #ffffff !important;
    font-size: 30px !important;
    line-height: 1 !important;
    cursor: pointer !important;
  }

  .menu {
    display: none !important;
    position: absolute !important;
    top: 80px !important;
    right: 20px !important;
    width: 210px !important;
    background: rgba(0, 0, 0, 0.92) !important;
    padding: 18px !important;
    border-radius: 10px !important;
    flex-direction: column !important;
    gap: 14px !important;
  }

  .menu.active {
    display: flex !important;
  }

  .menu a {
    margin-left: 0 !important;
    color: #ffffff !important;
    font-size: 15px !important;
  }

  .hero {
    min-height: 70vh !important;
    padding: 120px 20px 40px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    text-align: center !important;
  }

  .hero h1 {
    font-size: 36px !important;
    line-height: 1.05 !important;
  }

  .hero p {
    font-size: 14px !important;
    line-height: 1.45 !important;
    margin-top: 18px !important;
  }

  .cta {
    margin-top: 24px !important;
  }
}

.hamburger {
  display: none;
}

@media (max-width: 768px) {
  .hamburger {
    display: block;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 30px;
    cursor: pointer;
    z-index: 100;
  }

  .menu {
    display: none;
    position: absolute;
    top: 80px;
    right: 20px;
    background: rgba(0, 0, 0, 0.95);
    padding: 18px;
    border-radius: 10px;
    flex-direction: column;
    gap: 12px;
    width: 200px;
  }

  .menu.active {
    display: flex;
  }

  .menu a {
    margin: 0;
    color: #fff;
  }
}