@import "styles.css";

html {
    scroll-behavior: smooth;
}

body {
    background-color: #0d151c;
}

.debug {
    background-color: rgba(255, 0, 0, 0.1);
    border: 1px solid red;
    color: red;
}

.hero-content {
    position: relative;
    height: 60vh;
    margin-top: 100px;
    z-index: 3;
}

.hero-text {
    height: 100%;
    align-content: center;
}

.bg-video {
    position: absolute;
    width: 100vw;
    height: 60vh;
    object-fit: cover;
    left: 0;
    right: 0;
    top: 100px;
    bottom: 0;
    z-index: -1;
}

.video-overlay {
    width: 100vw;
    height: 60vh;
    left: 0;
    right: 0;
    top: 100px;
    position: absolute;
    z-index: 1;
    background-image: linear-gradient(180deg,
      rgba(13, 21, 28, 1) 0%,
      rgba(13, 21, 28, 0.95) 10%,
      rgba(13, 21, 28, 0.80) 20%,
      rgba(13, 21, 28, 0.70) 60%,
      rgba(13, 21, 28, 0.80) 80%,
      rgba(13, 21, 28, 1) 100%);
}

.hero-content img {
    width: 150px;
    object-fit: contain;
}

.info-box {
    height: fit-content;
    margin: 60px 0px;
}

.axia-content {
    position: relative;
    height: fit-content;
}

.content-box {
    height: 60vh;
    margin: 30px 0px;
}

.content-video {
    height: 100%;
}

.content-text {
    height: 100%;
    align-content: center;
}

.content-box video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 20px;
}

.content-box-big {
    width: 100%;
    height: fit-content;
    margin: 30px 0px;
    display: flex;
}

.content-text-big {
    height: 100%;
    align-content: center;
}

.content-box-big video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.text-divider {
    font-size: 20px;
    opacity: 0.4;
}

.dash-desktop {
    display: flex;
    align-self: flex-start;
}

.dash-mobile {
    display: none;
}

.section-contato {
    position: relative;
    height: fit-content;
    padding: 30px 0px;
}

@media only screen and (min-width: 320px) and (max-width: 992px) {

    .hero-content img {
        width: 180px;
    }

    .info-box {
        margin: 30px 0px;
    }

    .info-icons {
        width: 32px;
        height: 32px;
    }

    .content-box {
        height: fit-content;
        margin: 30px 0px;
    }

    .content-video {
        height: 50%;
    }
    
    .content-text {
        align-content: normal;
        padding-top: 10px;
    }

    .content-text p {
        text-align: justify !important;
    }

    .content-text-big {
        align-content: normal;
        padding-top: 10px;
    }

    .content-text-big p {
        text-align: justify !important;
    }

    .content-box-big h1 {
        font-size: 27px;
    }

    .text-divider {
        font-size: 16px;
    }

    .dash-desktop {
        display: none;
    }
    
    .dash-mobile {
        display: block;
    }
}