body {
  margin: 0;
  display: flex;
  justify-content: center;
  flex-direction: column;
  background: #FEFCFC;
  align-items: center;
  overflow-y: scroll;
}

body::-webkit-scrollbar {
  display: none;
}

.wrapper {
        width: 1300px; 
        margin: 0 auto; 
        
        transform: scale(calc(100vw / 1300));
        
        transform-origin: top center;
        
        margin-bottom: calc(-1300px + 100vw); 
    }
/* BASE */
.rox-chaty,
.rox-chaty * {
  box-sizing: border-box;
}

.rox-chaty {
  transform: scale(0.97);
  background: #fefcfc;
  width: 1300px;
  height: 935px;
  position: relative;
}

/* TOPO */
.topo {
  transform: scale(0.9);
  margin: 0;
  position: absolute;
  left: -80px;
  display: flex;
  align-items: center;
  gap: 30px;
  cursor: pointer;
}

.imagem {
  width: 90px;
  height: 70px;
}

.perfil,
.rox2 {
  font-family: 'Gentium Book Plus', serif;
  font-size: 40px;
  font-weight: 550;
  color: #000;
}

/* FUNDO CHAT */
.fundo-chaty {
  transform: scale(0.9);
  background: #ffffff;
  border-radius: 15px;
  width: 1300px;
  height: 706px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 158px; 
  box-shadow: 0px 12px 20px rgba(0,0,0,0.15);
}

/* DROPDOWN */
.dropdown {
  position: relative;
  display: flex;
  flex-direction: column;
}

.dropdown-content {
  position: absolute;
  top: 100%;
  left: 0;
  background: #ffffff;
  min-width: 200px;
  border-radius: 10px;
  box-shadow: 0 8px 15px rgba(0,0,0,0.15);
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  pointer-events: none;
  z-index: 10;
}

