/* Google Font Import - Poppins */
@import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&family=Roboto:wght@100;300;400;500;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

/* @font-face kit by Fonts2u (https://fonts2u.com) */ @font-face {font-family:"Quenda-Medium";src:url("/funcao/Trocadetitularidade/source/font/Quenda-Medium.eot") format("eot"),url("/funcao/Trocadetitularidade/source/font/Quenda-Medium.woff") format("woff"),url("/funcao/Trocadetitularidade/source/font/Quenda-Medium.ttf") format("truetype"),url("Quenda-Medium.svg#Quenda-Medium") format("svg");font-weight:normal;font-style:normal;}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

:root {
    /* ===== Colors ===== */
    --body-color: #ffffff;
    --sidebar-color: #242526;
    --primary-color: #3a3b3c;
    --primary-color-light: #3a3b3c;
    --toggle-color: #DDD;
    --text-color: #e9e9e9;

    /* ====== Transition ====== */
    --tran-03: all 0.2s ease;
    --tran-03: all 0.3s ease;
    --tran-04: all 0.3s ease;
    --tran-05: all 0.3s ease;
}

body {
    min-height: 100%;
    background-color: var(--body-color);
    transition: var(--tran-05);
}

::selection {
    background-color: var(--primary-color);
    color: #fff;
}

body.dark {
    --body-color: #18191a;
    --sidebar-color: #242526;
    --primary-color: #3a3b3c;
    --primary-color-light: #3a3b3c;
    --toggle-color: #fff;
    --text-color: #ccc;
}

.sidebar {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 400px;
    padding: 10px 14px;
    background: var(--sidebar-color);
    transition: var(--tran-05);
    z-index: 100;
}

.sidebar.close {
    width: 85px;
}

.sidebar li.search-box {
    border-radius: 6px;
    background-color: var(--primary-color-light);
    cursor: pointer;
    transition: var(--tran-05);
}

.sidebar li.search-box input {
    height: 100%;
    width: 100%;
    outline: none;
    border: none;
    background-color: var(--primary-color-light);
    color: var(--text-color);
    border-radius: 6px;
    font-size: 17px;
    font-weight: 500;
    transition: var(--tran-05);
}

.sidebar li {
    height: 50px;
    list-style: none;
    display: flex;
    align-items: center;
    margin-top: 10px;
}

.sidebar header .image,
.sidebar .icon {
    min-width: 60px;
    border-radius: 6px;
}

