*{
    margin: 0;
    box-sizing: border-box;
    background-color: #000b20;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    
}

body{
    height: 93vh;
    display: flex;
    justify-content: center;
    align-items: center;
}
.containerInicio{
    max-width: 500px;
    display: flex;
    padding: 40px;
    align-items: center;
    justify-content: center;
}
.container{
    max-width: 500px;
    display: none;
    flex-direction: column;
    padding: 20px;
    align-items: center;
}
.containerVideo{
    max-width: 500px;
    display: none;
    align-items: center;
    justify-content: center;
    position: relative;
}
#video {
    width: 100vw;
    height: 100%;
    object-fit: cover;
}


.headercall, .footer-container {
    width: 100%;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    background-color: #000b2000;
}

.headercall {
    background-color: #000b20a3;
    margin-bottom: auto; 
    color: white; 
    padding: 25px 50px;
    font-size: 22px;
    display: block;
    top: 0px;
}

.footer-container {
    justify-content: space-evenly; 
    margin-top: auto; 
    bottom: 40px;
}

.footercall {
    display: flex;
    justify-content: space-evenly; 
    width: 100%;
    background-color: transparent;
    animation: movefooter .8s;
}

@keyframes movefooter {
    0% {
        transform: translateY(50px);
        opacity: 0;
    }
    100% {
        transform: translateY(0px);
        opacity: 1;
    }
}

#webcamCanvas {
    position: absolute;
    bottom: 90px;
    right: 20px;
    width: 115px;
    height: 165px;
    border: 2px solid white;
    border-radius: 3px;
    animation: movecanvaL .8s ;
}

@keyframes movecanvaL {
    0% {
        transform: translateX(100px);
        opacity: 0;
    }
    100% {
        transform: translateX(0px);
        opacity: 1;
    }
}
.containerFinal{
    max-width: 600px;
    display: none;
    align-items: center;
    justify-content: center;
}

.fotoperfil{
    width: 250px;
    height: 250px;
    border-radius: 50%;
    border: 3px solid #fff;
    object-fit: cover;
    object-position: center;
}
.pulsar{
    position: relative;
    width: 250px;
    height: 250px;
    background-color: #fff;
    display: flex;
    border-radius: 50%;
}
.pulsar:before, .pulsar::after {
    content: '';
    display: block;
    position: absolute;
    left: -30px;
    right: -30px;
    top: -30px;
    bottom: -30px;
    border-radius: 50%;
    border: 2px solid #fff;
    animation: pulsar 1.5s linear infinite;
    opacity: 0;
}
.pulsar::after{
    animation-delay: .5s;
}
@keyframes pulsar {
    0%{
        transform: scale(0.8);
        opacity: 0;
    }
    50%{
        opacity: 1;
    }
    100%{
        transform: scale(1.0);
        opacity: 0;
    }
    
}
.contato{
    color: white; 
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    
}
.chamando{
    animation: opacidade 1.5s infinite;
}
@keyframes opacidade {
    0% {
        opacity: 0.4;
    }
    50% {
        opacity: 1;

    }
    100% {
        opacity: 0.4;
    }
}
#arrowR{
    animation: moveR 2s infinite;
}
@keyframes moveR {
    0% {
        transform: translateX(0px);
        opacity: 1;
    }
    100% {
        transform: translateX(24px);
        opacity: 0;
    }
}
#arrowL{
    animation: moveL 2s infinite;
}
@keyframes moveL {
    0% {
        transform: translateX(0px);
        opacity: 1;
    }
    100% {
        transform: translateX(-24px);
        opacity: 0;
    }
}

.buttons{
    display: flex;
    width: 100%;
    justify-content: space-around;
    margin-top: 25px;
    align-items: center;
}
#buttonsanimation{
    animation: movefooterDown .8s;
}

@keyframes movefooterDown {
    0% {
        transform: translateY(0px);
        opacity: 1;
    }
    100% {
        transform: translateY(50px);
        opacity: 0;
    }
}
.button{
    width: 70px;
    height: auto;
    
}
#aceitarchamada {
    animation: animar 2s infinite;
}

#aceitarchamada:hover {
    transform: scale(1.2);
    transition: transform 0.5s ease-in-out;
}
@keyframes animar {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}

.containerfooter {
    position: relative;
    width: fit-content;
    margin: auto; 
}
.image-container {
    width: 100%;
    height: 90vh;
    overflow: hidden;
    position: relative;
}

#fotoFinal {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.headermedia {
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 10;
    background-color: #000b20a3;
    padding: 30px 50px;
    color: #fff;
    font-size: 22px;
}

/* .headermedia,  */
.footer-container {
    width: 100%;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0px; 
    display: flex;
    justify-content: center; /* Opcional: centraliza o conteúdo dentro do contêiner */
}

.footermedia {
    width: 100%;
    display: flex;
    gap: 10px;
    background-color: #000b20a3;
    justify-content: space-evenly;
    padding: 20px 0px;
    animation: movefooterUp .8s;
}

@keyframes movefooterUp {
    0% {
        transform: translateY(50px);
        opacity: 0;
    }
    100% {
        transform: translateY(0px);
        opacity: 1;
    }
}
/* .headermedia {
    top: 0px; 
    padding: 30px 50px;
    color: #fff;
    font-size: 22px;
} */

    /* .footermedia {
        bottom: 0px; 
        justify-content: space-evenly;
        padding: 20px 0px;
    } */
.footermedia a {
    background: none; 
}
.redesocial{
    width: 45px;
    height: 45px;
    background-color: transparent;
    cursor: pointer;
}