@import url("https://fonts.cdnfonts.com/css/museo");
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&family=Roboto:wght@400;500;700&display=swap");

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	/*font-family: "Museo", sans-serif, "Roboto";*/
}

body {
	font-family: 'DM Sans', sans-serif;
	 font-weight: 400;
	background: #fdfdfd;
	line-height: 1.6;
	display: flex;
	flex-direction: column;
	min-height: 100vh !important;
}
/*body {
	
	display: flex;
	flex-direction: column;
	min-height: 100vh !important;
}*/
.content {
	flex: 1 !important;
}
.tm-c {
	height: 60vh !important;
}
.form-label {
	margin-bottom: 0.1rem !important;
}
.menu h3 {
	font-weight: 700;
	color: #4d4d4d;
	font-size: 1.2rem;
}
.menu p {
	font-weight: 300;
	color: #717171;
	font-size: 0.8rem;
}
/*.bg {
	min-height: 100%;
	background: linear-gradient(
		rgba(255, 252, 252, 0.877),
		rgba(255, 255, 255, 0.829)
	),
	url(/assets/Aerea-Crato-redimensionada.jpg);
	background-size: cover;
}*/

label {
	font-family: "Roboto";
	font-size: 0.9rem;
}

.btncad {
	background-color: #4077bb;
	color: white;
	border: none;
	padding: 0.4rem;
	border-radius: 10px;
}

.btn {
	transition: all 0.9s ease-in-out;
}

.btn:hover {
	transform: scale(1.1);
}

.btn.btn-primary {
	border-radius: 10px;
	margin: 3px;
	color: white;
}

.header {
	background-color: #4077bb;
	align-items: center;
	justify-content: space-between;
	opacity: 2;
}

.card-title {
	font-size: 1.2rem;
	font-weight: 700;
}

.card a {
	text-decoration: none;
	color: #4077bb;
	font-style: normal;
	font-family: "Roboto";
}
.card span,
p,
h6 {
	font-family: "Roboto", sans-serif !important;
}
.border.border-primary {
	border-bottom: 6px solid #4077bb !important;
}

.border.border-primary-input {
	border: 1px solid #4077bb !important;
}

.footer {
	background-color: #4077bb;
	color: white;
}

.footer h4 {
	font-size: 0.8rem;
}

.brand {
	text-decoration: none;
	outline: none;
	font-weight: 900;
	color: white;
	font-size: 1.2rem;
}

.clock {
	width: 80px;
	height: 50px;
	padding: 10px;
	color: white;
	background-color: #4077bb;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	font-size: 14px;
}
.links {
	font-size: 0.9rem;
}
.links:hover {
	color: #092e47;
}

.imgc {
	margin-right: 5rem;
}

p {
	font-size: 12px;
	color: rgba(0, 0, 0, 0.58);
}

.modalc {
	justify-content: center;
	align-items: center;
}
input::placeholder {
	font-family: "Roboto";
}

button[type="submit"] {
	background-color: #4077bb;
	color: white;
	border: none;
	padding: 0.6rem 1.2rem;
	border-radius: 10px;
	font-size: 1rem;
	cursor: pointer;
	transition: all 0.3s ease;
}

button[type="submit"]:hover {
	background-color: #305b8d;
	transform: scale(1.05);
}

button[type="submit"]:active {
	transform: scale(0.95);
	background-color: #2a4e76;
}
li {
	list-style-type: decimal;
}
.form-end p {
	font-size: 1.2rem;
	color: #092e47;
}
.form-end span {
	font-weight: 500;
}
#video {
	width: 320px;
	height: 270px;
	border: 1px solid black;
}
#canvas {
	display: none;
}
#snapshot {
	margin-top: 10px;
}
@media (max-width: 785px) {
	.card {
		width: 100%;
		flex-direction: column !important;
	}
	img {
		transform: scale(0.94);
	}
}

        /* Versão compacta dos floating labels */
        .form-floating-custom {
            position: relative;
            margin-bottom: 1rem;
        }
        
        /* Altura reduzida igual aos inputs normais */
        .form-floating-custom > .form-control,
        .form-floating-custom > .form-select {
            height: auto;
            min-height: calc(2.1rem + 2px);
            padding: 0.5rem 0.75rem;
            line-height: 1.5;
        }
        
        .form-floating-custom > label {
            position: absolute;
            top: 0.67rem;
            left: 0.75rem;
            padding: 0 0.25rem;
            font-size: 0.875rem;
            color: #6c757d;
            pointer-events: none;
            transform-origin: 0 0;
            transition: all 0.1s ease-in-out;
        }
        
        /* Estado ativo - label sobre a borda */
        .form-floating-custom > .form-control:focus ~ label,
        .form-floating-custom > .form-control:not(:placeholder-shown) ~ label,
        .form-floating-custom > .form-select ~ label {
            transform: scale(0.85) translateY(-1.4rem) translateX(0.15rem);
            color: #1266f1;
            background-color: white;
            padding: 0 0.35rem;
            z-index: 2;
        }
        
        /* Ajuste de padding quando ativo */
        .form-floating-custom > .form-control:focus,
        .form-floating-custom > .form-control:not(:placeholder-shown),
        .form-floating-custom > .form-select {
            padding-top: 0.6rem;
            padding-bottom: 0.4rem;
        }
        
        .form-floating-custom > .form-control:focus {
            border-color: #1266f1;
            box-shadow: 0 0 0 0.2rem rgba(18, 102, 241, 0.25);
        }
        
        .form-floating-custom > .form-control::placeholder {
            color: transparent;
        }