* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    height: 100%;
    font-family: 'Lato', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Fundo com imagem, blur azulado e raios de sol artificiais */
.background-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: 
        linear-gradient(135deg, rgba(0, 119, 190, 0.4), rgba(255, 200, 0, 0.2)), 
        url('perequeacu.jpg'); 
    background-size: cover;
    background-position: center;
    filter: blur(8px) brightness(0.9);
    transform: scale(1.1); /* Evita bordas brancas devido ao blur */
}

/* O Box centralizado com efeito Glassmorphism */
.glass-box {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(25px); /* Blur mais intenso que o fundo */
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 60px 40px;
    text-align: center;
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.37);
    max-width: 100%;
}

.icon-chopp {
    margin-bottom: 10px;
}

.brand-name {
    font-family: 'Dancing Script', cursive;
    color: white;
    font-size: 4rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.info-text {
    color: white;
    letter-spacing: 4px;
    font-size: 0.9rem;
    font-weight: 300;
    border-top: 1px solid rgba(255,255,255,0.3);
    padding-top: 20px;
}

/* Responsividade para telas pequenas */
@media (max-width: 480px) {
    .brand-name { font-size: 2.8rem; }
    .info-text { font-size: 0.7rem; letter-spacing: 2px; }
}