/* === POSICIONAMENTO DAS MENSAGENS === */
.ag-primary-phone_item-1 {
  top: 120px;
}

.ag-primary-phone_item-2 {
  top: 340px;
}

.ag-primary-phone_item-3 {
  top: 142px;
}

.ag-primary-phone_item-4 {
  top: 270px;
}

.ag-primary-phone_item-5 {
  top: 142px;
}

.ag-primary-phone_item-6 {
  top: 272px;
}

.ag-primary-phone_item-7 {
  top: 325px;
}

.ag-primary-phone_item-8 {
  top: 142px;
}

/* === TELA DE BLOQUEIO === */
.col-md-6.position-relative,
.col-md-6.d-flex.justify-content-center {
  position: relative !important;
  left: 135px;
  width: 325px;
  height: 623px;
}

.ag-primary-phone_box {
  position: relative;
  width: 325px;
  height: 623px;
  z-index: 1;
}

#tela-inicial {
  position: absolute;
  width: 350px;
  height: 635px;
  z-index: 5;
  transition: opacity 0.6s ease;
}

.imagem-bloqueio {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: contrast(120%) drop-shadow(1px 1px 7px rgb(63, 63, 63));
}

.bloco-horario {
  position: absolute;
  top: 120px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 6;
  font-family: -apple-system, BlinkMacSystemFont, sans-serif;
  text-align: center;
}

.data-bloqueio {
  font-size: 15px;
  font-weight: 400;
  color: rgb(56, 56, 56);
  opacity: 0.9;
  margin-bottom: 5px;
}

.hora-bloqueio {
  font-size: 78px;
  font-weight: 500;
  color: rgb(39, 39, 39);
  line-height: 1;
}

.ag-primary-phone-block {
  opacity: 1;
  transition: opacity 0.6s ease;
}

.ag-primary-phone-block.ativo {
  opacity: 1;
}

.notificacao-sms {
  position: absolute;
  top: 100px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #3e3e3fe0;
  color: white;
  border-radius: 20px;
  padding: 8px 10px;
  width: 80%;
  max-width: 380px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: flex-start;
  font-family: -apple-system, BlinkMacSystemFont, sans-serif;
  z-index: 9999;
  opacity: 0;
  transition: all 0.3s ease;
}

.notificacao-img-unica {
  width: 34px;
  height: 34px;
  margin-right: 10px;
  margin-top: 30px;
  /* 👈 isso move a imagem um pouco para baixo */
  border-radius: 50%;
}


.notificacao-conteudo {
  flex: 1;
}

.notificacao-topo {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  margin-bottom: 2px;
}

.notificacao-nome {
  font-weight: bold;
  color: white;
}

.notificacao-hora {
  color: #b0b0b0;
  font-size: 13px;
}

.notificacao-corpo {
  font-size: 15px;
  color: #ebebeb;
  line-height: 1.5;
  text-align: left;
  white-space: normal;
  word-break: break-word;
  margin: 0;
  /* garante sem margem */
  padding: 0;
  /* remove qualquer padding interno */
  display: block;
  /* força o alinhamento completo */
}

/* Animações */
@keyframes descerNotificacao {
  from {
    top: 40px;
    /* ponto inicial da animação */
    opacity: 0;
  }

  to {
    top: 200px;
    /* mesmo valor que o top fixo */
    opacity: 1;
  }
}



@keyframes cliqueNotificacao {
  0% {
    transform: translateX(-50%) scale(1);
    opacity: 1;
  }

  50% {
    transform: translateX(-50%) scale(0.95) translateY(10px);
  }

  100% {
    transform: translateX(-50%) scale(1);
    opacity: 0;
  }
}


.notificacao-clicada {
  animation: cliqueNotificacao 0.4s ease forwards;
}

