/* --------------------------------------------------------
 * Fontes do site
 * -------------------------------------------------------- */
@font-face {
  font-family: 'More Sugar';
  src: url('fonts/MoreSugar-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Calmius Sans Low';
  src: url('fonts/CalmiusSansLow.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

/* --------------------------------------------------------
 * Reset global: remove margens e padding padrão
 * -------------------------------------------------------- */
* {
  margin: 0; /* remove margens externas padrão */
  padding: 0; /* remove preenchimento padrão */
  box-sizing: border-box; /* inclui borda e padding dentro do tamanho definido */
  font-family: 'Calmius Sans Low', Arial, Helvetica, sans-serif; /* define fonte padrão */
}

/* --------------------------------------------------------
 * Corpo da página (body)
 * -------------------------------------------------------- */
body {
  background-color: #fff; /* fundo branco */
  color: #000000; /* texto preto */
}

h1, h2 {
  font-family: 'More Sugar', cursive, sans-serif;
}

button, h3{
  font-family: 'Calmius Sans Low', cursive, sans-serif;
}

/* --------------------------------------------------------
 * Seção Hero (imagem de fundo + conteúdo centralizado)
 * -------------------------------------------------------- */
.hero {
  background-image: url("Projetos/BrisaDaAreia/Entrada.png"); /* imagem de fundo */
  background-size: cover; /* cobre toda a área visível */
  background-position: center; /* centraliza a imagem */
  background-repeat: no-repeat; /* evita repetição */
  color: white; /* texto branco sobre a imagem */
  height: 100vh; /* altura da tela inteira */
  display: flex; /* layout flexível */
  align-items: center; /* alinha verticalmente */
  justify-content: center; /* alinha horizontalmente */
  text-align: center; /* centraliza o texto */
  padding: 2rem; /* espaço interno */
  position: relative;
}

/* Camada escura sobre a imagem para melhorar contraste */
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(
    17,
    11,
    1,
    0.812
  ); /* Ajuste a opacidade se quiser mais ou menos escuro */
  z-index: 1;
}

/* Garante que o conteúdo fique acima da camada escura */
.hero-content {
  position: relative; /* Isso é crucial para que o z-index funcione */
  z-index: 2; /* Garante que o conteúdo fique acima da camada com z-index 1 */
}

/* --------------------------------------------------------
 * Título da Hero
 * -------------------------------------------------------- */
.hero-content h1 {
  font-size: 3rem; /* tamanho grande */
  font-weight: bold;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.8); /* sombra no texto para melhor contraste */
  position: relative;
}


/* --------------------------------------------------------
 * Subtítulo da Hero
 * -------------------------------------------------------- */
.hero-content h3 {
  font-size: 1.5rem; /* tamanho médio */
  margin-top: 0.5rem; /* espaço acima do título */
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8); /* sombra no texto para melhor contraste */
}

/* --------------------------------------------------------
 * Botões dentro da Hero
 * -------------------------------------------------------- */
.botoes button {
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0); /* sombra para destaque */
  position: relative;
}

/* --------------------------------------------------------
 * Parágrafo da Hero
 * -------------------------------------------------------- */
.hero-content p {
  font-size: 1.2rem;
  margin: 1rem 0;
  position: relative;
}

/* --------------------------------------------------------
 * Botão genérico reutilizável
 * -------------------------------------------------------- */
.btn {
  padding: 0.75rem 1.5rem;
  background-color: #3c3c3b;
  border: 3px solid #000000;
  border-radius: 8px;
  box-shadow: 1px 2px rgb(51, 50, 50);
  color: white;
  text-decoration: none;
  font-weight: bold;
  margin-top: 1rem;
  display: inline-block;
  transition: 1s;
  cursor: pointer;
  font-family: 'Calmius Sans Low', cursive, sans-serif;
}

/* --------------------------------------------------------
 * Efeito do botão genérico reutilizável
 * -------------------------------------------------------- */
.btn:hover {
  padding: 0.75rem 1.5rem;
  background-color: #1e1e1e;
  border: 3px solid #000000;
  border-radius: 8px;
  box-shadow: 1px 2px rgb(51, 50, 50);
  color: white;
  text-decoration: none;
  font-weight: bold;
  margin-top: 1rem;
  display: inline-block;
  transition: 1s;
}

/* --------------------------------------------------------
 * Seção Sobre
 * -------------------------------------------------------- */
.sobre {
  padding: 4rem 2rem;
  background-color: #fff;
}

.sobre-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
  gap: 2rem;
  flex-wrap: wrap;
}

/* --------------------------------------------------------
 * Texto da seção Sobre
 * -------------------------------------------------------- */
.texto {
  flex: 1;
  min-width: 300px;
}

.texto h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #000000;
}

.texto p {
  font-size: 1.1rem;
  color: #333232;
  line-height: 1.6;
}

/* --------------------------------------------------------
 * Imagem da seção Sobre
 * -------------------------------------------------------- */
