html,body {
    height: auto;
    width: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    overflow-y: auto;
    background-color: rgb(229, 223, 223);
}
/*Container do inicio*/
.container {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    overflow-y: hidden;
    overflow-x: hidden;
    background-color: rgb(229, 223, 223);
    z-index: 1;
    
}
.title-uper {
    position: absolute;
    top: 2%;
    left: 23%;
    z-index: 999;
    color: white;
    font-size: 2rem;
    font-weight: bold;
    text-shadow: 2px 2px 4px #000000;
    font-family: "Outfit", sans-serif;
    font-optical-sizing: auto;
    font-weight: weight;
    transition: all ease-in-out 0.8s;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: titleColorCycle 12s ease-in-out infinite alternate;
    will-change: color;
}

.title-uper:hover {
    color: red;
    text-shadow: 4px 4px 8px #000000;
    transform: scale(1.05);
}

@keyframes titleColorCycle {
  0%   { color: #ffffff; }
  100% { color: #ff0000; }
}


.admin{
    position: fixed;
    top: 1.6rem;
    right: 1.6rem;
    z-index: 1000;
    display: none;
    align-items: flex-end;
    gap: 8px;
}

/* mostrar painel admin quando logado */
.is-admin .admin {
    display: flex !important;
}

/* esconder botão de login quando o usuário estiver logado */
.is-admin .login-circle {
    display: none !important;
}

/* BOTÃO DE ACESSO (avatar) */
.acess-adm{
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-image: url(../img/login.png);
    background-size: cover;
    background-position: center;
    cursor: pointer;
    box-shadow: 0 6px 18px rgba(0,0,0,0.18);
    border: 2px solid #ff3b3b;
    overflow: hidden    ;
}

/* POPUP */
.popup-adm{
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    width: 280px;
    background: #fff;
    border-radius: 18px;
    padding: 14px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.18);
    border: 1px solid #280303;

    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-10px) scale(0.96);
    transition: all 220ms ease;
    z-index: 1000;
}

.popup-adm.show{
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0) scale(1);
}

/* CONTAINER */
.pop-usuario{
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-family: "Outfit", sans-serif;
}

/* NOME DO USUÁRIO */
.pop-usuario-name{
    padding: 12px 14px;
    border-radius: 14px;
    font-weight: 600;
    font-size: 1rem;
    background: linear-gradient(135deg, #f7f7f7, #ffffff);
    border: 1px solid rgba(0,0,0,0.08);
    color: #222;
    text-align: left;
}


#img-dados, #img-post, #img-opcao, #img-exit{
    width: 34px;
    height: 34px;
    object-fit: cover;
}

/* BOTÕES – ESTILO CARD MODERNO */
.btn-dados,
.btn-post,
.btn-opc,
.btn-exit{
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: flex-start;
    padding: 14px 16px;
    border-radius: 16px;
    background: #ffffff;
    border: 1px solid rgba(0,0,0,0.08);
    font-size: 1rem;
    font-weight: 500;
    color: #222;
    cursor: pointer;

    box-shadow: 0 10px 22px rgba(0,0,0,0.08);
    transition: all 200ms ease;
}