.touch-bolinha {
  position: absolute;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  top: 50px;
  /* ⬅ ajuste baseado na posição da notificação */
  left: 55%;
  transform: translateX(-50%);
  z-index: 10000;
  opacity: 0;
  pointer-events: none;
  animation: toqueBolinha 0.6s ease-out forwards;
}

@keyframes toqueBolinha {
  0% {
    opacity: 0;
    transform: translateX(-50%) scale(0.4);
  }

  50% {
    opacity: 1;
    transform: translateX(-50%) scale(1.0);
  }

  100% {
    opacity: 0;
    transform: translateX(-50%) scale(1.5);
  }
}


/* === ANIMAÇÕES === */
@keyframes slideUp {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeOutAll {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@keyframes setaClick {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(0.85);
  }

  100% {
    transform: scale(1);
  }
}

/* === LAYOUT GERAL === */
#lnk-1 .row {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
}

.phone-img {
  position: relative;
  width: 325px;
  height: 623px;
  background-size: contain;
  z-index: 1;
  filter: contrast(120%) drop-shadow(1px 1px 7px rgb(63, 63, 63));
}

.sms-header {
  top: 63px;
  left: 55px;
  position: absolute;
  font-weight: bold;
  font-size: 15px;
  color: #222;
  opacity: 0;
  transition: opacity 0.3s ease;
  align-items: center;
  z-index: 10;
}

.sms-header.visible {
  opacity: 1;
}


.sms-icon {
  width: 20px;
  height: 20px;
  margin-right: 5px;
  vertical-align: middle;
}

.sms-date {
  position: absolute;
  top: 120px;
  left: 100px;
  font-size: 12px;
  color: #6c6c6c;
  z-index: 10;
}

#data-sms {
  transition: opacity 0.3s ease;
  opacity: 0;
}

.sms-hora {
  position: absolute;
  top: 26px;
  left: 17.2%;
  transform: translateX(-50%);
  font-size: 13px;
  font-weight: 600;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
  color: #000;
  z-index: 50;
}



.sms-input-bar {
  position: absolute;
  bottom: 60px;
  right: 17%;
  background: #f0f0f0;
  width: 220px;
  border-radius: 20px;
  padding: 8px 12px;
  font-size: 14px;
  color: #333;
  z-index: 10;
  display: none;
  align-items: center;
  justify-content: flex-start;
}

#typing-sms {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.enviar-seta {
  position: absolute;
  right: -40px;
  bottom: 0px;
  width: 36px;
  height: 36px;
  background-color: #24b5c9;
  /* Azul do input */
  border: 2px solid #1a8fa0;
  /* Tom mais escuro para contorno */
  border-radius: 50%;
  display: none;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  color: white;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
  z-index: 20;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease;
}

/* Efeito ao passar o mouse */
.enviar-seta:hover {
  background-color: #1fa3b5;
}

/* Efeito clique */
.enviar-seta.animar-click {
  transform: scale(0.88);
}

.mensagem-wrapper {
  position: relative;
  display: inline-block;
  max-width: 100%;
}

.message-time {
  position: absolute;
  bottom: -14px;
  left: 16px;
  font-size: 12px;
  opacity: 0.75;
  color: #000000;
}

.message-timee {
  position: absolute;
  bottom: -14px;
  left: 16px;
  font-size: 12px;
  opacity: 0.75;
  color: #000000;
}


.ag-primary-phone_item:nth-child(2) .message-time,
.ag-primary-phone_item:nth-child(4) .message-time,
.ag-primary-phone_item:nth-child(6) .message-time {
  position: absolute;
  bottom: -5px;
  left: -30px;
  font-size: 12px;
  opacity: 0.7;
  color: #000000;
}



.mensagem-com-hora {
  font-family: Arial, Helvetica, sans-serif !important;
  display: flex;
  flex-direction: column;
  gap: 4px;
  max-width: 100%;
  font-size: 12px;
  opacity: 0.7;
  color: #000000;
  padding-left: 2px;
}