.sidebar .icon {
    min-width: 60px;
    border-radius: 6px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.sidebar .text,
.sidebar .icon {
    color: var(--text-color);
    transition: var(--tran-03);
}

.sidebar .text {
    font-size: 15px;
    font-weight: 500;
    white-space: nowrap;
    opacity: 1;
}

.sidebar.close .text {
    opacity: 0;
}

.sidebar header {
    position: relative;
}

.sidebar header .image-text {
    display: flex;
    align-items: center;
}

.sidebar header .logo-text {
    display: flex;
    flex-direction: column;
}

header .image-text .name {
    margin-top: 2px;
    font-size: 18px;
    font-weight: 600;
}

header .image-text .profession {
    font-size: 16px;
    margin-top: -2px;
    display: block;
}

.sidebar header .image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.sidebar header .image img {
    width: 40px;
    border-radius: 6px;
}

.sidebar header .toggle {
    position: absolute;
    top: 50%;
    right: -25px;
    transform: translateY(-50%) rotate(180deg);
    height: 30px;
    width: 30px;
    background-color: #a09e9e;
    color: var(--sidebar-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    cursor: pointer;
    transition: var(--tran-05);
}

body.dark .sidebar header .toggle {
    color: var(--text-color);
}

.sidebar.close .toggle {
    transform: translateY(-50%) rotate(0deg);
}

.sidebar .menu {
    margin-top: 0px;
}

.sidebar li a {
    list-style: none;
    height: 100%;
    background-color: transparent;
    display: flex;
    align-items: center;
    height: 100%;
    width: 100%;
    border-radius: 6px;
    text-decoration: none;
    transition: var(--tran-03);
}

.sidebar li a:hover {
    background-color: var(--primary-color);
}

.sidebar li a:hover .icon,
.sidebar li a:hover .text {
    color: var(--sidebar-color);
}

body.dark .sidebar li a:hover .icon,
body.dark .sidebar li a:hover .text {
    color: var(--text-color);
}

.sidebar .menu-bar {
    height: calc(100% - 55px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow-y: scroll;
}

.menu-bar::-webkit-scrollbar {
    display: none;
}

.sidebar .menu-bar .mode {
    border-radius: 6px;
    background-color: var(--primary-color-light);
    position: relative;
    transition: var(--tran-05);
}

.menu-bar .mode .sun-moon {
    height: 50px;
    width: 60px;
}

.menu-bar .mode .left {
    height: 50px;
    width: 60px;
}

.home {
    position: absolute;
    top: 0;
    top: 0;
    left: 250px;
    height: 100%;
    width: calc(100% - 250px);
    background-color: #FFF;
    transition: var(--tran-05);
}

.sidebar.close~.home {
    left: 78px;
    height: 100vh;
    width: calc(100% - 78px);
}

body.dark .home .text {
    color: var(--text-color);
}

.home {
    display: flex;
    justify-content: space-around;  
}

.text6 {
    font-weight: 900;
    font-size: 25px;
    padding: 12px 50px;
    margin-top: 15%;
}

.text6 i {
    display:inline-block;
    vertical-align:bottom;
}

.novidades {
    font-weight: 900;
    font-size: 20px;
    padding: 12px 50px;
}

.novidades i {
    display:inline-block;
    vertical-align:bottom;
}

.bx-screenshot {
    font-size: 30px;
}

.bx-happy-heart-eyes {
    font-size: 30px;
}

.left {
   width: 50%;
}

.right { 
    display: flex;
    flex-direction: row;
    width: 50%;
    height: 100%;
    color: #FFF;
    background-image: url(/source/img/background.jpg);
    background-repeat: no-repeat;
    background-size: cover;
}

.text2 {
    font-size: 15px;
    font-weight: 400;
    padding: 12px 50px;
  
}

.text3 {
    font-size: 14px;
    font-weight: 400;
    padding: 12px 50px; 
}

.text4 {
    font-size: 20px;
    font-weight: 900;
    margin-top: 30px;
}

.icon2 {
    font-size: 35px;
}

.icon3 {
    font-size: 20px;
}

a {
    text-decoration: none;
    color: #000000;
}

.img img {
    width: 220px;
}

.img {
    display: grid;
    justify-content: center;
}

.img2 img{
    width: 180px;
}

.img2 {
    display: grid;
    margin-top: 80px;
    justify-content: center;
}


.imgCopel img {
    width: 280px;
    margin-top: 40%;
    border-radius: 10px;
}

.popup {
    position: absolute;
    top: 375px;
    width: 302.36px;
    height: auto;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgb(255, 255, 255);
    border: 1px solid rgba(133, 133, 133, 0.623);
    padding: 5px;
    display: none;
}

.print {
    display: flex;
    justify-content: right;
}

.printLine {
    display: flex;
    margin-top: 30px;
    margin-bottom: 30px;
    align-items: center;
    justify-content: center;
}

.printLine button {
    background-color: #000000;
    font-size: 20px;
    color: white;
    padding: 8px;
    margin: 10px;
    border-radius: 5px;
    font-weight: 400;
}

.Gerar {
    align-items: center;
    justify-content: center;
    text-align: center;
    margin: 0;
}

.Gerar button {
    cursor: pointer;
    border-style: none;
    height: 50px;
    width: 200px;
    border-radius: 5px;
    background: #2c303b;
    color: white;
    margin-top: 20px;
    font-size: 15px;
    outline: none; 
    font-weight: 600;
}

.img {
    background: white;
}

.img img {
    width: 76px;
    margin-bottom: 10px;
}

#copel {
    width: 120px;
}

.pLogo  {
    justify-content: center;
}

.pLogo h2 {
    font-weight: 400;
    font-size: 15px;
    text-align: center;
    border-bottom: 2px solid black;
}

.number {
    margin-top: 20px;
    background: black;
    width: 280px;
    height: 100px;
    border-radius: 15px;
}

.number input {
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Press Start 2P', cursive;
    font-size: 17px;
    background: black;
    border: none;
    width: 255px;
    color: white;
}

.number h2 {
    padding: 12px;
    font-size: 15px;
    color: white;
}

.end h2 {
    margin-top: 30px;
    font-size: 15px;
    font-weight: 900;
    text-align: left;
}

.icon h2{
    font-size: 20px;
}

.person h2 {
    margin-top: 20px;
    font-size: 15px;
    font-weight: 900;
    text-align: left;
}


.time h2 {
    margin-top: 20px;
    font-size: 15px;
    font-weight: 900;
    text-align: left;
}

.qrcode {
    margin-top: 20px;
    display: inline-block
}

.qrcode i {
    text-align: center;
    margin: 10px;
}

.iconSite {
    font-size: 45px;
    padding-right: px;
}

.iconWhat {
    font-size: 45px;
    margin-left: 70px;
}

.qrcode img {
    width: 100px;
    margin: 10px;
}

.copelInf {
    margin-top: 20px;
}

.copelInf h2 {
    font-weight: 400;
    font-size: 15px;
    text-align: center;
}

@media print {
    nav, #noprint {
        display: none;
    }

    .button {
        background: #fff;
    }

}

.box {
    display: flex;
    border: none;
    margin: 10px;
}


.bandeira {
    width: 300px;
    display: inline;
    background-color: #ec6500;
    border-radius: 5px;
}

.bandeira p {
    padding: 10px;
    font-weight: 400;
    font-weight: 900;
    font-size: 11pt;
    color: white;
}

.cotacao {
    width: 300px;
    height: 180px;
    background-color: #373a3c;
    border-radius: 5px;
}

.cotacao p {
    font-weight: 900;
    margin-top: 15px;
    font-size: 11pt;
    color: white;
}

.cotacao h2 {
    font-weight: 900;
    padding: 10px;
    font-size: 11pt;
    float: left;
    color: white;
}


.bandeira .bxs-flag-alt {
    vertical-align: middle;
    display: inline-block;
    margin-bottom: 5px;
}

.cotacao .bx-money-withdraw {
    vertical-align: middle;
    color: white;
    font-size: 25px;
}

.cotacao .bxs-bolt {
    vertical-align: middle;
    color: white;
    font-size: 25px;
}

.container-4{
    overflow: hidden;
    width: auto;
    vertical-align: middle;
    white-space: nowrap;
    border-radius: 5px;
  }

  .container-4 input#search{
    width: 250px;
    height: 50px;
    background: #1976d2;
    border: none;
    font-size: 10pt;
    font-weight: 900;
    float: left;
    color: rgb(255, 255, 255);
    padding-left: 15px;
  }

  .senhaChama {
    border: none;
    margin-top: 10px;
    display: flex;
    float: right;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap; 
    gap: 10px; 
    margin-right: 10px;
}

