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

html, body {
    width: 100%;
    height: 100%;
    font-family: system-ui, sans-serif;
}

/* Fundo */
.background {
    position: fixed;
    inset: 0;
    background: url("assets/wallpaper.png") no-repeat center center/cover;
    z-index: -1;
}

/* Container central */
.wrapper {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

/* BLOCO DE VIDRO AJUSTADO */
.glass {
    width: 100%;
    max-width: 1150px;          /* MAIS LARGO */
    padding: 70px 45px 60px;    /* MAIS ALTO */
    border-radius: 40px;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(25px) saturate(180%);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.35);
    box-shadow: 0 25px 60px rgba(0,0,0,0.28);
    text-align: center;
}

/* LOGO MAIOR */
.logo {
    width: 380px;
    max-width: 85%;
    margin: 0 auto 40px;
}

/* BARRA DE PESQUISA MAIOR */
.search input {
    width: 100%;
    max-width: 750px;
    padding: 20px 30px;
    border-radius: 40px;
    border: none;
    outline: none;
    background: #fff;
    font-size: 19px;
    margin-bottom: 45px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.25);
}

/* ÍCONES MAIORES */
.icons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 35px;
}

.icon {
    text-decoration: none;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-weight: 600;
}

.icon img {
    width: 95px;
    height: 95px;
    margin-bottom: 10px;
    transition: 0.2s ease;
}

.icon:hover img {
    transform: scale(1.08);
}

/* MOBILE */
@media (max-width: 600px) {
    .glass {
        padding: 50px 25px 40px;
    }

    .logo { width: 240px; }

    .search input {
        font-size: 16px;
        padding: 16px 20px;
    }

    .icon img {
        width: 70px;
        height: 70px;
    }
}

