body {
    font-family: 'Open Sans', sans-serif;
    background-color: #FFFFFF;
    color: #333333;
    line-height: 1.6;
    padding-left: 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

video {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Manter a proporção do vídeo */
    position: absolute; /* Permite que o vídeo ocupe toda a área */
    top: 0; /* Posiciona no topo */
    left: 0; /* Posiciona à esquerda */
    z-index: -1; /* Coloca o vídeo atrás de outros conteúdos */
    margin: 0;
}

.welcome {
    font-family: "Qwitcher Grypen", cursive; /* Fonte personalizada */
    font-weight: 700; /* Peso da fonte */
    font-style: normal; /* Estilo normal */
    color: #ffffff; /* Cor da fonte - branco */
    text-align: center; /* Centraliza o texto horizontalmente */
    position: relative; /* Posiciona no fluxo do layout */
    z-index: 1; /* Coloca a mensagem acima do vídeo */
    margin: 100px 0; /* Adiciona um espaço superior e inferior (opcional) */
    font-size: 9em; /* Tamanho da fonte - ajuste conforme desejado */
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif; 
    color: #2B7A7C; 
}

a {
    color: #2B7A7C; 
    text-decoration: none; 
}

    a:hover {
        text-decoration: underline; 
    }

button, submit {
    background-color: #A4D7E1;
    color: #333333;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
}

    button:hover {
        background-color: #B2E0C6; 
    }

nav {    
    display: flex;
    justify-content: center;
    padding-top: 20px; 
}

.menu {
    list-style: none;
    padding: 5px;
    margin: 0;
    display: flex; 
    align-items: center;
    justify-content: space-between; 
    background-color: transparent;
    border: 1.5px solid rgba(255, 255, 255, 0.7); 
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.25);
    border-radius: 25px; 
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

    .menu li {
        margin: 0;
    }

    .menu a {
        text-decoration: none;
        color: #5d5555;
        text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
        font-family: "Poppins", sans-serif;
        font-weight: 500;
        font-size: 16px;
        padding: 8px 22px;
        border-radius: 20px;
        display: block;
        transition: background-color 0.3s, color 0.3s, transform 0.2s;
    }


        .menu a:hover,
        .menu li.active a {
            background-color: rgba(255, 255, 255, 0.9);
            color: #333;
            text-shadow: none;
            transform: translateY(-2px);
            box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
        }

.menu_painel {
    list-style: none;
    padding: 0px;
    margin: 0;
    align-items: center;
    display: inline-flex; 
    justify-content: space-between; 
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
    border-radius: 25px;
    padding-left: 15px;
    padding-right: 15px;
    width: 100%; 
}

.menu_painel li {
    margin-top: 0; 
    font-size: 18px;
    flex-shrink: 0;
}

.menu_painel a {
    text-decoration: none; 
    color: #5d5555; 
    padding: 5px 15px;
    border-radius: 25px; 
    transition: background-color 0.3s, transform 0.3s; 
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-style: normal;
}

    .menu a:hover {
        transform: scale(1.05); 
        background-color: rgba(255, 255, 255, 0.2); 
        box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.3); 
    }

.home-page nav .menu a {
    color: #f0f0f0; 
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5); 
}

    .home-page nav .menu a:hover,
    .home-page nav .menu li.active a {
        background-color: rgba(255, 255, 255, 0.9);
        color: #333;
        text-shadow: none;
    }

    .home-page footer{
        color: #f0f0f0; 
    }

#menu-toggle {
    display: none;
    background-color: #333;
    border: none;
    font-size: 1.5em;
    cursor: pointer;
    color: #2B7A7C;
    position: fixed;
    top: 5px; 
    right: 5px;
    padding: 10px 20px;
    border-radius: 50px; 
    z-index: 10;
}


 
    #menu-toggle:focus {
        outline: none;
    }

    #menu-toggle:hover {
        color: #555; 
    }

#logo {
    height: 60px;
    vertical-align: middle;
    transition: transform 0.3s;
}

    #logo:hover {
        transform: scale(1.05);
    }

#logo-item > a:hover {
    background-color: transparent;
    box-shadow: none;
    transform: none;
}

#logo-mobile {
    display: none;
}