.ag-primary-phone_list {
  position: absolute;
  top: 5%;
  left: 12%;
  right: 12%;
  bottom: 12%;
  overflow-y: auto;
  width: 76%;
  height: 70%;
  background-color: transparent;
  border-radius: 12px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* === MENSAGENS === */
.ag-primary-phone_item {
  font-family: Arial, Helvetica, sans-serif !important;
  right: 110px;
  max-width: 20%;
  background: linear-gradient(115deg, rgba(226, 222, 222, 0.856), rgba(223, 230, 227, 0.918));
  box-shadow: 0 1px 10px rgba(202, 201, 201, 0.6);
  border-radius: 10px;
  padding: 10px;
  display: flex;
  align-items: flex-start;
  /* garante alinhamento vertical ao topo */
  justify-content: flex-start;
  /* garante que o conteúdo vá para a esquerda */
  font-size: 15px;
  font-weight: 600;
  color: #000000;
  text-align: left;
  opacity: 0;
  position: absolute;
  z-index: 10;
  white-space: normal;
  word-break: break-word;
  text-indent: 0;
}

.ag-primary-phone_item:nth-child(2),
.ag-primary-phone_item:nth-child(4),
.ag-primary-phone_item:nth-child(6) {
  top: 260px;
  max-width: 12%;
  right: 20px;
  background: #45c6cf;
  box-shadow: 0 1px 12px #45cacfa2;
  border-radius: 20px !important;
  color: #ffffff;
  display: flex;
  align-items: center;
  /* centraliza na vertical */
  justify-content: center;
}

.ag-primary-phone_item:nth-child(6) {
  top: 340px;
}

/* ========================
   RESPONSIVIDADE HERO E CELULAR COMPLETA
=========================== */
@media (min-width: 1440px) {
  .imagem-bloqueio {
    margin-top: 50px;
    width: 350px;
    height: 560px;
  }

  .col-md-6.d-flex.justify-content-center {
    position: relative;
    left: 135px;
    width: 325px;
    height: 623px;
  }

  #tela-inicial {

    width: 380px;
    height: 555px;
  }

  .notificacao-sms {
    left: 49.5%;
    width: 75%;
    max-width: 400px;
  }

  .phone-img {
    margin-top: 50px;
    width: 290px;
    height: 550px;
  }

  .sms-input-bar {
    right: 18%;
    width: 210px;
    font-size: 14px;
    bottom: 60px;
  }

  .sms-date {
    top: 140px;
    left: 80px;
    font-size: 12px;
  }

  .sms-header {
    top: 103px;
    left: 45px;
    font-size: 15px;
  }


  .sms-hora {
    top: 73px;
    font-size: 12px;
  }

  .data-bloqueio {
    font-size: 15px;
  }

  .hora-bloqueio {
    font-size: 78px;
  }

  .ag-primary-phone_list {
    top: -1%;
    left: 60%;
    width: 30%;
    height: 90%;
  }

  .ag-primary-phone_item {
    top: 175px;
    max-width: 70%;
    left: 58px;
    font-size: 15px;
    padding: 10px;
  }

  .ag-primary-phone_item:nth-child(6) {
    top: 290px;
    left: auto !important;
    right: 60px !important;
  }

  .ag-primary-phone_item:nth-child(2) {
    top: 410px;
    max-width: 25% !important;
    left: auto !important;
    right: 60px !important;
  }

  .ag-primary-phone_item:nth-child(4) {
    top: 410px;
    left: auto !important;
    right: 60px !important;
    max-width: 30% !important;
  }

  .ag-primary-phone_item-6 {
    max-width: 25% !important;
  }

  .ag-primary-phone_item-7 {
    top: 350px;
  }

}

