html, body{
    margin:0;
    padding:0;
    overflow-x:hidden;
    font-family:'Montserrat', sans-serif;
}
/* MENU */
.navbar-custom{
    background:transparent;
    border:none;
    position:fixed;
    width:100%;
    top:0;
    z-index:9999;
    padding:20px 0;
    transition:0.4s;
}
/* LOGO MENU */
.logo-brand{
    display:flex !important;
    align-items:center;
    color:#fff !important;
    font-size:32px;
    font-weight:700;
    padding-top:10px;
}
.logo-brand img{
    height:48px;
    width:auto;
    margin-right:12px;
}
.logo-brand span{
    position:relative;
    top:2px;
}
.navbar-custom.scrolled{
    background:#04152d;
    box-shadow:0 8px 30px rgba(0,0,0,.18);
    padding:12px 0;
}
.navbar-brand{
    color:#fff !important;
    font-size:32px;
    font-weight:700;
}
.navbar-nav > li > a{
    color:#fff;
    font-size:15px;
    margin-top:10px;
    transition:.3s;
}
.navbar-nav > li > a:hover{
    color:#08d4ff !important;
    background:none !important;
}
.btn-top{
    background:#08d4ff;
    color:#2f2f2f !important;
    border-radius:30px;
    padding:10px 22px !important;
    font-weight:700;
}

.btn-top:hover,
.btn-top:focus{
    color:#2f2f2f !important;
    background:#08d4ff !important;
    text-decoration:none;
}
/* HERO */
.hero{
    position:relative;
    min-height:100vh;
    overflow:hidden;
    display:flex;
    align-items:center;
    color:#fff;
}
/* SLIDER BACKGROUND */
.hero-slider{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    z-index:-1;
}
.slide{
    position:absolute;
    width:100%;
    height:100%;
    opacity:0;
    transition:opacity 2.5s ease-in-out;

    background-size:cover;
    background-position:center center;
}
/* Overlay escuro + imagens */
.slide:nth-child(1){
    background:
    linear-gradient(rgba(3,10,25,.60), rgba(3,10,25,.60)),
    url('../img/reuniao.webp');
}
.slide:nth-child(2){
    background:
    linear-gradient(rgba(3,10,25,.60), rgba(3,10,25,.60)),
    url('../img/celular.webp');
}

.slide:nth-child(3){
    background:
    linear-gradient(rgba(3,10,25,.60), rgba(3,10,25,.60)),
    url('../img/feira.webp');
}

.slide:nth-child(4){
    background:
    linear-gradient(rgba(3,10,25,.60), rgba(3,10,25,.60)),
    url('../img/empresario.webp');
}

.slide.active{
    opacity:1;
}

.hero-content{
    position:relative;
    z-index:2;
}

.hero h1{
    font-size:58px;
    font-weight:700;
    line-height:1.1;
    margin-bottom:25px;
}

.hero p{
    font-size:28px;
    font-weight:300;
    line-height:1.5;
    margin-bottom:40px;
}

.btn-hero{
    background:#00d7ff;
    color:#000;
    padding:18px 42px;
    border-radius:40px;
    font-size:18px;
    font-weight:700;
    display:inline-block;
    transition:.3s;
    text-decoration:none !important;
}

.btn-hero:hover{
    background:#fff;
    transform:translateY(-2px);
}

/* BOLINHAS */
.slider-dots{
    position:absolute;
    bottom:90px;
    left:50%;
    transform:translateX(-50%);
}

.slider-dots span{
    width:12px;
    height:12px;
    border:2px solid #fff;
    border-radius:50%;
    display:inline-block;
    margin:0 5px;
}

.slider-dots .active{
    background:#fff;
}

/* CURVA BRANCA */
.wave{
    position:absolute;
    bottom:0;
    left:0;
    width:100%;
    line-height:0;
    overflow:hidden;
    z-index:5;
}

.wave svg{
    position:relative;
    display:block;
    width:calc(100% + 2px);
    height:110px;

}

.empresa-section{
    padding:100px 0;
    background:#eef2f7;
    margin-top:-2px;
}

.titulo-empresa{
    font-size:42px;
    font-weight:700;
    margin-bottom:60px;
    color:#071A35;
}

.area-empresa{
    display:flex;
    align-items:center;
}

