@import url('https://fonts.googleapis.com/css2?family=Poppins:ital@0;1&family=Roboto+Mono:wght@500&family=Roboto:wght@500&display=swap');

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	margin: 0;
	padding: 0;
	font-family: "Poppins", sans-serif;
	background: #f7f7f7;
}

button {
	display: inline-block;
  	border: none;
  	text-decoration: none;
  	cursor: pointer;
}

a {
	text-decoration: none;
}

.showcase-prices, .pricing-table {
	visibility: hidden;
}

/* Navbar Style */
header {
	background: #fff;
    width: 100%;
    height: 80px;
    color: #111;
    position: fixed;
    z-index: 9999;
}

.container {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 15px;
}

.navbar {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.navbar .logo {
	margin: 10px;
	width: 250px;
	align-items: center;
}

.navbar ul {
	display: flex;
	align-items: center;
}

.navbar ul li {
	margin: 0 20px;
	list-style: none;
}

.navbar ul li a {
	position: relative;
	padding: 8px 0;
	color: #080808;
	font-size: 1.1rem;
	font-weight: 500;
	text-decoration: none;
	text-transform: capitalize;
	transition: all 0.3s linear;
}

.navbar ul li a::after {
	content: "";
	position: absolute;
	right: 0;
	bottom: 0;
	left: auto;
	width: 0;
	height: 3px;
	background-color: #4761ff;
	transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.nav-link {
	padding: 15px;
	margin: 0.6rem;
}

.navbar ul li a:hover,
.navbar ul li a.active {
	color: #4761ff;
}

.navbar ul li a:hover::after,
.navbar ul li a.active::after {
	width: 100%;
	right: auto;
	left: 0;
}

.hamburger {
	display: none;
	position: relative;
	width: 25px;
	height: 25px;
	cursor: pointer;
}

.hamburger span {
	display: inline-block;
	width: 100%;
	height: 3px;
	background-color: #000000;
	position: absolute;
	top: calc(50% - 1.5px);
	left: 0;
	transition: all 0.2s;
}

.hamburger span:first-child {
	transform: translateY(-300%);
	transform-origin: right top;
}

.hamburger span:last-child {
	transform: translateY(300%);
	transform-origin: right bottom;
}

.hamburger.active span:first-child {
	transform: rotate(45deg) scaleX(0.5) translateX(4px);
}

.hamburger.active span:last-child {
	transform: rotate(-45deg) scaleX(0.5) translateX(4px);
}

/* Navbar media query*/
@media (max-width: 992px) {
	header {
		padding: 15px 20px;
		background-color: #fff;
	}

	.container {
		max-width: 940px;
	}

	.hamburger {
		display: block;
	}

	.navbar ul {
		position: fixed;
		top: 80px;
		right: 0;
		width: 320px;
		height: 100%;
		padding: 40px 0;
		background-color: #fcfcfc;
		display: flex;
		align-items: flex-start;
		flex-direction: column;
		box-shadow: -8px 2px 10px rgba(0, 0, 0, 0.082);
		transform: translateX(100%);
		text-align: center;
		transition: all 0.3s;
	}
	.navbar ul.active {
		transform: translateX(0);
	}
	.navbar ul li {
		margin: 0;
		width: 100%;
	}

	.navbar ul li a {
		display: block;
		padding: 15px;
	}
	.navbar ul li a::after {
		display: none;
	}
	.navbar ul li a:hover {
		color: #080808;
		background-color: #f0f0f0;
	}
	.navbar ul li a.active {
		color: #fff;
		background-color: #4761ff;
		border-radius: 10px;
	}
}

@media (max-width: 768px) {
	header {
		padding: 4px;
	}
	.container {
		max-width: 650px;
	}
	.navbar .logo {
		height: 100%;
	}
}

@media (max-width: 992px) {
	.navbar .logo {
		width: 210px;
	}
}

@media (max-width: 375px) {
	.navbar .logo {
		width: 180px;
	}
}

/* Showcase Prices */
.showcase-prices {
    display: flex;
    text-align: center;
    justify-content: center;
    align-items: center;
    min-height: 40vh;
    background: linear-gradient(180deg, #0099ff 50%, #c2d8e0 100%);
    color: #f7f7f7;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

.showcase-prices-container h1 {
	font-size: 40px;
	margin-top: 100px;
    margin-bottom: 20px;
}

.showcase-prices-container p {
	font-size: 20px;
	font-weight: 600;
}

/* Title */
.title {
	text-align: center;
	align-items: center;
	margin-top: 35px;
	background: #0099ff;
	color: #fff;
}

.title-two {
	text-align: center;
	align-items: center;
	margin-top: 35px;
	background: #4A497F;
	color: #fff;
}

/* Linha Horizontal */
#card-line {
    margin: 0;
    border-top: 1px solid #4A497F;
	width: 100%;
}

/* Produtos e Preços */
.pricing-table-container {
    display: flex;
    justify-content: space-around; /* Para distribuir o espaço entre os elementos */
    margin-top: 35px;
	margin-left: 30px;
	margin-right: 30px;
}

.pricing-table-container-two {
    display: flex;
    justify-content: space-around; /* Para distribuir o espaço entre os elementos */
    margin-top: 35px;
	margin-left: 30px;
	margin-right: 30px;
}

.pricing-table {
    text-align: center;
    padding: 20px;
    border: 1px solid #0099ff;
    border-radius: 15px;
    flex: 1;
    max-width: 550px; /* Define uma largura máxima para as tabelas */
    margin: 5px;
}

.pricing-table-two {
    text-align: center;
    padding: 20px;
    border: 1px solid #4A497F;
    border-radius: 15px;
    flex: 1;
    max-width: 550px; /* Define uma largura máxima para as tabelas */
    margin: 15px;
}

.pricing-table h3 {
    background: #0099ff;
    color: #fff;
    padding: 10px;
    border-radius: 5px;
}

.price {
    font-size: 30px;
    margin-top: 20px;
    color: #0099ff;
	margin-bottom: 15px;
}

.price-two {
    font-size: 30px;
    margin-top: 20px;
    color: #4A497F;
	margin-bottom: 15px;
}

.features {
	margin-bottom: 30px;
    list-style-type: none;
    padding: 0;
	background: #f5f3f3;
	border-radius: 15px;
}

.features li {
    padding: 5px 0;
}

.features li .check {
    color: #0099ff;
    font-size: 20px;
}

.features li .check2 {
    color: #4A497F;
    font-size: 20px;
}

.btn-plan {
    background-color: #0099ff;
    color: #fff;
    border: none;
	border-radius: 15px;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
}

.btn-plan2 {
    background-color: #4A497F;
    color: #fff;
    border: none;
	border-radius: 15px;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
}

.user-info {
	font-weight: 600;
	margin-bottom: 10px;
}

.btn-plan:hover {
    background-color: #0077cc;
}

#selectBanco {
	border-radius: 10px;
	padding: 8px;
}

/* Adaptação para dispositivos móveis */
@media (max-width: 768px) {
    .pricing-table-container {
        flex-direction: column;
    }

	.showcase-prices-container h1 {
		font-size: 30px;
	}
    
	 .pricing-table {
        margin: 10px;
		max-width: 100%
    }
}

@media (max-width: 1150px) {
    .pricing-table-container-two {
		display: grid;
		grid-template-columns: repeat(3, 1fr);
    }

	.showcase-prices-container h1 {
		font-size: 30px;
	}
    
	 .pricing-table-two {
        margin: 10px;
		max-width: 100%
    }
}

@media (max-width: 700px) {
	.pricing-table-container-two {
		display: grid;
		grid-template-columns: repeat(1, 1fr);
    }
}

.selected {
	background: #03a3ee;
	padding: 10px 20px;
	color: #fff;
	border-radius: 15px;
	transition: 0.2s all ease;
	box-shadow: #00234b 1px 1px 10px;
}

#skyclinica-content {
	display: none;
  }

#product-button {
	margin: 30px;
}

#skyweb-button, #skyclinica-button {
	margin: 10px;
	padding: 15px 25px;
	border-radius: 12px;
	background: #2b98ff;
	color: #fff;
	font-weight: 600;
}