#logo-item {
    padding: 0 15px; 
}

    #logo-item:hover a {
        transform: none; 
        background-color: transparent; 
        color: inherit; 
        box-shadow: none;
    }

.grupo-card {
    display: flex; 
    gap: 1.5rem; 
    align-items: flex-start; 

    background-color: #ffffff;
    padding: 1.5rem;
    margin-bottom: 2rem;
    border: 1px solid #e9ecef;
    border-radius: 12px; 
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08); 
    overflow: hidden;
}
  
    .grupo-card .imagem-container {
        flex-shrink: 0;
        width: 280px; 
        height: 280px; 
        border-radius: 8px;
        overflow: hidden;
    }

        .grupo-card .imagem-container img {
            width: 100%;
            height: 100%;
            object-fit: cover; 
            transition: transform 0.3s ease;
        }

            .grupo-card .imagem-container img:hover {
                transform: scale(1.05);
            }

    .grupo-card .conteudo-grupo {
        flex-grow: 1;
    }

        .grupo-card .conteudo-grupo h3 {
            font-family: 'Playfair Display', serif;
            color: #11675e;
            font-size: 1.7rem;
            margin-top: 0;
            margin-bottom: 0.75rem;
        }

    .grupo-card .info-agenda {
        font-weight: bold;
        font-size: 1.05rem;
        margin-top: 1.25rem;
        display: inline-block;
    }

.horario-disponivel {
    color: #198754;
}

.agenda-fechada {
    color: #dc3545;
}


h3 {
    margin: 0 0 10px;
}

ul {
    list-style-type: disc; 
    margin-left: 20px; 
}

section {
    margin-bottom: 20px; 
}

#tv {
    display: block;
    margin: 0 auto;
    width: 50%;
    height: 100vh;
    padding: 20px;
}

.beneficios {
    margin-left: 19px; 
    padding-left: 0; 
}

.equipe {
    display: grid;
    grid-template-columns: 200px 1fr; 
    gap: 20px; 
    max-width: 80%;
    align-items: start;
}

    .equipe img {
        max-width: 100%; 
        height: auto; 
        display: block;
    }

.profissional {
    padding: 10px;
}

#form-cadastro {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    background-color: #FFFFFF;
    border: 1px solid #E5E5E5;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

    #form-cadastro h2 {
        text-align: center;
        color: #2B7A7C;
        margin-bottom: 20px;
    }

form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

    form label {
        font-weight: bold;
        color: #333333;
    }

    form input[type="text"],
    form input[type="email"],
    form input[type="tel"],
    form input[type="password"] {
        width: 100%;
        padding: 10px;
        border: 1px solid #CCCCCC;
        border-radius: 5px;
        box-sizing: border-box;
    }

    form input[type="submit"],
    form input[type="button"] {
        background-color: #2B7A7C;
        color: #FFFFFF;
        border: none;
        padding: 10px 15px;
        border-radius: 5px;
        cursor: pointer;
        font-size: 16px;
        transition: background-color 0.3s;
    }

        form input[type="submit"]:hover {
            background-color: #1E6263;
        }

    .grupos-cadastro-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr); 
    gap: 10px; 
    max-width: 600px;   
    }

    .grupo-cadastro-item {
    display: flex;
    align-items: center;
    gap: 5px;
     }


.popup-buttons {
    margin-top: 20px;
}

    .popup-buttons button {
        margin: 5px;
        padding: 10px;
        border: none;
        cursor: pointer;
        background-color: #007bff;
        color: white;
        border-radius: 5px;
    }

        .popup-buttons button:disabled {
            background-color: gray;
            cursor: not-allowed;
        }