/* HOVER */
.btn-dados:hover,
.btn-post:hover,
.btn-opc:hover{
    transform: translateY(-2px);
    box-shadow: 0 16px 32px rgba(0,0,0,0.14);
    background: linear-gradient(135deg, #eef7ff, #ffffff);
}

/* BOTÃO SAIR (diferenciado) */
.btn-exit{
    color: #c62828;
    border: 1px solid rgba(198,40,40,0.3);
    background: linear-gradient(135deg, #fff5f5, #ffffff);
}

.btn-exit:hover{
    background: linear-gradient(135deg, #ffebeb, #ffffff);
    box-shadow: 0 16px 32px rgba(198,40,40,0.25);
    transform: translateY(-2px);
}



/* Efeito de chacoalhar (shake) para a logo central */
.center-logo {
    transition: transform 160ms ease;
    transform-origin: center center;
    cursor: pointer;
}
.center-logo:hover {
    animation: shake 0.6s ease-in-out;
}
@keyframes shake {
    0% { transform: translateX(0) rotate(0); }
    15% { transform: translateX(-6px) rotate(-6deg); }
    30% { transform: translateX(6px) rotate(6deg); }
    45% { transform: translateX(-4px) rotate(-4deg); }
    60% { transform: translateX(4px) rotate(4deg); }
    75% { transform: translateX(-2px) rotate(-2deg); }
    100% { transform: translateX(0) rotate(0); }
}

.access-options {
    display: flex;
    gap: 3rem;
    left: 27%;
    top: 15.5%;
    position: absolute;
    overflow: hidden;
}
.access-options a {
    text-decoration: none;
    color: white;
    position: relative;
    font-family: "Outfit", sans-serif;
    font-weight: bold;
    transition: all ease-in-out 0.8s;
    font-size: 2.18rem;
    animation: accessColorCycle 10s linear infinite;
}
.access-options a:hover {
    color: red;
    text-shadow: 2px 2px 4px #000000;
    transform: scale(1.05);
}
.access-options a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 0.2rem;
    background-color: currentColor;
    border-radius: 0.5rem;
    bottom: -0.3rem;
    left: 0;
    box-shadow: 2px 2px 4px #000000;
    transition: width 0.4s cubic-bezier(0.4,0,0.2,1);
    z-index: 2;
    /* ...existing code... */
}
.access-options a:hover::after {
    width: 100%;
}

.uper-range {
    position: relative;
    left: 0;
    top: 0;
    height: 29rem;
    width: 100%;
    overflow: hidden;
}
.center-logo {
    position: relative;
    top: -16.2rem; /* Ajuste conforme necessário para subir a logo */
    left: 36.5%;
    z-index: 9;
    width: 27%;
    height: 55%;
    border-radius: 0.5rem;
    overflow: hidden;
}
/*Titulo e Blog*/
.title-blog {
    display: block;
    margin: 24px auto 0 auto;
    text-align: center;
    font-family: "Outfit", sans-serif;
    font-size: 2.1rem;
    color: #222;
    position: static;
    margin-top: -13rem;
    border: none;
}

.title-blog + * {
    border: none !important;
    background: none !important;
    box-shadow: none !important;
    height: auto;
}




.frame-post {
    width: 100%;
    max-width: 60rem;
    margin: 3rem auto;
    padding: 1rem 0;
    background-color: transparent;
}

/* template post example: hidden until there are posts to show */
.post-exemp{ display:none; }
.post-exemp{
    display: flex;
    flex-direction: column;
    width: 93%;
    background-color: #ffffff;
    border-radius: 0.6rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.12);
    font-family: "Outfit", sans-serif;
    overflow: hidden;
}

.post-exemp, .post-header{
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
}

.logo-post{
    width: 5.5rem;
    height: 5.5rem;
    border-radius: 50%;
    border: solid 0.05rem black;
    background-image: url("../img/logo.jpeg");
    background-size: cover;
    background-position: center;
}

.tempo{
    font-size: 0.85rem;
    color: #65676b;
}
.text-post{
    position: relative;
    margin: 0.8rem 1rem;
    width: calc(100% - 2rem);
    max-height: auto;
    overflow-wrap: break-word;
    overflow: auto;
    border: none;
    font-family: "Outfit", sans-serif;
    font-size: 1.2rem;
    color: #000 !important;
}

/* Render any anchor inside post text as plain text for the feed (visitors should see post content, not links) */
.post-exemp .text-post a,
.rendered-post .text-post a {
    color: inherit !important;
    text-decoration: none !important;
    pointer-events: none !important;
    cursor: default !important;
}

/* Ensure rendered post text stays black even when hovering */
.post-exemp .text-post,
.rendered-post .text-post {
    color: #000 !important;
}

.img-postagem{
    position: relative;
    margin: 0 1rem 1rem 1rem;
    width: calc(100% - 2rem);
    max-height: 30rem;
    border: none;
    border-radius: 0.2rem;
    overflow: hidden;
}






.rodape{
    display: flex;
    justify-content: space-around;
    align-items: center;
    height: 3.5rem;
    border-top: 1px solid #ddd;
    background-color: #ffffff;
}

.btn-curtir,
.btn-comentar,
.btn-comp{
    flex: 1;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    transition: background 0.2s;
}

/* Cores suaves (não muito agressivas) */
.btn-curtir{ color:blue; }
.btn-comentar{ color:#e53935; }
.btn-comp{ color:green; }

.btn-curtir:hover,
.btn-comentar:hover,
.btn-comp:hover{
    background-color: #f0f2f5;
}




/*Tela de edição de postagem */
/* =========================
   TELA DE EDIÇÃO / COMENTÁRIO
   ========================= */

.modal-backdrop{
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.35);
    backdrop-filter: blur(2px);
    z-index: 998;
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease;
}
.modal-backdrop.show{
    opacity: 1;
    pointer-events: auto;
}

.edit-post {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: min(900px, 96%);
    max-height: 85vh;
    overflow: auto;
    background: #ffffff;
    z-index: 999;
    display: none; /* começa escondida */
    flex-direction: column;
    gap: 12px;
    padding: 18px;
    box-sizing: border-box;
    border-radius: 10px;
    box-shadow: 0 18px 40px rgba(0,0,0,0.24);
}

/* quando ativar pelo JS */
.edit-post.ativo {
    display: flex;
}

/* =========================
   CAMPO DE TEXTO
   ========================= */

.input-post {
  min-height: 120px;
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #d1d5db;

  font-size: 14px;
  line-height: 1.4;
  outline: none;
  background: #fff;
}

/* placeholder fake para contenteditable */
.input-post:empty::before {
  content: "Insira seu comentário";
  color: #9ca3af;
  pointer-events: none;
}

/* =========================
   BOTÕES
   ========================= */

.btn-inserir,
.btn-postar {
  padding: 12px;
  border-radius: 10px;
  text-align: center;
  cursor: pointer;

  font-size: 14px;
  font-weight: 600;
  user-select: none;
}

/* botão inserir */
.btn-inserir {
  background: #e5e7eb;
  color: #111827;
}

/* botão publicar */
.btn-postar {
  background: #4f46e5;
  color: #ffffff;
}

/* efeito hover */
.btn-inserir:hover {
  background: #d1d5db;
}

.btn-postar:hover {
  background: #4338ca;
}

/* =========================
   ÁREA DE IMAGEM / CARROSSEL
   ========================= */

.view-img {
    /* colocar a área de visualização logo após o conteúdo;
         não usar margin-top:auto aqui para permitir que botões sejam empurrados ao final */
    margin-top: 12px;

    height: 160px;
    width: 100%;

    background: #f3f4f6;
    border-radius: 12px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 0 12px;
    box-sizing: border-box;
}

/* Forçar a ordem dos elementos dentro do modal e empurrar os botões para baixo */
.edit-post > .input-post { order: 1; }
.edit-post > .view-img { order: 2; }
.edit-post > .btn-inserir { order: 3; margin-top: auto; }
.edit-post > .btn-postar  { order: 4; }

/* =========================
   BOTÕES DE NAVEGAÇÃO
   ========================= */

.btn-leftpost,
.btn-rightpost {
  width: 36px;
  height: 36px;

  border-radius: 50%;
  background: rgba(0, 0, 0, 0.55);
  color: #ffffff;

  display: flex;
  align-items: center;
  justify-content: center;

  cursor: pointer;
  font-size: 18px;
  font-weight: bold;
  user-select: none;
}

/* hover */
.btn-leftpost:hover,
.btn-rightpost:hover {
  background: rgba(0, 0, 0, 0.7);
}












/* Overlay de manutenção */
.overlay-maintenance {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.65);
    z-index: 2000;
    pointer-events: auto;
}
.overlay-maintenance .overlay-content {
    color: #ffffff;
    text-align: center;
    padding: 1.5rem 2rem;
}
.overlay-maintenance h2 {
    font-family: "Outfit", sans-serif;
    font-size: 2.2rem;
    margin: 0 0 0.8rem 0;
}

