/* ==========================================================
   PÁGINA DE DESENVOLVIMENTO
========================================================== */


.tag{
    display:inline-block;
    background:rgba(255,106,0,.15);
    color:var(--orange);
    padding:8px 18px;
    border-radius:30px;
    margin-bottom:25px;
    font-weight:600;
}

.btn-primary{
    display:inline-block;
    padding:15px 34px;
    border-radius:8px;
    background:var(--orange);
    color:#fff;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}

.btn-primary:hover{
    transform:translateY(-3px);
}

section{
    padding:100px 0;
}

.section-title{
    text-align:center;
    margin-bottom:70px;
}

.section-title span{
    color:var(--orange);
    font-weight:600;
    letter-spacing:1px;
    text-transform:uppercase;
}

.section-title h2{
    color:#fff;
    font-size:2.5rem;
    margin:18px 0;
}

/* ==========================================================
   HERO
========================================================== */

.dev-hero{
    padding:150px 0 90px;
    background:linear-gradient(160deg,#001338,#00214f 60%,#001338);
    overflow:hidden;
}

.dev-hero-grid{
    display:grid;
    grid-template-columns:1.1fr .9fr;
    gap:60px;
    align-items:center;
}

.dev-hero-text{
    margin-left: 2vw;
}

.dev-hero-text h1{
    font-size:3.1rem;
    line-height:1.25;
    color:#fff;
    margin-bottom:22px;
}

.dev-hero-text p{
    color:#d6d6d6;
    font-size:1.1rem;
    line-height:1.8;
    margin-bottom:35px;
    max-width:520px;
}

.dev-hero-buttons{
    margin-bottom:0;
}

.dev-hero-image{
    position:relative;
    display:flex;
    justify-content:center;
    align-items:center;
}

.dev-hero-image::before{
    content:"";
    position:absolute;
    width:280px;
    height:280px;
    background:var(--orange);
    opacity:.15;
    filter:blur(90px);
    border-radius:50%;
    z-index:0;
}

.dev-hero-image img{
    position:relative;
    z-index:1;
    width:100%;
    max-width:460px;
    display:block;
    border-radius:50% 50% 24px 24px / 30% 30% 24px 24px;
    object-fit:cover;
    border:1px solid rgba(255,255,255,.15);
    box-shadow:0 25px 60px rgba(0,0,0,.45);
}

/* ==========================================================
   BENEFÍCIOS — lista horizontal (não cards em grid)
========================================================== */

.dev-benefits{
    background:#06152f;
}

.benefit-list{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:35px 50px;
}

.benefit-row{
    display:flex;
    gap:20px;
    align-items:flex-start;
    padding-bottom:30px;
    border-bottom:1px solid rgba(255,255,255,.08);
}

.benefit-icon{
    flex-shrink:0;
    width:54px;
    height:54px;
    border-radius:14px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:linear-gradient(135deg,var(--blue-hover),#1a82ff);
}

.benefit-text h3{
    color:#fff;
    font-size:1.1rem;
    margin-bottom:8px;
}

.benefit-text p{
    color:var(--text-muted);
    line-height:1.7;
    font-size:.95rem;
}

/* ==========================================================
   SERVIÇOS — lista numerada
========================================================== */

.dev-services{
    background:linear-gradient(135deg,#00163d,#001435);
}

.service-list{
    display:flex;
    flex-direction:column;
}

.service-item{
    display:grid;
    grid-template-columns:90px 1fr;
    gap:25px;
    align-items:start;
    padding:28px 0;
    border-bottom:1px solid rgba(255,255,255,.08);
    margin-left: 2vw;
}

.service-item:first-child{
    padding-top:0;
}

.service-num{
    font-size:2.2rem;
    font-weight:800;
    color:var(--orange);
    opacity:.7;
}

.service-item h3{
    color:#fff;
    margin-bottom:10px;
    font-size:1.15rem;
}

.service-item p{
    color:var(--text-muted);
    line-height:1.7;
}

/* ==========================================================
   PROCESSO — timeline vertical
========================================================== */

.dev-process{
    background:#06152f;
}

.v-timeline{
    position:relative;
    max-width:680px;
    margin:0 auto;
    padding-left:40px;
}

.v-timeline::before{
    content:"";
    position:absolute;
    left:19px;
    top:6px;
    bottom:6px;
    width:2px;
    background:rgba(255,106,0,.3);
}

.v-step{
    position:relative;
    display:flex;
    gap:25px;
    margin-bottom:45px;
}

.v-step:last-child{
    margin-bottom:0;
}

.v-marker{
    position:absolute;
    left:-40px;
    width:40px;
    height:40px;
    border-radius:50%;
    background:var(--orange);
    color:#fff;
    font-weight:700;
    display:flex;
    align-items:center;
    justify-content:center;
    z-index:1;
}

.v-content{
    background:var(--bg-card);
    border-radius:14px;
    padding:22px 26px;
    width:100%;
}

.v-content h3{
    color:#fff;
    margin-bottom:8px;
}

.v-content p{
    color:var(--text-muted);
    line-height:1.7;
    font-size:.95rem;
}

/* ==========================================================
   FAQ
========================================================== */

.dev-faq{
    background:linear-gradient(135deg,#00163d,#001435);
}

.faq-list{
    max-width:800px;
    margin:0 auto;
}

.faq-row{
    display:flex;
    gap:22px;
    padding:28px 0;
    border-bottom:1px solid rgba(255,255,255,.08);
}

.faq-mark{
    flex-shrink:0;
    width:38px;
    height:38px;
    border-radius:10px;
    background:rgba(255,106,0,.15);
    color:var(--orange);
    font-weight:800;
    display:flex;
    align-items:center;
    justify-content:center;
}

.faq-row h3{
    color:#fff;
    margin-bottom:10px;
}

.faq-row p{
    color:#c4c4c4;
    line-height:1.8;
}

/* ==========================================================
   CTA
========================================================== */

.dev-cta{
    background:linear-gradient(135deg,#00163d,#002868);
}

.dev-cta-box{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:40px;
    background:rgba(255,255,255,.04);
    border:1px solid rgba(255,255,255,.1);
    border-radius:24px;
    padding:50px 60px;
    flex-wrap:wrap;
}

.dev-cta-box h2{
    color:#fff;
    font-size:2.2rem;
    margin-bottom:12px;
}

.dev-cta-box p{
    color:#d5d5d5;
    line-height:1.8;
    max-width:480px;
}

/* ==========================================================
   RESPONSIVO
========================================================== */

@media(max-width:1100px){

    .dev-hero-grid{
        grid-template-columns:1fr;
        text-align:center;
    }

    .dev-hero-text p{
        margin:0 auto 35px;
    }

    .dev-hero-image{
        order:-1;
    }

    .benefit-list{
        grid-template-columns:1fr;
    }

    .dev-cta-box{
        justify-content:center;
        text-align:center;
    }

    .dev-cta-box p{
        margin:0 auto;
    }

}

@media(max-width:768px){

    section{
        padding:70px 0;
    }

    .dev-hero{
        padding:120px 0 70px;
    }

    .dev-hero-text h1{
        font-size:2.2rem;
    }

    .section-title h2{
        font-size:2rem;
    }

    .service-item{
        grid-template-columns:60px 1fr;
    }

    .dev-cta-box h2{
        font-size:1.8rem;
    }

}

@media(max-width:480px){

    .dev-hero-text h1{
        font-size:1.9rem;
    }

    .btn-primary{
        width:100%;
        text-align:center;
    }

    .v-timeline{
        padding-left:32px;
    }

    .v-marker{
        left:-32px;
        width:32px;
        height:32px;
        font-size:.85rem;
    }

}