 p {
  text-align: justify;
}

/* Remover justificação em telas menores que 768px */
@media (max-width: 768px) {
  p {
    text-align: center; /* Ou "start" para navegadores modernos */
  }
}

:root {
    --primary-color: #4a90e2;
    --text-color: #333;
    --background-color: #fff;
    scroll-padding-top: 80px; /* Adiciona espaço antes da seção */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}


body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-color);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

header {
    background-color: #363636;
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    height: 50px; /* Largura vertical ajustada */
    top: 0;
    z-index: 1000;
}

header nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%; /* Garante que o nav ocupe toda a altura do header */
}


.logo {
    color: #FFFAF0;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: bold;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 50%;
}

.accessibility-tools {
    display: flex;
    gap: 0.5rem;
    flex-shrink: 0;
}

.accessibility-btn {
    background: none;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 0.5rem;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.accessibility-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    flex-shrink: 0;
}

.header-menu {
    background: linear-gradient(rgb(1 66 154 / 26%), rgba(234, 234, 234, 0.74)), url(images/imagem.webp) no-repeat top center;
    background-size: cover;
    background-position: top center;
    height: 600px;
    position: relative;
    margin: 0;
    padding: 0;
    top: 30px;
}




.header-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #4F4F4F;
    width: 100%;
}

.main-menu {
    background-color: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 3rem;
    z-index: 900;
}

.nav-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    padding: 1rem 0;
}

.nav-links a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-color);
    background-color: rgba(74, 144, 226, 0.1);
}

.section {
    padding: 5rem 0;
    min-height: 100vh;
}

.section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

main {
    padding-top: 2rem;
}
.header-content h1 {
    font-size: 4rem; /* Mantém o tamanho da fonte */
    font-weight: 900; /* Deixa o texto mais espesso */
    margin-bottom: 2rem; /* Espaço abaixo do texto */
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5); /* Sombra mais forte para destaque */
    color: #222222; /* Cor do texto mais escura e atraente */
    padding: 0; /* Remove qualquer espaçamento interno */
    border-radius: 0; /* Remove bordas arredondadas */
    display: inline-block; /* Mantém o alinhamento do texto */
    position: relative; /* Para aplicar sombras corretamente */
    padding: 1rem 2rem; /* Espaço ao redor do texto para mais destaque */
}





.header-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    padding: 1rem; /* Espaçamento interno */
    border-radius: 8px; /* Bordas arredondadas */
}

.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.3s ease;
    letter-spacing: 1px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2); /* Adiciona um efeito de sombra */
}

.btn-primary {
    background-color: #e74c3c;
    color: #000000;
    border: none; /* Remove borda adicional */
}

.btn-secondary {
    background-color: rgba(255, 255, 255, 0.2); /* Fundo levemente transparente */
    color: #000000;
    border: 2px solid white;
}

.btn-primary:hover {
    background-color: #c0392b;
    transform: translateY(-3px); /* Destaca mais no hover */
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.3); /* Mais sombra no hover */
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.3); /* Aumenta a transparência no hover */
    transform: translateY(-3px);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.3); /* Mais sombra no hover */
}

footer {
    background-color: var(--primary-color);
    color: white;
    padding: 1rem 0;
    text-align: center;
}

/* Alto Contraste */
body.high-contrast {
    --primary-color: #000;
    --text-color: #fff;
    --background-color: #000;
}

body.high-contrast .main-menu,
body.high-contrast .nav-links a {
    background-color: #000;
    color: #fff;
}

body.high-contrast .header-menu {
    background: #000;
}

body.high-contrast .btn-primary {
    background-color: #fff;
    color: #000;
}

body.high-contrast .btn-secondary {
    border-color: #fff;
    color: #fff;
}

body.high-contrast .section h2 {
    color: #fff;
}

