body {
    font-family: "Saira Condensed" !important;
    overflow-x: hidden;
}

/*  Separador */
.custom-hr {
    border: 0;
    height: 3px;
    background-color: #ed1d2f !important;
    width: 20%;
    margin: 10px auto;
    margin-left: 0;
    margin-right: auto;
    opacity: 1;
}


/*  Particle */
#particles-js {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 5;
}

canvas {
    display: block;
    vertical-align: bottom;
    position: absolute;
    z-index: 5;
}

#particles-js-2 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 60vh;
    z-index: 5;
}

canvas-2 {
    display: block;
    vertical-align: bottom;
    position: absolute;
    z-index: 5;
}

/* Background Video */
#background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

#background-video-2 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 60vh;
    object-fit: cover;
    z-index: -1;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.8;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 1) 70%, rgba(255, 0, 0, 0.4));
    z-index: 2;
}

.overlay-2 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 60vh;
    opacity: 0.8;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 1) 50%, rgba(255, 0, 0, 0.5));
    z-index: 2;
}

/* _____ */


/*  Botão Estilo Everest */
.btn-course {
    margin-left: 6vh;
    font-weight: 900;
    background-color: #ed1d2f !important;
}

@media (max-width: 767px) {
    .btn-course {
        margin-left: 0vh;

    }
}

.btn-vermelho {
    background-color: #ed1d2f !important;
    text-transform: uppercase;
    color: #fff !important;
    width: 200px;
    font-size: 16px !important;
    padding: 10px !impotant;
    border-radius: 0 !important;

}

.btn-vermelho:hover {
    background-color: #ed1d2f !important;
    color: #fff !important;
    border: solid 1px transparent !important;
    box-shadow: 0 0 10px #ed1d2f, 0 0 20px #ed1d2f, 0 0 30px #ed1d2f;
}



.btn-vermelho-2 {
    background-color: transparent !important;
    text-transform: uppercase;
    color: #ed1d2f !important;
    width: 200px;
    font-size: 16px !important;
    border: solid 1px #ed1d2f !important;
    border-radius: 0 !important;


}

.btn-vermelho-2:hover {
    background-color: #ed1d2f !important;
    color: #fff !important;
    border: solid 1px transparent !important;
    box-shadow: 0 0 10px #ed1d2f, 0 0 20px #ed1d2f, 0 0 30px #ed1d2f;
}

.btn-branco {
    background-color: transparent !important;
    text-transform: uppercase;
    color: #fff !important;
    width: 200px;
    font-size: 16px !important;
    border: solid 1px #fff !important;
    border-radius: 0 !important;


}

.btn-branco:hover {
    background-color: #ed1d2f !important;
    color: #fff !important;
    border: solid 1px transparent !important;
    box-shadow: 0 0 10px #ed1d2f, 0 0 20px #ed1d2f, 0 0 30px #ed1d2f;

}

/* _____ */

/*  Degrades */
.degrade {
    background-color: rgba(0, 0, 0, 0.4);
    padding: 20px;
}

@media (max-width: 767px) {

    .degrade {
        background-color: rgba(0, 0, 0, 0.9);
    }
}