/* Loader de três pontos */
.loader-dots {
    display: inline-block;
    height: 1rem;
}
.loader-dots span {
    display: inline-block;
    width: 0.6rem;
    height: 0.6rem;
    margin: 0 0.28rem;
    background: #ffffff;
    border-radius: 50%;
    opacity: 0.3;
    transform: translateY(0);
    animation: maintenance-loader 0.9s infinite ease-in-out;
}
.loader-dots span:nth-child(2) { animation-delay: 0.12s; }
.loader-dots span:nth-child(3) { animation-delay: 0.24s; }
@keyframes maintenance-loader {
    0% { transform: translateY(0); opacity: 0.3; }
    50% { transform: translateY(-8px); opacity: 1; }
    100% { transform: translateY(0); opacity: 0.3; }
}

/* Dimmer auxiliar (caso usado) */
.apagao {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);
    z-index: 1998;
}
/* removed stray properties that broke CSS parsing */
.btn-leftpost {
    position: absolute;
    top: 50%;
    left: -3rem;
    transform: translateY(-50%);
    width: 3rem;
    height:  15%;
    border-radius: 50%;
    border: none;
    background: rgba(0,0,0,0.45);
    color: #fff;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 3;
}
.btn-rightpost {
    position: absolute;
    top: 50%;
    right: -3rem;
    transform: translateY(-50%);
    width: 3rem;
    height: 15%;
    border-radius: 50%;
    border: none;
    background: rgba(0,0,0,0.45);
    color: #fff;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 3;
}


