#login-form {
    max-width: 400px;
    margin: 50px auto; 
    padding: 20px;
    background-color: #FFFFFF;
    border: 1px solid #DDD;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

    #login-form h2 {
        text-align: center;
        color: #2B7A7C;
        margin-bottom: 20px;
        font-family: 'Playfair Display', serif;
    }

    #login-form form {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    #login-form label {
        font-weight: bold;
        color: #333333;
    }

    #login-form input[type="email"],
    #login-form input[type="password"] {
        width: 100%;
        padding: 8px;
        font-size: 14px;
        border: 1px solid #CCCCCC;
        border-radius: 5px;
        box-sizing: border-box;
    }

    #login-form input[type="submit"],
    #login-form button[type="submit"] {
        background-color: #2B7A7C;
        color: #FFFFFF;
        border: none;
        padding: 10px;
        font-size: 16px;
        border-radius: 5px;
        cursor: pointer;
        transition: background-color 0.3s ease;
    }

        #login-form input[type="submit"]:hover {
            background-color: #1E6263;
        }

    #login-form p {
        text-align: center;
        font-size: 14px;
    }

        #login-form p a {
            color: #2B7A7C;
            text-decoration: none;
            font-weight: bold;
        }

            #login-form p a:hover {
                text-decoration: underline;
            }

.alert.alert-danger {
    color: red; 
    background-color: #ffe6e6; 
    border: 1px solid red;
    padding: 10px; 
    text-align: center;
    font-weight: bold; 
    border-radius: 5px; 
    max-width: 400px;
    margin: 10px auto; 
}

.contato {
    max-width: 600px;
    margin: 50px auto;
    background: #ffffff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

    .contato h1 {
        text-align: center;
        color: #2B7A7C;
        font-family: 'Playfair Display', serif;
        margin-bottom: 20px;
    }

.form-contato {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

    .form-contato label {
        font-weight: bold;
        color: #333333;
    }

    .form-contato input,
    .form-contato textarea {
        width: 100%;
        padding: 10px;
        border: 1px solid #ddd;
        border-radius: 5px;
        font-size: 14px;
    }

    .form-contato button {
        background-color: #2B7A7C;
        color: #fff;
        border: none;
        padding: 10px;
        font-size: 16px;
        border-radius: 5px;
        cursor: pointer;
        transition: background-color 0.3s ease;
    }

        .form-contato button:hover {
            background-color: #1E6263;
        }

.informacoes-contato {
    margin-top: 20px;
    text-align: center;
}

    .informacoes-contato h2 {
        color: #2B7A7C;
        margin-bottom: 10px;
    }

    .informacoes-contato a {
        color: #2B7A7C;
        text-decoration: none;
        font-weight: bold;
    }

        .informacoes-contato a:hover {
            text-decoration: underline;
        }

.erro-msg {
    color: red;
    font-size: 14px;
    font-weight: bold;
    display: block;
    margin-top: 2px; 
}

.erro-msg-grupos {
    color: red;
    font-size: 14px;
    font-weight: bold;
    display: block;
    margin-top: 1px; 
}

.text-danger {
    color: red;
    font-size: 14px;
    font-weight: bold;
    display: block;
    margin-top: 2px; 
}

.icone-links {
    display: flex; 
    justify-content: center; 
    gap: 20px;
    margin-top: 20px; 
}

    .icone-links a img {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        transition: transform 0.3s ease; 
    }

        .icone-links a img:hover {
            transform: scale(1.2); 
        }

footer {
    color: #000; 
    margin-top: 30px;
    padding-top: 0;
}

.horario-disponivel{
    color: green;
}

.agenda-fechada{
    color: red;
}

.popup-body {
    font-family: 'Times New Roman', serif;
    line-height: 1.6;
    background-color: #f5f5f5;
    padding: 20px;
}

.popup-content {
    background: white;
    padding: 30px;
    border-radius: 8px;
    max-width: 800px;
    margin: auto;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
}

    .popup-content h2 {
        font-size: 20px;
        text-align: center;
        text-transform: uppercase;
        border-bottom: 2px solid black;
        padding-bottom: 10px;
        margin-bottom: 20px;
        color: #000;
    }

    .popup-content p, .popup-content li {
        text-align: justify;
        font-size: 16px;
        color: #333;
    }

    .popup-content ul {
        padding-left: 20px;
        list-style-type: square;
    }

    .popup-content li {
        margin-bottom: 8px;
    }

    .popup-content section {
        margin-bottom: 20px;
    }


#accessibility-widget {
    position: fixed;    
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    z-index: 1050;
}

#accessibility-toggle-btn {
    width: 50px;
    height: 50px;    
    background-color: transparent; 
    border: 2px solid #FFF; 
    box-shadow: 0 4px 10px rgba(0,0,0,0.3); 
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s, box-shadow 0.2s;
}


    #accessibility-toggle-btn:hover {
        transform: scale(1.1);
        box-shadow: 0 6px 15px rgba(0,0,0,0.4);
    }

    #accessibility-toggle-btn img {
        width: 50px;
        height: 50px;
        filter: drop-shadow(0 0 2px rgba(0,0,0,0.5));
        border: 1px solid #FFF;
        border-radius: 50%;
    }