.senhaChama button {
    text-align: center;
    width: 100%;
    max-width: 400px; /* Limite máximo de largura para telas grandes */
    min-width: 200px; /* Limite mínimo de largura para telas pequenas */
    height: 50px;
    background: #404350;
    border: none;
    font-size: 15px;
    font-weight: 900;
    color: #fff;
    cursor: pointer;
    border-radius: 5px;
    padding: 10px 20px; /* Espaçamento interno para conteúdo */
    box-sizing: border-box; /* Inclui padding na largura total */
}

.senhaChama i {
    display: inline-block;
    vertical-align: middle; /* Alinhamento mais centralizado para a maioria dos casos */
    margin-right: 8px; /* Espaço entre o ícone e o texto dentro do botão */
    font-size: auto; /* Ajusta o tamanho do ícone relativo ao texto */
}


.desligamento {
    border: none;
    margin-top: 10px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap; /* Para garantir que os botões se ajustem ao espaço disponível */
    gap: 10px; /* Espaçamento entre os botões */
}

.desligamento button {
    text-align: center;
    width: 100%;
    max-width: 400px; /* Limite máximo de largura para telas grandes */
    min-width: 200px; /* Limite mínimo de largura para telas pequenas */
    height: 50px;
    background: #c62828;
    border: none;
    font-size: 15px;
    font-weight: 900;
    color: #fff;
    cursor: pointer;
    border-radius: 5px;
    padding: 10px 20px; /* Espaçamento interno para conteúdo */
    box-sizing: border-box; /* Inclui padding na largura total */
}

