#home{
    display: flex;
    margin-top: 100px;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    min-width: 100%;
    gap: 40px;

    
}

.tittle{
    line-height: 1.2;
    font-size: 3rem;
    color: rgb(57, 35, 22)
    
}
.tittle span{
    line-height: 1.3;
}

#cta {
    justify-content: center;
    width: 45%;
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin-top: 15%;

}

#cta .tittle{
    font-size: 3rem;

    color: rgb(57, 35, 22)
}

#cta .tittle span{
    display: block;
    color: rgb(180, 103, 98)
}

.description{
    font-size: 1.2rem;
}


#cta_buttons{
    display: flex;
    gap: 24px;
}

#cta_buttons a{
    text-decoration: none;
    color: white;
}

/*#selos-confianca {
    display: flex;
    flex-direction: row;
    gap: 20px;
    list-style: none;
    align-items: center;
    padding: 0;
    flex-wrap: wrap;
}*/

#baner{
    
    justify-content: center;
}

#banner img {
    display: flex;
    margin-top: 25%;
    height: 40%;
    max-width: 100%;
    justify-content: center;
    width: auto;
    border-radius: 15px;
}

#sobre_mim {
    display: flex;
    min-height: calc(100vh);
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap:80px;
}

#sobre {
    justify-content: center;
    width: 45%;
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin-top: 5%;
}

#apresentacao {
    flex: 0 0 35%;               /* Define que a imagem ocupará cerca de 35% da largura */
    display: flex;
    justify-content: center;
}

#apresentacao img{
    display: flex;
    margin-top: 25%;
    width: 40%;
    height: auto;
    max-height: 450px;
    max-width: 100%;
    width: auto;
    border-radius: 15px;
    
}

#servicos_text {
    padding-top: 20px;
    justify-content: center;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin-top: 5%;
    text-align: center;
    margin-bottom: 48px;
}

/* Alinha os cards lado a lado com espaçamento */
.container-cards {
    display: flex;

    gap: 24px ;   
    height: auto;                           
    width: 100% ;
    max-width: 100% ;                      
    margin:  auto;                        
    justify-content: center;
    
    /*display: flex;
    padding: 40px 20px;
    gap: 30px; 
    max-width: 6000px;
    min-width: 300px;     
    align-content: center;
    flex-direction: row;
    flex-wrap: wrap;*/
}

/* Estilo da caixinha (Card) */
.card {
  background-color: #ffffff;
  border-radius: 20px; /* Bordas arredondadas idênticas às da imagem */
  overflow: hidden; /* Garante que a foto siga o arredondado do card */
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.05); /* Sombra bem suave de fundo */
  max-width: 200px;
  flex:auto;
  display: flex;
  align-items: center;
  flex-direction: column;
}

/* Ajusta a foto para cobrir o topo do card uniformemente */
.card-foto {
  width: 100%;
  height: 350px;
  object-fit: cover;
}

/* Espaçamento interno do texto e ícones */
.card-conteudo {
  padding: 30px;
}

.card-icone {
  margin-bottom: 15px;
  font-size: 20px;
}

.card h3 {
font-family: "Poppins", sans-serif;
  font-size: 22px;
  color: #392316;
  margin-bottom: 15px;
}

.card p {
  font-size: 15px;
  color: #B46762;
  line-height: 1.6;
}

#faq_container{
    max-width: 600px;
    margin: 0 auto;
    color: #392316;
}

.faq_item {
    border-bottom: 1px solid #392316;
    padding: 15px 15px;
    
    border-radius: 15px;
}

.faq_item summary{
    
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 18px;
    color: #392316;
}

/* Container do sumário */
summary {
  display: flex;
  justify-content: space-between; /* Joga o ícone para a ponta direita */
  align-items: center;
  list-style: none;
  cursor: pointer;
}

/* Configura o ícone do Font Awesome */
summary::after {
  font-family: "Font Awesome 5 Free"; /* Nome exato para a versão 6 */
  font-weight: 900;                  /* Obrigatório para a versão Solid */
  content: "\f078";                  /* Chevron para baixo */
}

/* Muda o ícone quando abrir */
details[open] summary::after {
  content: "\f077";                  /* Chevron para cima */
}


.faq_item p {
    margin-top: 10px;
    padding: 0 5px;
    color: #4d4033;
    line-height: 1.5;
}

