/* style.css */
body {
    font-family: 'Nunito Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    background-color: #f0f2f5;
    color: #333;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    margin: 0;
    -webkit-tap-highlight-color: transparent; /* Remove o highlight azul no toque em mobile */
}

.app-container {
    max-width: 500px;
    width: 100%;
    margin: 0 auto;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow-x: hidden;
}

.content-wrapper {
    padding: 20px;
    flex-grow: 1;
    overflow-y: auto;
    background-color: #f7f7f7;
    border-radius: 0px 40px 0px 0px;
}

.bg-paws-light {
    background-image: url('./assets/imgs/paw-print-background-light.png');
    background-repeat: repeat;
    background-size: 150px;
    background-position: center;
    padding-top: 50px;
    background-color: white;
}

.content-wrapper.page-forms {
    background-image: url(../imgs/bg2.png);
    background-size: cover;
    border-radius: 0;
    box-shadow: inset 0px 0px 0px 500px #00000070;
}

.logo-container {
    text-align: center;
    padding-top: 30px;
    padding-bottom: 0px;
}

.app-logo {
    max-width: 80px;
    height: auto;
    transition: transform 0.3s ease;
}
.app-logo:hover {
    transform: scale(1.05);
}

.app-logo-sm {
    max-width: 100px;
    height: auto;
}

.form-control {
    transition: border-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
    border: 1px solid #F4844B;
    font-size: 13px;
    padding: 14px;
}
.form-control:focus {
    border-color: #1D8F8D;
    box-shadow: 0 0 0 0.2rem rgba(29, 143, 141, 0.25);
}

.btn {
    transition: all 0.25s cubic-bezier(0.25, 0.8, 0.25, 1); /* Transição mais suave */
}
.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.12);
}
.btn:active {
    transform: translateY(0px);
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.btn-brand {
    background-color: #1D8F8D;
    border-color: #1D8F8D;
    color: white;
    font-weight: bold;
    padding: 10px 15px;
    font-size: 16px;
    margin-top: 18px;
}
.btn-brand:hover, .btn-brand:focus {
    background-color: #177a78;
    border-color: #177a78;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 12px rgba(29, 143, 141, 0.35);
}
.btn-brand:active {
    transform: translateY(0px);
    box-shadow: 0 2px 6px rgba(29, 143, 141, 0.25);
}

.link-brand {
    color: #1D8F8D;
    font-weight: bold;
    text-decoration: none;
    transition: color 0.2s ease;
}
.link-brand:hover {
    color: #177a78;
    text-decoration: underline;
}

.form-label-group {
    margin-bottom: 1rem;
}

.custom-file-upload {
    display: inline-block;
    padding: 13px;
    cursor: pointer;
    border-radius: 0.25rem;
    background-color: white;
    text-align: left;
    width: 100%;
    color: #6c757d;
    transition: all 0.2s ease-in-out;
    border: 1px solid #F4844B;
    font-size: 14px;
}
.custom-file-upload:hover {
    background-color: #f8f9fa;
    border-color: #adb5bd;
}
.custom-file-upload i {
    display: block;
    font-size: 16px;
    margin-bottom: -2px;
    width: 22px;
    float: left;
    position: relative;
    top: -1px;
    color: #787878db;
}
.custom-file-upload input[type="file"] {
    display: none;
}


/* --- Componentes Específicos --- */

.app-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 23px;
    background-color: #fff;
    position: sticky; /* Mantém o header fixo no topo ao rolar */
    z-index: 1020; /* Acima de outros elementos */
    background-image: url(../imgs/patas.png?v=1);
    background-repeat: no-repeat;
    background-size: 90px;
    padding-top: 35px;
}
.user-info .user-name {
    font-weight: bold;
    color: #1D8F8D;
    margin-bottom: 0;
    font-size: 14px;
}
.user-info .user-type {
    font-size: 12px;
    color: #b2b2b2;
    margin-bottom: 0;
    letter-spacing: 1px;
}
.user-info .user-type i {
    position: relative;
    top: 0.5px;
}
.user-avatar-sm {
    width: 40px;
    height: 40px;
    object-fit: cover;
    transition: transform 0.2s ease;
}
.user-avatar-sm:hover {
    transform: scale(1.1);
}