@media (max-width: 1366px) {
  #tela-inicial {
    top: 13%;
    width: 285px;
    height: 540px;
  }

  .phone-img {
    top: 13%;
    width: 280px;
    height: 535px;
  }

  .sms-input-bar {
    right: 19%;
    width: 190px;
    font-size: 13px;
    bottom: 43px;
  }

  .sms-date {
    top: 167px;
    left: 88px;
    font-size: 11px;
  }

  .sms-header {
    top: 134px;
    left: 52px;
    font-size: 14px;
  }

  .sms-icon {
    width: 19px;
    height: 19px;
  }

  .sms-hora {
    left: 56px;
    top: 103px;
    font-size: 12px;
  }

  .data-bloqueio {
    font-size: 14px;
  }

  .hora-bloqueio {
    font-size: 74px;
  }

  .ag-primary-phone_list {
    top: 11%;
    left: auto;
    right: 13%;
    bottom: 0%;
    width: 25%;
    height: 88%;

  }

  .ag-primary-phone_item {
    font-size: 14px;
    padding: 9px;
  }

  .ag-primary-phone_item {
    top: 135px;
    right: 69px;
    max-width: 63%;
    font-size: 14px;
    padding: 9px;
  }

  .ag-primary-phone_item:nth-child(2),
  .ag-primary-phone_item:nth-child(4),
  .ag-primary-phone_item:nth-child(6) {
    top: 243px;
    max-width: 30%;
    right: 29px;
  }

  .ag-primary-phone_item:nth-child(2) {
    top: 360px;
  }

  .ag-primary-phone_item:nth-child(4) {
    top: 360px;
  }

  .ag-primary-phone_item-7 {
    top: 290px;
  }

  .notificacao-sms {
    top: -300px;
    left: 49.5%;
    padding: 6px 8px;
    width: 70%;
    max-width: 350px;
  }

  .bloco-horario {
    top: 90px;

  }
}

@media (max-width: 1280px) {
  #tela-inicial {
    top: 13%;
    width: 280px;
    height: 530px;
  }

  .phone-img {
    top: 13%;
    width: 275px;
    height: 525px;
  }

  .sms-input-bar {
    right: 19%;
    width: 190px;
    font-size: 13px;
    bottom: 8px;
  }

  .sms-date {
    top: 165px;
    left: 85px;
    font-size: 11px;
  }

  .sms-header {
    top: 132px;
    left: 49px;
    font-size: 14px;
  }

  .sms-icon {
    width: 18px;
    height: 18px;
  }

  .sms-hora {
    left: 60px;
    top: 102px;
    font-size: 11px;
  }

  .data-bloqueio {
    font-size: 13px;
  }

  .hora-bloqueio {
    font-size: 66px;
  }

  .ag-primary-phone_list {
    top: 11%;
    left: auto;
    right: 13%;
    bottom: 0%;
    width: 25%;
    height: 88%;

  }

  .ag-primary-phone_item {
    font-size: 14px;
    padding: 9px;
  }

  .ag-primary-phone_item {
    top: 135px;
    right: 69px;
    max-width: 63%;
    font-size: 14px;
    padding: 9px;
  }

  .ag-primary-phone_item:nth-child(2),
  .ag-primary-phone_item:nth-child(4),
  .ag-primary-phone_item:nth-child(6) {
    top: 243px;
    max-width: 30%;
    right: 29px;
  }

  .ag-primary-phone_item:nth-child(2) {
    top: 360px;
  }

  .ag-primary-phone_item:nth-child(4) {
    top: 360px;
  }

  .ag-primary-phone_item-7 {
    top: 290px;
  }

  .notificacao-sms {
    top: -300px;
    left: 49.5%;
    padding: 6px 8px;
    width: 70%;
    max-width: 350px;
  }

  .bloco-horario {
    top: 90px;

  }
}

