@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap');
:root {
	--primary: #217a5e;
	--secondary: #e1e1e1;
	--hover: #175441;
}

* {
	font-family: "Montserrat", sans-serif;
}

body {
	background-color: var(--secondary);
}

.marg {
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
}

#cont {
	justify-content: center;
	max-width: fit-content;
	overflow: hidden;
	margin: 7px;
}

#banner {
	display: none;
}

#banner-mobile {
	display: block;
	max-height: 567px;
	height: 275px;
	width: 100%;
	background-image: url('../images/sixbank-mobile.png');
	background-position: left center;
	background-size: cover;
}

hr {
	color: var(--primary);
}

#right-side {
	max-width: fit-content;
	padding-inline: 20px;
}

.infos h5 {
	color: var(--primary);
}

#beneficios {
	max-width: 600px;
}

#beneficios h1 {
	font-size: 1rem;
}

#form {
	max-width: 600px;
}
#form h5 {
	font-size: 13px;
	margin-block-start: 8px;
	text-align: center;
}
#form h5 a {
	text-decoration: none;
	color: var(--primary);
	font-weight: 600;
}
.form-control {
	transition: all ease 0.2s;
}

.form-control:hover {
	background-color: #fdfdfd;
	border-color: var(--secondary);
}

.form-control:focus {
	border-color: var(--primary);
	box-shadow: 0 0 0 0.25rem rgb(33, 122, 94, 0.25);
}

.form-control:focus ~ label {
	color: var(--primary);
}

.form-floating input {
	background-color: rgb(243, 243, 243);
}

#submit {
	color: #fff;
	background-color: var(--primary);
	max-width: 600px;
}

#submit:hover {
	background-color: var(--hover);
}

@media (min-width: 992px) {
	#banner {
		display: block;
	}
	#banner-mobile {
		display: none;
	}
}

@media (max-width: 992px) {
	body {
		padding-bottom: 75px;
	}
	#cont {
		flex-direction: column;
	}
	#right-side {
		padding: 25px;
	}
}

/* Sweet Alert */
.swal-overlay {
	background-color: rgb(0, 0, 0, 0.75);
}

.swal-button {
	padding: 9px 35px;
	border-radius: 25px;
	background-color: var(--primary);
	font-size: 15px;
	border: 1px solid var(--secondary);
	text-shadow: 0px -1px 0px rgba(0, 0, 0, 0.3);
	transition: all ease .3s;
}

.swal-button:not([disabled]):hover {
	background-color: var(--hover) !important;
}

.swal-footer {
	text-align: center !important;
}

/* Cookies */

.cont-cookies {
	display: flex;
}

#aviso-cookies{
	position: fixed;
	bottom: 0;
	padding-block: 8px;
	background: #FFF;
	z-index: 800;
	width: 100%;
	text-align: center;
	opacity: .9;
	-webkit-box-shadow: 0px 0px 2px 2px rgb(50 50 50 / 58%);
	-moz-box-shadow: 0px 0px 2px 2px rgba(50, 50, 50, 0.58);
	box-shadow: 0px 0px 2px 2px rgb(50 50 50 / 58%);
}
#aviso-cookies p {
	margin-bottom: 10px;
}

#aviso-cookies button {
	background-color: var(--primary);
	padding: 5px 25px;
	color: #FFF;
}

#aviso-cookies button:hover {
	background-color: var(--hover);
}

.whatsapp {
	position: fixed;
	left: 25px;
	bottom: 15px;
	display: flex;
	align-items: center;
	gap: 0.75rem;
	padding: 15px 15px;
	background: linear-gradient(115deg, #0dc152, #0dc152, #1e904a);
	opacity: 0.85;
	font-size: 17px;
	color: #fff;
	border-radius: 20px;
	transition: all ease-in-out 0.2s;
	animation: pulse 5s infinite;
	cursor: pointer;
	z-index: 151;
	text-decoration: none;
}
@keyframes pulse {
	0% {
		transform: scale(0.8);
		box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.493);
	}
	70% {
		transform: scale(1);
		box-shadow: 0 0 7px 15px rgba(0, 0, 0, 0);
	}
	100% {
		transform: scale(0.8);
		box-shadow: 0 0 1px 0px #0dc152;
	}
}

/* Tabela de preços */
.balao-precos {
	position: fixed;
	right: 25px;
	bottom: 15px;
	background: var(--primary);
	display: flex;
	align-items: center;
	gap: 0.75rem;
	padding: 15px 15px;
	opacity: 0.85;
	font-size: 17px;
	color: #fff;
	border-radius: 20px;
	animation: pulse 5s infinite;
	border: none;
}

.dialog {
	padding: 0;
	max-width: 80%;
	border: none;
}

.dialog::backdrop {
	background-color: rgba(0, 0, 0, 0.5);
}

.dialog .content {
	padding: 1.75rem;
}
.dialog .content h2:first-child {
	text-align: center;
	font-weight: 600;
}
.dialog .content a {
	text-decoration: underline;
	color: var(--primary) !important;
}
#d-tarifas ul {
	list-style: none;
	padding: 0;
	margin: 0;
}
#d-tarifas li {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 3rem;
	padding: 1.25rem 0.5rem;
	margin: 0;
	font-weight: 500;
}

#d-tarifas li:not(:last-child) {
	border-bottom: 2px solid var(--secondary);
}

#d-tarifas li span {
	font-weight: 700;
	color: var(--primary);
	white-space: nowrap;
}

#d-tarifas p {
	margin-block-start: 2rem;
	color: gray;
}
.dialog .close-btn {
	position: absolute;
	top: 10px;
	right: 10px;
	border: none;
	background-color: transparent;
}

.grecaptcha-badge {
	display: none;
}

@media (max-width: 670px) {
	#cont {
		margin: 10px !important;
	}
}

@media (max-width: 575px) {
	#beneficios {
		flex-direction: column;
	}
}
@media (max-width: 465px) {
	body {
		padding-bottom: 75px;
	}
	.balao-precos {
	}
	.whatsapp span {
		display: none;
	}
}

#aviso-cookies {
	display: flex;
	gap: 1rem;
	justify-content: center;
	position: fixed;
	bottom: 0;
	padding: 13px 15px;
	background-color: #fff;
	z-index: 800;
	width: 100%;
	text-align: center;
	box-shadow: 0px 0px 2px 1px rgba(50, 50, 50, 0.58);
	transition: all 300ms ease-in-out;
}
#aviso-cookies p {
	max-width: 61.25rem;
	font-size: 1rem;
}
#aviso-cookies p a {
	color: var(--primary);
	transition: color 200ms ease-in-out;
	text-decoration: none;
	font-weight: 600;
}
#aviso-cookies p a:hover {
	color: var(--hover);
}
#aviso-cookies button {
	padding: 10px 15px;
	margin: auto 0;
	background-color: var(--primary);
	border-radius: 8px;
	border: none;
	font-size: 16px;
	font-weight: bold;
	color: #fff;
	cursor: pointer;
	transition: 300ms ease-in-out;
}
#aviso-cookies button:hover {
	background-color: var(--hover);
}
#aviso-cookies.hideCookie {
	transform: translateY(100%);
}
@media (max-width: 500px) {
	#aviso-cookies {
		flex-direction: column;
	}
}