﻿body {
    margin: 0; /* remove margens padrão */
    padding: 0;
    background-image: url('imagens/imagensp/background.jpg');
    background-size: cover; /* cobre toda a área da tela */
    background-repeat: no-repeat; /* não repete a imagem */
    background-position: center; /* centraliza a imagem */
    background-attachment: fixed; /* mantém a imagem fixa ao rolar a página */
    z-index: -2; /* fica atrás do conteúdo */
    line-height: 1.5;
}
@font-face {
    font-family:philo;
    src: url("imagens/fontes/Philosopher-Regular.ttf")
}
.overlay {
    position: fixed; /* fica sobre toda a tela */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.7); /* preto translúcido (opacidade 0.3) */
    z-index: -1; /* fica atrás do conteúdo */
}
/* Conteúdo centralizado */
.cont-wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
    position: relative;
    z-index: 1;
}

/* Cabeçalho */
.cabecalho {
    height: 81px;
    width: 100%;
    border-bottom: 1px solid grey;
    position: relative;
    background-color: white;
}

.logo {
    position: absolute;
    top: 0;
    left: 0;
    height: 80px;
    width: 80px;
}

.barra-titulo {
    position: relative;
    width: 100%;
    top: 0;
    bottom: 40px;
    height: 40px;
    padding: 8px;
    text-align: center;
    font-size: 20px;
}

.barra-menu {
    position: absolute;
    top: 40px;
    left: 81px;
    right: 0;
    height: 40px;
    text-align: right;
}
.rodape {
    min-height: 300px;
    background-color: #dbdbdb;
    padding-top: 30px;
    margin-top:200px;
    text-align:center;
    align-content:center;
}

.center-flex {
    display: flex;
    justify-content: center; /* alinha horizontalmente */
    align-items: center; /* alinha verticalmente */
    text-align: center;
    height: 100%; /* necessário para vertical */
}

.philo {
    font-family: philo;
    font-size: 56px;
    text-align: center;
}
.philo1 {
    font-family: philo;
    font-size: 38px;
    text-align: center;
}
.philo2 {
    font-family: philo;
    font-size: 38px;
    text-align: left;
}
.philo3 {
    font-family: philo;
    font-size: 22px;
    text-align: center;
}
.texto {
    font-family: philo;
    font-size: 16px;
    text-align:center;
}
.texto2 {
    font-family: philo;
    font-size: 16px;
    text-align: left;
}
.row {
    display: flex;
    display: -webkit-flex; /* Safari */
    flex-wrap: wrap;
    flex-direction: row;
    align-items: initial;
    justify-content: center;
    /* */
    margin-left: 0px;
    margin-right: 0px;
}
.coluna {
    width: 22%;
    margin: 2px;
    padding: 3px;
    background-color: white;
}
.border {
    border: 5px solid rgb(120, 72, 210, 0.5);
    border-radius: 5px;
    height: 100%;
    border-radius: 15px;
}

.ferramenta {
    background: rgba(255, 255, 255, 0.9); /* fundo branco translúcido */
    padding: 20px;
    margin: 40px auto;
    max-width: 700px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    text-align: center;
    font-family: Arial, sans-serif;
}
    .ferramenta h1 {
        margin-bottom: 15px;
        color: #333;
    }

    .ferramenta textarea {
        width: 90%;
        border: 1px solid #ccc;
        border-radius: 8px;
        padding: 10px;
        resize: vertical;
        font-size: 14px;
    }

    .ferramenta button {
        background-color: rgb(120, 72, 210, 0.5);
        border: none;
        color: white;
        padding: 12px 20px;
        margin-top: 15px;
        border-radius: 8px;
        cursor: pointer;
        font-size: 14px;
        transition: background 0.3s ease;
    }

        .ferramenta button:hover {
            background-color: #4CAF50;
            ;
            ;
        }

    /* tabela */
    .ferramenta table {
        margin: 20px auto;
        border-collapse: collapse;
        width: 90%;
    }

    .ferramenta th, .ferramenta td {
        border: 1px solid #ccc;
        padding: 10px;
        text-align: center;
    }

    .ferramenta th {
        background-color: #f2f2f2;
        font-weight: bold;
    }

    .ferramenta tr:nth-child(even) {
        background-color: #f9f9f9;
    }

.legenda {
    text-align: left;
    background: rgba(240, 240, 240, 0.9);
    padding: 10px 15px;
    border-radius: 10px;
    margin-bottom: 15px;
    font-size: 14px;
}

    .legenda h3 {
        margin-top: 0;
        margin-bottom: 8px;
        color: #333;
    }

    .legenda ul {
        margin: 0;
        padding-left: 20px;
    }

    .legenda li {
        margin-bottom: 4px;
    }
