#hero-container {
    min-height: 100vh;
    background-image: linear-gradient(
                        rgba(26,26,26, 0.1),
                        rgba(26,26,26, 1)),
                        url('../../../assets/images/background.webp');
    background-size: 120vh;
    background-position-x: center;
    background-position-y: 25vh;
    background-repeat: no-repeat;
    overflow: hidden;
    margin-top: 0;
}

#logo-box {
    width: 56%;
    max-width: 250px;
}

.button-box {
    width: 20%;
    height: 20%;
    max-width: 40px;
    max-height: 40px;
    border-radius: 100%;
    border-style: solid;
    border-color: rgba(255, 255, 255, 0.699);
    border-width: thin;
    position: absolute;
}

.hero-button {
    width: 100%;
    height: 100%;
    max-width: 30px;
    max-height: 30px;
    border-radius: inherit;
    border-style: none;
    background-color: rgba(255, 255, 255, 0.699);
    position: inherit;
    top: 10%;
    left: 10%;
}

#trajeto-button-box, 
#operacao-button-box {
    animation: pulse 0.9s ease-in-out 3;
}

#calibrada-button-box,
#terreno-button-box {
    animation: pulse 1.2s ease-in-out 3;
}

@keyframes pulse {
	0% {
		transform: scale(1);
		box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.7);
	}

	70% {
		transform: scale(1.1);
		box-shadow: 0 0 0 10px rgba(0, 0, 0, 0);
	}

	100% {
		transform: scale(1);
		box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
	}
}

#trajeto-button-box {
    top: 42vh;
    left: 12vw;
}

#calibrada-button-box {
    top: 44vh;
    right: 18vw;
}

#operacao-button-box {
    bottom: 27vh;
    right: 22vw;
}

#terreno-button-box {
    bottom: 14vh;
    left: 10vw;
}

.box.seta {
    position: absolute;
    width: 15%;
    max-width: 44px;
    bottom: 2%;
}

.tooltip .tooltip-box {
    visibility: hidden;
    width: 0%;
    height: 0%;
    /* background-color: #d400009c; */
    border: 2px solid #fff;
    border-radius: 6px;
    border-image: linear-gradient(190deg, 
    rgba(255, 255, 255, 0),
    rgba(255, 255, 255, 0), 
    rgba(255, 255, 255, 0.9)) 25;

    transform: skewX(12deg);
    
    /* Position the tooltip */
    position: absolute;
    z-index: 1;
    top: 50%;
    right: 50%;

    transition: all 0.2s ease-in-out;
}

.tooltiptext {
    visibility: hidden;
    transform: skewX(-12deg);

    /* Position the tooltip */
    position: absolute;
    padding:  0 10%;
    font-size: 0;
    bottom: 5%;

    transition: all 0.2s ease-in-out;
}

#trajeto-tooltip {
    left: 75%;
}

#terreno-tooltip {
    top: -100%;
    left: 60%;
    transform: skewX(-12deg);
    border-image: linear-gradient(355deg, 
    rgba(255, 255, 255, 0),
    rgba(255, 255, 255, 0), 
    rgba(255, 255, 255, 0.9)) 25;
}

#terreno-tooltip .tooltiptext {
    top: -110%;
}

#calibrada-tooltip {
    top: 50%;
    right: 70%;
    transform: skewX(-12deg);
    border-image: linear-gradient(165deg, 
    rgba(255, 255, 255, 0),
    rgba(255, 255, 255, 0), 
    rgba(255, 255, 255, 0.9)) 25;
}

#calibrada-tooltip .tooltiptext,
#terreno-tooltip .tooltiptext {
    transform: skewX(12deg);
}

#operacao-tooltip {
    top: -80%;
    right: 60%;
    border-image: linear-gradient(5deg, 
    rgba(255, 255, 255, 0),
    rgba(255, 255, 255, 0), 
    rgba(255, 255, 255, 0.9)) 25;
}

#operacao-tooltip .tooltiptext {
    top: -115%;
    transform: skewX(-12deg);
}
  
.tooltip:hover .tooltip-box .tooltiptext, 
.tooltip:hover .tooltip-box {
    visibility: visible;
    animation: fadeOut 0.2s forwards 2s;
}

@keyframes fadeOut {
    0% {
        visibility:visible;
        opacity:1;
    }
    100% {
        visibility:hidden;
        opacity:0;
        width: 0%;
        height: 0%;
        font-size: 0;
    }
}

.tooltip:hover .tooltip-box .tooltiptext {
    font-size: 1.1rem;
}

.tooltip:hover .tooltip-box {
    width: 535%;
    height: 200%;
}

.tooltip:hover #terreno-tooltip,
.tooltip:hover #operacao-tooltip {
    height: 150%;
}

.tooltip:hover #calibrada-tooltip {
    width: 450%;
}
