/*
 * MUCRAZZY - Evento de Natal (layout 1000px)
 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
}

body {
    background: #000;
    font-family: "Cinzel", serif;
}

/* container central */
#main {
    width: 1200px;
    height: 1320px;        /* altura da arte */
    margin: 0 auto;
    position: relative;
}

/* arte principal do evento */
#header {
    width: 1200px;
    height: 1320px;
    background: url(img/bgg.jpg) no-repeat top center;
    background-size: contain; /* sua arte já é 1000x1100 */
}

/* ---- BOX ---- */

#items {
    position: absolute;
    /* ajuste fino da posição da box dentro do banner */
    top: 650px;   /* sobe / desce */
    left: 535px;  /* esquerda / direita */
}

/* viewport da box */
#itemViewPort {
    text-align: center;
}

/* imagem da box */
#itemViewPort img.boxImage {
    width: 130px;
    height: auto;
    cursor: pointer;
    transition: transform 0.2s ease;
}

#itemViewPort img.boxImage:hover {
    transform: scale(1.05);
}

/* descrição base NÃO aparece na tela */
#gallery .description,
#iVPDescription {
    text-align: center;
    display: none;
}

/* ---- TOOLTIP (descrição ao passar o mouse) ---- */

.ui-tooltip {
    position: absolute;
    z-index: 9999;
    border: 2px solid #000;
    padding: 10px;
    background: url(img/x.png);
    max-width: 280px;
}

.ui-tooltip p {
    color: #FFF;
    font-size: 13px;
    font-family: Verdana, sans-serif;
    text-align: left;
    margin: 2px 0;
}

.ui-tooltip p.bold { font-weight: bold; }
.ui-tooltip p.white { color: #fff; }
.ui-tooltip p.red { color: #f00; }
.ui-tooltip p.blue { color: #97afd5; }

/* ---- BOTÕES ---- */

#buttons {
    position: absolute;
    bottom: 40px;
    left: 0;
    width: 1200px;
    text-align: center;
}

#goWebSite,
#seeMorePromotion {
    display: inline-block;
    width: 220px;
    height: 90px;
    margin: 0 80px;
    text-indent: -9999px;
    overflow: hidden;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    cursor: pointer;
    transition: transform 0.3s ease, filter 0.3s ease;
}

#goWebSite {
    background-image: url(img/site.png);
}

#seeMorePromotion {
    background-image: url(img/forum.png);
}

#goWebSite:hover,
#seeMorePromotion:hover {
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.8)) brightness(1.1);
    transform: scale(1.05);
}

/* ---- NEVE ---- */

.snow,
.snow:before,
.snow:after {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    content: "";
    background-repeat: repeat;
    z-index: 50;
}

.snow {
    background-image:
        radial-gradient(2px 2px at 20px 20px, rgba(255, 255, 255, 0.8), transparent),
        radial-gradient(2px 2px at 10px 10px, rgba(255, 255, 255, 0.6), transparent),
        radial-gradient(3px 3px at 30px 30px, rgba(255, 255, 255, 0.7), transparent);
    background-size: 200px 200px, 300px 300px, 150px 150px;
    animation: snowfall 18s linear infinite;
}

.snow:before {
    background-image:
        radial-gradient(2px 2px at 15px 15px, rgba(255, 255, 255, 0.6), transparent),
        radial-gradient(3px 3px at 25px 25px, rgba(255, 255, 255, 0.7), transparent);
    background-size: 250px 250px, 180px 180px;
    animation: snowfall 25s linear infinite;
    opacity: 0.7;
}

.snow:after {
    background-image:
        radial-gradient(2px 2px at 5px 5px, rgba(255, 255, 255, 0.5), transparent),
        radial-gradient(4px 4px at 40px 40px, rgba(255, 255, 255, 0.8), transparent);
    background-size: 180px 180px, 320px 320px;
    animation: snowfall 35s linear infinite;
    opacity: 0.5;
}

@keyframes snowfall {
    0%   { transform: translate3d(0, -100px, 0); }
    100% { transform: translate3d(0, 100vh, 0); }
}


.ui-tooltip p {
    color: #FFF;
    font-size: 13px;
    font-family: Verdana, sans-serif;
    text-align: center;   /* AGORA CENTRALIZADO */
    margin: 2px 0;
}

