* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
}

body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: 'Open Sans', sans-serif;
}

h1, h2, h3 {
  font-family: "Oxanium", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

input, button, textarea, select {
  font: inherit;
}

p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}

#root, #__next {
  isolation: isolate;
}


/* ____________________________________________________________________________________________ */

#nav-bar {

    display: flex;
    flex-direction: row;
    justify-content: space-around;
    background-color: #092b3dfb;
    height: 20%;

}

#logomarca {
    height: auto;
    width: 10%;
}

.ancora-navegacao, .ancora-whatsapp {
    display: flex;
    align-items: center;
    
}

.ancora-navegacao {
    color: white;

}

#ancora-navbar {
    margin: 60px;
    
}

/* _________________________________________________________________________________________________________________ */

.ancora-whatsapp {
  display: inline-block;
  height: 10%;
  background-color: #FFFACD;
  color: #092b3d; /* azul escuro do fundo */
  padding: 12px 24px;
  border-radius: 6px;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.3s ease;
  font-family: 'Playfair Display', serif; /* contraste com sans-serif */
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
}

.ancora-whatsapp:hover {
  background-color: #FFF59D; /* cinza médio no hover */
}

/* __________________________________________________________________________________ */

#chamada-inicial {

    display: flex;
    flex-direction: row;
    align-items: ;
    height: 100%;
    gap: 10%;
    margin-top: 40px;


}

#chamada-texto {
    margin-left: 5%;
    
}
#chamada-texto {
    max-width: 600px; /* limite de largura para leitura confortável */
    
    padding: 20px;
    font-family: 'Open Sans', sans-serif;
    color: #092b3d;
}

/* Espaçamento do título */
#chamada-texto h1 {
    font-size: 2rem;
    margin-bottom: 1.5rem; /* distância do primeiro parágrafo */
    line-height: 1.3;
}

/* Espaçamento dos parágrafos */
#chamada-texto p {
    margin-bottom: 1rem; /* distância entre parágrafos */
    line-height: 1.6;
}

/* Espaçamento entre último parágrafo e o botão */
#chamada-texto .ancora-whatsapp {
    display: inline-block;
    margin-top: 2rem; /* distância do último parágrafo */
    padding: 12px 24px;
    background-color: #f0e68de7; /* exemplo de cor pastel */
    color: #092b3d;
    border-radius: 6px;
    font-family: 'Playfair Display', serif; /* contraste tipográfico */
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

#chamada-texto .ancora-whatsapp:hover {
    background-color: #FFF59D;
    transform: scale(1.05);
}



#foto-header {
    width: 50%;
    height: auto;
    margin-left: 10%;
    
    /* Borda semi-transparente */
    border: 4px solid rgba(0, 0, 0, 0.2); /* preto 20% transparente */
    border-radius: 12px; /* cantos arredondados */

    /* Sombra leve */
     box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.15);
}

/* ------------------------------------------------------------------------------------------------------- */

#sobre {
    display: flex;
    flex-direction: row;
    justify-content: center;
    height: 100%;
}

#foto-about {
    width: 55%;
    margin-left: 150px;
}

#sobre-texto {
    margin-right: 100px;
    line-height: 1.6;
    margin-bottom: 1.2rem;
    font-size: 1rem;
}

#sobre-titulo {
    margin-bottom: 10px;
    font-size: 3rem;
}

.sobre-p {
    margin-bottom: 10px;
    font-weight: 600;
    text-align: justify;

}


/* __________________________________________________________ */



#servicos {

    margin-top: 20px;
    height: 100%;


}

html {
  scroll-behavior: smooth;
}

#icone-servicos {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  margin: 0 auto 2rem auto; /* centraliza e dá espaçamento inferior */
  background-color: #243ba0; /* fundo pastel */
  border-radius: 50%;
  text-decoration: none;
  color: #092b3d; /* cor do ícone (via fill: currentColor) */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  transition: background 0.3s ease, transform 0.2s ease;
}

/* Hover no botão */
#icone-servicos:hover {
  background-color: #6195ce; /* um pouco mais escuro */
  transform: scale(1.1);
}

#servicos-title {
    text-align: center;
    font-size: 4rem;
}


#servicos-chamada {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem; /* espaçamento entre os cards */
  max-width: 1000px;
  margin: 3rem auto;
  padding: 0 1rem;
}


.servicos-especifico {
  background: #ffffff;
  border-radius: 12px;
  padding: 2rem;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}


.servicos-especifico:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}


.servicos-especifico h2 {
  font-family: "Melodrama", Georgia, serif; /* contraste com o texto */
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #092b3d;
}

/* Texto do serviço */
.servicos-especifico p {
  font-family: "Open Sans", sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
  margin-bottom: 1.5rem;
}

/* Botão de ação */
.servicos-especifico a {
  display: inline-block;
  background-color: #FFFACD; /* amarelo pastel */
  color: #092b3d;
  padding: 12px 20px;
  border-radius: 6px;
  font-family: "Playfair Display", serif;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.2s ease;
}

/* Hover no botão */
.servicos-especifico a:hover {
  background-color: #FFF59D; /* tom levemente mais escuro */
  transform: scale(1.05);
}

/* __________________________________________________________________________________ */
/* Seção geral */
#depoimentos {
  background-color: #f9f9f9;
  padding: 4rem 1rem;
  text-align: center;
}