.bottom-nav {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 10px 0;
    border-top: 1px solid #eee;
    background-color: #fff;
    bottom: 12px;
    width: 92%;
    max-width: 420px;
    left: 4%;
    z-index: 1000;
    box-shadow: 0 4px 12px rgb(0 0 0 / 8%);
    position: fixed;
    border-radius: 20px;
    font-weight: 600;
    background-image: url(../imgs/pata3.png?v=1);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: right;
    border: 0 !important;
}
.bottom-nav .nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #0000004d;
    font-size: 11px;
    flex: 1;
    padding: 5px 0;
    transition: color 0.2s ease-in-out, transform 0.2s ease-in-out;
}
.bottom-nav .nav-item i {
    font-size: 16px;
    margin-bottom: -2px;
    /* text-shadow: 0px 0px 2px black; */
    color: #05817b;
}
.bottom-nav .nav-item:hover {
    color: #1D8F8D;
    transform: translateY(-3px) scale(1.05);
}
.bottom-nav .nav-item.active {
    color: #1D8F8D;
    transform: scale(1.1);
}
.bottom-nav .nav-item.active i {
    animation: bounceIcon 0.5s ease;
}

@keyframes bounceIcon {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

.pet-card {
    display: flex;
    align-items: center;
    padding: 15px;
    margin-bottom: 15px;
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: transform 0.25s ease-in-out, box-shadow 0.25s ease-in-out, background-color 0.1s ease;
    cursor: pointer;
}
.pet-card:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.pet-card:active {
    background-color: #f8f9fa; /* Efeito de toque */
    transform: translateY(-1px) scale(1.01);
}
.pet-card-avatar {
    width: 60px;
    height: 60px;
    object-fit: cover;
    margin-right: 15px;
}
.pet-card-info .pet-name {
    font-weight: bold;
    margin-bottom: 2px;
}
.pet-card-info .pet-name i {
    font-size: 0.9em;
    margin-left: 5px;
}
.pet-card-info .pet-alert {
    font-size: 0.8rem;
    color: #6c757d;
}
.pet-card-info .pet-alert i {
    margin-right: 5px;
    color: #ffc107;
}

.fab-add {
    position: fixed;
    bottom: 90px;
    right: 16px !important; /* Ajustado para ficar mais para dentro da tela */
    background-color: #ffffff;
    color: #05817b;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    z-index: 1010;
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}
.fab-add:hover {
    transform: scale(1.1) rotate(15deg);
    box-shadow: 0 6px 16px rgba(29, 143, 141, 0.4);
    color: white;
}
.fab-add:active {
    transform: scale(1.0) rotate(0deg);
}
.add-icon-placeholder {
    border: 2px dashed #ccc;
    border-radius: 12px;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: #ccc;
    margin: 20px auto;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}
.add-icon-placeholder:hover {
    color: #1D8F8D;
    border-color: #1D8F8D;
    transform: scale(1.1);
}

.onboarding-slide {
    text-align: center;
    padding: 0px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex-grow: 1; /* Para ocupar espaço vertical */
}
.onboarding-image {
    max-width: 100%;
    height: auto;
    margin: 0px auto 10px;
    opacity: 0;
    transform: translateY(20px) scale(0.95);
    animation: popIn 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.2s forwards;
}
.onboarding-slide h3 {
    opacity: 0;
    transform: translateY(15px);
    animation: fadeInSlideUp 0.5s ease-out 0.5s forwards;
    font-size: 17px;
    margin-top: 0 !important;
}
.onboarding-slide p {
    opacity: 0;
    transform: translateY(10px);
    animation: fadeInSlideUp 0.5s ease-out 0.7s forwards;
    font-size: 13px;
}
@keyframes popIn {
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}
@keyframes fadeInSlideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.onboarding-dots {
    margin-top: 10px;
    margin-bottom: 10px;
}
.onboarding-dots .dot {
    height: 8px;
    width: 8px;
    margin: 0 5px;
    background-color: #ececec;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.3s ease, transform 0.3s ease;
}
.onboarding-dots .dot.active {
    background-color: #F4844B;
    transform: scale(1.3);
}

.pet-profile-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding: 15px;
    background-color: #ffffff;
    border-radius: 8px;
    transition: box-shadow 0.2s ease;
}
.pet-profile-header:hover {
    box-shadow: 0 3px 10px rgba(0,0,0,0.07);
}
.pet-profile-avatar {
    width: 70px;
    height: 70px;
    object-fit: cover;
    margin-right: 15px;
}
.pet-profile-info .pet-name {
    font-size: 15px;
    font-weight: bold;
    margin-bottom: 2px;
}
.pet-profile-info .pet-name i {
    font-size: 0.8em;
    vertical-align: middle;
}
.pet-profile-info .pet-details {
    font-size: 13px;
    color: #6c757d;
}