@media (min-width: 1025px) and (max-width: 1100px) {
  .phone-img {
    right: 20%;
    top: 15%;
    width: 254px;
    height: 465px;
  }

  #tela-inicial {
    right: 27%;
    top: 15%;
    width: 264px;
    height: 470px;
  }

  .notificacao-sms {
    top: -250px;
    left: 32%;
    padding: 5px 8px;
    width: 64%;
    max-width: 290px;
  }

  .bloco-horario {

    top: 90px;
    left: 50%;

  }

  .sms-input-bar {
    right: 23%;
    width: 165px;
    font-size: 13px;
    bottom: 50px;
  }

  .ag-primary-phone_list {
    left: auto;
    top: 13%;
    right: 16%;
    width: 25%;
    height: 78%;
  }

  .sms-date {
    top: 176px;
    left: 37px;
    font-size: 11px;
  }

  .sms-hora {
    left: 8px;
    top: 110px;
    font-size: 11px;
  }

  .sms-header {
    top: 138px;
    left: 0px;
    font-size: 14px;
  }

  .ag-primary-phone_item {
    top: 121px;
    right: 69px;
    max-width: 63%;
    font-size: 14px;
    padding: 9px;
  }

  .ag-primary-phone_item:nth-child(2),
  .ag-primary-phone_item:nth-child(4),
  .ag-primary-phone_item:nth-child(6) {
    top: 243px;
    max-width: 30%;
    right: 29px;
  }

  .ag-primary-phone_item:nth-child(2) {
    top: 360px;
  }

  .ag-primary-phone_item:nth-child(4) {
    top: 375px;
  }

  .ag-primary-phone_item-7 {
    top: 290px;
  }
}

@media (max-width: 1024px) {
  #tela-inicial {
    right: 25%;
    top: 85px;
    width: 260px;
    height: 480px;
  }

  .phone-img {
    right: 17%;
    top: 85px;
    width: 250px;
    height: 475px;
  }

  .sms-input-bar {
    right: 19%;
    width: 175px;
    font-size: 12px;
    bottom: 50px;
  }

  .enviar-seta {
    right: -30px;
    width: 30px;
    height: 30px;
  }

  .sms-date {
    top: 170px;
    left: 50px;
    font-size: 10px;
  }

  .sms-header {
    top: 133px;
    left: 11px;
    font-size: 13px;
  }

  .sms-icon {
    width: 17px;
    height: 17px;
  }

  .sms-hora {
    left: 18px;
    top: 104px;
    font-size: 11px
  }

  .data-bloqueio {
    font-size: 13px;
  }

  .hora-bloqueio {
    font-size: 66px;
  }

  .ag-primary-phone_list {
    top: 11%;
    left: 60%;
    width: 28%;
    height: 82%;
  }

  .ag-primary-phone_item {
    top: 125px;
    right: 74px;
    max-width: 170px;
    font-size: 12px;
    padding: 8px;
  }

  .ag-primary-phone_item:nth-child(2),
  .ag-primary-phone_item:nth-child(4),
  .ag-primary-phone_item:nth-child(6) {
    top: 251px;
    left: auto !important;
    right: 36px !important;
  }

  .ag-primary-phone_item:nth-child(2) {
    top: 360px;
  }

  .ag-primary-phone_item:nth-child(4) {
    top: 365px;
  }

  .ag-primary-phone_item-2 {
    max-width: 25% !important;
  }

  .ag-primary-phone_item-4 {
    max-width: 30% !important;
  }

  .ag-primary-phone_item-6 {
    max-width: 25% !important;
  }

  .ag-primary-phone_item-7 {
    top: 295px;
  }

  .bloco-horario {
    top: 90px;
    left: 50%;
  }

  .notificacao-sms {
    top: -300px;
    left: 34.5%;
    padding: 4px 5px;
    width: 65%;
    max-width: 340px;
  }
}

@media(max-width: 1000px) {

  .sms-input-bar {
    right: 18%;
  }

  .ag-primary-phone_list {
    top: 11%;
    left: 61%;
    width: 28%;
    height: 82%;
  }

}