#accessibility-panel {
    position: absolute;  
    bottom: 50%;
    right: 75px; 
    transform: translateY(50%);
    width: 280px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    padding: 1rem;
    border: 1px solid #ddd;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s, transform 0.3s, visibility 0.3s;
}

    #accessibility-panel.visible {
        visibility: visible;
        opacity: 1;
        transform: translateY(0);
    }

    #accessibility-panel h4 {
        margin-top: 0;
        margin-bottom: 1rem;
        color: #333;
        border-bottom: 1px solid #eee;
        padding-bottom: 0.5rem;
    }

    #accessibility-panel ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    #accessibility-panel li {
        margin-bottom: 0.5rem;
    }

    #accessibility-panel button {
        width: 100%;
        text-align: left;
        padding: 0.75rem;
        border: 1px solid #ccc;
        background-color: #f8f9fa;
        cursor: pointer;
        border-radius: 5px;
        font-weight: 500;
        transition: background-color 0.2s;
    }

        #accessibility-panel button:hover {
            background-color: #e2e6ea;
        }


body.alto-contraste {
    background-color: #000000 !important;
    color: #FFFF00 !important; 
}

    body.alto-contraste h1,
    body.alto-contraste h2,
    body.alto-contraste h3,
    body.alto-contraste h4,
    body.alto-contraste p,
    body.alto-contraste a,
    body.alto-contraste span,
    body.alto-contraste li {
        background-color: transparent !important;
        color: #FFFF00 !important;
    }

    body.alto-contraste img,
    body.alto-contraste video {
        filter: grayscale(100%) contrast(200%); 
    }

    body.alto-contraste .form-section,
    body.alto-contraste .main-container,
    body.alto-contraste .painel-header {
        background-color: #000 !important;
        border-color: #FFFF00 !important;
    }

.btn-primary {
    background-color: #11675e; 
    color: white;
    border-color: #11675e;
    padding: 0.5rem 1rem; 
    font-weight: 500;
    transition: background-color 0.2s ease-in-out, border-color 0.2s ease-in-out;
}

    .btn-primary:hover {
        background-color: #0d4e46; 
        color: white; 
        border-color: #0d4e46;
    }

    
    .btn-primary:focus,
    .btn-primary:active {
        box-shadow: 0 0 0 0.25rem rgba(17, 103, 94, 0.5);
    }


.acoes-em-linha {
    display: flex; 
    align-items: center; 
    gap: 0.5rem; 
    justify-content: center; 
}


@media (min-width: 1600px) and (max-width: 1600px) and (min-height: 900px) and (max-height: 900px) {
    body {
        padding-left: 40px;
    }

    .welcome {
        font-size: 10em;
        margin: 120px 0;
    }

    .menu {
        padding: 10px;
    }

        .menu li {
            font-size: 20px;
        }

        .menu a {
            padding: 12px 24px;
        }

    #logo {
        height: 120px;
    }

    .grupos {
        grid-template-columns: 250px 1fr;
        gap: 30px;
    }

    section {
        margin-bottom: 30px;
    }

    #tv {
        width: 60%;
        height: 120vh;
        padding: 30px;
    }

    .equipe {
        grid-template-columns: 250px 1fr;
        gap: 30px;
    }

    #form-cadastro {
        max-width: 700px;
        padding: 30px;
    }

    form input[type="text"],
    form input[type="email"],
    form input[type="tel"],
    form input[type="password"] {
        padding: 12px;
        font-size: 16px;
    }

    form input[type="submit"],
    form input[type="button"] {
        padding: 12px 20px;
        font-size: 18px;
    }

    #login-form {
        max-width: 500px;
        padding: 30px;
    }

        #login-form input[type="email"],
        #login-form input[type="password"] {
            padding: 10px;
            font-size: 16px;
        }

    .contato {
        max-width: 700px;
        padding: 30px;
    }

    .icone-links a img {
        width: 60px;
        height: 60px;
    }

    .popup-content {
        padding: 40px;
    }

        .popup-content h2 {
            font-size: 24px;
        }

        .popup-content p, .popup-content li {
            font-size: 18px;
        }
}

