@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@700&display=swap');
        body {
            font-family: 'Quicksand', sans-serif;
            margin: 0;
            background-color: white;
        }

        #tituloPagina{
            font-size: 38px;
            color: #333;
        }

        /* #recursosProgramatext{
            color: #676768;
            text-align: left;
            padding-left: 90px;
            padding-right: 90px;
        } */

        #textoPagina{
            color: #676768;
        }

        #subTitulo{
            font-size: 30px;
            color: #02455c;
        }

        #flex{
            display: flex;
        }

        /* CSS Navbar */
        .navbar {
            display: flex;
            align-items: center;
            justify-content: space-between;
            /* display: flex;
            justify-content: space-between;
            align-items: center; */
            background-color: white;
            padding: 10px 20px;
        }

        .navbar a {
            color: #02455c;
            text-decoration: none;
            padding: 14px 20px;
            font-size: 18px;
            transition: transform 0.3s, background-color 0.3s, color 0.3s;
        }

        .navbar a:hover {
            transform: scale(1.1);
            background-color: #02455c;
            color: #d0a933;
            border-radius: 5px;
        }

        .menu-right {
            display: flex;
        }

        .menu-right a {
            text-align: center;
            /* padding: 10px; */
            /* width: 100%; */
        }

        .menu-toggle {
            display: none;
            cursor: pointer;
            /* color: #3498db; */
            /* font-size: 24px; */
        }

        .navbar.active .menu-right {
            display: flex;
            flex-direction: column;
            width: 100%;
        }

        .logo{
            width: 100px;
            height: 65px;
        }

        #logosite{
            margin-left: 3%;
            background-color: #ffffff;
            transform: scale(1);
        }

        #logosite:hover{
            transform: scale(1.1);
        }
        /* ---------- */

        .container {
            margin-left: 90px;
            margin-right: 90px;
            width: 89%;
            margin: auto;
            text-align: center;
        }

        .recursosprograma p{
            color: #676768;
            text-align: left;
            padding-left: 90px;
            padding-right: 90px;
        }


        .container-colunas {
            max-width: 1200px;
            margin: auto;
            text-align: center;
            position: relative;
        }

        .column-wrapper {
            overflow: hidden;
            cursor: grab;
        }

        .column-wrapper.active {
            cursor: grabbing;
        }

        .column-list {
            display: flex;
            transition: transform 0.5s ease;
        }

        .column-list a{
            text-decoration: none;

        }

        .column {
            flex: 0 0 25%;
            box-sizing: border-box;
            padding: 20px;
            margin: 5px;
            background: linear-gradient(145deg, #f2f2f2, #ffffff);
            box-shadow: 4px 4px 8px #d9d9d9, -4px -4px 8px #ffffff;
            border-radius: 10px;
            transition: transform 0.3s ease;
            
        }

        /* .column:hover {
            transform: translateY(-10px);
        } */

        .column h3 {
            color: #02455c;
            margin-bottom: 15px;
        }

        .column p {
            color: #666;
        }

        .column img {
            width: 128px;
            height: 128px;
            border-radius: 10px;
        }

        .nav-arrow {
            font-size: 24px;
            cursor: pointer;
            color: #3498db;
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            user-select: none;
        }

        .nav-arrow.left {
            position:absolute;
            left: 0;
        }

        .nav-arrow.right {
            position:absolute;
            right: 0;
        }

        .nav-arrow:hover {
            color: #2980b9;
        }

        /* Emoji */
        i {
            font-size: 30px;
            padding: 8px;
        }

        #certo{
            color: green;
        }

        #errado{
            color: rgb(182, 0, 0);
        }

        #seta{
            color: #02455c;
        }

        #navbar{
            color: #02455c;
        }
        /* ---------- */


        h1 {
            margin-bottom: 30px;
            color: #333;
        }

        .pricing-table {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
        }

        .pricing-column {
            background-color: #617b8e;
            border-radius: 10px;
            padding: 20px;
            padding-bottom: 35px;
            flex: 1;
            margin: 10px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s;
        }

        .pricing-column a{
            text-decoration: none;

        }

        .pricing-column:hover {
            transform: scale(1.05);
        }

        h2 {
            color: #d9d9d9;
        }

        .price {
            font-size: 24px;
            font-weight: bold;
            color: #d0a933;
        }

        .pricing-column p {
            color: #b0bbbc;
        }

        #recomendado{
            background-color: #02455c;
        }

        #recomendado h4{
            color: #d0a933;
        }


        .modal {
            display: none; /* Mantém o modal oculto até ser chamado */
            position: fixed;
            z-index: 1000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            align-items: center;
            justify-content: center;
        }
        
        
        /* Conteúdo do modal */
        .modal-content {
            background: white;
            padding: 20px;
            border-radius: 10px;
            width: 90%;
            max-width: 500px;
            max-height: 90vh; /* Limita altura do modal */
            overflow-y: auto; /* Ativa rolagem vertical */
            -webkit-overflow-scrolling: touch; /* Suaviza rolagem em iOS */
            text-align: center;
            position: relative;
        }
        
        
        /* Botão de fechar */
        .close {
            position: absolute;
            top: 10px;
            right: 20px;
            font-size: 40px;
            cursor: pointer;
            color: rgb(59, 59, 59);
        }

        ul {
            list-style-type: none;
            padding: 0;
            margin: 20px 0;
        }

        ul li {
            margin-bottom: 15%;
            /* margin: 30px 0; */
        }


        .button-preço {
            background-color: #b18606;
            margin-top: 20%;
            margin-bottom: 0;
            border: none;
            color: white;
            padding: 18px 23px;
            border-radius: 5px;
            cursor: pointer;
            transition: background-color 0.3s;
        }

        .button-preço:hover {
            background-color: #886809;
        }

        .info-table {
            color: #737373;
            width: 100%;
            border-collapse: collapse;
            margin-top: 30px;
            font-size:18px;
        }

        .info-table-celular {
            color: #737373;
            width: 100%;
            border-collapse: collapse;
            margin-top: 30px;
            font-size:18px;
        }

        #linha1 th{
            font-weight: bold;
            font-size: 24px;
            border-radius: 4px;
            color: #02455c;
            border-color: white;
        }

        .linhatitulo{
            
                font-weight: bold;
                font-size: 24px;
                border-radius: 4px;
                color: #02455c;
                border-color: white;
        }

        #linha2 td{
            font-size: 24px;
            border-radius: 4px;
            color: #d0a933;
            border-color: white;
            box-shadow: 0.5px 0.5px 3px 0.5px rgb(128, 128, 128);
        }

        .linhapadrao{
            border: 0.5;
            border-radius: 4px;
            border-color: white;
            box-shadow: 0.5px 0.5px 3px 0.5px rgb(128, 128, 128);

        }
        .linhapadrao td{
            padding: 8px;
        }

        .info-table th, .info-table td {
            border: 1px solid #ddd;
            padding: 15px;
        }

        .info-table-celular th, .info-table td {
            border: 1px solid #ddd;
            padding: 15px;
        }

        .info-table th {
            padding-top: 12px;
            padding-bottom: 12px;
            text-align: center;
            color: black;
        }

        .info-table-celular th {
            padding-top: 12px;
            padding-bottom: 12px;
            text-align: center;
            color: black;
        }

        .alinhardireita{
            flex: 1;
            padding-right: 10px;
        }
        .alinharesquerda{
            flex: 1; 
            padding-left: 10px;
        }

        .team {
            display: flex;
            justify-content: space-around;
            flex-wrap: wrap;
        }

        .team-member {
            text-align: center;
            margin: 20px;
        }

        .team-member img {
            border-radius: 50%;
            max-width: 150px;
        }

        .team-member h3 {
            margin: 10px 0 5px;
        }

        .team-member p {
            color: #888;
        }

        /* Footer do site */
        .footer {
            background-color: #02455c;
            color: #617b8e;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: flex-start;
            padding: 12px;
            box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
            margin-top: 8%;
        }
        .footer .section {
            flex: 1;
            padding: 10px;
            min-width: 200px;
        }
        .footer .section p {
            margin: 5px 0;
        }
        .footer .section.right {
            text-align: left;
        }
        .footer a {
            color: #d0a933;
            text-decoration: none;
        }

        #navegacao{
            color: #617b8e;
        }

        .footer a:hover {
            text-decoration: underline;
        }
        /* ------------ */


        @media (max-width: 768px) {

            .navbar {
                flex-direction: column;
            }
            
            .menu-right {
                display: none;
                flex-direction: column;
                width: 100%;
            }

            .menu-toggle {
                right: 0;
                position: absolute;
                display: block;
            }

            .navbar.active .menu-right {
                display: flex;
            }

            #logosite{
                width: 60%;
            }

            .container{
                width: 95%;
            }

            .column {
                flex: 0 0 33.33%; /* Ajuste para 3 colunas visíveis em celulares */
            }

            .navbar a {
                text-align: center;
                padding: 10px;
                width: 100%;
            }

            .pricing-table {
                display: block;
            }

            .pricing-column {
                margin: 10px 0;
            }

            #info-table-celular{
                display: none;
            }
        
            #detalhesplano{
                display: none;
            }

            .modal {
                display: none; /* Mantém o modal oculto até ser chamado */
                position: fixed;
                z-index: 1000;
                left: 0;
                top: 0;
                width: 100%;
                height: 100%;
                background-color: rgba(0, 0, 0, 0.5);
                align-items: center;
                justify-content: center;
            }
            
            .modal-content {
                background: white;
                padding: 20px;
                border-radius: 10px;
                width: 90%;
                max-width: 500px;
                max-height: 90vh; /* Limita altura do modal */
                overflow-y: auto; /* Ativa rolagem vertical */
                -webkit-overflow-scrolling: touch; /* Suaviza rolagem em iOS */
                text-align: center;
                position: relative;
            }

            .footer {
                flex-direction: column;
                align-items: center;
                text-align: center;
            }

            .footer .section {
                text-align: center;
                padding: 10px 0;
            }

            .footer .section.right {
                text-align: center;
            }

            .recursosprograma{
                flex-direction: column;
                align-items: center;
                text-align: center;
                width: 95%;
            }

            #recursosprogramatext p{
                text-align: center;
            }

            .recursosprograma p{
                text-align: center;
            }
            .alinharesquerda{
                flex: 0;
                padding-left: auto;
            }

            .alinhardireita{
                flex: 0; 
                padding-left: auto;
            }

            #flex{
                display: block;
            }

        }