/* Configurações Globais */
@charset"UTF-8";

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #FDF9F3; /* Off-white quente */
    color: #4A3728; /* Marrom escuro */
    font-family: 'Lato', sans-serif;
    line-height: 1.6;
}

h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    margin-bottom: 20px;
    text-transform: none; /* Estilo comum em sites infantis, opcional */
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 60px 0;
}

/* Espaço do Hero */
/* Container que segura tudo */
.hero-wrapper {
    position: relative;
    width: 100%;
    height: 100vh; /* Altura total para 1920x1080 */
    overflow: hidden;
    display: flex;
    align-items: stretch;
    justify-content: flex-end;
}

/* O Fundo com Gradiente e Onda (Antigo hero-placeholder) */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:#FDF9F3 100%;
    z-index: 1;
}

/* Container do Conteúdo */
.hero-container {
    position: relative;
    z-index: 2; /* Fica acima da onda */
    width: 100%;
    max-width: 1200px;
    height: 100%;
    display: flex;
    flex-direction: row; /* Lado a lado no desktop */
    align-items: center;
    justify-content: space-between;
    padding: 0 0%;
}

.hero-text-box {
    flex: 1;
    text-align: center;
    margin-top: -50px;
}

.hero-image {
    flex: 1;
    display: flex;
    align-items: stretch;
    justify-content: flex-end;
    height: 100vh;
}

.hero-image img {
    height: 100%; /* Foto grande sem cortar */
    width: auto;
    object-fit: cover;
    object-position: right;
}

.nome-topo {
    margin: 0;
    font-size: 3rem;
    color: #4A3728;
    font-weight: bold;
}

.profissao {
    margin-top: 5px;
    font-size: 1.1rem;
    color: #4A3728;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Tópicos */
.topico-item {
    margin-bottom: 15px;
    padding-left: 20px;
    border-left: 3px solid #F2E3A1; /* Amarelo pastel */
}

/* Grid de Áreas de Atuação */
.grid-atuacao {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.card {
    background-color: #FDF2B5; /* Amarelo pastel mais vivo */
    padding: 20px;
    border-radius: 15px;
    font-weight: bold;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

/* Rodapé */
.footer {
    background-color: #FDF2B5; /* Amarelo pastel */
    padding: 40px 20px;
    text-align: center;
    margin-top: 60px;
}

.footer-social {
  background-color: #f8f9fa; /* Cor de fundo do footer */
  padding: 20px 0;
  text-align: center;
  border-top: 1px solid #ddd;
}

.social-container p {
  margin-bottom: 10px;
  font-family: sans-serif;
  color: #333;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 20px; /* Espaçamento entre os ícones */
}

.icon-link {
  font-size: 24px; /* Tamanho do ícone */
  color: #555;
  transition: transform 0.3s ease, color 0.3s ease;
  text-decoration: none;
}

/* Efeito ao passar o mouse */
.icon-link:hover {
  transform: translateY(-3px);
}

.instagram:hover {
  color: #E1306C; /* Cor oficial do Instagram */
}

.google:hover {
  color: #4285F4; /* Cor oficial do Google Blue */
}

.map-placeholder {
    width: 100%;
    max-width: 800px;
    height: 300px;
    background-color: #e0d8b0;
    margin: 0 auto 20px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
}

.map-placeholder iframe {
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 10px; /* Para acompanhar o arredondamento da div */
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 30px;
    font-weight: bold;
}

/* POSICIONAMENTO FIXO */
.botao-whatsapp-fixo {
/* POSICIONAMENTO FIXO */
    position: fixed;
    bottom: 20px;       /* Distância do fundo da tela */
    right: 20px;        /* Distância da lateral direita */
    z-index: 9999;      /* Garante que fique acima de todos os elementos */

    /* ESTILO VISUAL (Baseado na sua imagem) */
    display: flex;
    align-items: center;
    background-color: #60a560; /* Verde oliva/suave */
    color: white;
    padding: 10px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-family: sans-serif;
    font-weight: 500;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transition: transform 0.2s ease-in-out;
  }

  .botao-whatsapp-fixo img {
    width: 22px;
    height: 22px;
    margin-right: 10px;
    /* Deixa o ícone do WhatsApp branco para combinar com o texto */
    filter: brightness(0) invert(1);
  }

  /* Efeito ao passar o mouse */
  .botao-whatsapp-fixo:hover {
    transform: scale(1.05);
    background-color: #539153;
}

/* --- RESPONSIVIDADE CELULAR --- */
@media (max-width: 768px) {
    .hero-wrapper {
        height: 90vh;
    }

    .hero-container {
        flex-direction: column; /* Texto em cima, foto embaixo */
        justify-content: center;
        text-align: center;
    }

    .hero-text-box {
        text-align: center;
        bottom: 50px;
        flex: none;
        position: absolute;
    }

    .nome-topo {
        font-size: 2.2rem;
    }

    .hero-image {
        justify-content: center; /* Foto no meio no celular */
        width: 100%;
    }

    .hero-image img {
        max-height: 100vh; /* Ajuste para não cobrir o texto */
    }

}
