/* RESET */
*{margin:0;padding:0;box-sizing:border-box}

body{
    font-family:'Inter',system-ui,-apple-system,Arial;
    background:#020617;
    color:#e2e8f0;
}

/* CONTAINER */
.container{
    width:92%;
    max-width:1200px;
    margin:auto;
}

#container_2 {
    width: 100%;
    padding: 0 5%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* ================= HEADER FIXO ================= */
.topo{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    background:rgba(2,6,23,.7);
    backdrop-filter:blur(12px);
    border-bottom:1px solid rgba(255,255,255,.05);
    z-index:1000;
    height: 70px;
}

.topo .container{
    display:flex;
    align-items:center;
    justify-content:space-between;
    /*padding:14px 0;*/
}

.logo{
    height:68px;
}
.logo-footer{
    height:38px;
}

.menu-topo{
    display:flex;
    gap:20px;
    align-items:center;
}

.menu-topo a{
    color:#cbd5f5;
    text-decoration:none;
    font-size:14px;
    transition:.2s;
}

.menu-topo a:hover{
    color:#fff;
}

/* BOTÃO OUTLINE */
.btn-outline{
    border:1px solid rgba(255,255,255,.15);
    padding:8px 16px;
    border-radius:8px;
}

/* ================= HERO ================= */
.hero{
    padding:140px 0 80px;
    text-align:center;
    background:radial-gradient(circle at top,#0f172a,#020617);
}

.hero h1{
    font-size:42px;
    line-height:1.2;
    margin-bottom:20px;
    background:linear-gradient(90deg,#fff,#818cf8);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.hero p{
    max-width:600px;
    margin:0 auto 30px;
    opacity:.7;
}

/* BOTÕES */
.hero-buttons{
    display:flex;
    justify-content:center;
    gap:12px;
    flex-wrap:wrap;
}

.btn-primary{
    background:linear-gradient(135deg,#00d4ff,#6366f1);
    padding:14px 28px;
    border-radius:10px;
    color:#fff;
    text-decoration:none;
    font-weight:600;
    box-shadow:0 8px 30px rgba(0,212,255,.3);
    transition:.25s;
}

.btn-primary:hover{
    transform:translateY(-3px);
    box-shadow:0 15px 40px rgba(0,212,255,.4);
}

.btn-secundario{
    padding:14px 28px;
    border-radius:10px;
    border:1px solid rgba(255,255,255,.1);
    color:#cbd5f5;
    text-decoration:none;
}

.prova-social{
    display:block;
    margin-top:20px;
    font-size:13px;
    opacity:.5;
}

h2 {
    font-size:24px;
    margin-bottom:16px;
    display: flex;
    justify-content: center;
}

/* ================= VIDEO ================= */
.video-section{
    padding:80px 0;
    text-align:center;
}

.video-section h2{
    margin-bottom:10px;
}

.video-box{
    margin-top:30px;
    border-radius:16px;
    overflow:hidden;
    box-shadow:0 20px 60px rgba(0,0,0,.7);
    border:1px solid rgba(255,255,255,.05);
}

.video-box video{
    width:100%;
    display:block;
}

/* ================= FEATURES ================= */
.features{
    padding:80px 0;
}

.features .container{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
}

.feature{
    padding:24px;
    border-radius:14px;
    background:rgba(255,255,255,.03);
    border:1px solid rgba(255,255,255,.06);
    transition:.25s;
}

.feature:hover{
    transform:translateY(-5px);
    border-color:#6366f1;
}

.feature h3{
    margin-bottom:10px;
}

/* ================= CTA ================= */
.cta{
    padding:100px 0;
    text-align:center;
    background:linear-gradient(180deg,#020617,#0f172a);
}

.cta h2{
    font-size:30px;
    margin-bottom:15px;
}

.cta p{
    opacity:.7;
    margin-bottom:30px;
}

/* ================= FOOTER ================= */
.footer{
    padding:60px 0 20px;
    background:#020617;
}

.footer-grid{
    display:flex;
    justify-content:space-between;
    flex-wrap:wrap;
    gap:20px;
}

.footer-links a{
    display:block;
    color:#94a3b8;
    text-decoration:none;
    margin-bottom:8px;
    font-size:14px;
}

.footer-bottom{
    text-align:center;
    margin-top:30px;
    font-size:13px;
    opacity:.4;
}

.brand {
    display: flex;
    align-items: center;
}

/* ================= MOBILE ================= */
@media(max-width:900px){

    .features .container{
        grid-template-columns:repeat(2,1fr);
    }

    .hero h1{
        font-size:32px;
    }

}

/* MOBILE SMALL */
@media(max-width:600px){

    .menu-topo{
        display:none;
    }

    .hero{
        padding:120px 0 60px;
    }

    .hero h1{
        font-size:26px;
    }

    .features .container{
        grid-template-columns:1fr;
    }

}




/* ================= BRAND (LOGO + NOME) ================= */
.brand{
    display:flex;
    align-items:center;
    gap:10px;
}

.brand-name{
    font-weight:600;
    font-size:18px;
    background:linear-gradient(90deg,#fff,#6366f1);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
    letter-spacing:.5px;
}

/* ================= HEADER REFINO ================= */
.topo{
    padding:0 5%;
}

.topo .container{
    max-width:1200px;
}

/* ================= MENU ================= */
.menu-topo a{
    position:relative;
}

.menu-topo a::after{
    content:"";
    position:absolute;
    bottom:-4px;
    left:0;
    width:0%;
    height:2px;
    background:#6366f1;
    transition:.3s;
}

.menu-topo a:hover::after{
    width:100%;
}

/* ================= HERO AJUSTES ================= */
.hero-content{
    max-width:700px;
    margin:auto;
}

.hero-buttons{
    margin-top:20px;
}

/* ================= VIDEO MELHORADO ================= */
.video-box{
    max-width:900px;
    margin:30px auto 0;
    border-radius:18px;
    overflow:hidden;
    box-shadow:
        0 20px 60px rgba(0,0,0,.8),
        0 0 0 1px rgba(255,255,255,.05);
}

/* ================= FEATURES REFINO ================= */
.feature{
    display:flex;
    flex-direction:column;
    gap:8px;
}

/* ================= CTA ================= */
.cta{
    border-top:1px solid rgba(255,255,255,.05);
}

/* ================= SEO HIDDEN ================= */
.seo-hidden{
    padding:40px 0;
    opacity:.6;
    font-size:14px;
}

.seo-hidden h2{
    font-size:20px;
    margin-bottom:10px;
}

.seo-hidden p {
    max-width: 800px;
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* ================= FOOTER ================= */
.logo-footer{
    width:130px;
    margin-bottom:10px;
    height: auto;
}

.footer-brand p{
    max-width:300px;
    font-size:14px;
    opacity:.6;
}

/* ================= BOTÕES REFINO ================= */
.btn-primary,
.btn-secundario,
.btn-outline{
    cursor:pointer;
    transition:.25s ease;
}

.btn-outline:hover{
    background:#ffffff10;
}

/* ================= MOBILE EXTRA ================= */
@media(max-width:600px){

    .brand-name{
        font-size:16px;
    }

    .hero-content{
        padding:0 10px;
    }

    .video-box{
        margin-top:20px;
    }

}


/* LOGO TEXTO ESTILO */
.logo-avix{
    font-weight:700;
    font-size:20px;
    color:#f05454;
}

.logo-bot{
    font-weight:700;
    font-size:20px;
    color:#ffffff;
}

/* BRAND */
.brand{
    display:flex;
    align-items:center;
    gap:0px;
}


/* ================= VIDEO COM OVERLAY ================= */
.video-box {
  position: relative;
  cursor: pointer;
}

.video-box video {
  width: 100%;
  display: block;
}

/* overlay */
.video-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
  z-index: 2;
}

.video-overlay img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* botão play */
.play-btn {
  position: absolute;
  font-size: 170px;
  color: rgb(199, 0, 0);
  background: #fff;
  border-radius: 50%;
  width: 240px;
  height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  align-content: center;
}


@media(max-width:600px){
    .play-btn {
        font-size: 90px;
        width: 120px;
        height: 120px;
    }
}
