@charset "UTF-8";

/* Global */

html {
    overflow-x: hidden;
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: #1B3644;
    color: #fff;
}

strong {
    font-weight: 700;
}

/* Color */

.color-blue { color: #63B9E9; }
.bg-blue { background-color: #63B9E9; }
.color-teal { color: #5ED9BA; }
.bg-teal { background-color: #5ED9BA; }
.color-green { color: #84CE30; }
.bg-green { background-color: #76B82A; }
.color-dgray { color: #3C3C3B;}
.bg-dgray { background-color: #3C3C3B;}
.best-gradient-v { background: linear-gradient(to bottom, rgba(99,185,233,1) 0%,rgba(118,184,42,1) 100%); }
.best-gradient-h { background: linear-gradient(to right, rgba(99,185,233,1) 0%,rgba(118,184,42,1) 100%); }
.best-gradient-d { background: linear-gradient(135deg, rgba(99,185,233,1) 0%,rgba(118,184,42,1) 100%); }

/* Links */

a.link-img {
    opacity: 1;
    transition: all .3s ease;
}

a.link-img:hover {
    opacity: .75;
}

a.link-dgray {
    opacity: 1;
    transition: all .3s ease;
    text-decoration: none;
    color: #3C3C3B;
}

a.link-dgray:hover {
    opacity: .75;
    color: #3C3C3B;
}

/* Text */

h1 {
    font-size: 40px;
    line-height: 1.4;
    margin-bottom: 60px;
}

h2 {
    font-size: 28px;
    font-weight: 200;
    line-height: 1.4;
}

h3 {
    font-size: 26px;
    line-height: 1.4;
    margin-bottom: 22px;
}

p {
    font-size: 16px;
}

p.text-big {
    font-size: 20px;
}

@media (min-width: 992px) {
    h1 {
        font-size: 46px;
    }

    h2 {
        font-size: 36px;
    }

    h3 {
        font-size: 30px;
    }

    p {
        font-size: 18px;
    }

    p.text-big {
        font-size: 22px;
    }
}

/* Buttons */

.btn-primary {
    --bs-btn-bg: #3D90BE;
    --bs-btn-border-color: #3D90BE;
    --bs-btn-hover-bg: #63B9E9;
    --bs-btn-hover-border-color: #63B9E9;
    --bs-btn-active-bg: #63B9E9;
    --bs-btn-active-border-color: #63B9E9;
    --bs-btn-disabled-bg: #3D90BE;
    --bs-btn-disabled-border-color: #3D90BE;
}

/* Navbar */

.navbar {
    --bs-navbar-padding-y: 15px;
    z-index: 3;
}

.navbar-brand {
    padding-top: 0;
    padding-bottom: 0;
}

.navbar-nav {
    --bs-nav-link-color: rgba(255, 255, 255, 1);
    --bs-nav-link-hover-color: rgba(255, 255, 255, .75);
}

.navbar-nav .nav-link.active {
    color: #63B9E9;
}

.navbar-expand .navbar-nav .nav-link {
    padding-right: 18px;
    padding-left: 18px;
}

@media (min-width: 992px) {
    .navbar {
        --bs-navbar-padding-y: 40px;
    }
}

/* Header & Video BG */

header {
    position: relative;
    height: 100vh;
    max-height: 720px;
}

.header-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 30px 0 80px 0;
    z-index: 2;
}

.bgvid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.bgvid video {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.bgvid .overlay-black {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(27, 54, 68, .90);
}

.bgvid .overlay-dots {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../img/bgvid-overlay-dots.png');
    background-repeat: repeat;
    opacity: .5;
}

.bgvid .overlay-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 240px;
    background: linear-gradient(to bottom, rgba(27,54,68,0) 0%,rgba(27,54,68,1) 100%);
}

@media (min-width: 992px) {
    .header-content {
        padding: 130px 0;
    }
}

/* QR Code */

#qrcode {
    margin-top: -90px;
    scroll-margin-top: 60px;
}

.qr-container {
    background-color: #fff;
    padding: 12px;
    border-radius: 8px;
    display: inline-block;
}

@media (min-width: 992px) {
    .qr-container {
        padding: 36px;
        border-radius: 30px;
    }
}

/* Diferenciais */

#diferenciais {
    margin-top: 120px;
    padding-bottom: 150px;
    background-image: url('../img/bg-texture.jpg');
    background-repeat: no-repeat;
    background-position: center top;
    scroll-margin-top: 60px;
}

.card-d {
    height: 100%;
    border: 1px solid;
    border-color: rgba(94,217,186,.4);
    padding: 30px 30px 30px 34px;
    color: #5ED9BA;
}

.card-d i {
    font-size: 42px;
    background-image: linear-gradient(to bottom, rgba(99,185,233,1) 0%,rgba(118,184,42,1) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    margin-left: 30px;
}

.card-d:hover {
    border-color: #1B3644;
    background: linear-gradient(135deg, rgba(99,185,233,1) 0%,rgba(118,184,42,1) 100%);
    color: #fff;
    box-shadow: 0 3px 6px rgba(0,0,0,.25);
}

.card-d:hover i {
    background-image: none;
    background-clip: unset;
    -webkit-background-clip: unset;
    color: #fff;
}

/* Impacto */

#impacto {
    margin-top: 100px;
    scroll-margin-top: 60px;
}

/* A Best */

#abest {
    padding: 120px 0 30px 0;
    background-color: #fff;
}

#abest i {
    font-size: 36px;
}

@media (min-width: 576px) {
    #abest {
        padding: 140px 0 150px 0;
    }
}

/* Other */

.responsive-video {
    aspect-ratio: 16 / 9;
    width: 100%;
}
  
.wow {
    visibility: hidden;
}

.divider {
    height: 20px;
}