@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

/* Aplica rolagem suave em âncoras */
html {
    scroll-behavior: smooth;
}

/* Fonte principal e cor base */
html, body {
    font-family: 'Poppins', sans-serif;
    background-color: transparent !important;
    color: #000000 !important;
}

/* Banner principal */
.hero-banner {
    background-image: linear-gradient(rgba(54, 33, 116, 0.7), rgba(54, 33, 116, 0.7)), url('/imgs/fundo2.webp');
    background-size: cover;
    background-position: center;
}

/* Botões */
.btn-primary {
    background-color: #362174;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #2a1a5a;
    transform: translateY(-2px);
}

.btn-whatsapp {
    background-color: #25D366;
    transition: all 0.3s ease;
}

.btn-whatsapp:hover {
    background-color: #128C7E;
    transform: translateY(-2px);
}

/* Cards de serviço */
.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Itens da galeria */
.gallery-item {
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.03);
}

/* Links do menu */
.nav-link:hover {
    color: #362174;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: white;
    z-index: -1; /* Isso coloca o pseudo-elemento atrás de todo o conteúdo */
}