/* Título */
#depoimentos h1 {
  font-size: 2.5rem;
  font-family: "Melodrama", Georgia, serif;
  margin-bottom: 3rem;
  color: #092b3d;
}

/* Estrutura de cada depoimento */
.depoimento-cliente {
  position: relative;
  background: #ffffff;
  max-width: 600px;
  margin: 2.5rem auto;
  padding: 2rem;
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  text-align: left;
}

/* Balãozinho (seta) */
.depoimento-cliente::after {
  content: "";
  position: absolute;
  bottom: -15px; /* ajusta posição */
  left: 50px;    /* muda posição lateral */
  width: 0;
  height: 0;
  border-top: 15px solid #ffffff;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  filter: drop-shadow(0px 2px 2px rgba(0,0,0,0.1)); /* sombra na seta */
}

/* Avatar + nome */
.depoimento-cliente h3 {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-family: "Playfair Display", serif;
  font-size: 1.1rem;
  font-weight: bold;
  color: #092b3d;
  margin-bottom: 1rem;
}

/* Foto fictícia */
.depoimento-cliente h3::before {
  content: "";
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #bbb, #eee); /* placeholder */
  display: inline-block;
}

/* Texto */
.depoimento-cliente p {
  font-family: "Open Sans", sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: #444;
}

/* Botão */
#depoimentos .ancora-whatsapp {
  display: inline-block;
  margin-top: 1.5rem;
  background-color: #FFFACD;
  color: #092b3d;
  padding: 14px 24px;
  border-radius: 8px;
  font-family: "Playfair Display", serif;
  font-weight: 600;
  font-size: 1.5rem;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.2s ease;
}

#depoimentos .ancora-whatsapp:hover {
  background-color: #FFF59D;
  transform: scale(1.05);
}

/* ________________________________________________________________________________________ */
#consulta-inicial {
  background: linear-gradient(135deg, #FFFACD, #FFEFA1); /* gradiente pastel */
  padding: 1rem 2rem;
  max-width: 750px;
  margin: 1rem auto;

  text-align: center;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  position: relative;
  z-index: 1;
  border: 2px solid #FFD700; /* borda de destaque */
}

/* Título */
#consulta-inicial h1 {
  font-family: "Melodrama", Georgia, serif;
  font-size: 3rem;
  margin-bottom: 2rem;
  color: #092b3d;
}

/* Parágrafos */
#consulta-inicial p {
  font-family: "Open Sans", sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1;
  color: #444;
  margin-bottom: 1rem;
}

/* Formulário */
#consulta-inicial form {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: left;
}

/* Labels */
#consulta-inicial label {
  font-family: "Playfair Display", serif;
  font-weight: 600;
  color: #092b3d;
  font-size: 1.3rem;
}

/* Inputs */
#consulta-inicial input[type="text"],
#consulta-inicial input[type="number"] {
  width: 100%;
  padding: 15px 20px;
  font-size: 1.1rem;
  border: 1px solid rgba(0,0,0,0.25);
  border-radius: 8px;
  outline: none;
  transition: border 0.3s ease, box-shadow 0.3s ease;
}

#consulta-inicial input[type="text"]:focus,
#consulta-inicial input[type="number"]:focus {
  border-color: #092b3d;
  box-shadow: 0 0 8px rgba(9,43,61,0.25);
}

/* Botão */
#consulta-inicial button {
  margin-top: 1rem;
  padding: 16px 28px;
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: #092b3d;
  background-color: #FFD700;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

#consulta-inicial button:hover {
  background-color: #FFC700;
  transform: scale(1.05);
  box-shadow: 0 6px 14px rgba(0,0,0,0.2);
}


/* ______________________________________________________________________ */
#faq {
  background-color: #f9f9f9; /* leve contraste com outras seções */
  padding: 4rem 1rem;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  border-radius: 12px;
}

/* Título da seção */
#faq h1 {
  font-family: "Melodrama", Georgia, serif;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: #092b3d;
}

/* Container das perguntas */
#faq-perguntas {
  display: flex;
  flex-direction: column;
  gap: 1.8rem; /* espaçamento entre perguntas */
}

/* Cada pergunta (card) */
.perguntas {
  background: #ffffff;
  padding: 1.8rem 1.5rem;
  border-radius: 12px;
  text-align: left;
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

/* Efeito hover no card */
.perguntas:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

/* Título da pergunta */
.perguntas h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
  color: #092b3d;
}

/* Resposta da pergunta */
.perguntas p {
  font-family: "Open Sans", sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: #444;
  margin: 0;
}

/* ____________________________________________________________________________ */
/* Footer CTA Final */
#cta-final {
  background-color: #092b3d; /* fundo escuro para contraste */
  color: #fff;
  padding: 4rem 2rem;
  text-align: center;
  border-radius: 12px;
  margin-top: 4rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* Parágrafos do CTA */
#cta-final p {
  font-family: "Open Sans", sans-serif;
  font-size: 1.2rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

/* Destaque para o último parágrafo (chamada à ação) */
#cta-final p:last-child {
  font-family: "Playfair Display", serif;
  font-weight: 600;
  font-size: 1.4rem;
  color: #FFD700; /* cor que destaca sobre o fundo escuro */
}