/* Define a fonte Inter globalmente para o corpo da página */
body {
    font-family: "Inter", sans-serif;
    scroll-behavior: smooth; /* Para rolagem suave para as âncoras */
}

/* Estilo para a caixa de mensagem personalizada (substitui alert/confirm) */
.message-box-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.message-box {
    background-color: white;
    padding: 2rem;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
}

/* Estilo para a seção Hero com imagem de fundo discreta */
.hero-background {
    background-image: url('https://clarytech.com.br/imagens/ChatBox_image.jpg'); /* Nova imagem de fundo da Hero Section */
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero-background::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(102, 153, 51, 0.8), rgba(55, 52, 53, 0.8)); /* Gradiente sobreposto para manter legibilidade */
    z-index: 1;
}

.hero-background > div {
    position: relative;
    z-index: 2;
}

/* O botão "Voltar ao Topo" foi removido. Se existisse, o estilo #scrollToTopBtn estaria aqui. */
/* #scrollToTopBtn {
    display: none;
} */