.timeline-item {
    position: relative;
    padding-left: 30px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-left: 2px dotted #ccc;
    transition: border-left-color 0.3s ease;
}
.timeline-item:hover {
    border-left-color: #1D8F8D; /* Destaque no hover */
}
.timeline-item:last-child {
    /* border-left: none; */
    padding-bottom: 0;
}
.timeline-dot {
    position: absolute;
    left: -7px;
    /* top: 0; */
    width: 12px;
    height: 12px;
    background-color: #6c757d;
    border-radius: 50%;
    border: 2px solid #fff;
    transition: background-color 0.3s ease, transform 0.3s ease;
    margin-top: 12px;
}
.timeline-item:hover .timeline-dot {
    background-color: #1D8F8D;
    transform: scale(1.2);
}
.timeline-content {
    font-size: 12px;
}
.timeline-content .date {
    font-size: 11px;
    color: #999;
    display: block;
    margin-top: 5px;
}

.prontuario-section h5 {
    font-weight: bold;
    color: #1D8F8D;
    margin-bottom: 10px;
    font-size: 10px;
    padding-bottom: 5px;
    display: inline-block;
    margin-left: 8px;
}
.prontuario-item {
    color: #767676;
    padding: 4px 16px;
    border-radius: 8px;
    margin-bottom: 10px;
    font-size: 13px;
    min-height: 48px;
    transition: background-color 0.2s ease, transform 0.2s ease;
}
.prontuario-item:hover {
    background-color: #e9ecef;
    transform: translateX(3px);
}

.notification-item, .treatment-item {
    display: flex;
    align-items: center;
    padding: 15px;
    background-color: white;
    border-radius: 8px;
    margin-bottom: 10px;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.notification-item:hover, .treatment-item:hover {
    box-shadow: 0 3px 8px rgba(0,0,0,0.1);
    transform: translateY(-2px);
}
.notification-item i, .treatment-item i {
    font-size: 1.5rem;
    color: #ffc107;
    margin-right: 15px;
    transition: transform 0.3s ease;
}
.notification-item:hover i, .treatment-item:hover i {
    transform: scale(1.1) rotate(-5deg);
}
.treatment-item .time {
    margin-left: auto;
    text-align: right;
    font-weight: bold;
    color: #333;
}
.treatment-item .time span {
    display: block;
    font-size: 0.8rem;
    font-weight: normal;
    color: #6c757d;
}

h4.fw-bold {
    font-size: 17px;
}

.video-call-container {
    padding: 0;
    background-size: cover;
    border-radius: 0;
}
.main-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: fixed;
    top: 0;
    left: 0;
}
.pip-video {
    position: fixed;
    top: 30px;
    right: 26px;
    width: 100px; 
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
    border: 2px solid white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
    z-index: 9;
    animation: fadeInRightSmall 0.5s ease-out;
}

@keyframes fadeInRightSmall {
    from { opacity: 0; transform: translateX(20px); }
    to { opacity: 1; transform: translateX(0); }
}

.video-call-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 28px 20px;
    z-index: 10;
    /* background: linear-gradient(to bottom, rgba(0,0,0,0.5), rgba(0,0,0,0)); */
}
.video-call-header .app-logo-sm {
    /* filter: brightness() invert(0); */
    width: 50px;
    opacity: 0.5;
}
.video-call-header i {
    font-size: 22px;
    color: #dadada;
    transition: transform 0.2s ease;
    background-color: #6868684a;
    height: 34px;
    width: 34px;
    text-align: center;
    border-radius: 50%;
    line-height: 35px;
    padding: 5px 9px;
}
.video-call-header .user-icon:hover {
    transform: scale(1.2);
}

.video-text-overlay {
    position: fixed;
    bottom: 56px;
    left: 0;
    right: 0;
    padding: 18px;
    color: white;
    font-size: 0.9rem;
    z-index: 10;
    opacity: 0;
    animation: fadeInUpText 0.6s ease-out 0.5s forwards;
    max-height: 240px;
    /* padding-top: 82px; */
    overflow: auto;
    /* padding-bottom: 60px; */
    /* background-color: #00000057; */
    box-shadow: inset 0px -150px 40px -50px #0000008a;
    height: auto;
    overflow: overlay;
}
@keyframes fadeInUpText {
    to { opacity: 1; }
}


