:root {
    --dot-off-color: #005500;
    --dot-on-color: #FF0000;
    --dot-width: 1.6vh;  
    --dot-pulse-color: rgba(255, 0, 0, 0.9);
    --dot-pulse-color-transparent: rgba(255, 0, 0, 0)
}

html {
    height: 100%;
    padding: 0;
    margin: 0;
    background-color: #FFF;
}
body {
    background-color: #FFF;
    height: 100%;
    padding: 0;
    margin: 0;
    font-family: 'Roboto', sans-serif;
}
main {
    height: calc(100% - 5em);
    padding-bottom: 5em;
}
.columns {
    display: flex;
    height: 100%;
}
.columns > div {
}
.logo { 
    width: 80%;
    margin: auto;
}
#map {
    background-color: #F0F0F0;
    margin-bottom: -4em;
    width: 40%;
}
#frases {
    width: 60%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    perspective: 800px;
    overflow: hidden;
}
.frase strong {
    font-weight: 600;
}
#frases .frase {
    font-size: 7vh;
    font-weight: 300;
    position: absolute;
    padding: 10%;
    opacity: 0;
    transition: all 1s ease-out;
    top:19%;
    bottom:0;
    left:0;
    right:0;
    display: flex;
    align-items: center;
    z-index: 1;
}
#frases .frase.out {
    position: absolute;
    opacity: 0;
    z-index: 0;
}

#frases .frase.in {
    transform: none !important;   
    opacity: 1;
    z-index: 2;
}

#frases.anim1 .frase {
    transform: translateX(100%) rotate3d(0, 1, 0, 80deg);
}
#frases.anim1  .frase.out {
    transform: translateX(-100%) rotate3d(0, -1, 0, 80deg);
}

#frases.anim2 .frase {
}
#frases.anim2  .frase.out {
}


#frases.anim3 .frase {
    transform: translateY(100%) rotate3d(0, 1, 0, 80deg);
}
#frases.anim3  .frase.out {
    transform: translateY(-100%) rotate3d(0, -1, 0, 80deg);
}

#frases.anim4 .frase {
    transform: translateY(-100%);
}
#frases.anim4  .frase.out {
    transform: translateY(100%);
}

#frases.anim5 .frase {
    transform: translateX(100%);
}
#frases.anim5  .frase.out {
    transform: translateX(-100%);
}

#frases.anim6 .frase {
    transform: scale(1.5);
}
#frases.anim6  .frase.out {
    transform: scale(0.5);
}


footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 11.5vh;
    background-color: #9cb32b;
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 900;
}
footer::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    background-color: #FFF;
    height: 50%;
    opacity: 0.15;
}
footer #time {
    font-family: 'Roboto', sans-serif;
    position: absolute;
    left: 4vw;
    bottom: 0;
    height: 120%;
    background-color: #333;
    color: #FFF;
    text-shadow: -1px 2px 0 #000;
    width: 14vmax;
    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 4vw;
    z-index: 2;
    border-radius: 1vw;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    border: 2px solid #FFF;
    border-bottom: 0;
    box-shadow: 0 0 0.5vw rgba(0,0,0,0.3);
    overflow:hidden;
}
footer #time::after {
    content: "";
    width: 100%;
    height: 30vw;
    background-color: #F00;
    position: absolute;
    transform: rotateZ(-60deg) translateX(50%);
    background-color: #FFF;
    opacity: 0.05;
}
footer .marquee {
    font-size: 5.5vh;
    z-index: 1;
    overflow: hidden;
    text-transform: uppercase;
}
footer .marquee ul {
    position: absolute;
    white-space: nowrap;
    height: 11.5vh;
    list-style-type: disc;
    margin: auto;
    display: flex;
    align-items: center;
    
	animation-duration: 45s;
	animation-name: promoBarBgPosition;
	animation-iteration-count: infinite;
	animation-timing-function: linear;
    
}
footer .marquee li {
    margin-left: 3vw;
    margin-right: 1.5vw;
}
@keyframes promoBarBgPosition {
	from 	{ transform: translateX(0%) }
	to 		{ transform: translateX(-49.8%) }
}