.desligamento i {
    display: inline-block;
    vertical-align: middle; /* Alinhamento mais centralizado para a maioria dos casos */
    margin-right: 8px; /* Espaço entre o ícone e o texto dentro do botão */
    font-size: auto; /* Ajusta o tamanho do ícone relativo ao texto */
}

.prot {
    border: none;
    margin: 10px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap; /* Para garantir que os botões se ajustem ao espaço disponível */
    gap: 10px; /* Espaçamento entre os botões */
}

.prot button {
    text-align: center;
    width: 100%;
    max-width: 400px; /* Limite máximo de largura para telas grandes */
    min-width: 200px; /* Limite mínimo de largura para telas pequenas */
    height: 50px;
    background: #404350;;
    border: none;
    font-size: 15px;
    font-weight: 900;
    color: #fff;
    cursor: pointer;
    border-radius: 5px;
    padding: 10px 20px; /* Espaçamento interno para conteúdo */
    box-sizing: border-box; /* Inclui padding na largura total */
}

.prot i {
    display: inline-block;
    vertical-align: middle; /* Alinhamento mais centralizado para a maioria dos casos */
    margin-right: 8px; /* Espaço entre o ícone e o texto dentro do botão */
    font-size: auto; /* Ajusta o tamanho do ícone relativo ao texto */
}

.bxl-paypal {
    font-size: 30px;
    margin-right: 10px;
}

.bx-search-alt-2 {
    font-size: 30px;
    margin-right: 10px;
}

.bx-power-off {
    font-size: 30px;
    margin-right: 10px;
}

.bx-receipt  {
    font-size: 30px;
    margin-right: 10px;
  }

.bxs-hand {
    font-size: 30px;
    margin-right: 10px;
}

  .container-4 input::placeholder{
    color: rgba(255, 255, 255, 0.865);
  }

 .container-4 button.icon{
    border: none;
    background: #535353;
    cursor: pointer;
    height: 50px;
    width: 50px;
    color: #ffffff;
    opacity: 0;
    font-size: 25px;
    -webkit-transition: all .55s ease;
    -moz-transition: all .55s ease;
    -ms-transition: all .55s ease;
    -o-transition: all .55s ease;
    transition: all .55s ease;
  }

  .container-4:hover button.icon, .container-4:active button.icon, .container-4:focus button.icon{
    outline: none;
    opacity: 1;
    margin-left: -50px;
  }

  .container-4:hover button.icon:hover{
    background: #ffffffa2;
  }

  .redes {
    bottom: 0;
    position: fixed;
    display: flex;  
    background-color: #373a3c;;
    left: 120px;
    border-radius: 5px 5px 0 0;
}


  .redes li{
    list-style-type: none;
    font-size: 50px;
    display: flex;
    cursor: pointer;
    justify-content: center;
    align-items: center;
  }

  .redes i {
    color: #ffffff;
    margin: 10px;
  }

  .redes button {
    appearance: none;
    border: none;
  }

  :root {
    --red: #ec6500;
    --darkred: #c00424;
    --platinum: #e5e5e5;
    --black: #2b2d42;
    --white: #fff;
    --thumb: #edf2f4;
  }

  .container {
    width: auto;
  }
  
  .cards {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
    padding: 25px 10px;
    height: auto;
    width: auto;
    list-style: none;
    overflow-x: scroll;
    scroll-snap-type: x mandatory;
}
  
  .card {
    display: flex;
    flex-direction: column;
    padding: 20px;
    width: auto;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 15%);
    scroll-snap-align: start;
    transition: all 0.2s;
  }
  
  .card:not(:last-child) {
    margin-right: 10px;
  }
  
  .card:hover {
    color: var(--white);
    background: var(--red);
  }
  
  .card .card-title {
    font-size: 18px;
  }
  
  .card .card-content {
    margin: 20px 0;
    width: 100%;
    height: auto;
    font-size: 12px;
    font-weight: 400;
  }
  
  .card .card-link-wrapper {
    margin-top: auto;
  }
  
  .card .card-link {
    display: inline-block;
    text-decoration: none;
    color: white;
    background: var(--red);
    padding: 6px 12px;
    font-size: 12px;
    border-radius: 8px;
    transition: background 0.2s;
  }
  
  .card:hover .card-link {
    background: var(--darkred);
  }
  
  .cards::-webkit-scrollbar {
    height: 0px; 
  }
  
  .cards::-webkit-scrollbar-thumb,
  .cards::-webkit-scrollbar-track {
    border-radius: 92px;
  }
  
  .cards::-webkit-scrollbar-thumb {
    background: var(--darkred);
  }
  
  .cards::-webkit-scrollbar-track {
    background: var(--thumb);
  }