@media(max-width: 900px) {
  #tela-inicial {
    right: 19%;
    top: 85px;
    width: 290px;
    height: 425px;
  }

  .phone-img {
    right: 15%;
    top: 85px;
    width: 225px;
    height: 418px;
  }
    .notificacao-sms {
        top: -300px;
        left: 36%;
        padding: 2px 3px;
        width: 57%;
        max-width: 325px;
    }
  .sms-header {
    top: 125px;
    left: 29px;
    font-size: 11px;
  }


.sms-date {
  top: 155px;
}

.sms-hora {
  left: 33px;
}

.ag-primary-phone_list {
  top: 11%;
  left: 62%;
  width: 31%;
  height: 79%;
}

.ag-primary-phone_item {
          top: 105px;
        right: 65px;
  max-width: 163px;
  font-size: 12px;
  padding: 5px;
}

.sms-input-bar {
  width: 16%;
  right: 16%;
  margin-bottom: 53px;
}

 
    .ag-primary-phone_item:nth-child(2), .ag-primary-phone_item:nth-child(4), .ag-primary-phone_item:nth-child(6) {
        top: 205px;
        left: auto !important;
        right: 43px !important;
}
   .ag-primary-phone_item:nth-child(2) {
        top: 329px;
    }
    .ag-primary-phone_item:nth-child(4) {
        top: 337px;
    }

}

@media (max-width: 768px) {

  #tela-inicial {
    right: 160px;
    top: 90px;
    width: 250px;
    height: 450px;
  }

  .imagem-bloqueio {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: contrast(120%) drop-shadow(1px 1px 7px rgb(63, 63, 63));
  }

  .phone-img {
    right: 125px;
    top: 90px;
    width: 240px;
    height: 445px;
  }

  .notificacao-sms {
    top: -200px;
    left: 12%;
    width: 60%;
    padding: 5px 7px;
    max-width: 340px;

  }

  .bloco-horario {
    top: 90px;
    left: 50%;
  }

  .ag-primary-phone_list {
  top: 13%;
        left: 54%;
        width: 36%;
        height: 78%;
  }

  .sms-input-bar {
    right: 19%;
    width: 166px;
    font-size: 11px;
    bottom: 21px;
  }

  .sms-date {
    top: 156px;
    left: -20px;
    font-size: 11px;
  }

  .sms-header {
    top: 135px;
    left: -58px;
    font-size: 12px;
  }

  .sms-icon {
    width: 16px;
    height: 16px;
  }

  .sms-hora {
    left: -52px;
    top: 108px;
    font-size: 11px;
  }

  .data-bloqueio {
    font-size: 12px;
  }

  .hora-bloqueio {
    font-size: 62px;
  }

  .ag-primary-phone_item {
    top: 110px;
    right: 65px;
    max-width: 170px;
    font-size: 12px;
    padding: 8px;
  }

  .ag-primary-phone_item:nth-child(2),
  .ag-primary-phone_item:nth-child(4),
  .ag-primary-phone_item:nth-child(6) {
    top: 250px;
    left: auto !important;
    right: 33px !important;
  }

  .ag-primary-phone_item:nth-child(2) {
    top: 350px;
  }

  .ag-primary-phone_item:nth-child(4) {
    top: 355px;
  }

  .ag-primary-phone_item-2 {
    max-width: 25% !important;
  }

  .ag-primary-phone_item-4 {
    max-width: 30% !important;
  }

  .ag-primary-phone_item-6 {
    max-width: 25% !important;
  }

  .ag-primary-phone_item-7 {
    top: 295px;
  }
}