.post1{
    position: relative;
    font-family: "Outfit", sans-serif;
    font-size: 1.4rem;
    top: 4rem;
    left: 0.9rem;
    color: #0057b7; /* cor padrão */
    text-decoration: none;
    transition: color 0.18s ease, transform 0.12s ease, text-decoration-color 0.18s ease;
}

.post1:hover,
.post1:focus {
    color: #d71c1c; /* cor ao passar o mouse */
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 4px;
    transform: translateY(-2px);
}

.post1:active {
    transform: translateY(0);
}

.post2{
    position: relative;
    font-family: "Outfit", sans-serif;
    font-size: 1.4rem;
    top: 1rem;
    left: -30%;
    color: #0057b7; /* cor padrão */
    text-decoration: none;
    transition: color 0.18s ease, transform 0.12s ease, text-decoration-color 0.18s ease;
}

.post2:hover,
.post2:focus {
    color: #d71c1c; /* cor ao passar o mouse */
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 4px;
    transform: translateY(-2px);
}

.post2:active {
    transform: translateY(0);
}

/* Styles for dynamically injected posts so they match visual style */
.dynamic-post{
    display: block;
    font-family: "Outfit", sans-serif;
    font-size: 1.4rem;
    color: #0057b7;
    text-decoration: none;
    margin: 1rem 0 0 1rem;
}
.dynamic-post:hover,
.dynamic-post:focus{
    color: #d71c1c;
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 4px;
    transform: translateY(-2px);
}
.dynamic-post:active{ transform: translateY(0); }

/* Override hover for rendered posts (they are static blocks) */
.rendered-post.dynamic-post,
.rendered-post.dynamic-post * {
    cursor: default !important;
}
.rendered-post.dynamic-post:hover,
.rendered-post.dynamic-post:focus {
    color: inherit !important;
    text-decoration: none !important;
    transform: none !important;
}

/* Generic post link class used by server and dynamic links */
.post-item{
    display: block;
    font-family: "Outfit", sans-serif;
    font-size: 1.4rem;
    color: #0057b7;
    text-decoration: none;
    margin: 1rem 0 0 1rem;
}

.post-item:hover, .post-item:focus{
    color: #d71c1c;
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 4px;
    transform: translateY(-2px);
}

/* Ensure slider buttons show on post pages even when model.css isn't present */
.img {
    position: relative;
    overflow: hidden;
}
.img button{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 3.2rem;
    height: 3.2rem;
    border-radius: 0.2rem;
    border: none;
    background: rgba(0,0,0,0.45);
    color: #fff;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 3;
}
.img .btn-left{ left: 0.8rem; }
.img .btn-right{ right: 0.8rem; }

/* Fallback image visibility rules for pages that don't include model.css */
.img img { display: none; }
.img img.active { display: block; margin: 0 auto; }



/*Container CONTAT0*/

.uper-contato {
    position: relative;
    left: 0;
    top: 0;
    width: 99.2%;
    height: 14rem;
    background-color:transparent;
    border: none;
}
.circle-logocontato {
    position: relative;
    top: 6%; 
    left: 2%;
    z-index: 999;
    width: 12rem;
    height: 12rem;
    border-radius: 50%;
    background-color: white;
    border: 0.2rem solid red    ;
    display: flex;
    justify-content: center;
    align-items: center;
}
.logo-contato {
    position: relative;
    left: 0;
    z-index: 999;
    width: 11rem;
    height: 11rem;
    border-radius: 0.5rem;
}
/*Titulos temporarios da pagina contato */