.dropdown:hover .dropdown-content {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.dropdown-content a {
  color: #003a8c;
  padding: 12px 15px;
  text-decoration: none;
  display: block;
  font-family: 'Gentium Book Plus', serif;
  font-size: 18px;
}

.dropdown-content a:hover {
  background: #f3f4f6;
  border-radius: 10px;
}

/* ITENS */
.item,
.item-destaque {
  cursor: pointer;
  transition: all 0.25s ease;
}

.item:hover,
.item-destaque:hover {
  transform: scale(1.08);
  color: #ff8304;
}

/* LOGO HOVER */
.topo .imagem {
  width: 90px;
  height: 70px;
  transition: transform 0.3s ease;
}

.topo .imagem:hover {
  transform: scale(1.1);
}

/* TEXTO HOVER */
.perfil,
.rox2 {
  font-size: 22px;
  transition: all 0.3s ease;
}

.perfil:hover,
.rox2:hover {
  color: #ff8304;
  transform: scale(1.1);
}

/* BOTÃO SETA */
.component-1:hover .image-1 {
  transform: scale(1.2);
}

.image-1 {
  width: 50%;
  position: absolute;
  left: 25%;
  top: 25%;
  transition: transform 0.3s ease;
}

/* MENU */
.menu {
  background: #003a8c;
  border-radius: 15px 0 0 15px;
  width: 360px;
  height: 706px;
  position: absolute;
  left: 1px;
  top: 158px;
  padding: 40px;
  z-index: 2;
}

.rox {
  font-family: 'Gentium Book Plus', serif;
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #ff8304;
}

.rectangle-21 {
  background: rgba(255, 240, 222, 0.88);
  height: 4px;
  width: 100%;
  margin: 10px 0 40px;
}

/* LISTA MENU */
.menu-items {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.item,
.item-destaque {
  color: #ffffff;
  font-family: 'Gentium Book Plus', serif;
  font-size: 24px;
  font-weight: 700;
}

.item-destaque {
  color: #ff8304;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Remove o sublinhado e a cor azul padrão dos links no topo */
.topo a {
    text-decoration: none; /* Tira o grifado */
    color: inherit;        /* Faz o link usar a cor preta definida na div pai */
}

/* Opcional: Efeito premium ao passar o mouse */
.topo a:hover {
    color: var(--laranja-medio); /* Muda para laranja ao passar o mouse */
    transition: color 0.3s ease;
}

/* INPUT */
.rectangle-1 {
  background: #fcfcfc;
  border-radius: 20px;
  width: 800px;
  height: 65px;
  position: absolute;
  left: 420px;
  top: 745px;
  box-shadow: 0px 4px 15px rgba(0,0,0,0.1);
  display: flex;
  align-items: center;
  padding: 0 20px;
  z-index: 3;
}

.component-1 {
  width: 50px;
  height: 50px;
  position: absolute;
  left: 1160px;
  top: 755px;
  z-index: 4;
  cursor: pointer;
}

.ellipse-1 {
  background: #e4e4e4;
  border-radius: 50%;
  width: 100%;
  height: 100%;
}

/* TEXTO FINAL */
.texto {
  position: absolute;
  bottom: 20px;
  width: 100%;
  left: 0;          
  right: 0;         
  text-align: center;
  font-family: "Gentium Book Plus", serif;
  font-size: 16px;
  color: rgba(0,0,0,0.5);
  padding: 0 15px;  
  box-sizing: border-box; 
}

/* Estilo para as mensagens que vão aparecer no fundo-chaty */
#chatContainer {
    display: flex;
    flex-direction: column;
    gap: 15px;
    overflow-y: auto; /* Permite rolar o chat se a conversa for longa */
}

.message {
    max-width: 75%;
    padding: 15px;
    border-radius: 15px;
    font-family: 'Gentium Book Plus', serif;
    font-size: 18px;
    line-height: 1.4;
}

/* Bolha da ROX (Laranja do seu design) */
.rox-msg {
    align-self: flex-start;
    background-color: #f3f4f6;
    border-left: 5px solid var(--laranja-medio);
    color: #000;
}

/* --- NOVO: BOTÃO DE ANEXO --- */
.component-attach {
  width: 40px;
  height: 40px;
  position: absolute;
  left: 435px; /* Fica dentro do lado esquerdo do input */
  top: 757px;  /* Centralizado verticalmente com o input */
  z-index: 4;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.component-attach:hover {
  transform: scale(1.15);
}

/* --- ESTILO DA IMAGEM DO CLIPE --- */
.icon-attach-img {
  width: 22px; /* Tamanho ideal para encaixar no input */
  height: auto;
  opacity: 0.6; /* Deixa o ícone um pouco mais suave (cinza escuro) */
  transition: opacity 0.3s ease;
}

/* Quando passar o mouse, o ícone fica 100% preto/nítido */
.component-attach:hover .icon-attach-img {
  opacity: 1; 
}.i

/* =========================================
   TELA DE PERFIL
   ========================================= */

.perfil-overlay {
    position: absolute;
    top: 158px; /* Alinhado com a altura do chat */
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
}

.perfil-card {
    background: #fdfbf7; /* Cor creme clarinha do fundo do card */
    width: 600px;
    border-radius: 15px;
    box-shadow: 0px 15px 35px rgba(0,0,0,0.15);
    padding: 40px 50px 60px 50px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
   margin-top: -50px; 
}

.perfil-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.perfil-header h2 {
    font-family: 'Gentium Book Plus', serif;
    font-size: 36px;
    margin: 0;
    color: #000;
}

.close-btn {
    width: 35px;
    height: 35px;
    border: 2px solid red;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: red;
    font-weight: bold;
    font-family: sans-serif;
    text-decoration: none;
    font-size: 18px;
    transition: 0.3s;
}

.close-btn:hover {
    background: red;
    color: white;
}

.perfil-avatar {
    width: 130px;
    height: 130px;
    background: #333333;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 40px;
}

.perfil-avatar svg {
    width: 100px;
    height: 100px;
    fill: #ffffff;
    margin-top: 10px;
}

.perfil-dados {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
    margin-bottom: 20px;
}

.dado-item {
    font-family: 'Gentium Book Plus', serif;
    font-size: 21px;
    color: #555;
    border-bottom: 2px solid #666;
    width: 60%;
    text-align: center;
    padding-bottom: 2px;
}

.logout-link {
    text-decoration: none;
    cursor: pointer;
    transition: 0.3s;
}

.logout-link:hover {
    color: red;
    border-bottom-color: red;
}

.btn-editar {
    position: absolute;
    bottom: -25px; /* Faz o botão ficar metade pra fora do card */
    background-color: var(--azul-escuro);
    color: white;
    border: none;
    border-radius: 12px;
    padding: 15px 80px;
    font-size: 28px;
    font-family: 'Gentium Book Plus', serif;
    cursor: pointer;
    box-shadow: 0px 8px 15px rgba(1, 59, 143, 0.3);
    transition: 0.3s;
}

.btn-editar:hover {
    background-color: #012a66;
    transform: scale(1.05);
}




/* =========================================
   TELAS DE LOGIN E CADASTRO
   ========================================= */

/* Header específico para as telas de autenticação */
.topo-auth {
  display: flex;
  align-items: center;
  gap: 20px;
  width: 100%;
  max-width: 1200px;
  padding: 30px 20px;
  position: relative;
}

.topo-auth img { width: 70px; }
.topo-auth span { font-size: 22px; font-weight: bold; color: #000; font-family: 'Gentium Book Plus', serif; }

.avatar-auth {
  position: absolute; right: 20px;
  width: 50px; height: 50px;
  background: #8d7b73; color: white;
  border-radius: 50%; display: flex;
  justify-content: center; align-items: center;
  font-size: 24px; font-weight: bold;
  box-shadow: 0px 5px 15px rgba(0,0,0,0.2);
  font-family: 'Gentium Book Plus', serif;
}

/* Container Central */

.auth-main-container {
   margin-top: 80px; 
  flex: 1; display: flex; justify-content: center; align-items: center;
  width: 100%; min-height: 70vh;
}

/* Card de Login */
.login-card {
  background: #ffffff;
  width: 400px;
  padding: 50px 40px 70px 40px;
  border-radius: 15px;
 box-shadow: 0px 12px 35px rgba(11, 56, 119, 0.788); 
  margin-top: 40px; 
  position: relative;
  transform: scale(1.05); 
}

.login-card h2, .right-side h2 {
  align-items: center; display: flex; justify-content: center;
  font-size: 28px; margin-top: 0; margin-bottom: 40px;
  color: #000; letter-spacing: 1px;
  font-family: 'Gentium Book Plus', serif;
}

/* Inputs de Autenticação */
.input-group-auth { margin-bottom: 35px; position: relative; }
.input-group-auth input {
  width: 100%; border: none;
  border-bottom: 3px solid var(--laranja-medio);
  background: transparent;
  font-family: 'Gentium Book Plus', serif;
  font-size: 18px; color: #333;
  padding: 5px 0; outline: none;
}
.input-group-auth input::placeholder { color: #777; }

/* Links e Textos */
.forgot-password { text-align: right; margin-top: -15px; }
.forgot-password a { color: #777; text-decoration: none; font-size: 14px; font-family: 'Gentium Book Plus', serif; }
.forgot-password a:hover { color: var(--laranja-medio); }

.link-auth { text-align: center; margin-top: 50px; font-size: 16px; font-family: 'Gentium Book Plus', serif; }
.link-auth a { color: var(--azul-escuro); font-weight: bold; text-decoration: none; }

/* Botão Azul Sobreposto (Login) */
.btn-login {
  position: absolute; bottom: -25px; left: 50%; transform: translateX(-50%);
  background-color: var(--azul-escuro); color: white;
  border: none; border-radius: 10px; padding: 15px 60px;
  font-size: 22px; font-family: 'Gentium Book Plus', serif;
  cursor: pointer; box-shadow: 0px 8px 15px rgba(1, 59, 143, 0.3); transition: 0.3s;
}
.btn-login:hover { background-color: #012a66; transform: translateX(-50%) scale(1.05); }

/* Card Duplo de Cadastro */
.register-card {
  
  display: flex; width: 900px; height: 500px;
  background: #ffffff; border-radius: 15px;
  box-shadow: 0px 15px 35px rgba(0,0,0,0.1);
}

.left-side {
  background-color: var(--azul-escuro); width: 45%;
  border-radius: 15px 0 0 15px; display: flex; flex-direction: column;
  justify-content: center; align-items: center; padding: 40px; text-align: center; color: white;
}
.left-side img { width: 80%; margin-bottom: 30px; }
.left-side p { font-size: 18px; line-height: 1.4; font-family: 'Gentium Book Plus', serif; }

.right-side { width: 55%; padding: 50px; position: relative; }

.icon-lock { position: absolute; left: -20px; top: 5px; font-size: 14px; color: #ff6b6b; }

/* Botão Redondo Laranja (Cadastro) */
.btn-register {
  position: absolute; bottom: 40px; right: 40px;
  width: 50px; height: 50px; background-color: var(--laranja-medio);
  color: white; border: none; border-radius: 50%;
  font-size: 24px; cursor: pointer; display: flex; justify-content: center; align-items: center;
  box-shadow: 0px 5px 15px rgba(255, 131, 4, 0.4); transition: 0.3s;
}
.btn-register:hover { transform: scale(1.1); background-color: var(--laranja-escuro); }



/* Ajuste para o texto não colar no clipe */
input.rectangle-1 {
    border: none;
    outline: none;
    padding-left: 60px !important; /* Empurra o texto para a direita */
    padding-right: 60px !important;
}
/* Área de mensagens: Respeita os 360px do seu menu lateral */
.chat-messages-area {
    position: absolute;
    top: 0;
    right: 0;
    width: calc(100% - 360px); /* Deixa o espaço exato para o seu menu */
    height: 100%;
    padding: 40px;
    padding-bottom: 130px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    overflow-y: auto;
    scroll-behavior: smooth;
    box-sizing: border-box;
}

/* --- ÍCONE DE MOSTRAR SENHA --- */
.toggle-password {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  width: 25px; /* Tamanho ideal para o ícone */
  height: auto;
  user-select: none;
  opacity: 0.6; /* Deixa um pouco transparente */
  transition: 0.3s;
}

.toggle-password:hover {
  opacity: 1; /* Fica 100% visível ao passar o mouse */
}

/* Garante que o texto da senha não fique embaixo do ícone */
.input-group-auth input#senha {
  padding-right: 40px !important;
}


/* Bolhas de conversa */
.message {
    max-width: 80%;
    padding: 15px 20px;
    font-family: 'Gentium Book Plus', serif;
    font-size: 18px;
    line-height: 1.4;
    border-radius: 15px;
    box-shadow: 0px 4px 10px rgba(0,0,0,0.05);
    animation: fadeIn 0.3s ease;
}

/* ROX (Laranja e Branco) */
.rox-msg {
    align-self: flex-start;
    background: #ffffff;
    color: #333;
    border-left: 6px solid var(--laranja-medio);
    border-bottom-left-radius: 2px;
}

/* Usuário (Azul Escuro) */
.user-msg {
    align-self: flex-end;
    background: var(--azul-escuro);
    color: #ffffff;
    border-bottom-right-radius: 2px;
}
/* Bolha do Usuário (Azul do seu design) */
.user-msg {
    align-self: flex-end;
    background-color: var(--azul-escuro);
    color: #fff;
}

/* Ajuste para o input aceitar digitação sem bordas feias */
input.rectangle-1 {
    border: none;
    outline: none;
    padding-left: 30px !important; /* Ajuste para o texto não colar na borda */
}

/* FOOTER */
.meu-footer {
  background-color: #013b8f;
  color: #fff;
  padding: 60px 20px 40px;
  transform: scale(calc(100vw / 1300));
  padding: 10px 20px 20px;
  font-family: 'Gentium Book Plus', serif;
  width: 100%;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,0.2);
}

.footer-contato {
  flex: 1;
}

.footer-contato h3 {
  font-size: 23px;
  font-weight: 400;
}

.footer-contato h3 span {
  font-weight: 700;
  color: #ff8304;
}

.footer-contato p {
  display: flex;
  align-items: center;
  gap: 15px;
  margin: 20px 0;
  font-size: 17px;
  color: #fff;
  opacity: 0.9;
}

.footer-contato img {
  width: 30px;
  height: 30px;
}

.footer-logo {
  text-align: center;
}

.footer-logo img {
  height: 110px;
  opacity: 0.9;
  transition: transform 0.3s ease;
}

.footer-logo img:hover {
  transform: scale(1.1);
}

.footer-copyright {
  text-align: center;
  padding-top: 20px;
  font-size: 15px;
  color: rgba(255,255,255,0.7);
  max-width: 1300px;
  margin: 0 auto;
}

.footer-contato p:hover {
  color: #ff8304;
  cursor: pointer;
  transform: scale(1.1);
}

.menu-toggle {
  display: none; 
  font-size: 30px; 
  cursor: pointer; 
  position: relative; 
  left: 90%; 
  z-index: 1000; 
}

/* --- ÍCONE DE CLIPE DENTRO DO BALÃO DE TEXTO --- */
.inline-clip {
    width: 16px; /* Tamanho proporcional ao texto */
    height: auto;
    vertical-align: middle; /* Alinha com o meio do texto */
    margin-right: 6px;
    position: relative;
    top: -2px; /* Ajuste fino de altura */
    
    /* Essa linha transforma qualquer ícone escuro em totalmente BRANCO 
       para dar contraste no balão azul. Se o seu ícone já for branco, 
       pode apagar a linha abaixo. */
    filter: brightness(0) invert(1); 
}

/* --- CORREÇÃO DO ESPAÇAMENTO DO INPUT (SOBREPOSIÇÃO DO CLIPE E SETA) --- */
input#user-input.rectangle-1 {
    box-sizing: border-box !important;
    padding-left: 65px !important;  /* Espaço exato para o clipe */
    padding-right: 65px !important; /* Espaço exato para a seta */
}

/* Garante que, ao focar/clicar na caixa, a borda feia do navegador não apareça */
input#user-input.rectangle-1:focus {
    outline: none !important;
    border: none !important;
}

@media (max-width: 1400px) {
  body {
    zoom: 0.8;
  }
}@media (max-width: 1350px) {
    html, body {
        overflow-x: hidden;
        width: 100%;
    }

    .wrapper {
        width: 1300px;
        margin: 0 auto;
        transform: scale(calc(100vw / 1300));
        transform-origin: top center;
        
  
        margin-bottom: calc(935px * (100vw / 1300) - 935px);
    }
    

.texto {
        left: 30%;
        transform: translateX(-50%);
        width: 100vw;
    }
    .topo {
        left: 20px !important;
        gap: 20px;
    }

    .perfil, .rox2 {
        font-size: 22px; 
    }


    .meu-footer {
        width: 100%;
        transform: none; 
        padding: 40px 
    }

    .footer-content {
        flex-direction: column; 
        align-items: center;
        text-align: center;
        gap: 30px;
    }
}

/* Responsividade Básica para as telas de Auth */
@media (max-width: 950px) {
  .register-card { flex-direction: column; width: 90%; height: auto; }
  .left-side { width: 100%; border-radius: 15px 15px 0 0; padding: 30px; }
  .right-side { width: 100%; padding: 30px; padding-bottom: 80px; }
}

/* MOBILE */
@media (max-width: 900px) {

  /* mostra botão */
  .menu-toggle {
    display: block;
    font-size: 30px; 
    cursor: pointer; 
    position: relative; 
    left: 200%; 
    z-index: 1000; 
  }

  .texto{
    align-items: center;
    justify-content: center;
    display: flex;
    left: 35%;
    top: 50%;

  }

  .perfil-card {
        width: 80%;
        padding: 30px;
    }
    .dado-item {
        width: 90%;
    }

  /* menu escondido */
  .menu {
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    z-index: 999;
    border-radius: 0;
  }

  /* menu aberto */
  .menu.active {
    transform: translateX(0);
  }

  /* chat ocupa tudo */
  .fundo-chaty {
    width: 60% !important;
    height: 60vh !important;
    left: 35%;
    justify-content: flex-start;
    display: flex;
    padding: 20px !important;
    align-items: start;
    transform: translateX(-50%) !important;
    top: 120px !important;
  }

  .rectangle-1 {
    background: #fffdfd;
    border-radius: 20px;
    width: 57%;
    height: 55px;
    position: absolute;
    left: 80px;
    top: 450px;
    box-shadow: 0px 4px 15px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    padding: 0 20px;
    z-index: 3;
  }

  
  .component-1 {
  width: 40px;
  height: 40px;
  position: absolute;
  left: 780px;
  top: 460px;
  z-index: 4;
  cursor: pointer;
}

.ellipse-1 {
  background: #e4e4e4;
  border-radius: 50%;
  width: 100%;
  height: 100%;
}
.chat-messages-area {
        width: 100%; /* Quando o menu vira hambúrguer, o chat usa a tela toda */
        padding: 20px;
    }
    .message {
        max-width: 90%;
        font-size: 16px;
    }
    .component-attach { left: 90px; top: 458px; }
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }

}
/* meio termo */
@media (max-width: 700px) {

  /* mostra botão */
  .menu-toggle {
    display: block;
    font-size: 30px; 
    cursor: pointer; 
    position: relative; 
    left: 90%; 
    z-index: 1000; 
  }

  .texto{
    align-items: center;
    justify-content: center;
    display: flex;
    left: 30%;
    top: 50%;

  }

  /* menu escondido */
  .menu {
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    z-index: 999;
    border-radius: 0;
  }

  /* menu aberto */
  .menu.active {
    transform: translateX(0);
  }

  /* chat ocupa tudo */
  .fundo-chaty {
    width: 56% !important;
    height: 60vh !important;
    left: 32%;
    justify-content: flex-start;
    display: flex;
    align-items: start;
    transform: translateX(-50%) !important;
    top: 120px !important;
  }

  .rectangle-1 {
    background: #fffdfd;
    border-radius: 20px;
    width: 55%;
    height: 55px;
    position: absolute;
    left: 60px;
    top: 520px;
    box-shadow: 0px 4px 15px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    padding: 0 20px;
    z-index: 3;
  }

  
  .component-1 {
  width: 40px;
  height: 40px;
  position: absolute;
  left: 720px;
  top: 530px;
  z-index: 4;
  cursor: pointer;
}

.ellipse-1 {
  background: #e4e4e4;
  border-radius: 50%;
  width: 100%;
  height: 100%;
}
.component-attach { left: 70px; top: 528px; }
}


/* meio termo */
@media (max-width: 600px) {

  /* mostra botão */
  .menu-toggle {
    display: block;
    font-size: 30px; 
    cursor: pointer; 
    position: relative; 
    left: 90%; 
    z-index: 1000; 
  }

  .texto{
    align-items: center;
    justify-content: center;
    display: flex;
    left: 25%;
    top: 50%;

  }

  /* menu escondido */
  .menu {
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    z-index: 999;
    border-radius: 0;
  }

  /* menu aberto */
  .menu.active {
    transform: translateX(0);
  }

  /* chat ocupa tudo */
  .fundo-chaty {
    width: 45% !important;
    height: 60vh !important;
    left: 26%;
    justify-content: flex-start;
    display: flex;
    align-items: start;
    transform: translateX(-50%) !important;
    top: 120px !important;
  }

  .rectangle-1 {
    background: #fffdfd;
    border-radius: 20px;
    width: 42%;
    height: 55px;
    position: absolute;
    left: 60px;
    top: 520px;
    box-shadow: 0px 4px 15px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    padding: 0 20px;
    z-index: 3;
  }

  
  .component-1 {
  width: 40px;
  height: 40px;
  position: absolute;
  left: 560px;
  top: 530px;
  z-index: 4;
  cursor: pointer;
}

.ellipse-1 {
  background: #e4e4e4;
  border-radius: 50%;
  width: 100%;
  height: 100%;
}
.component-attach { left: 70px; top: 528px; }

}


/* celular */
@media (max-width: 500px) {

  /* mostra botão */
  .menu-toggle {
    display: block;
    font-size: 30px; 
    cursor: pointer; 
    position: relative; 
    left: 80%; 
    z-index: 1000; 
  }

  .texto{
    align-items: center;
    justify-content: center;
    display: flex;
    left: 25%;
    top: 50%;

  }

  /* menu escondido */
  .menu {
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    z-index: 999;
    border-radius: 0;
  }

  /* menu aberto */
  .menu.active {
    transform: translateX(0);
  }

  /* chat ocupa tudo */
  .fundo-chaty {
    width: 40% !important;
    height: 60vh !important;
    left: 23%;
    justify-content: flex-start;
    display: flex;
    align-items: start;
    transform: translateX(-50%) !important;
    top: 120px !important;
  }

  .rectangle-1 {
    background: #fffdfd;
    border-radius: 20px;
    width: 38%;
    height: 55px;
    position: absolute;
    left: 60px;
    top: 520px;
    box-shadow: 0px 4px 15px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    padding: 0 20px;
    z-index: 3;
  }

  
  .component-1 {
  width: 40px;
  height: 40px;
  position: absolute;
  left: 510px;
  top: 530px;
  z-index: 4;
  cursor: pointer;
}

.ellipse-1 {
  background: #e4e4e4;
  border-radius: 50%;
  width: 100%;
  height: 100%;
}
.component-attach { left: 70px; top: 528px; }

}


/* celular GM*/
@media (max-width: 450px) {

  /* mostra botão */
  .menu-toggle {
    display: block;
    font-size: 30px; 
    cursor: pointer; 
    position: relative; 
    left: 80%; 
    z-index: 1000; 
  }

  .texto{
    align-items: center;
    justify-content: center;
    display: flex;
    left: 22%;
    top: 50%;

  }

  /* menu escondido */
  .menu {
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    z-index: 999;
    border-radius: 0;
  }

  /* menu aberto */
  .menu.active {
    transform: translateX(0);
  }

  /* chat ocupa tudo */
  .fundo-chaty {
    width: 35% !important;
    height: 60vh !important;
    left: 20%;
    justify-content: flex-start;
    display: flex;
    align-items: start;
    transform: translateX(-50%) !important;
    top: 120px !important;
  }

  .rectangle-1 {
    background: #fffdfd;
    border-radius: 20px;
    width: 32%;
    height: 55px;
    position: absolute;
    left: 60px;
    top: 470px;
    box-shadow: 0px 4px 15px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    padding: 0 20px;
    z-index: 3;
  }

  
  .component-1 {
  width: 40px;
  height: 40px;
  position: absolute;
  left: 430px;
  top: 480px;
  z-index: 4;
  cursor: pointer;
}

.ellipse-1 {
  background: #e4e4e4;
  border-radius: 50%;
  width: 100%;
  height: 100%;
}

.component-attach { left: 70px; top: 478px; }
}



/*  celular M */
@media (max-width: 400px) {

  /* mostra botão */
  .menu-toggle {
    display: block;
    font-size: 30px; 
    cursor: pointer; 
    position: relative; 
    left: 20%; 
    z-index: 1000; 
  }

  .texto{
    align-items: center;
    justify-content: center;
    display: flex;
    left: 16%;
    top: 50%;

  }

  /* menu escondido */
  .menu {
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    z-index: 999;
    border-radius: 0;
  }

  /* menu aberto */
  .menu.active {
    transform: translateX(0);
  }

  /* chat ocupa tudo */
  .fundo-chaty {
    width: 30% !important;
    height: 60vh !important;
    left: 18%;
    justify-content: flex-start;
    display: flex;
    align-items: start;
    transform: translateX(-50%) !important;
    top: 120px !important;
  }

  .rectangle-1 {
    background: #fffdfd;
    border-radius: 20px;
    width: 28%;
    height: 45px;
    position: absolute;
    left: 45px;
    top: 470px;
    box-shadow: 0px 4px 15px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    padding: 0 20px;
    z-index: 3;
  }

  
  .component-1 {
  width: 40px;
  height: 40px;
  position: absolute;
  left: 360px;
  top: 470px;
  z-index: 4;
  cursor: pointer;
}

.ellipse-1 {
  background: #e4e4e4;
  border-radius: 50%;
  width: 100%;
  height: 100%;
}

.component-attach { left: 55px; top: 478px; }

}


/* mini celular */
@media (max-width: 320px) {

  /* mostra botão */
  .menu-toggle {
    display: block;
    font-size: 30px; 
    cursor: pointer; 
    position: relative; 
    left: 20%; 
    z-index: 1000; 
  }

  .texto{
    align-items: center;
    justify-content: center;
    display: flex;
    left: 16%;
    top: 50%;

  }

  /* menu escondido */
  .menu {
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    z-index: 999;
    border-radius: 0;
  }

  /* menu aberto */
  .menu.active {
    transform: translateX(0);
  }

  /* chat ocupa tudo */
  .fundo-chaty {
    width: 27% !important;
    height: 60vh !important;
    left: 15%;
    justify-content: flex-start;
    display: flex;
    align-items: start;
    transform: translateX(-50%) !important;
    top: 120px !important;
  }

  .rectangle-1 {
    background: #fffdfd;
    border-radius: 20px;
    width: 25%;
    height: 45px;
    position: absolute;
    left: 35px;
    top: 470px;
    box-shadow: 0px 4px 15px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    padding: 0 20px;
    z-index: 3;
  }

  
  .component-1 {
  width: 40px;
  height: 40px;
  position: absolute;
  left: 310px;
  top: 470px;
  z-index: 4;
  cursor: pointer;
}

.ellipse-1 {
  background: #e4e4e4;
  border-radius: 50%;
  width: 100%;
  height: 100%;
}

.component-attach { left: 45px; top: 478px; }

}