.contato {
    width: 100%;
    max-width: 1024px;
    margin: 0 auto;
    padding: 100px 0 110px;
}

.contato_principal {
    width: 100%;
    min-height: 344px;
    background: linear-gradient(135deg,#b86c68,#b96561);
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 50px 30px;
    color: white;
    
}

.contato_principal h1{
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
}

.contato_principal p{
    font-size: 17px;
    line-height: 1.7;
    color: #fff4ef;
    margin-bottom: 30px;
}

.botoes {
    display: flex;
    gap: 16px;
}

.botao {
    height: 42px;
    padding: 0 30px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    text-decoration: none;
    font-size: 15px;
    transition: 0.3s;
}

.whatsapp{
    background-color: #fff6f0;
    color: #3b211b;
    border: 1px solid #fff6f0;
}

.email {
    background-color: transparent;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.botao:hover {
    transform: translateY(-2px);
}

.whatsapp:hover {
    background-color: white;
}

.email:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.cards_ctt {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 48px;
    color:#392316;

}

.card_ctt {
    height: 167px;

    background-color: #fffdfa;

    border: 1px solid #ead9cf;

    border-radius: 19px;

    display: flex;
    flex-direction: column;

    align-items: center;
    justify-content: center;

    text-align: center;

    transition: 0.3s;
}

.card:hover {
    transform: translateY(-4px);

    box-shadow: 0 10px 25px rgba(90, 45, 35, 0.08);
}

.icone {
    width: 48px;
    height: 48px;

    border-radius: 50%;

    background-color: #f8e4d8;

    display: flex;

    align-items: center;
    justify-content: center;

    margin-bottom: 16px;
}

.icone i {
    color: #bd6d68;

    font-size: 19px;
}

.card h2 {
    font-family: 'Playfair Display', serif;

    font-size: 17px;

    font-weight: 500;

    margin-bottom: 7px;
}

.card p {
    color: #99766c;

    font-size: 15px;
}



@media (max-width: 1240px) {
    #home {
        margin-top: 100px;
        flex-direction: column; /* Empilha: Texto em cima, Imagem embaixo */
        gap: 20px;              /* Diminui o espaçamento no celular */
        align-items: center; /* Alinha o conteúdo à esquerda */
    }

    #cta {
        width: 100%;            /* Ocupa a largura total da tela no celular */
    }

    #cta .tittle{
        font-size: 2rem;
    }

    #selos-confianca {
        flex-wrap: wrap;        /* Permite os selos quebrarem linha se faltar espaço */
        gap: 12px;              /* Aproxima os selos no celular */
    }

    #sobre_mim {
        margin-top: 102px;
        flex-direction: column; /* Empilha: Texto em cima, Imagem embaixo */
        gap: 20px;              /* Diminui o espaçamento no celular */
        align-items: center; /* Alinha o conteúdo à esquerda */
    }

    #sobre {
        width: 80%;
    }

    .container-cards {
    
    display:grid;
    grid-template-columns: repeat(2,1fr);
    justify-content: center;
    gap: 20px;
    width: 100%;
    max-width: 500px;
    flex-direction:row;
    

    /*gap: 20px; /* Espaço entre um card e outro 
    text-align: center;*/
        

    
    }

    

    .container-card card {
        flex: 1;
        width: 180px;
}



    .card-foto {
    width: 100%;
    height: 200px;
    
}

    .card {
        display: flex;
    flex-direction: column; /* Mantém os itens empilhados de cima para baixo */
    align-items: center;    /* Centraliza tudo horizontalmente */
    text-align: center;
    }
    .card-conteudo h3{
    text-align: center;
    font-size: 15px;
    align-items: center;
}

.cards_ctt {
  padding: 24px; /* Aumenta o espaço entre a borda e o texto */
  box-sizing: border-box; /* Garante que o padding não quebre o tamanho do card */
}

.cards_ctt {
grid-template-columns: repeat(2,1fr);
  display: flex;
  flex-direction: column;
  align-items: center; /* Centraliza tudo horizontalmente (ícone, título e textos) */
  text-align: center;   /* Centraliza as linhas de texto */
  gap: 12px;           /* Cria um espaçamento vertical padrão e idêntico entre os elementos */
}

.card_ctt{
    width: 90%;
}


}

    