/* Responsivo */
@media (max-width: 768px) {
    .logo {
        font-size: 1.2rem;
    }

    .accessibility-tools {
        gap: 0.25rem;
    }

    .accessibility-btn {
        padding: 0.35rem;
        font-size: 0.8rem;
    }

    .menu-toggle {
        display: block;
    }

    .header-menu {
        height: 400px;
    }

    .header-content h1 {
        font-size: 2.5rem;
    }

    .header-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .btn {
        width: 200px;
    }

    .main-menu {
        position: fixed;
        top: 4rem;
        left: 0;
        width: 100%;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        height: calc(100vh - 4rem);
        overflow-y: auto;
    }

    .main-menu.active {
        transform: translateX(0);
    }

    .nav-links {
        flex-direction: column;
        background-color: white;
        padding: 1rem;
        height: 100%;
    }

    .nav-links a {
        width: 100%;
        text-align: center;
    }

    .section {
        padding: 3rem 0;
    }
}
/* Estilos modernos para a seção Quem Somos */
#quem-somos {
    background: linear-gradient(135deg, #B57809 0%, #e8ecf2 100%);


  position: relative;
    overflow: hidden;
}

#quem-somos::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%234a90e2' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.quem-somos-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem;
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 1rem;
    box-shadow: 0 8px 32px rgba(74, 144, 226, 0.1);
    backdrop-filter: blur(4px);
    position: relative;
    border: 1px solid rgba(74, 144, 226, 0.1);
}

.quem-somos-content > div {
    margin-bottom: 2.5rem;
}

.quem-somos-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.quem-somos-content .intro-text {
    position: relative;
    padding-left: 1.5rem;
    border-left: 4px solid var(--primary-color);
}

.quem-somos-content .intro-text p {
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--primary-color);
    text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.5);
}

.quem-somos-content h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 0.5rem;
    display: inline-block;
}

.quem-somos-content ul {
    list-style: none;
    padding-left: 0;
    background: rgba(255, 255, 255, 0.7);
    padding: 1.5rem;
    border-radius: 0.5rem;
}

.quem-somos-content ul li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.quem-somos-content ul li::before {
    content: "→";
    color: var(--primary-color);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.conclusion-text {
    background: linear-gradient(to right, rgba(74, 144, 226, 0.1), rgba(74, 144, 226, 0.05));
    padding: 2rem;
    border-radius: 0.5rem;
    border-left: 4px solid var(--primary-color);
    position: relative;
    overflow: hidden;
}

.conclusion-text::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 10px;
    font-size: 100px;
    color: rgba(74, 144, 226, 0.1);
    font-family: serif;
}

/* Responsivo para Quem Somos */
@media (max-width: 768px) {
    .quem-somos-content {
        padding: 1.5rem;
        margin: 1rem;
    }

    .quem-somos-content p {
        font-size: 10px;
        line-height: 1.6;
    }

    .quem-somos-content .intro-text p {
        font-size: 1.1rem;
    }

    .quem-somos-content h3 {
        font-size: 1.3rem;
    }

    .conclusion-text {
        padding: 1.5rem;
    }
}

/* Alto Contraste para Quem Somos */
body.high-contrast #quem-somos {
    background: var(--background-color);
}

body.high-contrast #quem-somos::before {
    display: none;
}

body.high-contrast .quem-somos-content {
    background-color: var(--background-color);
    box-shadow: none;
    border: 1px solid var(--text-color);
}

body.high-contrast .conclusion-text {
    background: var(--background-color);
    border: 1px solid var(--text-color);
}

  	
	
	
	/* Estilos modernos para a seção Quem Somos */
#quem-somos {
    background: linear-gradient(135deg, #f5f7fa 0%, #e8ecf2 100%);
    position: relative;
    overflow: hidden;
  
}

#quem-somos::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%234a90e2' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.quem-somos-content {
    margin: 0 auto;
    padding: 3rem;
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 1rem;
    box-shadow: 0 8px 32px rgba(74, 144, 226, 0.1);
    backdrop-filter: blur(4px);
    position: relative;
    border: 1px solid rgba(74, 144, 226, 0.1);
    width:100%;
}

/* Desktop: tela maior que 768px */
@media (min-width: 769px) {
    .quem-somos-content {
        max-width: 90%;
        width: 90%;
    }
}

/* Mobile: tela menor ou igual a 768px */
@media (max-width: 768px) {
    .quem-somos-content {
        max-width: 800px;
        margin: 1rem;
    }
}





/*mudar a velocidade do srooler ao clicar nos botoes  */