@media (max-width: 430px) {
  #tela-inicial {
    right: 112px;
    width: 263px;
    height: 476px;
  }

  .phone-img {
    width: 244px;
    height: 467px;
  }

  .imagem-bloqueio {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: contrast(120%) drop-shadow(1px 1px 7px rgb(63, 63, 63));
  }

  .ag-primary-phone_box {
    left: 40px;
  }

  .sms-input-bar {
    right: 35%;
        width: 165px;
        font-size: 11px;
        bottom: 0px;
  }

  .enviar-seta {
    width: 30px;
    height: 30px;
  }

  .sms-date {
    top: 161px;
    left: -22px;
    font-size: 9px;
  }

  .sms-header {
    top: 136px;
    left: -60px;
    font-size: 12px;
  }

  .sms-icon {
    width: 15px;
    height: 15px;
  }

  .sms-hora {
    left: -55px;
    top: 110px;
    font-size: 10px;
  }

  .data-bloqueio {
    font-size: 11px;
  }

  .hora-bloqueio {
    font-size: 59px;
  }

  .ag-primary-phone_list {
    top: 54%;
    left: 21%;
    width: 59%;
    height: 43%;
  }

  .ag-primary-phone_item {
    right: 62px;
    font-size: 11px;
    padding: 8px;
  }

  .ag-primary-phone_item:nth-child(6) {
    top: 250px;
    left: auto !important;
    right: 30px !important;
  }

  .ag-primary-phone_item:nth-child(2) {
    top: 350px;
    left: auto !important;
    right: 30px !important;
  }

  .ag-primary-phone_item:nth-child(4) {
    top: 355px;
    left: auto !important;
    right: 30px !important;
  }

  .ag-primary-phone_item-2 {
    max-width: 25% !important;
  }

  .ag-primary-phone_item-4 {
    max-width: 35% !important;
  }

  .ag-primary-phone_item-6 {
    max-width: 30% !important;
  }

  .ag-primary-phone_item-7 {
    top: 295px;
  }

  .notificacao-sms {
    top: -200px;
    left: 24.5%;
    width: 62%;
    padding: 5px 7px;
    max-width: 350px;
  }

}

@media (max-width: 414px) {
  #tela-inicial {
    right: 112px;
    width: 263px;
    height: 476px;
  }

  .phone-img {
    width: 244px;
    height: 467px;
  }

  .imagem-bloqueio {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: contrast(120%) drop-shadow(1px 1px 7px rgb(63, 63, 63));
  }

  .ag-primary-phone_list {
    top: 56%;
    left: 21%;
    width: 63%;
    height: 41%;
    z-index: 10;
  }


  .ag-primary-phone_item:nth-child(6) {
    top: 245px;
    left: auto !important;
    right: 30px !important;
  }

  .ag-primary-phone_item:nth-child(2) {
    top: 350px;
    left: auto !important;
    right: 30px !important;
  }

  .ag-primary-phone_item:nth-child(4) {
    top: 355px;
    left: auto !important;
    right: 30px !important;
  }

  .ag-primary-phone_item-6 {
    max-width: 28% !important;
  }

  .ag-primary-phone_item-4 {
    max-width: 35% !important;
  }

  .sms-input-bar {
    right: 32%;
    width: 165px;
    font-size: 11px;
    bottom: 0px;
  }
}

