/*
Main file CSS Style
*/


* {

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


/*
Header Section
 */

.header-principal-wrap {

    width: 100%;
    height: 12vh;

    position: sticky;
    top: 0;
}


.header-principal-wrap .header-nav-wrap {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: space-around;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

.header-principal-wrap .header-nav-wrap .header-container-logo {
    width: 30%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.header-principal-wrap .header-nav-wrap .header-container-logo .header-logo {

    background-image: url(../images/vr-logo.svg);
    background-size: cover;
    width: 12vw;
    height: 10vh;
    background-repeat: no-repeat;
}

.header-principal-wrap .header-nav-wrap .header-nav-bar {
    display: flex;
    flex-direction: row;
    list-style: none;
    gap: 6vw;
    align-items: center;
}


.header-nav-wrap .header-nav-bar-list {

    width: 70%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;

}

.header-nav-bar-list span {
    font-size: 1.8em;
    font-weight: 900;
    color: #37c4ff;
}

/*
Header Section End
 */


/*
Hero Section
 */
.hero {
    margin-top: 30px;
}

.hero-principal-wrap {

    width: 100%;
    display: flex;
    flex-direction: row;
}

.hero-principal-wrap .section-card-colum {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;

}

.hero-principal-wrap .section-card-row .card-element {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: beige;
    width: 32vw;
    height: 70vh;
    margin-left: 15px;
    justify-content: center;
    border-radius: 10px;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
    margin-top: 30px;

}


.card-element .card-title {

    font-size: 1.7em;
    font-weight: 900;
}

.card-element .card-description {
    font-size: 1.4em;
    text-align: justify;
    margin: 10px;

}

.card-element .card-principal-image {
    width: 100%;
    height: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
}

.card-element .card-principal-image img {
    max-width: 28vw;
    max-height: 36vh;
}


.card-element .card-element-buttons-wrap {
    display: none;
}

.card-element:hover .card-element-buttons-wrap {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
}

.card-element .card-element-buttons-wrap .grow-icon {
    transition: transform 0.4s ease-in-out;
}

.card-element .card-element-buttons-wrap .grow-icon:hover {
    transform: scale(1.25) translateX(-5px) rotate(-2deg);

}

.card-element .card-element-buttons-wrap .grow-icon:hover {

    transform: scale(1.25) translateY(5px) rotate(2deg);
}


/*
Hero Section End
 */

.button-go-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #333;
    color: #8b14b4;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease-in-out, visibility 0.2s ease-in-out;
}

.button-go-to-top i {
    font-size: 20px;
}

.button-go-to-top.show {
    opacity: 1;
    visibility: visible;
}