 .box-news {
            width: 21rem;
            margin: 0 auto;
            font-family: Arial, Helvetica, sans-serif;
        }

        .tabs-doc {
            display: flex;
            background: #f1f5f4;
            border-radius: 40px;
            padding: 4px;
            margin-bottom: 18px;
        }

        .tabs-doc button {
            flex: 1;
            border: none;
            background: transparent;
            padding: 10px;
            border-radius: 40px;
            cursor: pointer;
            font-weight: 600;
            transition: .25s;
        }

        .tabs-doc button.active {
            background: #0c8f5a;
            color: white;
            box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
        }

        .input-group {
            position: relative;
        }

        .input-group i {
            position: absolute;
            left: 12px;
            top: 50%;
            transform: translateY(-50%);
            color: #888;
        }

        .form-control {
            width: 100%;
            padding: 12px 12px 12px 38px;
            border-radius: 8px;
            border: 1px solid #ccc;
            transition: .25s;
        }

        .form-control:focus {
            outline: none;
            border-color: #0c8f5a;
            box-shadow: 0 0 0 2px rgba(12, 143, 90, 0.15);
        }

        .form-control.valido {
            border-color: #28a745;
            background: #f6fff8;
        }

        .form-control.invalido {
            border-color: #dc3545;
            background: #fff6f6;
        }

        .custom-button {
            width: 100%;
            margin-top: 15px;
            padding: 12px;
            border: none;
            border-radius: 30px;
            background: #a9cf38;
            font-weight: bold;
            cursor: pointer;
            transition: .2s;
        }

        .custom-button:disabled {
            opacity: .5;
            cursor: not-allowed;
        }

        .fade-slide {
            opacity: 0;
            transform: translateY(6px);
        }

        .fade-slide.show {
            opacity: 1;
            transform: translateY(0);
            transition: .35s;
        }

        @media (max-width:768px) {
            .box-news {
                width: 16rem;
            }
        }

        /*/  .header {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }
    .div-flex img {
        width: 12rem;
        border-radius: 120px;

    }
*/
        .div-flex div:nth-of-type(1),
        .div-flex div:nth-of-type(2),
        .div-flex div:nth-of-type(3),
        .div-flex-a div:nth-of-type(1) {
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
            border-radius: 20px;
        }

        .div-flex div footer i,
        .div-flex div footer svg,
        .div-flex div footer img,
        .div-flex div h3,
        .div-flex div p,
        .div-flex-a div i,
        .div-flex-a div p,
        .div-flex-a div svg {
            color: var(--color-primary-contrast);
        }

        .grid-container .wrapper {
            padding: 0 2rem 4rem;
        }

        .div-flex {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            width: 90%;
            margin: 0 auto;
        }

        .div-flex div {
            padding: 2rem 1.4rem;
            margin: 0 0.5rem;
        }

        @media (max-width: 767px) {
            .div-flex {
                display: block;
                width: 100%;
            }

            .div-flex div {
                display: block;
                margin: 0.5rem 0;
            }
        }

        .div-flex div:nth-of-type(1) {
            background: linear-gradient(194.58deg, #29a97e 20.64%, #6fbc85 93.46%);
        }

        .div-flex div:nth-of-type(2) {
            background: linear-gradient(135deg, #b261a3 0, #86739b 100%);
        }

        .div-flex div:nth-of-type(3) {
            background: linear-gradient(135deg, #f2803b 0, #f49860 100%);
        }

        .div-flex div h3 {
            font-size: 30px;
        }

        .div-flex div p {
            font-size: 16px;
            margin-bottom: 3rem;
        }

        .div-flex div footer {
            display: block;
            text-align: end;
        }

        .div-flex div footer i,
        .div-flex div footer svg {
            width: 8rem !important;
            height: 8rem !important;
            font-size: 8rem;
        }

        .div-flex div footer img {
            width: 12rem !important;
            height: 12rem !important;
        }

        .div-flex-a {
            display: grid;
            width: 76%;
            margin: 20px auto;
        }


        .div-flex-a div:nth-of-type(1) {
            background: linear-gradient(135deg, #eba377 0, #f49860 100%);
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 16px;
        }

        .div-flex-a div:nth-of-type(1):hover {
            background: linear-gradient(135deg, #e88a51 0, #e6722c 100%);
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 16px;
        }

        .div-flex-a div p {
            font-size: 22px;
            margin-bottom: 0;
        }

        .div-flex-a div i,
        .div-flex-a div svg {
            width: 2rem !important;
            height: 2rem !important;
            font-size: 2rem;
            margin-left: 3rem;
        }



        /* Modal */

        @keyframes slideIn {
            from {
                transform: translateX(-100%);
            }

            to {
                transform: translateX(0);
            }
        }

        @keyframes slideOut {
            from {
                transform: translateX(0);
            }

            to {
                transform: translateX(-100%);
            }
        }

        .modal-header h3 {
            margin: 0;
            /* Remove a margem padrão do h3 */
            font-size: 21px;
            /* Tamanho da fonte do título */
        }

        .modal-header .close {
            font-size: 21px;
            /* Tamanho da fonte do botão de fechar */
            cursor: pointer;
            /* Cursor de ponteiro para o botão de fechar */
        }

        .modal {
            display: none;
            position: fixed;
            z-index: 1050;
            /* Ajuste o z-index para garantir que o modal esteja acima do menu */
            left: 0;
            top: 0;
            width: 100%;
            /* Modifiquei para ocupar toda a largura da tela */
            max-width: 500px;
            /* Largura máxima para o modal */
            height: 100%;
            background-color: #fefefe;
            box-shadow: 2px 0 5px rgba(0, 0, 0, 0.5);
            overflow-y: auto;
            /* Adicionado para rolagem vertical quando necessário */
        }

        .modal-content {
            padding: 20px;
        }

        .modal-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem;
            /* Espaçamento interno para o header */
            border-bottom: 1px solid #ccc;
            /* Linha inferior para o header */
        }

        .close {
            color: #aaa;
            font-size: 24px;
            /* Ajuste o tamanho da fonte conforme necessário */
            font-weight: bold;
            cursor: pointer;
        }

        .close:hover,
        .close:focus {
            color: black;
            text-decoration: none;
            cursor: pointer;
        }

        .modal.show {
            display: block;
            animation: slideIn 0.5s forwards;
            /* Aumentei a duração da animação para 0.5s */
        }

        .modal.hide {
            display: block;
            animation: slideOut 0.5s forwards;
            /* Adicione a propriedade abaixo para ocultar o modal após a animação */
            animation-fill-mode: forwards;
        }

        /* Media Query para dispositivos móveis */
        @media (max-width: 600px) {
            .modal {
                max-width: 100%;
                height: 100%;
                left: 0;
                top: 0;
                transform: none;
            }
        }

        /* Conheça a Karina */
        .fixed-footer-box a {
            color: #00995d;
        }

        .fixed-footer-box a:hover {
            color: #0A5F55;
        }


        .modal-karina {
            display: none;
            /* Certifique-se de que o modal está inicialmente escondido */
            position: fixed;
            z-index: 1;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            overflow: auto;
            background-color: rgba(0, 0, 0, 0.4);
            justify-content: center;
            align-items: center;
            opacity: 0;
            /* Inicia o modal com opacidade 0 */
            animation: fadeInModal 0.5s ease forwards;
            /* Animação de fadeIn */
            z-index: 1000;
        }

        /* Modal Content */
        .modal-content-karina {
            color: #00995d;
            background-color: #fefefe;
            padding: 15px;
            border: 1px solid #888;
            width: 50%;
            /* Ajuste conforme necessário */
            max-width: 600px;
            /* Tamanho máximo */
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
            border-radius: 10px;
            font-size: 1.2em;
        }

        /* Animação de fadeIn */
        @keyframes fadeInModal {
            0% {
                opacity: 0;
            }

            100% {
                opacity: 1;
            }
        }

        /* Close Button */
        .close-karina {
            color: #aaa;
            float: right;
            font-size: 28px;
            font-weight: bold;
            margin-bottom: 10px;
        }

        .close-karina:hover,
        .close-karina:focus {
            color: black;
            text-decoration: none;
            cursor: pointer;
        }

        /* Responsiveness */
        @media (max-width: 768px) {
            .modal-content-karina {
                width: 70%;
                /* Ajuste conforme necessário para telas médias */
            }
        }

        @media (max-width: 480px) {
            .modal-content-karina {
                width: 90%;
                /* Ajuste conforme necessário para telas pequenas */
                padding: 8px;
                /* Reduzir padding em telas pequenas */
                font-size: 1.1em;
            }

            .close-karina {
                font-size: 24px;
                /* Reduzir tamanho do botão de fechar em telas pequenas */
            }
        }

        