@media (max-width: 768px) {
    body {
        padding-right: 20px;
        font-size: 14px;
    }

    #menu-toggle {
        display: block;
        background-color: #333;
        border: none;
        font-size: 1.5em;
        cursor: pointer;
        color: #2B7A7C;
        position: fixed;
        top: 5px;
        right: 5px;
        padding: 10px 20px;
        border-radius: 50px;
        z-index: 10;
    }

    .menu {
        display: none;
    }

    .menu-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background-color: #FFF;
        z-index: 8;
    }

    .menu.menu-mobile {
        display: flex;
        flex-direction: column;
        position: fixed;
        bottom: 70px;
        left: 50%;
        transform: translateX(-50%);
        width: 90%;
        padding: 10px 0;
        z-index: 100;
        background-color: #93C2B1;
        box-shadow: inset 4px 4px 8px rgba(0, 0, 0, 0.3), inset -4px -4px 8px rgba(0, 0, 0, 0.3);
    }

        .menu.menu-mobile li {
            margin: 10px 0;
            width: 90%;
            text-align: center;
            background-color: #2B7A7C;
            border-radius: 25px;
            margin-left: 8px;
            margin-right: 8px;
        }

        .menu.menu-mobile a {
            color: #fff;
            text-decoration: none;
            font-size: 1.2em;
        }

    #logo-item {
        display: none;
    }

    #logo-mobile {
        display: flex;
        flex-direction: column;
        width: 90%;
        margin-top: 57px;
        margin-left: 20px;
    }

    video {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        object-fit: cover;
        z-index: -1;
    }

    .welcome {
        position: absolute;
        top: 30%;
        left: 50%;
        transform: translate(-50%, -50%);
        text-align: center;
        font-size: 4em;
        color: white;
        z-index: 1;
        background: rgba(0, 0, 0, 0.5);
        padding: 20px;
        border-radius: 10px;
    }

    .menu-open .welcome {
        opacity: 0;
        pointer-events: none;
    }

    main {
        position: relative;
        width: 100%;
        min-height: inherit;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        margin: 0;
        padding: 0;
        text-align: center;
    }

    .index {
        height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }


    .container {
        width: 100%;
        padding: 5px;
    }

    #tv {
        width: 100%;
        max-width: 300px;
        max-height: 300px;
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-left: -25px;
        margin-bottom: -25px;
    }

    .equipe {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .grupo-card {
        flex-direction: column;
        padding: 1rem;
        gap: 1rem;
    }

        .grupo-card .imagem-container {
            width: 100%;
            height: 220px;
        }

    nav {
        flex-direction: column;
        align-items: flex-start;
    }


    #form-cadastro {
        width: 90%;
    }

    #login-form {
        width: 90%;
    }

    .contato {
        width: 90%;
    }

    .icone-links {
        flex-wrap: wrap;
    }

        .icone-links img {
            width: 35px;
            height: 35px;
        }

    main {
        width: 90%;
        padding: 15px;
    }

    .popup-content {
        padding: 15px;
        font-size: 14px;
    }

    h2- {
        font-size: 18px;
    }

    p, li {
        font-size: 13px;
        line-height: 1.5;
    }

    ul {
        padding-left: 15px;
    }
}
@media (max-width: 1024px) {
    .container {
        width: 90%;
        padding: 10px;
    }

    .grupo {
        flex-direction: column;
        text-align: center;
    }

        .grupo img {
            width: 80%;
            margin: 0 auto;
        }

        .grupo .descricao {
            width: 100%;
        }

    .grupos {
        grid-template-columns: 1fr;
    }

    body {
        padding-right: 20px;
    }
}
@media (max-width: 1600px) {
    .menu{
        width: 100%
    }
    video {
        width: 100%
    }
}


