/* Card de serviço */
        .sobre-servico-card {
            position: relative;
            overflow: hidden;
            max-width: 670px;
            height: 385px;
            border-style: solid;
            display: flex;
            flex-direction: row;
            margin-bottom: 20px;
            
            color: white;
            border-style: solid;
            background-color: #214e6c;
            border-color: #f7f7f729;
            border-width: 2px;
            border-radius: 10px;
        }

        .sobre-servico-imagem {
            margin-top: 50px; 
            margin-left: 30px;
        }

        .sobre-servico-card h2 {
            margin-bottom: 10px;
        }

        .sobre-servico-card p {
            line-height: 1.6;
        }

        .sobre-servico-card img {
            width: 120px;
            height: 120px;
            object-fit: contain;
            margin-right: 40px;
        }

        /* Linha de botões + setas */
        .sobre-servico-botoes-row {
            display: flex;
            align-items: center;
            width: 90%;
            justify-content: space-between;
        }

        .sobre-seta {
            background-color: rgba(0, 0, 0, 0.079);
            width: 20px;
            height: 51px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 5px;
            cursor: pointer;
            transition: background-color 0.2s ease, transform 0.2s ease;
            flex-shrink: 0;
        }

        .sobre-servico-card-margem{
                margin-left: 50px;
            }

        .sobre-seta:hover {
            background-color: rgba(0, 0, 0, 0.15);
            transform: translateY(-1px);
        }

        .sobre-botoes-container {
            overflow: hidden;
            max-width: 500px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .sobre-botoes-wrapper {
            display: flex;
            gap: 10px;
        }

        .sobre-servico-botao {
            font-size: 14px;
            padding: 10px 18px;
            border-radius: 20px;
            border: 1px solid transparent;
            background-color: rgba(0, 0, 0, 0.077);
            color: white;
            cursor: pointer;
            transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
            min-width: 100px;
        }

        .sobre-servico-botao:hover {
            color: #39caab;
        }

        .sobre-servico-botao.ativo {
            background-color: white;
            color: #1b1f42;
            border-color: #49bfab;
        }

        main {
                display: flex;
                max-width: 1200px;
                margin: auto;
                align-items: center;
                justify-content: space-between;
            }

        .menu-sobre {
            margin-left: 40px;
        }

        /* Animação de rolagem dos botões */
        @keyframes sobreSlideDireita {
            0% {
                transform: translateX(0);
                opacity: 1;
            }
            49% {
                transform: translateX(-40px);
                opacity: 0;
            }
            50% {
                transform: translateX(40px);
                opacity: 0;
            }
            100% {
                transform: translateX(0);
                opacity: 1;
            }
        }

        @keyframes sobreSlideEsquerda {
            0% {
                transform: translateX(0);
                opacity: 1;
            }
            49% {
                transform: translateX(40px);
                opacity: 0;
            }
            50% {
                transform: translateX(-40px);
                opacity: 0;
            }
            100% {
                transform: translateX(0);
                opacity: 1;
            }
        }

        .sobre-botoes-wrapper.animar-direita {
            animation: sobreSlideDireita 0.45s ease;
        }

        .sobre-botoes-wrapper.animar-esquerda {
            animation: sobreSlideEsquerda 0.45s ease;
        }

        @media(max-width: 1025px){
            .secao-principal{
                display: flex;
                flex-direction: column;
                height: 400px;
                padding-top: 180px;
                padding-bottom: 100px;
                align-items: center;

            }

            .sobre-servico-card{
                text-align: center;
                flex-direction: column-reverse;
                justify-content: center;
                align-items: center;
                height: 400px;
                gap: 70px;
                padding-bottom: 40px;
                
            }

            .sobre-servico-card-margem{
                margin-left: 0;
            }

            .sobre-servico-card h2{
                font-size: 20px;
            }

            .sobre-servico-card img{
                width: 100px;
            }

            .sobre-servico-botao {
                font-size: 12px;
            }

            .sobre-botoes-wrapper{
                gap: 0;
            }

            .menu-sobre{
                margin-left: 0;
                align-self: center;
            }

            main {
                flex-direction: column;
                align-items: start;
            }

            .sobre-servico-botoes-row{
                width: 100%;
            }
        }