.text-contato1, .text-contato2, .text-contato3, .text-contato4 {
    position: absolute;
    left: 53%;
    top: 5.5rem;
    transform: translateX(-50%);
    margin: 0 auto;
    color: #222;
    font-family: "Roboto Slab", serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
    font-size: 2.3rem;
    opacity: 0;
    transition: opacity 1s ease;
    pointer-events: none;
    width: 100%;
    max-width: 900px;
    text-align: center;
    min-height: 2.5em;
    height: 2.5em;
    display: block;
    z-index: 10;
}

.container-contato {
    position: relative;
    left: 0;
    top: 0;
    background-color: rgb(233, 230, 230);
    width: 100%;
    
    min-height: 100vh; /* altura mínima de tela cheia */
    overflow-x: hidden;
    overflow-y: auto;
    padding-bottom: 4rem; /* ajuste para garantir espaço, mas não exagere */
}
.contato-visible {
    opacity: 1 !important;
    pointer-events: auto;
    z-index: 10;
}
.btn-voltar {
    position: absolute;
    top: 1.5rem;
    left: 90%;
    color: black;
    font-size: 1.4rem;
    cursor: pointer;
    font-family: "Outfit", sans-serif;
    border: none;
}
/*Icones de acesso de conatos */
.social-icons {
  display: flex;
  justify-content: center;
  margin-top: 0.7%;
  gap: 12rem;
  padding: 4rem;
  cursor: pointer;
}

.icon {
  position: relative; 
  display: flex;
  flex-direction: column;
  align-items: center;
}

.icon i {
    font-size: 8rem;
  color: var(--color);
  transition: 0.3s ease;
}

/* Reflexo */
.icon .reflection {
  position: absolute;
  top: 105%;
  transform: scaleY(-1);
  opacity: 0.7;
  filter: blur(2px);
  height: 100%;
  width: 100%;
  pointer-events: none;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.6), transparent);
  -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,0.6), transparent);
}

/* Efeito hover (brilho) */
.icon:hover i:first-child {
  color: white;
  background-color: var(--color);
  padding: 1rem;
  border-radius: 50%;
  box-shadow:
    0 0 10px var(--color),
    0 0 20px var(--color),
    0 0 40px var(--color),
    0 0 80px var(--color);
}
.icon.facebook:hover i:first-child {
  background-color: #0f2ac0;
}

