:root{
    --main:#0f766e;
    --main-dark:#0a4f4a;
    --main-soft:#dff7f4;
    --accent:#d7a62b;
    --dark:#081916;
    --text:#18302d;
    --muted:#607774;
    --line:#dbeae7;
    --white:#ffffff;
    --bg:#f5fbfa;
    --shadow:0 18px 40px rgba(8,25,22,.08);
    --shadow-soft:0 12px 28px rgba(8,25,22,.06);
    --radius-xl:34px;
    --radius-lg:24px;
    --radius-md:18px;
}

*{
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
    font-size:16px;
    -webkit-text-size-adjust:100%;
}

body.services-body{
    margin:0;
    font-family:Tahoma, Arial, sans-serif;
    background:var(--bg);
    color:var(--text);
    line-height:1.8;
}

body.services-body a{
    color:inherit;
    text-decoration:none;
}

body.services-body img{
    max-width:100%;
    display:block;
}

.container{
    width:100%;
    max-width:1240px;
    margin-inline:auto;
    padding-inline:16px;
}

.services-page{
    overflow:hidden;
}

/* buttons */
.services-page .btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    min-height:54px;
    padding:0 24px;
    border-radius:16px;
    font-weight:800;
    font-size:16px;
    transition:.25s ease;
    border:none;
    cursor:pointer;
}

.services-page .btn:hover{
    transform:translateY(-2px);
}