@media (max-width: 390px) {
  #tela-inicial {
    right: 112px;
    width: 263px;
    height: 476px;
  }

  .phone-img {
    width: 244px;
    height: 467px;
  }

  .imagem-bloqueio {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: contrast(120%) drop-shadow(1px 1px 7px rgb(63, 63, 63));
  }

  .ag-primary-phone_box {
    left: 40px;
  }


  .sms-input-bar {
    right: 27%;
    width: 160px;
    font-size: 11px;
    bottom: 0px;
  }

  .sms-date {
    top: 160px;
    left: -15px;
    font-size: 8px;
  }

  .sms-header {
    top: 138px;
    left: -62px;
    font-size: 11px;
  }

  .sms-icon {
    width: 14px;
    height: 14px;
  }

  .sms-hora {
    top: 110px;
    font-size: 10px;
  }

  .data-bloqueio {
    font-size: 10px;
  }

  .hora-bloqueio {
    font-size: 55px;
  }

  .ag-primary-phone_list {
    top: 59%;
    left: 21%;
    width: 67%;
    height: 39%;
  }

  .ag-primary-phone_item {
    right: 60px;
    font-size: 11px;
    padding: 8px;
  }

  .ag-primary-phone_item:nth-child(6) {
    top: 245px;
    left: auto !important;
    right: 30px !important;
  }

  .ag-primary-phone_item:nth-child(2) {
    top: 340px;
    left: auto !important;
    right: 30px !important;
  }

  .ag-primary-phone_item:nth-child(4) {
    top: 350px;
    left: auto !important;
    right: 30px !important;
  }

  .ag-primary-phone_item-2 {
    max-width: 25% !important;
  }

  .ag-primary-phone_item-4 {
    max-width: 35% !important;
  }

  .ag-primary-phone_item-6 {
    max-width: 30% !important;
  }

  .ag-primary-phone_item-7 {
    top: 295px;
  }

  .notificacao-sms {
    top: -200px;
    left: 24.5%;
    width: 62%;
    padding: 5px 7px;
    max-width: 350px;
  }
}

@media (max-width: 375px) {
  .ag-primary-phone_list {
    top: 56%;
    left: 25%;
    width: 67%;
    height: 39%;
  }

  .sms-input-bar {
    right: 26%;
    width: 160px;
    font-size: 11px;
    bottom: 0px;
  }
}

@media (max-width: 360px) {
  #tela-inicial {
    right: 155px;
    width: 263px;
    height: 476px;
  }

  .phone-img {
    width: 244px;
    height: 467px;
  }

  .imagem-bloqueio {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: contrast(120%) drop-shadow(1px 1px 7px rgb(63, 63, 63));
  }

  .ag-primary-phone_box {
    left: 0px;
  }

  .sms-input-bar {
    right: 35%;
    width: 150px;
    font-size: 9px;
    bottom: 0px;
  }

  .sms-date {
    top: 164px;
    left: -18px;
    font-size: 9px;
  }

  .sms-header {
    top: 138px;
    left: -59px;
    font-size: 10px;
  }

  .sms-icon {
    width: 13px;
    height: 13px;
  }

  .sms-hora {
    top: 109px;
    font-size: 10px;
  }

  .data-bloqueio {
    font-size: 10px;
  }

  .hora-bloqueio {
    font-size: 51px;
  }

  .ag-primary-phone_list {
    top: 58%;
    left: 14%;
    width: 70%;
    height: 39%;
  }

  .ag-primary-phone_item {
    right: 59px;
    font-size: 11px;
    padding: 8px;
  }


  .ag-primary-phone_item:nth-child(6) {
    top: 245px;
    left: auto !important;
    right: 30px !important;
  }

  .ag-primary-phone_item:nth-child(2) {
    top: 340px;
    left: auto !important;
    right: 30px !important;
  }

  .ag-primary-phone_item:nth-child(4) {
    top: 350px;
    left: auto !important;
    right: 30px !important;
  }

  .ag-primary-phone_item-2 {
    max-width: 25% !important;
  }

  .ag-primary-phone_item-4 {
    max-width: 35% !important;
  }

  .ag-primary-phone_item-6 {
    max-width: 30% !important;
  }

  .ag-primary-phone_item-7 {
    top: 295px;
  }

  .notificacao-sms {
    top: -200px;
    left: 11.5%;
    width: 62%;
    padding: 5px 7px;
    max-width: 350px;
  }
}


@media (max-width: 320px) {
      .phone-img {
        width: 240px;
        height: 467px;
    }
  .ag-primary-phone_list {
            top: 57%;
        left: 16%;
        width: 78%;
        height: 39%;
  }

  .sms-input-bar {
    right: 30%;
    width: 150px;
    font-size: 9px;
    bottom: 0px;
  }

  .notificacao-sms {

    left: 7.5%;

  }
}