.video-card{
    position:relative;
    overflow:hidden;
    border-radius:25px;
    cursor:pointer;
    transition:.5s;
    box-shadow:0 20px 50px rgba(0,0,0,.15);
}

.video-card img{
    width:100%;
    transition:transform .7s ease;
}

.video-card:hover img{
    transform:scale(1.08);
}

.overlay-video{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;

    background:
    linear-gradient(rgba(3,10,25,.45),
    rgba(3,10,25,.45));

    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;

    color:#fff;
}

.play-button{
    width:85px;
    height:85px;
    border-radius:50%;
    background:#00d2ff;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:35px;
    margin-bottom:15px;

    transition:.4s;
}

.video-card:hover .play-button{
    transform:scale(1.15);
}

.overlay-video span{
    font-size:28px;
    font-weight:700;
}

.texto-empresa{
    font-size:22px;
    line-height:1.9;
    color:#444;
    padding-left:30px;
}

/* MODAL */

.modal-content{
    background:#000;
    border-radius:25px;
    overflow:hidden;
}

.modal-body{
    padding:0;
}

.modal{
    z-index:999999 !important;
}

.modal-backdrop{
    z-index:99999 !important;
}

.modal-dialog{
    margin-top:90px;
}

.video-container{
    position:relative;
    padding-bottom:56.25%;
    height:0;
}

.video-container iframe{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
}

.fechar-video{
    position:absolute;
    z-index:999;
    right:20px;
    top:15px;
    font-size:45px;
    color:#fff;
    opacity:1;
}

.about-section{
    background:#f5f8fc;
    padding:120px 0;
    position:relative;
    overflow:hidden;
}

.about-content{
    padding-top:40px;
}

.mini-title{
    color:#00cfff;
    font-weight:700;
    letter-spacing:2px;
    display:block;
    margin-bottom:20px;
}

.about-content h2{
    font-size:48px;
    font-weight:700;
    color:#071A35;
    line-height:1.2;
    margin-bottom:25px;
}

.about-content p{
    font-size:22px;
    line-height:1.9;
    color:#666;
    margin-bottom:35px;
}

.feature-box{
    display:flex;
    align-items:flex-start;
    margin-bottom:35px;
}

.feature-icon{
    width:55px;
    height:55px;
    background:#00cfff;
    border-radius:50%;

    display:flex;
    justify-content:center;
    align-items:center;

    color:#fff;
    font-size:24px;
    margin-right:20px;
}

.feature-box h4{
    font-size:22px;
    font-weight:700;
    color:#071A35;
    margin-top:0;
}

.feature-box p{
    font-size:18px;
    margin:0;
}

.btn-about{
    display:inline-block;
    background:#08d4ff;
    color:#001529 !important;
    font-size:18px;
    font-weight:700;
    padding:20px 42px;
    border-radius:60px;
    text-decoration:none !important;
    transition:.4s;
}

.btn-about:hover{
    background:#fff;
    transform:translateY(-3px);
}

/* IMAGENS */

.image-wrapper{
    position:relative;
}

.image-grid{
    display:flex;
    gap:15px;
}

.img-box{
    overflow:hidden;
    border-radius:12px;
}

.img-box img{
    width:100%;
    transition:.5s;
}

.img-box:hover img{
    transform:scale(1.05);
}

.big{
    width:50%;
}

.small{
    width:50%;
    margin-top:60px;
}

/* CARD FLUTUANTE */

.floating-card{
    position:absolute;
    top:-20px;
    left:30px;

    background:#fff;
    padding:20px 25px;
    border-radius:12px;

    box-shadow:
    0 15px 40px rgba(0,0,0,.12);

    z-index:9;
}

.floating-card h3{
    margin:0;
    font-size:34px;
    font-weight:700;
    color:#071A35;
}

.floating-card span{
    color:#666;
    font-size:15px;
}

/* RESPONSIVO */

@media(max-width:991px){

    .about-content{
        text-align:center;
        margin-bottom:50px;
    }

    .feature-box{
        display:block;
        text-align:center;
    }

    .feature-icon{
        margin:0 auto 20px;
    }

    .image-grid{
        display:block;
    }

    .big,
    .small{
        width:100%;
        margin-top:20px;
    }

    .floating-card{
        left:50%;
        transform:translateX(-50%);
    }

}