.pin {
    width: var(--dot-width);
    height: var(--dot-width);
    position: absolute;
    background-color: var(--dot-off-color);
    border-radius: 1em;
    z-index: 100;
}
.pin.on {
    background-color: var(--dot-on-color);
    z-index: 1000;
}
.pin.on::before {
    content: "";
    position: absolute;
    background: var(--dot-on-color);
    z-index: 1;
    border-radius: 50%;
    width: var(--dot-width);
    height: var(--dot-width);
    transform: scale(1);
    animation: pulse2 2s infinite;
}
@keyframes jump {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.5);
    }
    100% {
        transform: scale(1);

    }
}
@keyframes pulse {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 var(--dot-pulse-color);
  }
  
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 20px var(--dot-pulse-color-transparent);
  }
  
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 var(--dot-pulse-color-transparent);
  }
}
@keyframes pulse2 {
  0% {
    transform: scale(1);
      opacity: 0.7
  }

    30% {
        opacity: 0.7
    }
  
  100% {
    transform: scale(4);
    opacity: 0;
    }
}

#logo {
    position: fixed;
    left: 50%;
    height: 15%;
    padding: 2% 0%;
    background-color: transparent;
    z-index: 1000;
    right: 0;
    justify-content: center;
}
#logo img {
    width: 55%;
    margin-left: 9%
}

#screenSaver {
    position: fixed; 
    top: 0; 
    left: 0;
    right: 0;
    bottom:0;
    z-index: 1000;
    background-color: #FFF;
    display: flex;
    padding: 10%;
    opacity: 0;
    transition: all 1s ease-out;
    pointer-events: none;
}
#screenSaver.on {
    opacity: 1;
}
/* logo rodape */
.logoRodape {
    position: fixed;
    bottom: 0;
    z-index: 100;
    left: 0vw;
    width: 35vh;
    text-align: center;
    padding: 0vw;
    border-top-left-radius: 1vw;
    border-top-right-radius: 1vw;
    padding-top: 1vh;
    padding-bottom: 0.3vh;
    height: 12vh;
    display: flex;
  }
.logoRodape img {
    position: relative;
    z-index: 1;
}
.logoRodape::after {
    position: absolute;
    content: "";
    width: 115%;
    height: 100%;
    background-color: #FFF;
    top: 0;
    left: -3vh;
    z-index: 0;
    transform: skewX(-25deg)
}
.logoRodape::before {
    content: "";
    position: absolute;
    left: 37.7vh;
    top: 0;
    background-color: #000;
    width: 0.4vw;
    height: 100%;
    z-index: 10;
    transform: skewX(-25deg)
}
#logo {
    display: none;
}
#frases .frase {
    top:0;
}
footer #time {
    display: none;
}

/* content */

#frases .storeRating {
    display: flex;
    justify-content: center;
    flex-direction: column;
    padding: 15%;
}
#frases rating {
    display: flex;
}
#frases .stars {
    display: flex;
    margin-bottom: 2vh;
}
#frases .stars img {
    width: 8vh;
}
#frases .rating span {
    margin-left: 2vh;
    text-align: right;
    display: block;
}
#frases .storeRating .count {
    font-size: 4.5vh;
    margin-top:2vh;
    display: block;
    text-align: left;
}
.rating {
    display: flex;
}
.storeRating .store {
    display: block;
    max-width: 80%;
    margin-bottom: 3vh;
}

.testemunho {
    display: none;
    font-size: 0.8em;
}
.testemunho.in {
    display: block;
}
.testemunho strong {
    display: block;
}
#frases .testemunho .stars {
    margin-bottom: 1vh;
}
#frases .testemunho .stars img {
    width: 6vh;
}
.testemunho strong {
    margin-bottom: 2vh;
}
.autorStore {
    display: flex;
    align-items: center;
    margin-top: 2vh;
}
.autorStore small {
    margin-right: 6vh;
    font-weight: 500;
    font-size: 0.8em;
}
.autorStore .store {
    width: 20vh
}
#frases .testemunho.imprensa .stars {
    display: none;
}