body {
	font-family: "Open Sans", sans-serif;
	background-color: #fff;
	font-size: 18px;
}

body ::selection,
body ::selection {
	background: rgba(152, 168, 255, 0.2);
}

.top-bar {
	border-top: 1px solid white;
	background-color: #f5f3f0;
	padding: 5px 15px;
	font-size: 14px;
	height: 48px;
	font-weight: 600;
	border-bottom: 1px solid #ffd400;
}

.rastreamento a {
	color: #0669DE;
	padding: .5rem;
	text-decoration: none;
}

.rastreamento a:hover {
	text-decoration-color: #0669DE;
	text-decoration: underline;
	text-decoration-thickness: 2px;
	text-underline-offset: 15px;
}

.busca a {
	color: #FF6700;
	padding: .5rem;
	text-decoration: none;
}

.busca a:hover {
	text-decoration-color: #FF6700;
	text-decoration: underline;
	text-decoration-thickness: 2px;
	text-underline-offset: 15px;
}

.objetos a {
	color: #1E4C9A;
	padding: .5rem;
	text-decoration: none;
}

.objetos a:hover {
	text-decoration-color: #1E4C9A;
	text-decoration: underline;
	text-decoration-thickness: 2px;
	text-underline-offset: 15px;
}

.remessa a {
	color: #06AA48;
	padding: .5rem;
	text-decoration: none;
}

.remessa a:hover {
	text-decoration-color: #06AA48;
	text-decoration: underline;
	text-decoration-thickness: 2px;
	text-underline-offset: 15px;
}

.main-menu {
	background-color: var(--color-primary);
	color: white;
	padding: 15px 20px;
}

.main-menu .logo {
	color: white;
	font-size: 24px;
	font-weight: bold;
	text-decoration: none;
}

.main-menu .menu-links {
	font-size: 18px;
	color: white;
}

.main-menu .menu-links a {
	color: white;
	margin-left: 20px;
	text-decoration: none;
}

.main-menu .menu-links a:hover {
	text-decoration: underline;
}

.search-bar {
	display: flex;
	align-items: center;
}

.search-bar input[type="text"] {
	border: none;
	border-radius: 20px 0 0 20px;
	padding: 5px 15px;
	outline: none;
	width: 200px;
}

.search-bar button {
	border: none;
	background-color: white;
	color: var(--color-primary);
	padding: 5px 10px;
	border-radius: 0 20px 20px 0;
}

.search-bar button:hover {
	background-color: #E5E5E5;
}

.blog-container {
	max-width: 800px !important;
	margin: 0 auto;
	background-color: white;
	padding: 20px;
	border-radius: 8px;
}

.btn {
	display: flex;
	align-items: center;
	justify-content: center;
}

.btn-check:checked+.btn, .btn.active, .btn.show, .btn:first-child:active, :not(.btn-check)+.btn:active {
    color: #fff;
    background-color: rgb(0, 29, 51);
    border-color: none;
}

.post-meta {
	color: #6c757d;
	font-size: 14px;
}

.btn-share {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 40px !important;
}

.btn-share-icons {
	align-items: center;
	display: flex;
	gap: 12px;
	justify-content: start;
	width: 100%;
}

.btn-share-buttons {
	background-color: #ececec9c;
	background-position: 50%;
	background-repeat: no-repeat;
	background-size: 24px, 24px;
	height: 100%;
	min-width: 22px;
	padding: 0;
	width: 100%;
}

.btn-share-fb {
	background-image: url(../img/fb.svg);
}

.btn-share-fb:hover {
	background-color: #0866ff;
	background-image: url(../img/fb_inv.svg);
}

.btn-share-wb {
	background-image: url(../img/whatsapp.svg);
}

.btn-share-wb:hover {
	background-color: #0dca54;
	background-image: url(../img/whatsapp_inv.svg);
}

.center-header {
	font-size: 32px;
	font-weight: 100;
	letter-spacing: -1px;
	text-decoration: none !important;
}

.center-header:hover {
	text-decoration: none !important;
}

.f-14 {
	font-size: 14px;
}

.input-search {
	border-radius: .5rem 0 0 .5rem !important;
}

.button-search {
	border-radius: 0 .5rem .5rem 0 !important;
}

.links {
	color: var(--color-primary);
	padding: .5rem;
	text-decoration: none;
}

.link {
	font-size: 12px;
	color: #fff;
	text-decoration: underline;
}

footer {
	background-color: var(--color-primary);
	color: #fff;
	padding: 15px 20px;
}

.btn-primary {
	background-color: var(--color-primary);
	border: none;
}

.btn-primary:hover {
	background-color: rgb(14, 12, 78);
	border: none;
}

.cookie-bar {
	transform: translateY(100%);
	/* Inicialmente fora da tela */
	transition: transform 0.5s ease-in-out;
	/* Animação para subir */
	z-index: 1050;
	/* Certifique-se de que está acima do conteúdo */
}

.cookie-bar.active {
	transform: translateY(0);
	/* Entra na tela */
}

.right>span {
	font-weight: 600;
	font-size: 18px;
	line-height: 22px;
	text-align: center;
	color: var(--color-primary);
}

.join-wrapper {
	display: flex;
	align-items: center;
	justify-content: space-between;
	background-color: #fff;
	border-radius: 0.5rem;
	border: 2px solid var(--color-primary);
}

.join-wrapper>input {
	width: 100%;
	max-width: 400px;
	height: 90px;
	box-sizing: border-box;
	border-radius: 4px;
	padding: 0 20px;
	font-size: 16px;
	line-height: 20px;
	color: #4E4E4E;
	position: relative;
	border: none !important;
}

.join-wrapper>input:hover,
.join-wrapper>input:active,
.join-wrapper>input:focus {
	outline: none !important;
	border: none !important;
}

.join-wrapper>input:hover {
	border: 1px solid var(--color-primary);
}

.join-wrapper>button {
	height: 3.75rem;
	width: 180px;
	background: var(--color-primary);
	border-radius: 4px;
	font-weight: 600;
	font-size: 16px;
	line-height: 20px;
	text-align: center;
	color: #FFFFFF;
	border: none;
	cursor: pointer;
	display: flex;
	flex-direction: row;
	align-content: center;
	justify-content: center;
	align-items: center;
	gap: 0.5rem;
	margin-right: 1rem;
}

.join-wrapper>button:hover {
	background: var(--color-primary);
}

.creators {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.creators>div:nth-child(2) {
	display: flex;
	justify-content: center;
	margin: 1rem 0 1rem 0;
	align-content: center;
	align-items: center;
	flex-direction: row;
	gap: 1rem;
}

.creators>div:nth-child(2)>img {
	width: 4.75rem;
	height: 100%;
}

.creators>p {
	font-weight: 600;
	font-size: 14px;
	line-height: 128.9%;
	text-align: center;
	color: #4E4E4E;
}

.container-painel {
    background-color: #e9ecef !important;
    padding: 1.5rem;
}

.result {
    text-align: center;
    margin-top: 1rem;
}

.loader {
    width: 16px;
    height: 16px;
    border: 2px solid #fff;
    border-top: 2px solid transparent;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    display: inline-block;
    margin-left: 8px;
    vertical-align: middle;
}
  
@keyframes spin {
    to {
      transform: rotate(360deg);
    }
}

@media screen and (max-width: 768px) {
	.join-wrapper {
		flex-direction: row;
		align-items: center;
	}
}