.segmentos-section{
    background:#fff;
    padding:110px 0;
}

.titulo-segmentos{
    font-size:44px;
    font-weight:700;
    color:#071A35;
    margin-bottom:15px;
}

.subtitulo-segmentos{
    font-size:22px;
    color:#777;
    margin-bottom:70px;
}

.area-segmentos{
    display:flex;
    align-items:center;
    margin-bottom:70px;
}

.item-segmento{
    display:flex;
    margin-bottom:35px;
}

.icone-box{
    width:65px;
    height:65px;
    background:#eef6ff;
    border-radius:50%;

    display:flex;
    justify-content:center;
    align-items:center;

    font-size:28px;
    margin-right:20px;
    flex-shrink:0;
}

.item-segmento h4{
    font-size:24px;
    font-weight:700;
    color:#071A35;
    margin-top:0;
}

.item-segmento p{
    font-size:18px;
    color:#666;
    line-height:1.7;
}

.imagem-central img{
    border-radius:18px;
    box-shadow:
    0 15px 40px rgba(0,0,0,.12);
}

/* ESTATÍSTICAS */

.stats-box{
    background:#fff;
    border-radius:18px;
    box-shadow:
    0 10px 40px rgba(0,0,0,.08);

    display:flex;
    justify-content:space-around;

    padding:40px;
}

.stat-item{
    text-align:center;
}

.stat-item h3{
    font-size:42px;
    font-weight:700;
    color:#071A35;
    margin:0;
}

.stat-item span{
    color:#666;
    font-size:18px;
}

/* RESPONSIVO */

@media(max-width:991px){

    .area-segmentos{
        display:block;
    }

    .item-segmento{
        text-align:center;
        display:block;
    }

    .icone-box{
        margin:0 auto 15px;
    }

    .imagem-central{
        margin:40px 0;
    }

    .stats-box{
        display:block;
    }

    .stat-item{
        margin-bottom:30px;
    }
}

.footer-newoxxy{
    background:#04152d;
    padding:80px 0 30px;
    color:#fff;
}

.footer-logo{
    max-width:220px;
    margin-bottom:25px;
}

.footer-brand p{
    color:#b9c3d1;
    font-size:16px;
    line-height:1.9;
}

.footer-newoxxy h4{
    color:#fff;
    font-size:24px;
    font-weight:700;
    margin-bottom:25px;
}

.footer-links{
    list-style:none;
    padding:0;
}

.footer-links li{
    margin-bottom:12px;
}

.footer-links li a{
    color:#b9c3d1;
    text-decoration:none;
    transition:.3s;
}

.footer-links li a:hover{
    color:#17d4ff;
    padding-left:5px;
}

.footer-contact p{
    color:#b9c3d1;
    margin-bottom:15px;
}

/* REDES */

.social-icons{
    margin-top:25px;
}

.social-icons a{
    width:45px;
    height:45px;
    background:rgba(255,255,255,.08);
    display:inline-flex;
    justify-content:center;
    align-items:center;
    border-radius:50%;
    margin-right:10px;
    color:#fff;
    font-size:18px;
    transition:.3s;
}

.social-icons a:hover{
    background:#19d3ff;
    color:#001529;
    transform:translateY(-4px);
}

/* LINHA INFERIOR */

.footer-bottom{
    border-top:1px solid rgba(255,255,255,.10);
    margin-top:50px;
    padding-top:30px;
}

.footer-bottom p{
    color:#8f9caf;
    margin:0;
}

/* RESPONSIVO */

@media(max-width:991px){

    .footer-newoxxy{
        text-align:center;
    }

    .footer-bottom{
        text-align:center;
    }

    .text-right{
        text-align:center !important;
        margin-top:15px;
    }

}

/* RESPONSIVO */
@media(max-width:991px){

    .hero{
        text-align:center;
        padding:150px 0;
    }

    .hero h1{
        font-size:40px;
    }

    .hero p{
        font-size:22px;
    }

    .navbar-brand{
        font-size:26px;
    }
}

@media(max-width:768px){

    .hero h1{
        font-size:32px;
    }

    .hero p{
        font-size:18px;
    }

    .btn-hero{
        padding:14px 28px;
        font-size:16px;
    }

    .navbar-toggle{
        margin-top:18px;
        border-color:#fff;
    }

    .navbar-toggle .icon-bar{
        background:#fff;
    }

    .navbar-collapse{
        background:rgba(0,0,0,.95);
    }
}