.atalho {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

  
.PF {
    width: 150px;
    height: auto;
    background-color: #ec6500;
    padding: 25px;
    border-radius: 10px;
    margin: 3px;
}

.PF p {
    color: white;
    font-weight: 500;
    font-size: 17px;
    font-family: "Quenda-Medium";
}

.PF .bx-cog {
    font-size: 30px;
    color: white;
}

.PF2 {
    width: 150px;
    height: auto;
    background-color: #373a3c;
    padding: 25px;
    border-radius: 10px;
    margin: 3px;
}

.PF2 p {
    color: white;
    font-weight: 500;
    font-size: 17px;
    font-family: "Quenda-Medium";
}

.PF2 .bx-ghost {
    font-size: 30px;
    color: white;
}

.PF3 {
    width: 150px;
    height: auto;
    background-color: #723172;
    padding: 25px;
    border-radius: 10px;
    margin: 3px;
}

.PF3 p {
    color: white;
    font-weight: 500;
    font-size: 17px;
    font-family: "Quenda-Medium";
}

.PF3 .bxl-upwork {
    font-size: 30px;
    color: white;
}



.PF4 {
    width: 150px;
    height: auto;
    background-color: #c62828;
    padding: 25px;
    border-radius: 10px;
    margin: 3px;
}

.PF4 p {
    color: white;
    font-weight: 500;
    font-size: 17px;
    font-family: "Quenda-Medium";
}

.PF4 .bx-error {
    font-size: 30px;
    color: white;
}
  
  



.PF5 {
    width: 150px;
    height: auto;
    background-color: #008f0e;
    padding: 25px;
    border-radius: 10px;
    margin: 3px;
}

.PF5 p {
    color: white;
    font-weight: 500;
    font-size: 17px;
    font-family: "Quenda-Medium";
}

.PF5 .bx-money-withdraw {
    font-size: 30px;
    color: white;
}



.PF6 {
    width: 150px;
    height: auto;
    background-color: #0c3cb4;
    padding: 25px;
    border-radius: 10px;
    margin: 3px;
}

.PF6 p {
    color: white;
    font-weight: 500;
    font-size: 17px;
    font-family: "Quenda-Medium";
}

.PF6 .bx-donate-heart {
    font-size: 30px;
    color: white;
}
  

.PF7 {
    width: 150px;
    height: auto;
    background-color: #b40c84;
    padding: 25px;
    border-radius: 10px;
    margin: 3px;
}

.PF7 p {
    color: white;
    font-weight: 500;
    font-size: 17px;
    font-family: "Quenda-Medium";
}

.PF7 .bx-dialpad-alt {
    font-size: 30px;
    color: white;
}

.PF8 {
    width: 150px;
    height: auto;
    background-color: #660aa3;
    padding: 25px;
    border-radius: 10px;
    margin: 3px;
}

.PF8 p {
    color: white;
    font-weight: 500;
    font-size: 17px;
    font-family: "Quenda-Medium";
}

.PF8 .bx-plug {
    font-size: 30px;
    color: white;
}

.PF9 {
    width: 150px;
    height: auto;
    background-color: #335d47;
    padding: 25px;
    border-radius: 10px;
    margin: 3px;
}

.PF9 p {
    color: white;
    font-weight: 500;
    font-size: 17px;
    font-family: "Quenda-Medium";
}

.PF9 .bx-git-pull-request {
    font-size: 30px;
    color: white;
}


  
  
  

  




  