.bg-red-black {
    background: linear-gradient(to bottom right, #000000, #ed1d2f) !important;
}


.bg-red-black-footer {
    background: linear-gradient(to bottom right, #000000, #ed1d2f) !important;

}

/* _____ */

/*  Menu/Header/Top-Menu */
/* Estilos para o cabeçalho fixado */
.fixed {
    position: fixed !important;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #ffffff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    z-index: 1000;

}

/* Efeito Hover */
.main-header ul li {
    color: #ffffff;
    position: relative;
    padding: 10px;
    box-sizing: border-box;
    cursor: pointer;
    transition: 0.5s;
    font-size: 16px
}

.main-header a {
    text-decoration: none;
    color: inherit;
}

.main-header ul li:hover {
    color: #111111;
}

.main-header ul li:before {
    content: '';
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: #ed1d2f;
    z-index: -1;
    transition: transform 0.5s;
    transform: scaleY(0);
    transform-origin: bottom;
}

.main-header ul li:hover:before {
    transition: transform 0.5s;
    transform: scaleY(1);
    transform-origin: top;
}

.main-header ul li:after {
    content: '';
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: #ed1d2f;
    z-index: -2;
    transition: transform 0.5s;
    transform: scaleY(0);
    transform-origin: bottom;
    filter: blur(20px);
}

.main-header ul li:hover:after {
    transition: transform 0.5s;
    transform: scaleY(1);
    transform-origin: top;
}


.main-header.fixed {
    background-color: #0000008f;
    /* Cor de fundo após o menu ficar fixo ou após dar o primeiro scroll */
}


/* Hamburguer */
@media (max-width: 768px) {
    .navbar.open {
        background-color: #000 !important;
        opacity: 0.9
    }
}

.navbar-toggler {
    background-color: white !important;
}

.top-header {
    background-color: #0000008c;
    padding: 10px 0;
    text-align: center;
    color: #fff;
    z-index: 1000;
    position: relative;
    font-size: 14px
}

/* Mobile */
/* Menu */
@media (max-width: 767px) {

    .mb-60 {
        margin-bottom: 100vh;
        margin-top: 20%;
    }
}

.navbar-toggler-icon {
    color: white !important;
}

/* Logo */
.logo-size {
    width: 200px !important
}

/* Icone rede social */
.social-icons {
    font-size: 24px;
    color: #fff !important;
    transition: color 0.3s ease-in-out;
}

.social-icons:hover {
    text-shadow: 0 0 10px #ed1d2f, 0 0 20px #ed1d2f, 0 0 30px #ed1d2f;
}

/*  Conteúdo */

.content {
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    z-index: 1000;
    width: 90%
}

.content-2 {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    z-index: 1000;
    width: 80%
}

.content-start {
    margin-top: 100vh;
}

.content-start-2 {
    margin-top: 70vh;
}

@media (max-width: 767px) {
    .content-start {
        margin-top: 100vh;
        /* Para dispositivos móveis, ajuste a margem superior */
    }
}

@media (max-width: 767px) {

    .content {
        position: absolute;
        top: ;
        left: 50%;
        transform: translate(-50%, -50%);
        text-align: center;
        color: #fff;
        z-index: 1000;
        width: 90%;
    }

}

/*  Checklist */
li i.fas.fa-check {
    color: #ed1d2f;
}

/*  Icones */
.img-widht-icon {
    width: 50px
}

/*  Lottie */
.center-lottie {
    display: flex;
    justify-content: center;
}


/* Neon Rodapé */


.neon-list li {
    margin-bottom: 5px;
}

.neon-list li:hover {
    text-shadow: 0 0 10px #ed1d2f, 0 0 20px #ed1d2f, 0 0 30px #ed1d2f;

}


/* _____ */

/* Banners */
.parallax-cta {
    background-image: url('img/IMG_5485.JPG');
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 80vh;
    /* Ajuste conforme necessário */
    position: relative;
}

/* Estilos para a opacidade preta */
.overlay-cta {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    /* Altere a opacidade conforme necessário */
}

/* Estilos para o texto do call to action */
.cta-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #ffffff;
    /* Cor do texto */
    text-align: center;
    width: 80%
}

.parallax-container {
    background-image: url('img/27250949_retro_abstract_wireframe_landscape_background_3003.jpg');
    /* Substitua 'sua-imagem-de-fundo.jpg' pelo caminho da sua imagem de fundo */
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
    position: relative;
}

.background-overlay {
    background-image: linear-gradient(to bottom, black 30%, #ed1d2f);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: ;
    /* Lembre-se de adicionar um valor para z-index conforme necessário */
    opacity: 0.9;
}


.parallax-container-2 {
    background-image: url('img/banner-uglio.webp');
    /* Substitua 'sua-imagem-de-fundo.jpg' pelo caminho da sua imagem de fundo */
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
    position: relative;
}

.background-overlay-2 {
    background-image: linear-gradient(to bottom, black 30%, #ed1d2f);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: ;
    /* Lembre-se de adicionar um valor para z-index conforme necessário */
    opacity: 0.9;
}

.gradient-text {
    background-image: linear-gradient(to right, #ff1f30, #ffba00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    /* Para navegadores que não suportam -webkit- */
    background-clip: text;
    color: transparent;
    /* Você pode adicionar outras propriedades de estilo para o título aqui */
}

@media (max-width: 767px) {
    .parallax-cta {
        height: 90vh !important;
    }
}

/* _____ */

.fs-banner {
    font-size: 3.5vh
}


@media (max-width: 767px) {
    .fs-banner-praragraph {
        font-size: 14px
    }
}


.form-control {
    border-radius: 0 !important
}

.contact-icon {
    color: #ed1d2f;
}


.img-widht {
    width: 200px
}


.client-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 50px;
}

.client-info img {
    max-width: 200px;
}

.background-logo {
    background-image: linear-gradient(to bottom, black 1%, #ed1d2f);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5px;
    width: 200px;
    height: 200px;
    border-radius: 100%
}

.image-container img {
    display: block;
    width: 200px;

}

.background-logo:hover {
    box-shadow: 0 0 10px #ed1d2f, 0 0 20px #ed1d2f, 0 0 30px #ed1d2f;

}

@media (max-width: 767px) {
    .background-logo {
        width: 100%;
    }
}

@media (max-width: 767px) {
    .client-info img {
        width: 100%;
    }
}

.fs-icon {
    font-size: 13px
}

.fs-icon-title {
    font-size: 16px
}

.fs-18 {
    font-size: 14px !important
}


@media (max-width: 767px) {
    .grid {
        grid-template-columns: repeat(auto-fill, minmax(100%, 1fr)) !important;
    }
}


.grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(30%, 1fr));
    gap: 20px;
}

.post {
    border: 1px solid #ccc;
    padding: 20px;
}

.post-title {
    display: -webkit-box;
    display: -moz-box;
    display: box;
    -webkit-box-orient: vertical;
    -moz-box-orient: vertical;
    box-orient: vertical;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -moz-line-clamp: 2;
    box-lines: 2;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 24px;
}

.post-author {
    margin-bottom: 0;
    font-size: 14px;
    color: #666666
}

.post-date {
    margin-bottom: 0;
    font-size: 14px;
    color: #666666
}

.post-content {
    display: -webkit-box;
    display: -moz-box;
    display: box;
    -webkit-box-orient: vertical;
    -moz-box-orient: vertical;
    box-orient: vertical;
    overflow: hidden;
    -webkit-line-clamp: 3;
    -moz-line-clamp: 3;
    box-lines: 3;
}

.blog-link-button {
    /* Estilos para o botão de redirecionamento */
    display: block;
    margin-top: 10px;
    padding: 8px 16px;
    border: none;
    background-color: #ed1d2f !important;
    text-transform: uppercase;
    color: #fff !important;
    width: 200px;
    font-size: 16px !important;
    border-radius: 0 !important;
}

.blog-link-button:hover {
    background-color: #ed1d2f !important;
    color: #fff !important;
    box-shadow: 0 0 10px #ed1d2f, 0 0 20px #ed1d2f, 0 0 30px #ed1d2f;
}

.float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 9999;
}

.my-float {
    margin-top: 16px;
}

.img-widht-clientes {
    border-radius: 100%;
    width: 200px
}
