/* ==========================================================
   HERO PREMIUM
========================================================== */

.srv-hero{

    position:relative;

    min-height:105vh;

    display:flex;

    align-items:center;

    overflow:hidden;

    padding:180px 0 140px;
}

.srv-hero img{

    position:absolute;

    inset:0;

    width:100%;
    height:100%;

    object-fit:cover;

    object-position:center;
}

.srv-overlay{

    position:absolute;

    inset:0;

      background:transparent;
}

/* GLOWS */

.srv-hero::before{

    content:'';

    position:absolute;

    width:750px;
    height:750px;

    border-radius:50%;

    background:
    rgba(30,201,243,.12);

    top:-300px;
    right:-250px;

    filter:blur(120px);
}

.srv-hero::after{

    content:'';

    position:absolute;

    width:600px;
    height:600px;

    border-radius:50%;

    background:
    rgba(86,194,113,.10);

    left:-180px;
    bottom:-180px;

    filter:blur(120px);
}

.srv-hero .container{

    position:relative;

    z-index:3;

    width:90%;

    max-width:1400px;

    margin:auto;
}

.srv-hero-content{

    max-width:820px;

    color:white;
    margin-bottom: 90px;
}

/* BADGE */

.srv-hero-content span{

    display:inline-flex;

    align-items:center;

    gap:10px;

    padding:12px 22px;

    border-radius:999px;

    background:
    rgba(255,255,255,.08);

    border:
    1px solid rgba(255,255,255,.10);

    backdrop-filter:blur(15px);

    color:#fbbf24;

    font-size:.8rem;

    font-weight:700;

    letter-spacing:2px;

    margin-bottom:28px;
}

/* TITULO */

.srv-hero-content h1{

    font-size:clamp(
    3rem,
    3.3vw,
    3.2rem);

    line-height:1.05;

    font-weight:800;

    margin-bottom:28px;

    color:white;

    max-width:900px;
}

/* TEXTO */

.srv-hero-content p{

    max-width:700px;

    color:
    rgba(255,255,255,.88);

    font-size:1.12rem;

    line-height:2;
}
/* ==========================================================
   SERVICES HERO - MOBILE
========================================================== */

@media (max-width:768px){

.srv-hero{

    min-height:68vh;

    height:68vh;

    padding:90px 0 40px;

    display:flex;

    align-items:center;

}

.srv-hero img{

    object-fit:cover;

    object-position:65% center;

}

.srv-overlay{

    background:linear-gradient(
        180deg,
        rgba(7,42,82,.78),
        rgba(7,42,82,.60)
    );

}

.srv-hero::before{

    width:300px;

    height:300px;

    top:-140px;

    right:-140px;

    filter:blur(70px);

}

.srv-hero::after{

    width:240px;

    height:240px;

    left:-120px;

    bottom:-120px;

    filter:blur(60px);

}

.srv-hero .container{

    width:92%;

}

.srv-hero-content{

    max-width:300px;

    margin-bottom:0;

}

.srv-hero-content span{

    padding:8px 14px;

    font-size:.58rem;

    letter-spacing:1px;

    margin-bottom:40px;

}

.srv-hero-content h1{

    font-size:1.5rem;

    line-height:1.15;

    margin-bottom:16px;

    max-width:290px;

}

.srv-hero-content p{

    font-size:.69rem;

    line-height:1.7;

    max-width:290px;

}

}

/* ==========================================================
   INTRO
========================================================== */