.imagem {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.imagem img {
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

/* --------------------------------------------------------
 * Seção Autora
 * -------------------------------------------------------- */
.autora {
  padding: 4rem 2rem;
  background-color: #fff;
}

.autora-content {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
}

/* --------------------------------------------------------
 * Foto da Autora
 * -------------------------------------------------------- */
.autora-foto {
  flex: 1;
  min-width: 280px;
  text-align: center;
}

.autora-foto img {
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

/* --------------------------------------------------------
 * Texto da Autora
 * -------------------------------------------------------- */
.autora-texto {
  flex: 2;
  min-width: 300px;
}

.autora-texto h2 {
  font-size: 2.2rem;
  color: #000000;
  margin-bottom: 0.5rem;
}

.autora-texto h4 {
  font-size: 1.1rem;
  color: #261a0a;
  margin-bottom: 1rem;
  font-weight: 600;
}

.autora-texto p {
  font-size: 1.1rem;
  color: #000000;
  line-height: 1.6;
}

/* --------------------------------------------------------
 * Seção Projetos
 * -------------------------------------------------------- */
.projetos {
  background-color: #f3f6fb;
  padding: 4rem 2rem;
  text-align: center;
}

.projetos h2 {
  font-size: 2.5rem;
  color: #2d2a26;
  margin-bottom: 0.5rem;
}

.projetos p {
  font-size: 1.1rem;
  color: #000000;
  margin-bottom: 3rem;
}

.cards-projetos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

/* --------------------------------------------------------
 * Cartão de Projeto (card)
 * -------------------------------------------------------- */
.card-projeto {
  background-color: #fff;
  border-radius: 12px;
  overflow: hidden;
  max-width: 350px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.card-projeto:hover {
  transform: translateY(-5px);
}

.card-img {
  position: relative;
}

.card-img img {
  width: 100%;
  height: auto;
  display: block;
}

/* --------------------------------------------------------
 * Tag do card de projeto (ex: destaque)
 * -------------------------------------------------------- */
.tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background-color: #000000;
  color: #fff;
  padding: 0.25rem 0.75rem;
  font-size: 0.9rem;
  border-radius: 999px;
  font-weight: bold;
}

/* --------------------------------------------------------
 * Corpo do card (texto)
 * -------------------------------------------------------- */
.card-body {
  padding: 1.5rem;
  text-align: left;
}

.card-body h3 {
  font-size: 1.25rem;
  color: #000000;
  margin-bottom: 0.5rem;
}

.card-body p {
  font-size: 1rem;
  color: #000000;
  line-height: 1.5;
}

/* --------------------------------------------------------
 * Produtos (Planos)
 * -------------------------------------------------------- */
#planos-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.plano {
  border: 1px solid #ddd;
  border-radius: 12px;
  padding: 20px;
  background-color: white;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.plano h3 {
  font-family: 'More Sugar', sans-serif;
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.plano .preco {
  font-weight: bold;
  margin-bottom: 15px;
  font-size: 1.2rem;
}

#planos h3 {
  text-align: center;
  font-size: 1.2rem;
  margin-bottom: 30px;
  font-family: 'Calmius Sans Low', sans-serif;
}

#planos h2 {
  text-align: center;
  font-size: 2.5rem;
  color: #2d2a26;
  margin-bottom: 0.5rem;
}


.plano ul {
  list-style: disc inside;
  padding-left: 0;
  text-align: left;
  font-size: 0.95rem;
  line-height: 1.5;
}

.plano .descricao {
  text-align: left;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.plano .descricao p {
  margin-bottom: 0.75rem;
}



/* --------------------------------------------------------
 * Botão do WhatsApp com ícone
 * -------------------------------------------------------- */
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  padding: 10px 20px;
  font-size: 16px;
  font-family: 'More Sugar', cursive, sans-serif;
  font-weight: bold;
  border-radius: 30px;
  text-decoration: none;
  margin-right: 10px;
  background-color: #25d366;
  color: white;
}

.btn-whatsapp i {
  margin-right: 10px;
  font-size: 20px;
}

.btn-whatsapp:hover {
  background-color: #1ebd5a;
}

/* --------------------------------------------------------
 * Ícones sociais (ex: Instagram, LinkedIn)
 * -------------------------------------------------------- */
.social-icons {
  margin-bottom: 20px;
}

.social-icons a {
  color: #fff;
  font-size: 24px;
  margin: 0 10px;
  transition: color 0.3s ease;
  text-decoration: none;
}

.social-icons a:hover {
  color: #261a0a; /* cor ao passar o mouse */
}

/* --------------------------------------------------------
 * Seção Contato
 * -------------------------------------------------------- */
.contato {
  background: #000000;
  color: white;
  text-align: center;
  padding: 4rem 2rem;
}

.contato h2 {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.contato p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.whatsapp-btn {
  background-color: #000000;
  color: white;
  text-decoration: none;
  padding: 0.75rem 1.5rem;
  border: 1px solid white;
  border-radius: 8px;
  font-weight: bold;
  display: inline-block;
  font-size: 1rem;
}

.whatsapp-btn span {
  margin-right: 0.5rem;
}

/* --------------------------------------------------------
 * Rodapé da página
 * -------------------------------------------------------- */
.rodape {
  background-color: #3c3c3b;
  color: #fff;
  text-align: center;
  padding: 40px 20px;
  font-family: sans-serif;
}