/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
  font-family: 'Segoe UI', sans-serif;
}

body {
  background-color: #f8f1e9;
  font-family: 'Segoe UI', sans-serif;
}

/* CONTAINERS */
.container-hero,
.container-sessao0,
.sessao-fases-container,
.container-leis,
.container-dna,
.container-comparativo {
  max-width: 1440px;
  margin: 0 auto;
  width: 100%;
}

/* HERO */
.hero {
  text-align: center;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-imagem-container {
  position: relative;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
}

.imagem-hero {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.hero-texto {
  position: absolute;
  bottom: 10%;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.7);
  padding: 15px 25px;
  border-radius: 10px;
  max-width: 90%;
  text-align: center;
  color: #444;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.hero-texto h1 {
  font-family: 'Cormorant SC', serif;
  font-size: 26px;
  line-height: 1.4;
}

/* INTRODUÇÃO */
#sessao0 {
  background-color: #af9266;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  text-align: center;
}

#sessao0 p {
  font-family: 'Cormorant SC', serif;
  font-size: 26px;
  color: #fff;
  max-width: 800px;
}

/* FASES */
#sessao00 {
  text-align: center;
  padding: 40px 20px;
}

.fases-titulo h1 {
  font-size: 56px;
  color: #af9266;
  font-family: 'Cormorant SC', serif;
  margin-bottom: 10px;
}

.fases-titulo h2 {
  font-size: 32px;
  color: #444;
  margin-bottom: 30px;
  font-family: 'Cormorant SC', serif;
}

.sessao-fases-container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: flex-start;
}

.fases-coluna {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-width: 300px;
}

.fases-img {
  flex: 1;
  min-width: 200px;
}

.fases-img img {
  width: 60%;
  height: auto;
  border-radius: 12px;
}

.fase {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.fase-texto h3 {
  font-size: 36px;
  color: #af9266;
  font-family: 'Cormorant SC', serif;
  margin-bottom: 6px;
}

.fase-texto p {
  font-size: 20px;
  color: #444;
  line-height: 1.5;
}

/* FOOTER DAS FASES */
#sessao-fase {
  text-align: center;
  padding: 30px 20px;
  background-color: #f8f1e9;
}

.fase-footer h3 {
  font-family: 'Cormorant SC', serif;
  font-size: 24px;
  color: #444;
}

/* LEIS */
.sessao-leis-circular {
  background-color: #fff;
  padding: 50px 20px;
  text-align: center;
}

.sessao-leis-circular h2 {
  font-size: 36px;
  font-family: 'Cormorant SC', serif;
  color: #af9266;
  margin-bottom: 30px;
}

.imagem-central {
  display: block;
  margin: 0 auto;
  max-width: 400px;
  width: 100%;
  height: auto;
}

.container-leis-circular {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 800px;
  margin: 0 auto;
}

.lei {
  background: #fff;
  border-radius: 10px;
  padding: 20px;
  text-align: left;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  font-size: 18px;
  color: #333;
  line-height: 1.5;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.lei strong {
  display: block;
  font-size: 20px;
  font-family: 'Cormorant SC', serif;
  color: #af9266;
}

.lei::before {
  content: attr(data-num);
  font-size: 32px;
  font-weight: bold;
  color: #af9266;
  margin-right: 12px;
  flex-shrink: 0;
}

/* DNA */
.sessao-dna {
  background-color: #fffaf8;
  padding: 60px 20px;
}

.container-dna {
  display: flex;
  gap: 40px;
  align-items: center;
  flex-wrap: wrap;
}

.dna-texto {
  flex: 1;
}

.dna-texto h1 {
  font-family: 'Cormorant SC', serif;
  font-size: 52px;
  color: #af9266;
  margin-bottom: 20px;
}

.dna-texto h2 {
  font-family: 'Cormorant SC', serif;
  font-size: 52px;
  color: #af9266;
  margin-bottom: 20px;
}

.dna-texto p {
  font-size: 20px;
  color: #444;
  line-height: 1.6;
}

.dna-foto {
  flex: 1;
  min-width: 280px;
}

.dna-foto img {
  width: 60%;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
}

/* COMPARATIVO */
.sessao-comparativo {
  background-color: #fff;
  padding: 60px 20px;
  text-align: center;
}

.sessao-comparativo h2 {
  font-family: 'Cormorant SC', serif;
  font-size: 32px;
  color: #af9266;
  margin-bottom: 30px;
}

.tabela-comparativo {
  width: 100%;
  border-collapse: collapse;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}

.tabela-comparativo th,
.tabela-comparativo td {
  border: 1px solid #ddd;
  padding: 14px;
  font-size: 16px;
}

.tabela-comparativo th {
  background: #f7e8df;
  font-family: 'Cormorant SC', serif;
  color: #444;
}

.tabela-comparativo td {
  text-align: center;
  color: #333;
}

/* WHATSAPP */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden; /* 👈 corta o excesso e mantém o formato circular */
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s;
  background: white; /* remove fundo branco */
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

.whatsapp-float img {
  width: 110%;
  height: 110%;
  object-fit: cover; /* garante que preencha o círculo */
}

/* RESPONSIVIDADE */
@media (max-width: 768px) {
  /* Hero */
  .hero {
    min-height: auto;
    padding: 0;
  }

  .hero-texto {
    padding: 10px 15px;
  }

  .hero-texto h1 {
    font-size: 18px;
    line-height: 1.3;
  }

  /* Sessão 0 */
  #sessao0 {
    padding: 20px;
  }

  #sessao0 p {
    font-size: 20px;
  }

  /* Fases */
  .fases-titulo h1 {
    font-size: 36px;
    margin-bottom: 5px;
  }

  .fases-titulo h2 {
    font-size: 20px;
    margin-bottom: 15px;
  }

  .sessao-fases-container {
    flex-direction: column;
    gap: 20px;
  }

  .fase {
    width: 100%;
  }

  .fase-texto h3 {
    font-size: 20px;
  }

  .fase-texto p {
    font-size: 16px;
  }

  /* DNA */
  .dna-texto h1 {
    font-size: 24px;
  }

  .dna-texto h2 {
    font-size: 28px;
  }

  .dna-texto p {
    font-size: 16px;
    padding: 0;
  }

  .dna-foto img {
    width: 100%;
  }

  /* Leis */
  .sessao-leis-circular h2 {
    font-size: 24px;
  }

  .lei {
    font-size: 16px;
  }

  /* Sessões */
  .sessao-dna,
  .sessao-comparativo,
  .sessao-leis-circular {
    padding: 30px 15px;
  }

  /* Tabela */
  .tabela-comparativo {
    font-size: 14px;
  }
}


