.box-titulo {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 8px 0 14px;
    padding: 14px 18px;
    border-radius: 14px;
    background: linear-gradient(120deg, #f8fbfc 0%, #eef7f8 100%);
    border: 1px solid #d9eaec;
    box-shadow: 0 8px 20px -16px rgba(22, 52, 56, 0.65);
}

.section h2 {
    margin: 0;
}

.box-titulo-icone {
    width: 74px;
    height: 74px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(160deg, #f3f3f3 0%, #e9f3f3 100%);
    box-shadow: 0 10px 20px -12px rgba(59, 145, 151, 0.9);
}

.box-titulo img {
    max-width: 60px;
    mix-blend-mode: multiply;
}

.box-titulo-texto {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.box-titulo .titulo-tag {
    width: fit-content;
    padding: 2px 10px;
    border-radius: 999px;
    background-color: #dff1f3;
    color: #2e7f84;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.box-titulo h2 {
    margin: 0;
    font-size: clamp(1.4rem, 3vw, 2.3rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.02em;
    color: #284447;
}

.section {
    --serv-main: #2f8e95;
    --serv-accent: #f39a0f;
    --serv-border: #d6e9eb;
    --serv-text: #4f676b;
    --serv-soft: #f2f8f9;
    --serv-shadow: 0 24px 36px -30px rgba(20, 58, 63, 0.85);

    width: 100%;
    gap: 16px;
    align-items: stretch;
}

.div-divisao {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 16px;
    border: 1px solid var(--serv-border);
    border-top: 5px solid var(--serv-main);
    border-radius: 16px;
    background: linear-gradient(145deg, #f9fcfd 0%, #eef7f8 100%);
    box-shadow: var(--serv-shadow);
    position: relative;
    overflow: hidden;
}

.div-servicos {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 12px;
}

.margin-left {
    margin-left: 0;
}


.servicos-list {
    width: 100%;
    display: flex;
    border-left: 0;
    margin-left: 0;
    padding: 2px 0 0;
    flex-direction: column;
    gap: 8px;
}

.servicos-list ul {
    width: 100%;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    font-size: clamp(0.82rem, 0.78rem + 0.15vw, 0.95rem);
    font-weight: 700;
    color: #345f63;
    margin: 0;
    padding: 10px 12px;
    border-radius: 10px;
    background-color: #ffffff;
    border: 1px solid #dbecef;
    box-shadow: 0 10px 18px -22px rgba(26, 72, 77, 0.9);
}

.servicos-list ul:nth-child(n+2) {
    margin-top: 0;
}

.servicos-list li {
    width: 100%;
    list-style: none;
    color: var(--serv-text);
    font-weight: 600;
    letter-spacing: 0.01em;
    font-size: clamp(0.78rem, 0.74rem + 0.2vw, 0.92rem);
    line-height: 1.45;
    padding-left: 0;
}

.servicos-list li + li {
    margin-top: 4px;
}

.servicos-list li::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--serv-main);
    display: inline-block;
    margin-right: 8px;
    transform: translateY(-1px);
}

.img-serv {
    width: 100%;
    max-height: 420px;
    object-fit: contain;
    animation-name: anima;
    animation-duration: 6s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
}

.div-divisao > img {
    width: 100%;
    max-height: 420px;
    object-fit: contain;
}

.back-silver {
    background: linear-gradient(120deg, #eef3f4 0%, #dde8ea 100%);
    border-radius: 16px;
    max-width: 1200px;
    margin-top: 0;
    padding: 12px;
}

.eclipse {
    max-width: 64px;
    position: absolute;
    opacity: .55;
    pointer-events: none;
}

.eclipse-direita {
    right: 10px;
    top: 10px;
}

.eclipse-esquerda {
    left: 10px;
    top: 10px;
}

.eclipse img {
    width: 100%;
}

@keyframes anima {
    0% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(14px, 10px);
    }

    75% {
        transform: translate(10px, -10px);
    }

    100% {
        transform: translate(0, 0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .img-serv {
        animation: none;
    }
}

@media (max-width: 900px) {
    .section {
        flex-direction: column;
    }

    .back-silver {
        padding: 10px;
    }
}

@media (max-width: 600px) {
    .section {
        flex-direction: column;
        margin-top: -20px;
        margin-bottom: 10px;
        gap: 12px;
    }

    .sem-margin {
        margin-top: 0;
    }

    .div-divisao {
        padding: 12px;
        border-radius: 12px;
    }

    .flex-direction {
        flex-direction: column-reverse;
    }

    .eclipse {
        display: none;
    }

    .div-servicos h2 {
        font-size: 1.05rem;
    }
}
