:root {
	--container-mobile: 92%;
}
* {
	margin: 0;
	padding: 0;
	list-style: none;
	text-decoration: none;
	box-sizing: border-box;
}
body {
	color: #0f0f0f;
	max-width: 100vw;
	font-family: "Roboto", sans-serif;
}
img {
	display: block;
	max-width: 100%;
	height: auto;
}
header {
	position: fixed;
	top: 0;
	left: 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	max-width: 100%;
	margin: 0 auto;
	z-index: 10000;
	padding: 8px 16px;
	background: #fff;
}
header .logo {
	cursor: pointer;
}
header .icons {
	display: flex;
	align-items: center;
	gap: 24px;
}
header .icons img {
	cursor: pointer;
}
header .search {
	display: flex;
	align-items: center;
}
header .search input {
	border: 1px solid #d0d0d0;
	height: 40px;
	flex: 1;
	font-size: 1.125rem;
	outline: none;
	padding: 12px 30px;
	width: 500px;
	max-width: 100%;
	border-radius: 40px 0 0 40px;
	display: block;
	box-shadow: #eee 0px 1px 2px 0px inset;
}
header .search input:focus {
	border-color: #0e3471;
}
header .search button {
	background: #f8f8f8;
	height: 40px;
	width: 64px;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 0 40px 40px 0;
	cursor: pointer;
	border: 1px solid #d0d0d0;
	border-left: none;
	transition: all 0.4s;
}
header .search button:hover {
	filter: brightness(90%);
}
header .search button img {
	max-width: 24px;
}
.area_btn {
	display: none;
}
.btn_delay {
	margin: 30px auto 16px;
	display: inline-block;
	text-align: center;
	width: 90%;
	background: red;
	color: #fff;
	line-height: 1;
	padding: 15px;
	font-size: 1.125rem;
	animation: pulsar 1.5s infinite;
	font-weight: bold;
	border-radius: 8px;
}
@keyframes pulsar {
	0% {
		transform: scale(1);
		box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.7);
	}
	70% {
		transform: scale(1.05);
		box-shadow: 0 0 0 10px rgba(255, 0, 0, 0);
	}
	100% {
		transform: scale(1);
		box-shadow: 0 0 0 0 rgba(255, 0, 0, 0);
	}
}
.container {
	margin: 0 auto;
	width: var(--container-mobile);
}
.container {
	display: flex;
	flex-direction: column;
	gap: 24px;
	padding: 70px 0;
}
.container h1 {
	font-size: 1.25rem;
	margin: 14px 0 10px;
}
.container .assistindo {
	display: flex;
	align-items: center;
	gap: 5px;
	margin-bottom: 15px;
}
.container .assistindo img {
	max-width: 80px;
}
.container .assistindo p,
.container .assistindo span {
	font-size: 0.875rem;
	line-height: 0;
	color: #60666c;
	font-weight: bold;
}
.container .area_user {
	display: flex;
	margin-bottom: 12px;
	justify-content: space-between;
	gap: 20px;
	flex-direction: column;
}
.container .area_user .about {
	display: flex;
	gap: 32px;
	align-items: center;
}
.about img {
	width: 40px;
	height: 40px;
	border-radius: 50%;
}