.srv-intro{

    position:relative;

    padding:170px 0 130px;

    background:
    linear-gradient(
    90deg,
    #f7fafc 0%,
    #f7fafc 45%,
    #dff8fd 100%);
}

.srv-intro-content{

    max-width:900px;

    margin:auto;

    text-align:center;
}

.srv-intro-content span{

    color:#0891b2;

    font-weight:700;

    letter-spacing:3px;

    font-size:.85rem;
}

.srv-intro-content h2{

    margin:24px 0;

    font-size:clamp(
    2.3rem,
    4vw,
    3.6rem);

    line-height:1.15;

    background:
    linear-gradient(
    90deg,
    #072A52,
    #1EC9F3,
    #56C271);

    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.srv-intro-content p{

    max-width:760px;

    margin:auto;

    color:#64748b;

    line-height:2;
}
/* ==========================================================
   SHOWCASE PREMIUM
========================================================== */

.srv-showcase{

    position:relative;

    padding:80px 0 180px;

    background:
    linear-gradient(
    180deg,
    #f8fbfd 0%,
    #ffffff 100%);
}

/* GRID PRINCIPAL */

.srv-featured-grid{

    display:grid;

    grid-template-columns:
    repeat(2,1fr);

    gap:50px;

    margin-bottom:60px;
}

/* ==========================================================
   CARDS GRANDES
========================================================== */

.srv-featured-card{

    position:relative;

    height:650px;

    overflow:hidden;

    border-radius:42px;

    box-shadow:
    0 40px 90px rgba(15,23,42,.12);

    transition:.45s ease;
}

.srv-featured-card img{

    width:100%;
    height:100%;

    object-fit:cover;

    transition:
    transform 1s ease;
}

.srv-featured-card:hover{

    transform:
    translateY(-10px);

    box-shadow:
    0 55px 110px rgba(15,23,42,.16);
}

.srv-featured-card:hover img{

    transform:
    scale(1.08);
}

/* OVERLAY */

.srv-featured-overlay{

    position:absolute;

    inset:0;

    display:flex;

    flex-direction:column;

    justify-content:flex-end;

    padding:55px;

    background:
    linear-gradient(
    to top,
    rgba(7,42,82,.98),
    rgba(7,42,82,.82),
    rgba(7,42,82,.10));
}

/* NÚMERO */

.srv-featured-overlay > span{

    width:68px;
    height:68px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:20px;

    margin-bottom:22px;

    color:white;

    font-weight:700;

    font-size:1.05rem;

    background:
    linear-gradient(
    135deg,
    #1EC9F3,
    #56C271);

    box-shadow:
    0 20px 40px rgba(30,201,243,.25);
}

/* TÍTULO */

.srv-featured-overlay h3{

    color:white;

    font-size:2.2rem;

    line-height:1.15;

    margin-bottom:30px;

    font-weight:800;
}

/* LISTA */

.srv-card-list{

    display:grid;

    grid-template-columns:
    repeat(2,1fr);

    gap:18px 30px;
}

.srv-card-list div{

    display:flex;

    align-items:flex-start;

    gap:12px;

    color:
    rgba(255,255,255,.92);

    font-size:1rem;

    line-height:1.6;
}

.srv-card-list i{

    color:#56C271;

    margin-top:4px;

    flex-shrink:0;
}

/* ==========================================================
   GRID SECUNDÁRIA
========================================================== */

.srv-mini-grid{

    display:grid;

    grid-template-columns:
    repeat(3,1fr);

    gap:40px;
}

/* ==========================================================
   MINI CARDS
========================================================== */

.srv-mini-card{

    position:relative;

    height:460px;

    overflow:hidden;

    border-radius:34px;

    box-shadow:
    0 25px 70px rgba(15,23,42,.08);

    transition:.4s ease;
}

.srv-mini-card img{

    width:100%;
    height:100%;

    object-fit:cover;

    transition:
    transform .9s ease;
}

.srv-mini-card:hover{

    transform:
    translateY(-10px);

    box-shadow:
    0 35px 90px rgba(15,23,42,.12);
}

.srv-mini-card:hover img{

    transform:
    scale(1.08);
}
/* OVERLAY */

.srv-mini-overlay{

    position:absolute;

    inset:0;

    display:flex;

    flex-direction:column;

    justify-content:flex-end;

    padding:35px;

    background:
    linear-gradient(
    to top,
    rgba(7,42,82,.97),
    rgba(7,42,82,.72),
    rgba(7,42,82,.08));
}

/* NÚMERO */

.srv-mini-overlay span{

    width:54px;
    height:54px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:16px;

    margin-bottom:18px;

    color:white;

    font-weight:700;

    background:
    linear-gradient(
    135deg,
    #1EC9F3,
    #56C271);
}

/* TÍTULO */

.srv-mini-overlay h4{

    color:white;

    font-size:1.45rem;

    margin-bottom:15px;

    line-height:1.2;

    font-weight:700;
}

/* TEXTO */

.srv-mini-overlay p{

    color:
    rgba(255,255,255,.82);

    line-height:1.9;

    font-size:.95rem;
}
/* ==========================================================
   SERVICES SHOWCASE - MOBILE
========================================================== */

@media (max-width:768px){

/* SECTION */

.srv-showcase{

    padding:70px 0 90px;

}

/* ==================================================
   FEATURED GRID
================================================== */

.srv-featured-grid{

    grid-template-columns:1fr;

    gap:25px;

    margin-bottom:30px;

}

/* ==================================================
   FEATURED CARD
================================================== */

.srv-featured-card{

    height:430px;

    border-radius:24px;

}

.srv-featured-overlay{

    padding:28px;

}

.srv-featured-overlay > span{

    width:48px;

    height:48px;

    border-radius:14px;

    margin-bottom:16px;

    font-size:.85rem;

}

.srv-featured-overlay h3{

    font-size:1.45rem;

    margin-bottom:18px;

    line-height:1.2;

}

/* LISTA */

.srv-card-list{

    grid-template-columns:1fr;

    gap:12px;

}

.srv-card-list div{

    font-size:.82rem;

    gap:10px;

    line-height:1.6;

}

.srv-card-list i{

    font-size:.85rem;

}

/* ==================================================
   MINI GRID
================================================== */

.srv-mini-grid{

    grid-template-columns:1fr;

    gap:22px;

}

/* ==================================================
   MINI CARD
================================================== */

.srv-mini-card{

    height:320px;

    border-radius:22px;

}

.srv-mini-overlay{

    padding:24px;

}

.srv-mini-overlay span{

    width:42px;

    height:42px;

    border-radius:12px;

    margin-bottom:14px;

    font-size:.80rem;

}

.srv-mini-overlay h4{

    font-size:1.15rem;

    margin-bottom:10px;

}

.srv-mini-overlay p{

    font-size:.80rem;

    line-height:1.6;

}

}

/* ==========================================================
   PROCESSO PREMIUM V2
========================================================== */

.srv-process{

    position:relative;

    padding:220px 0;

    overflow:hidden;

    background:
    linear-gradient(
    135deg,
    #041a35 0%,
    #072A52 35%,
    #0f172a 100%);
}

/* EFEITOS */

.srv-process::before{

    content:'';

    position:absolute;

    width:900px;
    height:900px;

    border-radius:50%;

    background:
    radial-gradient(
    circle,
    rgba(30,201,243,.18),
    transparent 70%);

    top:-350px;
    right:-300px;

    filter:blur(100px);
}

.srv-process::after{

    content:'';

    position:absolute;

    width:700px;
    height:700px;

    border-radius:50%;

    background:
    radial-gradient(
    circle,
    rgba(86,194,113,.12),
    transparent 70%);

    bottom:-300px;
    left:-250px;

    filter:blur(120px);
}

.srv-process .container{

    position:relative;

    z-index:2;
}

/* TITULO */

.srv-heading{

    text-align:center;

    max-width:900px;

    margin:0 auto 110px;
}

.srv-heading span{

    display:inline-flex;

    align-items:center;

    gap:10px;

    padding:10px 22px;

    border-radius:999px;

    background:
    rgba(255,255,255,.06);

    border:
    1px solid rgba(255,255,255,.08);

    backdrop-filter:blur(12px);

    color:#fbbf24;

    font-size:.8rem;

    font-weight:700;

    letter-spacing:2px;
}

.srv-heading h2{

    margin-top:28px;

    font-size:clamp(
    2.5rem,
    4vw,
    4rem);

    line-height:1.1;

    font-weight:800;

    background:
    linear-gradient(
    90deg,
    #ffffff,
    #1EC9F3,
    #56C271);

    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.srv-heading p{

    margin-top:20px;

    color:
    rgba(255,255,255,.78);

    line-height:1.9;
}

/* GRID */

.srv-process-grid{

    display:grid;

    grid-template-columns:
    repeat(4,1fr);

    gap:30px;

    position:relative;
}

/* LINHA */

.srv-process-grid::before{

    content:'';

    position:absolute;

    top:45px;

    left:8%;

    width:84%;

    height:2px;

    background:
    linear-gradient(
    90deg,
    rgba(30,201,243,.35),
    rgba(86,194,113,.35));

    z-index:0;
}

/* CARD */

.srv-step{

    position:relative;

    z-index:2;

    padding:90px 35px 40px;

    border-radius:35px;

    background:
    rgba(255,255,255,.05);

    backdrop-filter:blur(20px);

    border:
    1px solid rgba(255,255,255,.08);

    transition:.45s ease;
}

/* ICONE */

.srv-step::before{

    content:'';

    position:absolute;

    top:-25px;
    left:35px;

    width:70px;
    height:70px;

    border-radius:50%;

    background:
    linear-gradient(
    135deg,
    #1EC9F3,
    #56C271);

    box-shadow:
    0 15px 35px rgba(30,201,243,.25);
}

/* NUMERO */

.srv-step strong{

    position:absolute;

    top:18px;
    right:20px;

    font-size:4rem;

    font-weight:800;

    color:
    rgba(255,255,255,.06);
}

.srv-step h4{

    color:white;

    font-size:1.35rem;

    margin-bottom:14px;

    font-weight:700;
}

.srv-step p{

    color:
    rgba(255,255,255,.78);

    line-height:1.8;
}

.srv-step:hover{

    transform:
    translateY(-12px);

    border-color:
    rgba(30,201,243,.25);

    box-shadow:
    0 35px 70px rgba(0,0,0,.30);
}

/* ==========================================================
   CTA PREMIUM V2
========================================================== */

.srv-cta{

    position:relative;

    min-height:100vh;

    display:flex;

    align-items:center;

    overflow:hidden;
}

.srv-cta img{

    position:absolute;

    inset:0;

    width:100%;
    height:100%;

    object-fit:cover;
}

.srv-cta-overlay{

    position:absolute;

    inset:0;

    background:
    linear-gradient(
    135deg,
    rgba(4,26,53,.92),
    rgba(7,42,82,.75));
}

/* GLOW 1 */

.srv-cta::before{

    content:'';

    position:absolute;

    width:800px;
    height:800px;

    border-radius:50%;

    background:
    rgba(30,201,243,.15);

    top:-350px;
    right:-250px;

    filter:blur(140px);

    z-index:1;
}

/* GLOW 2 */

.srv-cta::after{

    content:'';

    position:absolute;

    width:650px;
    height:650px;

    border-radius:50%;

    background:
    rgba(86,194,113,.12);

    left:-250px;
    bottom:-250px;

    filter:blur(130px);

    z-index:1;
}

.srv-cta .container{

    position:relative;

    z-index:3;
}

/* BOX */

.srv-cta-content{

    max-width:900px;

    margin:auto;

    text-align:center;

    padding:70px;

    border-radius:40px;

    background:
    rgba(255,255,255,.05);

    backdrop-filter:blur(20px);

    border:
    1px solid rgba(255,255,255,.08);
}

/* BADGE */

.srv-cta-content span{

    display:inline-flex;

    align-items:center;

    padding:12px 22px;

    border-radius:999px;

    background:
    rgba(255,255,255,.08);

    border:
    1px solid rgba(255,255,255,.10);

    color:#fbbf24;

    font-size:.8rem;

    font-weight:700;

    letter-spacing:2px;
}

/* TITULO */

.srv-cta-content h2{

    margin:30px 0 20px;

    font-size:clamp(
    2.8rem,
    4vw,
    4.5rem);

    line-height:1.05;

    font-weight:800;

    color:white;
}

.srv-cta-content p{

    max-width:700px;

    margin:0 auto 45px;

    color:
    rgba(255,255,255,.82);

    line-height:1.9;
}

/* BOTÕES */

.srv-cta-actions{

    display:flex;

    justify-content:center;

    gap:20px;

    flex-wrap:wrap;
}

.srv-btn-primary,
.srv-btn-outline{

    min-width:240px;

    height:64px;

    border-radius:999px;

    font-weight:700;

    transition:.4s ease;
}

.srv-btn-primary{

    background:
    linear-gradient(
    135deg,
    #1EC9F3,
    #56C271);

    color:white;
}

.srv-btn-primary:hover{

    transform:
    translateY(-6px);

    box-shadow:
    0 25px 50px rgba(30,201,243,.30);
}

.srv-btn-outline{

    border:
    1px solid rgba(255,255,255,.15);

    background:
    rgba(255,255,255,.06);

    color:white;
}

.srv-btn-outline:hover{

    transform:
    translateY(-6px);

    background:
    rgba(255,255,255,.12);
}
/* ==========================================================
   PROCESSO + CTA MOBILE
========================================================== */

@media (max-width:768px){

/* ==================================================
   PROCESSO
================================================== */

.srv-process{

    padding:90px 0;

}

.srv-process::before{

    width:320px;

    height:320px;

    top:-160px;

    right:-160px;

    filter:blur(70px);

}

.srv-process::after{

    width:260px;

    height:260px;

    left:-140px;

    bottom:-140px;

    filter:blur(70px);

}

/* HEADER */

.srv-heading{

    margin:0 auto 45px;

}

.srv-heading span{

    padding:8px 16px;

    font-size:.60rem;

    letter-spacing:1px;

}

.srv-heading h2{

    margin-top:18px;

    font-size:1.8rem;

    line-height:1.2;

}

.srv-heading p{

    margin-top:15px;

    font-size:.85rem;

    line-height:1.7;

}

/* GRID */

.srv-process-grid{

    grid-template-columns:1fr;

    gap:35px;

}

/* REMOVE LINHA */

.srv-process-grid::before{

    display:none;

}

/* CARD */

.srv-step{

    padding:65px 24px 24px;

    border-radius:22px;

}

.srv-step::before{

    width:52px;

    height:52px;

    top:-18px;

    left:24px;

}

.srv-step strong{

    font-size:2.6rem;

    top:12px;

    right:16px;

}

.srv-step h4{

    font-size:1.1rem;

    margin-bottom:10px;

}

.srv-step p{

    font-size:.82rem;

    line-height:1.6;

}

/* ==================================================
   CTA
================================================== */

.srv-cta{

    min-height:70vh;

    padding:70px 0;

}

.srv-cta img{

    object-position:center;

}

.srv-cta-overlay{

    background:linear-gradient(
        180deg,
        rgba(4,26,53,.90),
        rgba(7,42,82,.75)
    );

}

.srv-cta::before{

    width:320px;

    height:320px;

    top:-170px;

    right:-170px;

    filter:blur(70px);

}

.srv-cta::after{

    width:260px;

    height:260px;

    left:-140px;

    bottom:-140px;

    filter:blur(70px);

}

/* BOX */

.srv-cta-content{

    width:92%;

    padding:35px 22px;

    border-radius:24px;

}

/* BADGE */

.srv-cta-content span{

    padding:8px 16px;

    font-size:.60rem;

    letter-spacing:1px;

}

/* TÍTULO */

.srv-cta-content h2{

    margin:20px 0 15px;

    font-size:2rem;

    line-height:1.2;

}

.srv-cta-content p{

    font-size:.85rem;

    line-height:1.7;

    margin-bottom:25px;

}

/* BOTÕES */

.srv-cta-actions{

    flex-direction:column;

    gap:12px;

}

.srv-btn-primary,
.srv-btn-outline{

    width:100%;

    min-width:0;

    height:52px;

    font-size:.90rem;

}

}