/***** FONTES *****/
@font-face {
    font-family: "SourceSans3-Regular";
    src: URL("../fonts/SourceSans3-Regular.ttf");
}
@font-face {
    font-family: "SourceSans3-SemiBold";
    src: URL("../fonts/SourceSans3-SemiBold.ttf");
}
@font-face {
    font-family: "SourceSans3-Bold";
    src: URL("../fonts/SourceSans3-Bold.ttf");
}
@font-face {
    font-family: "SourceSans3-ExtraLight";
    src: URL("../fonts/SourceSans3-ExtraLight.ttf");
}
@font-face {
    font-family: "SourceSans3-Light";
    src: URL("../fonts/SourceSans3-Light.ttf");
}
@font-face {
    font-family: "SourceSans3-Medium";
    src: URL("../fonts/SourceSans3-Medium.ttf");
}
@font-face {
	font-family: 'Quicksand-Bold';
	src: URL("../fonts/Quicksand-Bold.ttf");
}

/***** GERAL *****/
body {
	display: flex;
	font-size: 14px;
	min-height: 100vh;
  	flex-direction: column;
	font-family: "SourceSans3-Regular";
	background-color: #EBDEB5 !important;
}
body > .main-content {
	flex-grow: 1;
}
header, footer {
	position: fixed;
	width: 100%;
}
header {
	top: 0;
	background-color: #384A36;
}
footer {
	bottom: 0;
	background-color: #384A36;
}
main {
	padding-top: 129px;
}
.content {
	padding: 20px;
}
.dataHora {
    top: 0;
    right: 0;
    position: absolute;
    width: max-content;
    background-color: #FFAC33;
    padding-top: 3.5rem !important;
    padding-bottom: 1.5rem !important;
    padding-left: 1.5rem !important;
    padding-right: 2.1rem !important;
    border-bottom-left-radius: 15px;
}
.data {
	color: #384A36;
    font-size: 30px;
    line-height: 30px;
    font-family: "SourceSans3-Light";
}
.hora {
    color: #384A36;
    font-size: 39px;
    line-height: 39px;
    font-family: "SourceSans3-Medium";
}
.video {
	width: 100%;
    object-fit: cover;
    height: 100vh;
    background-color: #000;
    max-height: calc(100vh - 504px);
}
.video-v {
	width: 100%;
	object-fit: cover;
	height: 50vh;
	background-color: #000;
	max-height: calc(50vh - 298px);
}
.aguarde {
	width: 100%;
	color: #fff;
    font-size: 73px;
    text-align: center;
    background-color: #8A2E36;
    font-family: "SourceSans3-Medium";
}
.chamada {
	width: 100%;
	color: #384A36;
    font-size: 65px;
    text-align: center;
}
.caixa {
    font-size: 65px;
    line-height: 65px;
    font-family: "SourceSans3-Bold";
}

.pulse {
	animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
  	box-shadow: 0 0 0 0 rgba(232, 76, 61, 0.7);
  }
  
  80% {
	box-shadow:  0 0 0 30px rgba(232, 76, 61, 0);
  }
}

/***** BOOTSTRAP *****/
.btn {
	font-size: 12px;
	text-transform: uppercase;
}
.fs-6 {
	font-size: 12px !important;
}
.fw-semibold {
	font-weight: normal !important;
	font-family: "SourceSans3-SemiBold";
}
.fw-light {
	font-weight: normal !important;
	font-family: "SourceSans3-Light";
}