.container .area_user .about button {
	color: #fff;
	background: #000;
	padding: 5px 18px;
	border-radius: 50px;
	cursor: pointer;
	font-size: 0.875rem;
	height: 40px;
	font-weight: bold;
	border: none;
	transition: all 0.5s;
}
.container .area_user .about button:hover {
	background: rgba(0, 0, 0, 0.7647058824);
}
.container .area_user .about > div {
	display: flex;
	align-items: flex-end;
	gap: 10px;
}
.container .area_user .about > div h2 {
	font-size: 1rem;
	color: #262626;
	display: block;
}
.container .area_user .about > div h3 {
	font-size: 0.85rem;
	font-weight: 500;
	color: #858d93;
}
.container .area_user .about > div img {
	max-width: 40px;
}
.container .area_user .menus {
	display: flex;
	gap: 12px;
	align-items: center;
	flex: 1;
	justify-content: space-between;
}
.container .area_user .menus .btn {
	background: #e6e6e6;
	color: #000;
	border-radius: 40px;
	padding: 10px 16px;
	display: flex;
	font-size: 0.9375rem;
	max-width: 150px;
	align-items: center;
	gap: 10px;
	width: auto;
	font-weight: bold;
	cursor: pointer;
	transition: 0.7s;
	justify-content: center;
}
.container .area_user .menus .btn:hover {
	filter: brightness(90%);
}
.container .area_user .menus .btn .text {
	font-size: 0.75rem !important;
}
.container .area_user .menus .btn img {
	width: 14px;
}
.container .area_user .menus .btn.like {
	gap: 10px;
}
.container .area_user .menus .btn.like img {
	max-width: 14px;
}
.container .area_user .menus .btn.like span {
	position: relative;
	padding-right: 11px;
}
.container .area_user .menus .btn.like span::after {
	right: 0;
	content: "";
	height: 100%;
	position: absolute;
	display: block;
	width: 1px;
	top: 50%;
	transform: translateY(-50%);
	background: #262626;
}
.container .description {
	background: rgba(0, 0, 0, 0.0352941176);
	padding: 13px;
	border-radius: 12px;
	display: none;
}
.container .description p {
	font-size: 0.875rem;
	margin-bottom: 12px;
}
.chat {
	border: 1px solid #eee;
	border-radius: 12px;
}
.chat .header-chat {
	border-bottom: 1px solid rgba(238, 238, 238, 0.9333333333);
	padding: 13px 20px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.chat .header-chat h2 {
	font-weight: normal;
	font-size: 1rem;
}
.chat .content {
	padding-left: 10px;
	padding-right: 10px;
	transition: height 0.7s;
	overflow: hidden;
	overflow-y: scroll;
}
@keyframes show {
	from {
		transform: translateY(10px);
	}
	to {
		transform: translateY(0);
	}
}
.chat .content .coment {
	grid-template-columns: 30px 1fr;
	display: grid;
	margin-bottom: 15px;
	gap: 15px;
	animation: show 0.3s forwards;
}
.chat .content .coment img {
	width: 30px;
	height: 30px;
	-o-object-fit: contain;
	object-fit: contain;
	-o-object-position: center;
	object-position: center;
	border-radius: 50px;
	transition: box-shadow 0.3s;
}
.chat .content .coment:hover img {
	box-shadow: 0 0 0 2px rgb(243, 120, 120), 0 0 0 4px rgb(218, 1, 1),
		0 0 5px 8px rgba(255, 0, 0, 0.3);
}
.chat .content .coment .name {
	color: rgba(17, 17, 17, 0.6);
	font-weight: 500;
	font-size: 0.95rem;
	margin-right: 12px;
}
.chat .content .coment .text {
	font-size: 0.875rem;
}
.chat .button {
	padding: 13px 20px;
	font-size: 0.875rem;
	font-weight: bold;
	text-align: center;
	border-top: 1px solid #eee;
	display: block;
	cursor: pointer;
}
footer {
	margin-top: 60px;
	padding: 20px 10px;
	text-align: center;
	display: grid;
	gap: 24px;
	border-top: 1px solid rgba(0, 0, 0, 0.1176470588);
}
footer span {
	color: #0f0f0f;
	font-weight: 500;
}
footer p {
	max-width: 80ch;
	margin: 0 auto;
}
footer * {
	color: #606060;
	font-size: 0.75rem;
}
footer a {
	padding: 0 5px;
}
footer a:hover {
	text-decoration: underline;
}

.wrapper_video {
	position: relative;
	padding-bottom: 56.25%; /* 16:9 */
	padding-top: 25px;
	height: 0;
}
.wrapper_video object,
.wrapper_video video,
.wrapper_video iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
@media (min-width: 350px) {
	.container .area_user .menus .btn .text {
		font-size: 0.9rem !important;
	}
}
@media (max-width: 900px) {
	header .search input {
		display: none;
	}
	header .search button {
		background: rgba(0, 0, 0, 0);
		border: none;
		width: 30px;
		height: 30px;
	}
	.container .area_user .about {
		justify-content: space-between;
		flex: 1;
	}
	.dnone {
		display: none;
	}
}
@media (min-width: 1100px) {
	.container {
		display: grid;
		gap: 24px;
		padding: 70px 0;
		grid-template-columns: 1fr 402px;
	}
	.container {
		margin: 0 auto;
		width: 90%;
	}
	.container .area_user {
		display: flex;
		margin-bottom: 12px;
		justify-content: space-between;
		flex-wrap: wrap;
		gap: 20px;
		flex-direction: row;
	}
	.container .area_user .menus {
		justify-content: flex-end;
		gap: 20px;
	}
	.container .area_user .menus .btn img {
		width: 16px;
	}
	.container .area_user .menus .btn.like {
		gap: 10px;
	}
	.container .area_user .menus .btn.like img {
		max-width: 16px;
	}
	.container .area_user .menus .btn .text {
		display: block;
	}
	.container .description {
		display: block;
	}
	.container .chat .content {
		padding-left: 20px;
		padding-right: 20px;
	}
}
