
:root {
--bg-color: #000000;
--text-color: #ffffff;
--gray: #bdbdbd;
}


* {
box-sizing: border-box;
font-family: 'Montserrat', sans-serif;
}


body {
margin: 0;
min-height: 100vh;
background-color: var(--bg-color);
color: var(--text-color);
position: relative;
overflow: hidden;
}


/* LOGO DE FUNDO (WATERMARK) */
body::before {
content: "";
position: absolute;
inset: 0;
background-image: url('logoSemFundo.png');
background-repeat: no-repeat;
background-position: center;
background-size: 70%;
opacity: 0.04; /* controle de transparência */
z-index: 0;
}


.container {
position: relative;
z-index: 1;
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
padding: 1.5rem;
}


.hero {
text-align: center;
max-width: 420px;
}


.logo {
max-width: 220px;
width: 100%;
margin-bottom: 2rem;
}


h1 {
font-size: 1.9rem;
font-weight: 800;
margin-bottom: 0.5rem;
}


p {
color: var(--gray);
margin-bottom: 2.2rem;
font-size: 1rem;
}


.actions {
display: flex;
gap: 1rem;
flex-wrap: wrap;
justify-content: center;
}


.btn {
padding: 0.9rem 1.7rem;
border-radius: 999px;
text-decoration: none;
font-weight: 600;
transition: transform 0.2s ease, opacity 0.2s ease;
}


.btn:hover {
transform: translateY(-2px);
opacity: 0.85;
}


.instagram {
background-color: #ffffff;
color: #000000;
}

.whatsapp {
border: 2px solid #ffffff;
color: #ffffff;
}


@media (max-width: 480px) {
body::before {
background-size: 90%;
}


h1 {
font-size: 1.5rem;
}
}