.services-page .btn-primary{
    background:linear-gradient(135deg, var(--main), #16988b);
    color:#fff;
    box-shadow:0 16px 30px rgba(15,118,110,.20);
}

.services-page .btn-secondary{
    background:#fff;
    color:var(--main-dark);
    border:1px solid rgba(15,118,110,.14);
    box-shadow:var(--shadow-soft);
}

.services-page .btn-light{
    background:#fff;
    color:var(--main-dark);
    box-shadow:0 16px 30px rgba(0,0,0,.12);
}

.services-page .btn-outline-light{
    background:transparent;
    color:#fff;
    border:1px solid rgba(255,255,255,.28);
}

/* hero */
.services-hero{
    position:relative;
    padding:72px 0 90px;
    background:
        radial-gradient(circle at top right, rgba(15,118,110,.10), transparent 26%),
        linear-gradient(180deg, #eef8f7 0%, #eaf5f3 100%);
    overflow:hidden;
}

.services-hero::before{
    content:"";
    position:absolute;
    inset:0;
    background-image:
        linear-gradient(rgba(15,118,110,.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(15,118,110,.035) 1px, transparent 1px);
    background-size:28px 28px;
    pointer-events:none;
}

.services-hero-grid{
    position:relative;
    z-index:1;
    display:grid;
    grid-template-columns:minmax(0,1fr) minmax(0,1fr);
    gap:36px;
    align-items:center;
}

.services-badge{
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:11px 18px;
    border-radius:999px;
    background:#fff;
    border:1px solid rgba(15,118,110,.10);
    color:var(--main-dark);
    font-weight:800;
    box-shadow:0 10px 24px rgba(15,118,110,.06);
    margin-bottom:20px;
}

.services-badge-dot{
    width:10px;
    height:10px;
    border-radius:50%;
    background:var(--accent);
    box-shadow:0 0 0 6px rgba(215,166,43,.15);
}

.services-title{
    margin:0;
    font-size:clamp(42px, 6vw, 82px);
    line-height:1.04;
    letter-spacing:-1.5px;
    color:var(--dark);
    font-weight:900;
}

.services-title span{
    color:var(--main);
}

.services-desc{
    margin:22px 0 0;
    font-size:20px;
    line-height:1.95;
    color:var(--muted);
    max-width:700px;
}

.services-actions{
    display:flex;
    flex-wrap:wrap;
    gap:14px;
    margin-top:28px;
}

.services-points-list{
    display:flex;
    flex-direction:column;
    gap:10px;
    margin-top:24px;
}

.services-point{
    display:flex;
    align-items:center;
    gap:10px;
    color:var(--main-dark);
    font-weight:700;
}

.services-point i{
    color:var(--main);
}

/* hero card */
.services-hero-card{
    position:relative;
    min-height:690px;
    background:#fff;
    border:1px solid #e5efec;
    border-radius:var(--radius-xl);
    box-shadow:var(--shadow);
    overflow:hidden;
    padding:26px;
}

.services-hero-card::before{
    content:"";
    position:absolute;
    inset:auto auto -100px -100px;
    width:340px;
    height:340px;
    background:radial-gradient(circle, rgba(15,118,110,.14), transparent 68%);
    pointer-events:none;
}

.hero-card-top{
    position:relative;
    z-index:4;
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:12px;
    margin-bottom:18px;
    flex-wrap:wrap;
}

.mini-pill{
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:10px 16px;
    border-radius:999px;
    background:var(--main-soft);
    color:var(--main-dark);
    font-size:14px;
    font-weight:800;
    white-space:nowrap;
}

.live-dot{
    width:10px;
    height:10px;
    border-radius:50%;
    background:#16a34a;
    box-shadow:0 0 0 6px rgba(22,163,74,.14);
}

.hero-card-body{
    position:relative;
    min-height:390px;
}

.hero-card-copy{
    position:relative;
    z-index:4;
    width:100%;
    max-width:100%;
    text-align:right;
    margin-bottom:22px;
}

.hero-card-title{
    margin:0 0 18px;
    font-size:clamp(38px, 4.2vw, 60px);
    line-height:1.06;
    color:var(--dark);
    letter-spacing:-1px;
    font-weight:900;
}

.hero-card-text{
    margin:0;
    color:var(--muted);
    font-size:18px;
    line-height:2;
}

.hero-services-grid{
    position:relative;
    z-index:4;
    display:grid;
    grid-template-columns:repeat(2, 1fr);
    gap:14px;
}

.hero-service-box{
    display:flex;
    align-items:center;
    gap:12px;
    background:#f8fcfb;
    border:1px solid #e5efec;
    border-radius:20px;
    padding:16px 18px;
    box-shadow:var(--shadow-soft);
}

.hero-service-box i{
    width:44px;
    height:44px;
    border-radius:14px;
    display:grid;
    place-items:center;
    background:linear-gradient(135deg, var(--main-soft), #f7fffd);
    color:var(--main-dark);
    font-size:20px;
    flex:0 0 44px;
}

.hero-service-box span{
    font-weight:800;
    color:var(--dark);
    line-height:1.6;
}

.hero-card-stats{
    position:relative;
    z-index:4;
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:14px;
    margin-top:26px;
}

.stat-card{
    background:rgba(255,255,255,.98);
    border:1px solid #e4ece9;
    border-radius:22px;
    padding:18px 14px;
    text-align:center;
    box-shadow:var(--shadow-soft);
}

.stat-icon{
    width:42px;
    height:42px;
    border-radius:50%;
    display:grid;
    place-items:center;
    margin:0 auto 10px;
    color:var(--accent);
    font-size:19px;
    background:#fff9e8;
}

.stat-card strong{
    display:block;
    margin-bottom:6px;
    font-size:24px;
    line-height:1.1;
    color:var(--main-dark);
    font-weight:900;
}

.stat-card span{
    font-size:14px;
    color:var(--muted);
    line-height:1.7;
}

/* sections */
.section-block{
    padding:82px 0;
}

.section-soft{
    background:#f8fcfb;
}

.section-head{
    text-align:center;
    margin-bottom:34px;
}

.section-head h3{
    margin:0;
    font-size:clamp(30px, 4vw, 48px);
    line-height:1.2;
    color:var(--dark);
}

.section-head p{
    margin:14px auto 0;
    max-width:760px;
    color:var(--muted);
    font-size:18px;
    line-height:1.9;
}

.cards-grid{
    display:grid;
    gap:18px;
}

.three-cols{
    grid-template-columns:repeat(3, 1fr);
}

.four-cols{
    grid-template-columns:repeat(4, 1fr);
}

.info-card,
.sector-card{
    background:#fff;
    border:1px solid #e6efec;
    border-radius:24px;
    padding:24px;
    box-shadow:var(--shadow-soft);
    transition:.25s ease;
}

.info-card:hover,
.sector-card:hover{
    transform:translateY(-6px);
    box-shadow:0 18px 36px rgba(8,25,22,.08);
}

.info-icon{
    width:58px;
    height:58px;
    border-radius:18px;
    display:grid;
    place-items:center;
    margin-bottom:16px;
    background:linear-gradient(135deg, var(--main-soft), #f7fffd);
    color:var(--main-dark);
    font-size:24px;
}

.info-card h4,
.sector-card h4{
    margin:0 0 10px;
    font-size:22px;
    color:var(--dark);
}

.info-card p,
.sector-card p{
    margin:0;
    color:var(--muted);
    font-size:15px;
    line-height:1.9;
}

/* wide band */
.wide-band{
    background:linear-gradient(135deg, #0f766e 0%, #0b5c56 100%);
    color:#fff;
    border-radius:30px;
    padding:34px 28px;
    box-shadow:0 20px 44px rgba(15,118,110,.22);
    display:grid;
    grid-template-columns:1.2fr .8fr;
    gap:22px;
    align-items:center;
}

.wide-band-copy h3{
    margin:0 0 10px;
    font-size:clamp(28px, 4vw, 40px);
    line-height:1.2;
}

.wide-band-copy p{
    margin:0;
    color:rgba(255,255,255,.92);
    font-size:17px;
    line-height:1.9;
}

.wide-band-grid{
    display:grid;
    grid-template-columns:repeat(2, 1fr);
    gap:12px;
}

.band-stat{
    background:rgba(255,255,255,.12);
    border:1px solid rgba(255,255,255,.16);
    border-radius:20px;
    padding:18px;
    text-align:center;
}

.band-stat strong{
    display:block;
    margin-bottom:6px;
    font-size:24px;
}

.band-stat span{
    color:rgba(255,255,255,.9);
    font-size:14px;
    line-height:1.7;
}

/* cta */
.cta-section{
    padding-top:0;
}

.cta-box{
    margin-top:10px;
    background:linear-gradient(135deg, #0f766e 0%, #0b5c56 100%);
    color:#fff;
    border-radius:30px;
    padding:36px 28px;
    text-align:center;
    box-shadow:0 20px 44px rgba(15,118,110,.22);
}

.cta-box h3{
    margin:0;
    font-size:clamp(28px, 4vw, 40px);
    line-height:1.2;
}

.cta-box p{
    margin:14px auto 0;
    max-width:760px;
    color:rgba(255,255,255,.92);
    font-size:17px;
    line-height:1.9;
}

.cta-actions{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:14px;
    margin-top:24px;
}

/* floating whatsapp */
.floating-whatsapp{
    position:fixed;
    left:18px;
    bottom:18px;
    width:58px;
    height:58px;
    border-radius:50%;
    background:#25D366;
    color:#fff !important;
    display:flex;
    align-items:center;
    justify-content:center;
    box-shadow:0 12px 28px rgba(0,0,0,.20);
    z-index:999;
    font-size:28px;
}

/* responsive */
@media (max-width:1100px){
    .services-hero-grid,
    .wide-band{
        grid-template-columns:1fr;
    }

    .services-hero-card{
        min-height:auto;
    }

    .three-cols,
    .four-cols{
        grid-template-columns:repeat(2, 1fr);
    }
}

@media (max-width:720px){
    .services-hero{
        padding:72px 0 56px;
    }

    .services-title{
        font-size:clamp(38px, 11vw, 58px);
    }

    .services-desc{
        font-size:17px;
    }

    .hero-card-title{
        font-size:clamp(34px, 10vw, 48px);
    }

    .hero-card-text{
        font-size:16px;
        line-height:1.9;
    }

    .hero-services-grid,
    .hero-card-stats,
    .three-cols,
    .four-cols,
    .wide-band-grid{
        grid-template-columns:1fr;
    }

    .services-hero-card,
    .info-card,
    .sector-card,
    .wide-band,
    .cta-box{
        padding:20px;
    }

    .services-actions,
    .cta-actions{
        flex-direction:column;
    }

    .services-page .btn{
        width:100%;
    }

    .floating-whatsapp{
        width:54px;
        height:54px;
        font-size:24px;
        left:14px;
        bottom:14px;
    }
}