/* Efeitos de fade e entrada */
.fade-in-item { /* Usar esta classe para elementos individuais que devem aparecer */
    opacity: 0;
    transform: translateY(15px);
    animation: fadeInAnimation 0.5s ease-out forwards;
}
@keyframes fadeInAnimation {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Utilities */
.text-sm { font-size: 0.85rem; }
.text-muted-light {color: #aaa !important;font-size: 12px !important;} /* Mais claro */
.fw-bold { font-weight: bold !important; }

.form-check-input:checked {
    background-color: #1D8F8D;
    border-color: #1D8F8D;
}
select.form-control {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 16px 12px;
}

.page-forms>.logo-container {
    padding-top: 0px;
    padding-bottom: 30px;
}

.page-forms>h2 {
    font-size: 18px;
    margin: 0;
}

.page-forms>p {
    font-size: 14px;
    margin-top: -7px;
}

.form-label-group {
    margin-bottom: 2px;
}

.page-conta {
    background-color: #F7F7F7;
    border-radius: 44px 44px 0 0;
}

header.app-header>a>img {
    width: 58px;
}

.page-conta>h3 {
    font-size: 14px;
}

.treatment-item {
    font-size: 13px;
    background-color: white;
}

.content-wrapper>h4 {
    font-size: 13px;
}

.prontuario-section {
    background-color: white;
    height: auto;
    border-radius: 8px;
    padding-bottom: 2px;
    margin-bottom: 12px;
}

.timeline-item {
    border-left: 1px solid #ccc;
}

.btn-fixed-botton {
    position: fixed;
    left: 4%;
    bottom: 100px;
    width: 92% !important;
}

.content-wrapper.page-add-pets h3 {
    font-size: 13px;
    font-weight: 800;
    margin-top: 22px;
    margin-bottom: 14px;
}

select {
    border: 1px solid #F4844B !important;
    font-size: 13px !important;
    padding: 13px !important;
}

.content-wrapper.page-login input, .content-wrapper.page-cadastro input {
    margin-bottom: 16px;
}

.video-text-overlay>.mb-1 {
    margin-bottom: 20px !important;
}

a#ass {
    position: fixed;
    top: 40vh;
    left: 70%;
    width: 20px;
    height: 20px;
    background-color: #F4844B;
    border-radius: 200px;
    box-shadow: 0px 0px 0px 15px #f4844b4f;
    animation: flutuante 8s infinite;
    z-index: 99;
}

@keyframes flutuante {
    0%   {margin-top: 2vh;margin-left: 0vh;box-shadow: 0px 0px 0px 0px #f4844b4f;}
    20%   {margin-top: 4vh;margin-left: -4vh;box-shadow: 0px 0px 0px 15px #f4844b4f;}
    40%   {margin-top: 2vh;margin-left: -6vh;box-shadow: 0px 0px 0px 0px #f4844b4f;}
    60%   {margin-top: 8vh;margin-left: 0vh;box-shadow: 0px 0px 0px 15px #f4844b4f;}
    80%   {margin-top: 4vh;margin-left: 2vh;box-shadow: 0px 0px 0px 0px #f4844b4f;}
    100%   {margin-top: 2vh;margin-left: 0vh;box-shadow: 0px 0px 0px 15px #f4844b4f;}
}













/* style cartoon */


main .cartoon {
    position: fixed;
    left: 48%;
    top: 0;
    width: 100%;
    height: 100%;
    border-radius: 0;
    padding-top: 14vh;
    padding-left: 0;
}
main .cartoon>div {
    zoom: 75%;
    margin-left: -44% !important;
}
.container_cartoon {
    width: 600px;
    height: 920px;
    margin: auto;
    /* overflow: hidden;
    */
    top: 10px;
    position: relative;
    display: block;
    z-index: 1;
    padding-top: 60px;
    animation: flutuante 4s infinite;
    zoom: 0.9;
    left: -88px;
}
.face_cartoon {
    width: 388px;
    height: 460px;
    margin: auto;
    position: absolute;
    background-color: #fca !important;
   /* border-radius: 100% / 120% 120% 70% 70%;
    */
    box-shadow: inset 10px 0 10px 0px #00000012;
    z-index: 3;
    margin-left: 100px;
    border-radius: 200px 200px 100px 100px;
}
.cabelo_cartoon {
    z-index: 4;
    position: relative;
}
.tipocabelo1 .cabelo_cartoon>span:nth-child(1) {
    background-color: transparent;
    width: 362px;
    position: absolute;
    z-index: 4;
    height: 290px;
    border-radius: 40px;
    margin-top: -16px;
    transform: rotate(352deg);
    border-radius: 232px 140px 22px 12px;
    box-shadow: inset 0px 80px 0px 0px #00000040, inset 0px 80px 0px 0px;
    margin-left: 97px;
}
.tipocabelo1 .cabelo_cartoon>span:nth-child(2) {
    background-color: transparent;
    width: 320px;
    position: absolute;
    z-index: 4;
    margin-left: 100px;
    height: 260px;
    border-radius: 40px;
    margin-top: -8px;
    transform: rotate(370deg);
    border-radius: 255px 140px 22px 12px;
    box-shadow: inset 0px 80px 0px 0px;
    animation: cabelo_franja_masculino 4s infinite;
}
.tipocabelo1 .cabelo_cartoon>span:nth-child(3) {
    background-color: transparent;
    width: 383px;
    position: absolute;
    z-index: 4;
    height: 340px;
    border-radius: 40px;
    transform: rotate(7deg);
    border-radius: 232px 140px 22px 12px;
    box-shadow: inset 0px 40px 0px 0px;
    content: '';
    margin-top: 22px;
    margin-left: 100px;
}
.sombrancelhas_cartoon.sombrancelha_esquerda {
    border-top: 14px solid #050505de;
    border-radius: 38px 6px 0px 0px;
    margin-left: 148px;
    transform: rotate(5deg);
}
.sombrancelhas_cartoon {
    z-index: 4;
    position: absolute;
    width: 120px;
    height: 40px;
    margin-top: 160px;
}
.sombrancelhas_cartoon.sombrancelha_direita {
    border-top: 14px solid #050505de;
    border-radius: 6px 38px 0px 0px;
    transform: rotate(355deg);
    margin-left: 324px;
}
.orelhas_cartoon.orelha_esquerda {
    border-radius: 0px 200px;
    transform: rotate(350deg);
    left: 76px;
    box-shadow: inset 1px 10px 0px 2px #00000012;
}
.orelhas_cartoon {
    width: 30px;
    height: 120px;
    background: #ffccaa;
    top: 240px;
    position: absolute;
    z-index: 3;
}
.orelhas_cartoon.orelha_direita {
   /* border-radius: 70% 0% 100% 0%;
    */
    transform: rotate(10deg);
    right: 90px;
    box-shadow: inset -2px 10px 0px 2px #00000012;
    border-radius: 200px 0px;
}
.olho_esquerdo {
    margin-left: 137px;
}
.olhos_cartoon {
    width: 140px;
    height: 150px;
    background-color: white;
    float: left;
    border-radius: 100px;
    margin-top: 60px;
    overflow: hidden;
   /* box-shadow: inset 0px 30px 0px 0px #feccaa, inset 0px 30px 0px 0px #464646, 10px 10px 22px 2px #00000026;
    */
   /* animation: piscando 5s infinite;
    */
    position: relative;
    top: 100px;
    border-radius: 100% / 120% 120% 50% 50%;
   /* box-shadow: 12px -8px 22px 0px #00000017;
    */
    z-index: 3;
}
.olhos_cartoon:before {
    content: '';
   /* height: 110px !important;
    */
    position: absolute;
    width: 104%;
    background-color: transparent;
    border-radius: 600px;
    bottom: 0;
    left: -2%;
    box-shadow: 0px 0px 0px 200px #fca, inset 0px 10px 0px -5px #000;
    animation: piscando 5s infinite;
    z-index: 2;
}
.olhos_cartoon.olho_esquerdo> span {
    margin-left: 40px;
}
.olhos_cartoon> span {
    background-color: black;
    width: 90px;
    height: 90px;
    float: left;
    border-radius: 100px;
    margin-top: 56px;
    box-shadow: inset 10px 0px 20px 4px #00000080, inset 0px 0px 0px 15px #aa866f;
    animation: piscando_olho 4s infinite;
    position: relative;
    z-index: 0;
}
.olhos_cartoon> span>span {
    background-color: white;
    width: 18px;
    height: 18px;
    float: left;
    border-radius: 100px;
    margin: 16px;
}
.olho_direito {
    margin-left: 40px;
}
.olhos_cartoon.olho_direito> span {
    margin-left: 10px;
}
.nariz_cartoon {
    width: 40px;
    height: 40px;
    background-color: #fca;
    border-radius: 40px;
    margin: auto;
    margin-top: 310px;
    box-shadow: inset 0px -8px 12px -3px #00000038;
   /* opacity: 0.4;
    */
    position: relative;
    z-index: 4;
}
.nariz_cartoon:after {
    content: '';
    background-color: #56151542;
    position: absolute;
    width: 7px;
    height: 7px;
    border-radius: 10px;
    margin: -6px;
}
.boca_cartoon {
    background-color: #000000;
    height: 0px;
    width: 100px;
    margin: auto;
    margin-top: 30px;
    position: absolute;
    left: 42%;
   /* border-radius: 20px 20px 160px 160px;
    */
   /* border-bottom: 8px solid #000000a3;
    */
   /* box-shadow: inset 1px 1px 1px 1px black, 1px -6px 0px 4px #ff8e77, 1px -1px 0px 2px #ac5a49, 0px 3px 0px 6px #FF8E77;
    */
    overflow: hidden;
    z-index: 4;
    border-radius: 20% 20% 100% 100%;
    box-shadow: 0px 0px 0px 5px #ff8e77, 0px 0px 0px 4px #603229;
}
.boca_cartoon:before {
    content: '';
    background-color: black;
    height: 2px;
    width: 100px;
    position: absolute;
}
.boca_cartoon>span:nth-child(1) {
    height: 14px;
    background-color: white;
    width: 200%;
    float: left;
    z-index: 0;
    position: absolute;
    top: -5px;
    box-shadow: inset 0px 5px 10px -6px #000000;
    border-radius: 4px;
}
.boca_cartoon>span:nth-child(2) {
    height: 5px;
    background-color: white;
    width: 200%;
    float: left;
    z-index: 0;
    position: absolute;
    bottom: 0;
}
.corpo_cartoon {
    position: relative;
    background-color: #ffccaa;
    width: 104px;
    height: 200px;
    float: left;
    border-radius: 180px 60px 120px 42px;
    margin-left: 40%;
    margin-top: 52px;
    box-shadow: inset 5px 0px 20px -8px black, inset 0px 0px 0px 0 #ffccaa;
    z-index: 2;
}
.roupa1 .corpo_cartoon {
    background-color: #54004a;
}
.corpo_cartoon:after {
    content: '';
    background-color: #ffccaa;
    position: absolute;
    top: 20px;
    width: 50px;
    height: 50px;
    border-radius: 90px;
    margin-left: 25%;
    box-shadow: 1px 1px 0px 2px #646464;
}
.roupa1 .bracos_cartoon, .roupa1 .pernas_cartoon {
    background-color: #54004a;
}
.braco_esquerda {
    left: 150px;
    transform: rotate(113deg);
    /* animation: braco_esquerda 4s infinite; */
    height: 170px !important;
    margin-top: 16px !important;
    z-index: 3 !important;
    width: 40px !important;
}
.bracos_cartoon {
    position: absolute;
    background-color: #ffccaa;
    width: 30px;
    height: 110px;
    float: left;
    border-radius: 200px;
    margin-top: 100px;
    z-index: 1;
    box-shadow: inset 0px -50px 0px 0px #ffccaa;
}
.bracos_cartoon>span {
    width: 48px;
    height: 48px;
    background-color: #ffccaa;
    float: left;
    margin-left: -10px;
    border-radius: 100px;
    margin-top: 90px;
    box-shadow: 0px 3px 20px -11px #000;
}
.braco_direita {
    right: 223px;
    transform: rotate(345deg);
    animation: braco_direito 4s infinite;
}
.roupa1 .bracos_cartoon, .roupa1 .pernas_cartoon {
    background-color: #54004a;
}
.perna_esquerda {
    left: 255px;
    transform: rotate(45deg);
    animation: perna_esquerda 4s infinite;
}
.pernas_cartoon {
    position: absolute;
    background-color: #ffccaa;
    width: 30px;
    height: 150px;
    float: left;
    border-radius: 200px;
    margin-top: 200px;
    z-index: 1;
    box-shadow: inset 0px -50px 0px 0px #ffccaa;
}
.pernas_cartoon>span {
    width: 48px;
    height: 48px;
    background-color: #000000;
    float: left;
    margin-left: -8px;
    border-radius: 100px;
    margin-top: 115px;
}
.perna_direita {
    right: 270px;
    transform: rotate(39deg);
    animation: perna_direita 4s infinite;
}
.roupa_cartoon>span {
    background-image: url(https://wibs.live/app/assets/imgs/logo.png);
    position: absolute;
    right: 264px;
    top: 536px;
    z-index: 99;
    width: 28px;
    height: 28px;
    background-size: 80px;
}

.cartoon {
    width: 100%;
    left: 0;
    position: fixed;
    top: 0;
    overflow: hidden;
    background-image: url(../imgs/bgcall.jpg);
    background-position: 120% 0%;
    background-size: cover;
    animation: flutuante_bgcall 8s infinite;
}

.braco_esquerda>span {
    margin-left: -18px;
    margin-top: 148px;
    width: 70px;
    height: 70px;
}




















.page-forms .logo-container {
    filter: brightness(0) invert(1);
}

.page-forms h2 {
    color: white !important;
}

.page-forms p>a {
    color: #F4844B !important;
}

.content-wrapper.page-forms .col {
    margin-bottom: -6px !important;
}

.content-wrapper.page-forms form {
    margin-top: 80px;
    padding: 4%;
}

.content-wrapper.page-forms input, .content-wrapper.page-forms .custom-file-upload {
    border: 0;
}

.page-forms p.text-center.text-muted-light.text-sm.mt-4 {
    max-width: 320px;
    margin: auto;
}

.page-forms p {
    color: #ffffffb3 !important;
}

.prontuario-item {font-weight: 600;color: black;font-size: 12px;border: 3px dotted #dddddd;margin: 3%;}

.prontuario-item>span {
    position: absolute;
    right: 16px;
    color: #3e8989;
    font-size: 11px;
}

.prontuario-item>i {
    font-weight: 100;
    position: absolute;
    left: 15px;
    margin-top: 18px;
    font-size: 10px;
    color: #8f8f8f;
}

.page-prontuario {
    padding-bottom: 100px;
}

video#explorerWebcam {
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: black;
    /* display: none !important; */
}

div#timer {
    /* text-shadow: 0px 0px 1px #ffffffa8; */
    color: #dadada;
    font-weight: 400;
    margin-left: 6px;
    float: inline-start;
}

#message-input {
    position: fixed;
    width: 100%;
    bottom: 0;
    background-color: #00000040;
    border: 0;
    left: 0;
    padding: 6px;
    padding-right: 64px;
    padding-left: 20px;
    border-top: 1px solid #14817B;
    color: white;
}

button#send-button {
    position: fixed;
    right: 0;
    border: 0;
    width: 60px;
    height: 54px;
    bottom: 0;
    background-color: #14817b1c;
    font-size: 25px;
    color: #14817B;
}

.btns-left-videochamada>button {border: 0;padding: 6px;margin: 8px 0;height: 36px;width: 36px;border-radius: 30px;background-color: #6868684a;color: #dadada;font-size: 18px;}

.btns-left-videochamada {
    width: 40px;
    position: fixed;
    right: 19px;
    top: 74px;
    z-index: 9;
}

canvas#explorerCanva {
    position: absolute;
    width: 100%;
    z-index: -2;
}

.message.user {
    background-color: #14817b !important;
    margin-left: 20%;
    width: 60% !important;
    margin-left: 40% !important;
    color: white !important;
}

div#chat-container>div {
    background-color: #d5d5d58c;
    margin: 10px 0px;
    padding: 4px 10px;
    border-radius: 8px 8px 0px 8px;
    width: 100%;
    color: black;
}

a#ass.inferior_esquerdo {
    top: 60vh;
    left: 20%;
}

a#ass.inferior_direito {
    top: 60vh;
    left: 80%;
}

a#ass.superior_direito {
    top: 25vh;
    left: 20%;
}

a#ass.superior_esquerdo {
    top: 25vh;
    left: 80%;
}