@keyframes accessColorCycle {
    0%   { color: #ff4d4d; }
    33%  { color: #b03239; }
    66%  { color: #bf2d2d; }
 100%  { color: #d14444; }
}
.icon.youtube:hover i:first-child {
    background-color: #ff0000;
}
/* Cores individuais */
.icon.youtube { --color: #ff0000; }
.icon.instagram { --color: #e4405f; }
.icon.facebook { --color: #0f2ac0; }
.icon.whatsapp { --color: #25d366; }

.uper-mobilecontato{
    display: none;
}

.wave {
    position: fixed; 
    left: 0;
    bottom: 0;
    width: 100vw;
    height: 22rem;
    background: red;
    opacity: 0.7;
    border-radius: 100%;
    animation: wave 8s infinite linear;
    transform-origin: center;
    z-index: 0; 
}




  @keyframes wave {
    0% {
      transform: translateX(0) translateY(0) rotate(0deg);
    }
    50% {
      transform: translateX(-25%) translateY(15px) rotate(1deg);
    }
    100% {
      transform: translateX(0) translateY(0) rotate(0deg);
    }
  }

  .content {
    position: relative;
    z-index: 10;
    text-align: center;
  }
  .wavesvg {
                position: fixed;
                left: 0;
                bottom: 0;
                width: 100vw;
                height: 320px;
                z-index: 0;
                pointer-events: none;
                margin: 0;
                padding: 0;
            }
            .wavesvg img {
                    width: 100%;
                    height: 100%;
                    display: block;
                    position: relative;
                }
                
            
        
    

/*Container da pagina sobre*/



.container-sobre {
    position: relative;
    left: 0;
    top: 0;
    width: 100%;
    height: auto;
    background-color: rgb(244, 238, 238);
    background: linear-gradient(270deg, #ffffff, rgb(229, 223, 223), #cec9c9, #bebdbd);
    background-size: 800% 800%;
    animation: fundoAnimado 16s ease-in-out infinite;
    opacity: 100%;
    
    overflow-y: hidden;
    overflow-x: hidden;
}
@keyframes fundoAnimado {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
.uper-sobre {
    
    position: relative;
    left: 0;
    top: 0;
    width: 100%;
    height: 14rem;
    background-color:transparent;
    border: none;
    background: linear-gradient(270deg, rgb(208, 208, 214), rgb(185, 81, 81), #42982e, #164aad);
    background-size: 800% 800%;
    animation: aguaAnimada 12s ease-in-out infinite;
    opacity: 8.5%;
}
@keyframes aguaAnimada {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
.circle-logosobre {
    position: relative;
    top: -13rem; 
    left: 2%;
    z-index: 999;
    width: 12rem;
    height: 12rem;
    border-radius: 50%;
    background-color: white;
    border: 0.2rem solid red    ;
    display: flex;
    justify-content: center;
    align-items: center;
}
.logo-sobre {
    position: relative;
    left: 0;
    z-index: 999;
    width: 11rem;
    height: 11rem;
    border-radius: 0.5rem;
}



/*Titulo da pagina sobre*/
.sbr-title {
    position: relative;
    top:-23.5rem;
    left: 33%;
    color: #272727;
    font-size: 2.9rem;
    font-weight: bold;
    font-family: "Outfit", sans-serif;
}
/*texto do sobre */
.text-sobre {
    position: relative;
    top: -18rem;
    left: 0;
    font-size: 0.75rem;
   font-family: "Arimo", sans-serif;
   word-break: break-word;
   white-space: normal;
    max-width: 68.5rem;
   margin: 0 auto;
    display: block;
}

/*Perfil das pessoas*/
/*Pessoa  1*/
.title-profile1 {
    position: relative;
    top: -15rem;
    left: 5%;
    color: #222;
    font-size: 2rem;
    font-weight: bold;
    font-family: "Outfit", sans-serif;
    margin-bottom: 1rem;
}
.profile-frame1 {
    position: relative;
    top: -15rem;
    left: 5%;
    width: 25%;
    height: 35rem;
    background-color: white;
    margin-bottom: 2rem;
    border-radius: 0.5rem;
    border: solid 0.2rem black ;
}


/*Pessoa  2*/
.title-profile2 {
    position: relative;
    top: -15rem;
    left: 65%;
    color: #222;
    font-size: 2rem;
    font-weight: bold;
    font-family: "Outfit", sans-serif;
    margin-bottom: 1rem;
}
.profile-frame2 {
    position: relative;
    top: -15rem;
    left: 65%;
    width: 25%;
    height: 35rem;
    background-color: white;
    margin-bottom: 2rem;
    border-radius: 0.5rem;
    border: solid 0.2rem black ;
}
.subtitle-profile2 {
    display: none;
}



/* Pessoa 3 */

.title-profile3 {
    position: relative;
    top: -15rem;
    left: 5%;
    color: #222;
    font-size: 2rem;
    font-weight: bold;
    font-family: "Outfit", sans-serif;
    margin-bottom: 1rem;
}
.profile-frame3 {
    position: relative;
    top: -15rem;
    left: 5%;
    width: 25%;
    height: 35rem;
    background-color: white;
    margin-bottom: -10rem;
    border-radius: 0.5rem;
    border: solid 0.2rem black ;
}

.subtitle-profile3 {
    position: relative;
    top: 300rem;
    color: #222;
    font-size: 1.2rem;
    font-weight: bold;
    font-family: "Outfit", sans-serif;
    margin-bottom: 1rem;
    text-align: left; /* ou center, se preferir centralizado */

}

/*Efeito do final da pagina */
.wave-sobre {
    position: fixed;
    left: 0;
    bottom: 0; /* alterado de -10rem para 0 */
    width: 100%;
    height: 12rem; /* aumente se quiser uma onda mais visível */
    background: red;
    opacity: 0.7;
    border-radius: 100%;
    animation: wave 8s infinite linear;
    transform-origin: center;
    z-index: 0;
    margin-top: 0;
}

.btn-voltarsobre {
    position: absolute;
    top: 1.5rem;
    left: 90%;
    color: black;
    font-size: 1.4rem;
    cursor: pointer;
    font-family: "Outfit", sans-serif;
    border: none;
}




@media (min-width: 769px) {
    /* Esconde elementos do menu móvel apenas em telas maiores (desktop) */
    .mobile-sidebar,
    .mobile-only {
        display: none;
    }
}









