body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
}

.faixa-superior {
    padding: 10px 0;
}

.header {
    background-color: #008cba;
    color: #fff;
    padding: 20px 0;
    text-align: center;
}

.showcase {
    background: url('header-bg.jpg') no-repeat center center/cover;
    /* Sugestão de imagem de fundo */
    color: #fff;
    height: 400px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.showcase h1 {
    font-size: 55px;
    margin-bottom: 10px;
}

.showcase p {
    font-size: 20px;
    margin-bottom: 20px;
}

.btn-custom {
    padding: 10px 20px;
    background: #30B14A;
    color: #fff !important;
    text-decoration: none;
    border-radius: 5px;
    border: 2px solid #1E1E6B; /* Borda azul */
    transition: background 0.3s, border 0.3s; /* Adicionei a transição para a borda */
    font-weight: bold;
}


.btn-custom:hover {
    background: #1E1E6B;
}

.footer {
    background: #333;
    color: #fff;
    text-align: center;
    padding: 20px 0;
}

.footer .social-icons a {
    color: #fff;
    margin: 0 10px;
    text-decoration: none;
    transition: color 0.3s;
}

.footer .social-icons a:hover {
    color: #008cba;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.animated {
    animation: fadeIn 2s;
}

.bk-gradient {
    background: rgb(20, 185, 103);
    background: linear-gradient(90deg, rgba(20, 185, 103, 1) 0%, rgba(129, 184, 241, 1) 45%, rgba(0, 212, 255, 1) 100%);
}

.background-container {
    position: relative;
    width: 100%;
   /* height: 500px; /* Ajuste a altura conforme necessário 
    background: rgba(0, 0, 0, 0.788); /* Preto com 50% de opacidade */
	background-image: url('./img/pedido_3.jpeg');  
    background-size: cover;
    background-position: center;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.788); /* Preto com 50% de opacidade */
    z-index: 1; /* Garante que o overlay fique acima da imagem */
}

.content {
    position: relative;
    z-index: 2; /* Garante que o conteúdo fique acima do overlay */
    color: white;
    text-align: center;
    padding: 20px;
}