a#ass.nenhum_encontrado {
    top: 42vh;
    left: 45%;
}

.iniciar canvas#explorerCanva {display: none;}

.iniciar video#explorerWebcam {
    width: 190px;
    height: 300px;
    border-radius: 12px;
    border: 3px solid #14817b;
    left: 5%;
    top: 20vh;
}

.iniciar .video-call-header i {
    background-color: white;
}

.iniciar div#the_timer {
    display: none;
}

.iniciar .video-text-overlay {
    display: none;
}

.iniciar a.btn.btn-iniciar-call {
    position: fixed;
    background-color: #14817b;
    bottom: 10vh;
    left: 5%;
    width: 90%;
    font-size: 22px;
    color: white;
}

.inicar-call {
    display: none;
}

.iniciar .inicar-call {
    display: block;
}

.iniciar .btns-left-videochamada {
    right: 25%;
    top: 20vh;
}

.iniciar .btns-left-videochamada>button {
    background-color: #14817b;
    color: white;
}

.iniciar .video-call-header .app-logo-sm {
    filter: brightness() invert(2);
    opacity: 0.2;
}

.iniciar a#ass {
    display: none;
}

.btns-left-videochamada>button>span {
    display: none;
}

.iniciar .btns-left-videochamada>button>span {
    color: black;
    display: block;
    font-size: 11px;
    line-height: 12px;
    position: absolute;
    margin-top: -27px;
    margin-left: 42px;
    text-align: left;
    color: #00000063;
}