/* ==========================================
   RESPONSIVO DOBRA EMPRESA
========================================== */

@media(max-width:991px){

    .empresa-section{
        padding:70px 0;
        text-align:center;
    }

    .titulo-empresa{
        font-size:34px;
        margin-bottom:40px;
        line-height:1.3;
        padding:0 15px;
    }

    .area-empresa{
        display:block;
    }

    .video-card{
        margin-bottom:35px;
    }

    .texto-empresa{
        padding-left:0;
        font-size:20px;
        line-height:1.8;
    }

    .overlay-video span{
        font-size:22px;
    }

    .play-button{
        width:75px;
        height:75px;
        font-size:30px;
    }

}

@media(max-width:768px){

    .empresa-section{
        padding:60px 0;
    }

    .titulo-empresa{
        font-size:28px;
        margin-bottom:30px;
    }

    .texto-empresa{
        font-size:18px;
        padding:0 15px;
    }

    .overlay-video span{
        font-size:18px;
        text-align:center;
        padding:0 15px;
    }

    .play-button{
        width:65px;
        height:65px;
        font-size:26px;
    }

}

@media(max-width:480px){

    .titulo-empresa{
        font-size:24px;
    }

    .texto-empresa{
        font-size:17px;
        line-height:1.7;
    }

    .overlay-video span{
        font-size:16px;
    }

    .play-button{
        width:58px;
        height:58px;
        font-size:22px;
    }

}

/* ==========================================
   HERO IMAGENS MOBILE
========================================== */

@media(max-width:768px){

    .slide:nth-child(1){
        background:
        linear-gradient(rgba(3,10,25,.60), rgba(3,10,25,.60)),
        url('../img/reuniao-mobile.webp');
        background-size:cover;
        background-position:center center;
    }

    .slide:nth-child(2){
        background:
        linear-gradient(rgba(3,10,25,.60), rgba(3,10,25,.60)),
        url('../img/celular-mobile.webp');
        background-size:cover;
        background-position:center center;
    }

    .slide:nth-child(3){
        background:
        linear-gradient(rgba(3,10,25,.60), rgba(3,10,25,.60)),
        url('../img/feira-mobile.webp');
        background-size:cover;
        background-position:center center;
    }

    .slide:nth-child(4){
        background:
        linear-gradient(rgba(3,10,25,.60), rgba(3,10,25,.60)),
        url('../img/empresario-mobile.webp');
        background-size:cover;
        background-position:center center;
    }

}
/* DOBRA CRESCIMENTO */

.cta-growth{
    position:relative;
    padding:160px 0;
    overflow:hidden;

    background:
    url('../img/empresario-growth.webp');

    background-size:cover;
    background-position:center center;
}

/* OVERLAY ESCURO */

.overlay-growth{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;

    background:
    linear-gradient(
    90deg,
    rgba(3,12,30,.72) 15%,
    rgba(3,12,30,.35) 45%,
    rgba(3,12,30,.10) 100%
    );
}

/* CONTEÚDO */

.growth-content{
    position:relative;
    z-index:2;
    max-width:580px;
}

.growth-content h2{
    color:#fff;
    font-size:54px;
    font-weight:700;
    line-height:1.15;
    margin-bottom:40px;
    text-transform:uppercase;
}

/* BOTÃO */

.btn-growth{
    display:inline-block;
    background:#08d4ff;
    color:#001529 !important;
    font-size:18px;
    font-weight:700;
    padding:20px 42px;
    border-radius:60px;
    text-decoration:none !important;
    transition:.4s;
}

.btn-growth:hover{
    background:#fff;
    transform:translateY(-3px);
}

/* RESPONSIVO */

@media(max-width:991px){

    .cta-growth{
        padding:120px 0;
        background-position:75% center;
    }

    .growth-content{
        text-align:center;
        max-width:100%;
    }

    .growth-content h2{
        font-size:38px;
    }

}

@media(max-width:768px){

    .cta-growth{
        padding:90px 0;
        background-position:78% center;
    }

    .growth-content h2{
        font-size:28px;
        line-height:1.3;
    }

    .btn-growth{
        padding:16px 28px;
        font-size:16px;
    }

}
