*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins', sans-serif;
    background:#020817;
    color:white;
    overflow-x:hidden;
}

img{
    max-width:100%;
    height:auto;
    display:block;
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

.header{
  width: 100%;
  height: 80px;
  padding:0 6%;

  display: flex;
  justify-content: space-between;
  align-items: center;

  position: absolute;

  z-index: 9999;

  backdrop-filter: blur(12px);
  background: rgba(2,8,23,0.75);

  border-bottom: 1px solid rgba(255,255,255,0.05);

  transition: 0.4s;
}


.logo{
    width:210px;
    height:auto;
    object-fit:contain;
}

nav{
    display:flex;
    gap:30px;
}

nav a{
    color:white;
    text-decoration:none;
    font-weight:500;
    transition:0.3s;
}

nav a:hover{
    color:#9ca3af;
}

.hero{
    min-height: 100vh;

    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;

    padding: 140px 6% 120px;

    background: 
    linear-gradient(rgba(2,8,23,0.88),
    rgba(2,8,23,0.92)),
    url('https://images.unsplash.com/photo-1556740749-887f6717d7e4?q=80&w=2070&auto=format&fit=crop');

    background-size: cover;
    background-position: center;
    background-attachment: fixed;

    overflow: hidden;
}

.hero::before{
    content:'';
    position:absolute;
    width:500px;
    height:500px;
    background:#2563eb;
    filter:blur(180px);
    opacity:0.12;
    top:-150px;
    right:-150px;
    z-index:1;
}

.hero-content{
    position:relative;
    z-index:2;
    max-width:700px;

    animation:fadeUp 1s ease forwards;
}


.tag{
    display:inline-block;
    background:rgba(255,255,255,0.08);
    border:1px solid rgba(255,255,255,0.1);
    padding:10px 18px;
    border-radius:50px;
    margin-bottom:25px;
    font-size:14px;
}

.hero h1{
    font-size:68px;
    line-height:1.1;
    margin-bottom:25px;
    font-weight:800;
}

.hero p{
    font-size:20px;
    line-height:1.8;
    color:#cbd5e1;
    margin-bottom:40px;
}

.hero-buttons{
    display:flex;
    justify-content: center;
    align-items:center;
    margin-top: 32PX;
}

.btn-primary,
.btn-secondary{
    padding:16px 32px;
    border-radius:50px;
    text-decoration:none;
    font-weight:600;
    transition:0.4s;
}

.btn-primary{
    background: linear-gradient(135deg,#ffffff,#cbd5e1);
    color: #020817;
    font-weight: 700;
    box-shadow: 0 10px 30px rgba(255,255,255,0.15);
    transition: 0.4s;
}

.btn-primary:hover{
    transform: translateY(-5px) scale(1.03);
}

.btn-saiba{
    min-width:180px;
    text-align:center;

    background:rgba(255,255,255,0.06);
    border:1px solid rgba(255,255,255,0.2);

    backdrop-filter:blur(12px);

    padding:16px 28px;
    border-radius:50px;

    font-weight:600;
    letter-spacing:0.5px;

    transition:0.3s;
}

.btn-saiba:hover{
    background:rgba(255,255,255,0.12);
    border-color:#60a5fa;

    transform:translateY(-4px);
    box-shadow:0 10px 30px rgba(96,165,250,0.2);
}

.btn-saiba,
.btn-saiba:visited{
    color:white;
}

.sobre,
.vantagens,
.cta{
    padding:180px 0;
}

.grid-2{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
}

.section-mini-title{
    color:#9ca3af;
    font-size:14px;
    letter-spacing:3px;
}

h2{
    font-size:52px;
    margin-top:15px;
    line-height:1.2;
}

.sobre p{
    color:#cbd5e1;
    line-height:1.9;
    margin-bottom:20px;
    font-size:18px;
}


.title-center{
    text-align:center;
    margin-bottom:80px;
    position:relative;
    z-index:2;
}

.cards{
    display:grid;
    grid-template-columns:repeat(auto-fit, minmax(280px, 1fr));
    gap:32px;
}

.card{
    position:relative;
    background:linear-gradient(145deg, rgba(15,23,42,0.95), rgba(2,8,23,0.95));
    border:1px solid rgba(255,255,255,0.08);
    border-radius:28px;
    padding:36px 28px;
    overflow:hidden;
    transition:0.3s;
    backdrop-filter:blur(16px);
}

.card:hover{
    transform:translateY(-8px);
    border-color:rgba(96,165,250,0.35);
    box-shadow:0 25px 70px rgba(37,99,235,0.18);
}

.card::before{
    content:"";
    position:absolute;
    width:150px;
    height:150px;
    background:#2563eb;
    filter:blur(80px);
    opacity:0.14;
    top:-50px;
    right:-50px;
}

.card-icon{
    width:55px;
    height:55px;
    border-radius:16px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:rgba(96,165,250,0.12);
    border:1px solid rgba(96,165,250,0.25);
    color:#60a5fa;
    font-size:22px;
    margin-bottom:22px;
    position:relative;
    z-index:2;
}

.card h3{
    font-size:22px;
    margin-bottom:14px;
    line-height:1.3;
    position:relative;
    z-index:2;
}

.card p{
    color:#cbd5e1;
    font-size:15px;
    line-height:1.7;
    position:relative;
    z-index:2;
}

.cta{
    padding-bottom:140px;
}

.cta-box{
    position: relative;

    width:90%;
    max-width:1100px;
    margin:auto;

    background: linear-gradient(145deg, rgba(15,23,42,0.55), rgba(2,8,23,0.95));

    border: 1px solid rgba(96,165,250,0.25);
    border-radius: 28px;

    padding: 80px 40px;

    text-align:center;

    box-shadow: 0 20px 60px rgba(0,0,0,0.30);
}

.cta-box::before{
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 28px;
    border: 1px solid rgba(96,265,250,0.12);
    pointer-events: none;
}

.cta-box p{
    color:#cbd5e1;
    margin:25px 0 40px;
    font-size:18px;
}

.big-btn{
    display:inline-block;
}

.footer{
    border-top:1px solid rgba(255,255,255,0.08);
    text-align:center;
    padding:35px;
    color:#94a3b8;
}

.whatsapp-button{
    position:fixed;
    right:25px;
    bottom:25px;

    width:65px;
    height:65px;

    background:#25d366;
    color:white;

    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:32px;

    text-decoration:none;

    box-shadow:0 10px 30px rgba(37,211,102,0.35);

    z-index:999;

    transition:0.4s;
}

.whatsapp-button:hover{
    transform: translateY(-5px) scale(1.08);
    box-shadow:0 15px 40px rgba(37,211,102,0.45);
}

.sobre-content{
    max-width: 700px;
}

.sobre-content p{
    font-size: 20px;
    line-height: 1.9;
    color: #cbd5e1;
    margin-top: 25px;
    max-width:650px;
}

.sobre-content h2{
    margin-top: 20px;
    font-size: 64px;
    line-height: 1.1;
}

@media(max-width:900px){

    .header{
        flex-direction:column;
        gap:20px;
    }

    .hero{
        text-align:center;
        justify-content:center;
    }

    .hero-content{
        max-width:100%;
    }

    .hero h1{
        font-size:42px;
    }

    .hero p{
        font-size:18px;
    }

    .hero-buttons{
        justify-content:center;
    }

    .grid-2{
        grid-template-columns:1fr;
    }

    h2{
        font-size:36px;
    }

    .cta-box{
        padding:50px 30px;
    }

}


@media(max-width:768px){
    
    .header{
        position: relative;
        height: auto;
        padding: 20px;
        flex-direction: column;
        gap: 12px;
        background: #020817;
    }
    .logo{
        width: 300px;
    }

    nav{
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    nav a{
        font-size: 14px;
    }

    .hero{
        min-height: auto;
        padding: 220px 20px 100px;
        text-align: center;
        background-attachment:scroll;
    }

    .hero-content{
        max-width: 100%;
    }

    .hero h1{
        font-size: 38px;
        line-height: 1.2;
    }

    .hero p{
        font-size: 17px;
        line-height: 1.7;
    }

    .hero-buttons{
        flex-direction: column;
        width: 100%;
        justify-content: center;
    }

    .hero-buttons a{
        width: 100%;
        text-align: center;
    }

    .grid-2,
    .cards,
    .servicos-grid{
        grid-template-columns: 1fr;
    }

    h2{
        font-size: 34px;
    }

    .sobre,
    .vantagens,
    .servicos,
    .cta{
        padding: 100px 0;
    }

    .cta-box{
        padding: 30px 25px;
    }

    .whatsapp-button{
        right: 15px;
        bottom: 15px;
        
        width: 58px;
        height: 58px;

        font-size: 28px;
    }

    .sobre-content{
        max-width: 100%;
    }

    .sobre-content h2{
        font-size: 28px !important;
        line-height: 1.3;
    }

    .sobre-content p{
        font-size: 15px !important;
        line-height: 1.7;
    }
     
    .cards{
        grid-template-columns: 1fr;
    }

    .card{
        min-height: auto;
        padding: 30px 25px;
    }

    .card h3{
        font-size: 20px;
    }

    .card p{
        font-size: 14px;
    }

}

@keyframes fadeUp{

    from{
        opacity: 0;
        transform: translateY(40px);
    }

    to{
        opacity: 1;
        transform: translateY(0);
    }
}

/* SEÇÃO SOBRE */
.sobre {
  background: #020817;
  padding: 80px 0;
  display: flex;
  justify-content: center;
}

.img-sobre:hover {
  transform: scale(1.02);
}

.container-sobre {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  flex-wrap: wrap; /* importante pra celular */
}

.texto-sobre {
  flex: 1;
  min-width: 300px;
}

.imagem-sobre {
  flex: 1;
  display: flex;
  justify-content: center;
}

.imagem-sobre img {
  width: 100%;
  max-width: 600px;
  border-radius: 15px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}

.img-click{
    cursor: pointer;
}

.modal{
    display:none;
    position:fixed;
    inset:0;
    z-index:99999;
    background:rgba(0,0,0,0.9);
}

.modal-area{
    width:100%;
    height:100%;
    display:flex;
    align-items:center;
    justify-content:center;
}

.modal-conteudo{
    max-width:90%;
    max-height:85%;
    border-radius:12px;
}

.fechar{
    position:absolute;
    top:20px;
    right:30px;
    color:white;
    font-size:42px;
    cursor:pointer;
    z-index:100000;
}

.conteudo-sobre{
    width: 100%;
    max-width: 1000px;
    margin: 40px auto 0;
    
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
}

.img-sobre{
    width: 100%;
    max-width: 1000px;
    border-radius: 16px;
    transition: 0.3s;

}

/* DESTAQUE SOBRE E SERVIÇOS */
.sobre-content{
    background: linear-gradient(145deg,  rgba(15,23,42,0.72), rgba(2,8,23,0.95));
    border: 1px solid rgba(96,165,250,0.18);
    border-radius: 28px;
    padding: 45px;
    box-shadow: 0 25px 70px rgba(0,0,0,0.25);
}

.sobre-content .section-mini-title{
    color: #60a5fa;
}

.sobre-content h2{
    text-shadow: 0 0 30px rgba(96,165,250,0.15);
}

.servicos{
    margin-top: 60px;
    background: linear-gradient(145deg, rgba(15,23,42,0.72), rgba(2,8,23,0.95));
    border: 1px solid rgba(96,165,250,0.15);
    border-radius: 28px;
    padding: 45px;
    box-shadow: 0 25px 70px rgba(0,0,0,0.25);
}

.servicos .section-mini-title{
    color: #60a5fa;
}

.servicos h2{
    text-shadow: 0 0 30px rgba(96,165,250,0.15);
}

/* ===== SEÇÃO NÚMEROS ===== */
.numeros{
    padding:120px 0;
    background:
    radial-gradient(circle at top left, rgba(37,99,235,0.14), transparent 35%),
    #020817;
    text-align:center;
}

.estrelas{
    color:#facc15;
    font-size:34px;
    margin-bottom:45px;
    letter-spacing:6px;
    text-shadow:0 0 20px rgba(250,204,21,0.25);
}

.numeros h2{
    font-size:40px;
    margin-bottom:60px;
}

.numeros h2 span{
    color:#2563eb;
}

.linha{
    width:100%;
    height:1px;
    background:linear-gradient(90deg, transparent, rgba(96,165,250,0.35), transparent);
    margin-bottom:50px;
}

.numeros-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:24px;
}

.numeros-grid div{
    background:linear-gradient(145deg, rgba(15,23,42,0.75), rgba(2,8,23,0.95));
    border:1px solid rgba(96,165,250,0.18);
    border-radius:24px;
    padding:34px 24px;
    box-shadow:0 20px 50px rgba(0,0,0,0.25);
    transition:0.3s;
}

.numeros-grid div:hover{
    transform:translateY(-8px);
    border-color:rgba(96,165,250,0.35);
    box-shadow:0 25px 70px rgba(37,99,235,0.18);
}

.numeros-grid h3{
    font-size:42px;
    font-weight:600;
    color:#e5e7eb;
}

.numeros-grid p{
    margin-top:10px;
    color:#cbd5e1;
    font-size:15px;
}

@media(max-width:768px){
    .numeros-grid{
        grid-template-columns:1fr 1fr;
        gap:16px;
    }

    .numeros h2{
        font-size:28px;
    }

    .numeros-grid h3{
        font-size:30px;
    }
}

/* ===== IMG FINAL ===== */
.img-sobre{
    width: 100%;
    max-width: 100%;
    border-radius: 16px;
    object-fit: contain;    
}

.conteudo-sobre{
    width: 100%;
    max-width: 100%;
    margin: 40px auto 0;
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
    overflow: hidden;
}

/* ===== SOBRE FINAL ===== */
.sobre-content{
    max-width: 700px;
    background: linear-gradient(145deg, rgba(15,23,42,0.72), rgba(2,8,23,0.95));
    border: 1px solid rgba(95,165,250,0.18);
    border-radius: 28px;
    padding: 45px;
    box-shadow: 0 25px 70px rgba(0,0,0,0.25);
}

/* ===== ESTILO NORMAL (DESKTOP + GERAL) ===== */

.conteudo-sobre{
    width: 100%;
    max-width: 1000px;
    margin: 40px auto 0;
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
    overflow: hidden;
}

.img-sobre{
    width: 100%;
    max-width: 100%;
    border-radius: 16px;
}

/* ===== MOBILE FINAL ===== */
@media(max-width:768px){
    .destaque-box:hover{
        transform: none;
        box-shadow: none;
    }

    html,
    body{
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }

    .container{
        width: 100%;
        max-width: 100%;
        padding: 0 14px;
        margin: 0 auto;
    }

    .header{
        width: 100%;
        height: auto;
        padding: 18px 20px;
        display: flex;
        flex-direction: column;
        gap: 18px;
        background: #020817;
        overflow: hidden;
    }

    .logo{
        width: 170px;
        max-width: 70%;
    }

    nav{
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 14px;
    }

    nav a{
        font-size: 15px;
        padding: 4px 6px;
    }

    .hero{
        width: 100%;
        max-width: 100%;
        min-height: auto;
        padding: 80px 20px 90px;
        text-align: center;
        overflow: hidden;
        background-attachment: scroll;
    }

    .hero h1{
        font-size: 34px;
        line-height: 1.12;
        max-width: 100%;
        word-break: break-word;
    }

    .hero p{
        font-size: 16px;
        line-height: 1.7;
    }
    
    .tag{
        max-width: 100%;
        font-size:14px;
    }

    .conteudo-sobre,
    .servicos,
    .numeros,
    .cta{
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }

    .img-sobre{
        width: 100%;
        max-width: 100%;
        height: auto;
        object-fit: contain;
    }

    .numeros{
        padding: 80px 0;
    }

    .numeros h2{
        font-size: 30px;
        line-height: 1.25;
    }

    .numeros h2 span{
        color: #1d4ed8;
    }

    .numeros-grid{
        grid-template-columns: 1fr 1fr;
        gap: 16px;
        width: 100%;
    }

    .numeros-grid div{
        padding: 28px 14px;
        min-width: 0;
    }

    .numeros-grid h3{
        font-size: 30px;
        word-break: normal;
    }

    .numeros-grid p{
        font-size: 14px;
    }

    .whatsapp-button{
        width: 58px;
        height: 58px;
        right: 18px;
        bottom: 85px;
        font-size: 28px;
    }

   .vantagens{
    overflow: hidden;
}

}    

body{
    background:#020817;
}

.numeros{
    background:#020817;
}

.servicos{
    background:#020817;
}

.destaque-box{
    position: relative;
    background: #020817;
    border: 1px solid rgba(96,165,250,0.25);
    border-radius: 28px;
    padding: 50px;
    box-shadow: none;
}

.vantagens .section-mini-title{
    color:#60a5fa;
    text-shadow:0 0 10px rgba(96,165,250,0.45);
}

.vantagens{
    border: none !important;
    box-shadow: none !important;
}

.cta-box .section-mini-title{
    color:#60a5fa;
    text-shadow:0 0 10px rgba(96,165,250,0.45);
}

@media(max-width:768px){

    .vantagens{
        padding:70px 0 !important;
        overflow:hidden !important;
    }

    .vantagens .container.destaque-box{
        width:92% !important;
        max-width:380px !important;
        margin:0 auto !important;
        padding:26px 18px !important;
        border-radius:22px !important;
        box-sizing:border-box !important;
    }

    .vantagens .title-center{
        margin-bottom:28px !important;
    }

    .vantagens h2{
        font-size:26px !important;
        line-height:1.15 !important;
    }

    .vantagens .cards{
        display:flex !important;
        flex-direction:column !important;
        gap:18px !important;
        width:100% !important;
    }

    .vantagens .card{
        width:100% !important;
        max-width:100% !important;
        min-height:auto !important;
        padding:22px 18px !important;
        border-radius:22px !important;
    }

    .vantagens .card-icon{
        width:52px !important;
        height:52px !important;
        margin-bottom:16px !important;
        font-size:20px !important;
    }

    .vantagens .card h3{
        font-size:18px !important;
        line-height:1.25 !important;
        margin-bottom:12px !important;
    }

    .vantagens .card p{
        font-size:14px !important;
        line-height:1.55 !important;
    }

    .header{
    padding: 10px 16px !important;  /* antes tava grande */
    gap: 10px !important;
}

.logo{
      width: 180px !important; /* mesmo que vc queira 300 no desktop, no mobile reduz */
    max-width: 200% !important;
    margin: 0 auto !important;
}

nav{
    gap: 22px !important;
    row-gap: 14px !important;
}

nav a{
    font-size: 18px !important;
    padding: 0 !important;
}

.footer-container{
    flex-direction: column;
    text-align: center;
}

.footer-right{
    text-align: center;
}

.footer-right .email{
    justify-content: center;
}


}

.footer{
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 40px 20px;
    background: #020817;

}


.footer-container{
    max-width: 1200px;
    margin: 0 auto;


    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}


/* ESQUERDA */
.footer-left h3{
    color: #fff;
    font-size: 18px;
}

.footer-left p{
    font-size: 14px;
    color: #94a3b8;
}


/* CENTRO */
.footer-center{
    text-align: center;
    font-size: 14px;
    color: #94a3b8;
}


/* DIREITA */
.footer-right{
    text-align: right;
}

.footer-right .dev{
    font-size: 14px;
    color: #cbd5e1;
}

.footer-right .email{
    font-size: 14px;
    color: #60a5fa;

    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
}