.on {
    opacity: 0.5;
}

.none {
    display: none;
}

.block {
    display: block;
}

div#the_timer {
    background-color: #6868683b;
    width: 200px;
    margin-left: 70px;
    padding: 8px 8px;
    border-radius: 30px;
    margin-right: 6px;
}

a#btn_timer {
    background-color: #14817b;
    padding: 3px 9px;
    margin-left: 14px;
    border-radius: 20px;
    font-size: 16px;
    color: #dadada;
    text-decoration: blink;
}

.videonone video {
    display: none !important;
}

.videonone {
    background-color: #3d7d4d00;
}

.videonone img.app-logo-sm {
    filter: invert(12);
}

.videonone div#timer {
    color: #000000;
}

.videonone i {
    color: #4f9d85;
    background-color: #ffffff00;
}

.videonone .video-text-overlay {
    box-shadow: none;
    height: 80vh !important;
    max-height: 80vh;
    padding: 6%;
    margin-right: 44px;
}

.videonone  div#the_timer {
    background-color: transparent;
}

.videonone .btns-left-videochamada>button {
    background-color: transparent;
}

.videonone textarea#message-input {
    background-color: white;
}

.timeline {
    padding-bottom: 100px;
}

a#btn-troca-pets {
    padding: 7px;
    margin-left: 14px;
    color: #00000054;
    font-size: 20px;
}







/* cartoon effects */

@keyframes piscando {
    0% { height: 110px; }
    50% { height: 100px; }
    55% { height: 0px; }
    60% { height: 110px; }
    100% { height: 110px; }
}

@keyframes piscando_olho {
    0% {left: 10px;}
    25% {left: 10px;}
    50% {left: -10px;}
    75% {left: -20px;}
    100% {left: 10px;}
}

@keyframes piscando_olho_pequeno {
    0%   {height: 100px;}
    50%   {height: 100px;top: 0;}
    55%   {height: 0px;top: 80px;}
    60%   {height: 100px;top: 0;}
    100%   {height: 100px;}
}

@keyframes falando {
    0%   {height: 0px; width: 40px;}
    10%   {height: 40px;width: 100px;}
    20%   {height: 20px;width: 60px;}
    30%   {height: 40px;width: 70px;}
    40%   {height: 20px;width: 20px;}
    50%   {height: 30px;width: 60px;}
    60%   {height: 40px;width: 40px;}
    70%   {height: 0px;width: 30px;}
    80%   {height: 20px;width: 50px;}
    90%   {height: 40px;width: 70px;}
    100%   {height: 0px;width: 20px;}
}

@keyframes chama {
    0%   {height: 0;width: 20px;}
    50%   {height: 40px;width: 40px;}
    100%   {height: 0px;width: 30px;}
}

@keyframes flutuante_bgcall {
    0%   {background-position: 120% 0%;}
    50%   {background-position: 118% 0%;}
    100%   {background-position: 120% 0%;}
}

@keyframes braco_esquerda {
    0% { transform: rotate(15deg); }
    50% { transform: rotate(30deg); }
    100% {transform: rotate(15deg); }
}

@keyframes braco_direito {
    0% { transform: rotate(345deg); }
    50% { transform: rotate(330deg); }
    100% {transform: rotate(345deg); }
}

@keyframes perna_esquerda {
    0% {transform: rotate(2deg);}
    50% {transform: rotate(8deg);}
    100% {transform: rotate(2deg);}
}

@keyframes perna_direita {
    0% {transform: rotate(358deg);}
    50% {transform: rotate(355deg);}
    100% {transform: rotate(358deg);}
}