body {
	font-family: 'Segoe UI', sans-serif;
	margin: 0;
	padding: 0;
	background-color: #fff;
	color: #1a1a1a;
 }

 header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	max-width: 1200px;
	margin: 0 auto;
	padding: 1rem;
 }
 
.title {
  font-size: 1.5rem;
  line-height: 2rem;
  font-weight: 700;
  color: #4f46e5;
  align-items: center;
}

header .icone {
  width: 32px;
  height: 32px;
  object-fit: contain;
  border-radius: 5px;
}

.btn-primary {
	height: 2.5rem;
	background-color: #4f46e5;
	color: white;
	padding: 0.5rem 1rem;
	border: none;
	border-radius: 9999px;
	font-weight: 500;
	font-size: 0.875rem;
	cursor: pointer;
	transition: background-color 0.3s;
}

 .btn-primary:hover {
	background-color: #4338ca;
 }

 .hero {
	display: grid;
	grid-template-columns: 1fr;
	max-width: 1200px;
	margin: 0 auto;
	padding: 3rem 1rem;
	gap: 2rem;
 }

 @media (min-width: 768px) {
	.hero {
	  grid-template-columns: 1fr 1fr;
	}
 }

 .hero h1 {
	font-size: 2.25rem;
	font-weight: bold;
	line-height: 1.2;
	margin-bottom: 1rem;
 }

 .hero p {
	font-size: 1.125rem;
	color: #4b5563;
	margin-bottom: 1.5rem;
 }

 .hero form {
	display: flex;
	gap: 0.5rem;
	max-width: 400px;
 }

 .hero input[type="email"] {
	flex: 1;
	padding: 0.5rem 1rem;
	border: 1px solid #d1d5db;
	border-radius: 9999px;
 }
 
 .hero img {
	width: 100%;
	max-width: 500px;
 }
 
.hero .icon {
	display: flex;
	justify-content: center;
	align-items: center;
}
 
 .features {
	max-width: 1200px; 
	margin: 0 auto;
	padding: 0 16px;
	padding-top: 10px;
 }

.features h2 {
	font-size: 1.5rem;
	font-weight: 600;
	margin-left: 2rem;
	margin-bottom: 2rem;
}

.features-grid {
	display: grid;
	gap: 2rem;
	max-width: 1152px;
	margin-left: auto;
	margin-right: auto;
	padding-left: 1rem;
	padding-right: 1rem;
}

.features-grid div {
	text-align: left;
}

.features-grid img {
	display: block;
	margin: 0 auto 1rem;
	max-width: 15rem;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
 
.features-transaction {
	background-color: #f1f1f1;
	border-radius: 20px;
	margin-top: 80px;
}

.grid-transaction {
	grid-template-columns: 1fr 2fr;
}
 
.features-account {
	background-color: #fff;
	margin-top: 80px;
}

.grid-account {
	grid-template-columns: 1fr 1fr 1fr;
}

.features-portfolio {
	background-color: #f1f1f1;
	border-radius: 20px;
	margin-top: 80px;
}

.grid-portfolio {
	grid-template-columns: 2fr 1fr;
}

.features-portfolio img {	
	border-radius: 15px;
}

.features-all {
	margin-top: 80px;
}

.grid-all {
	margin-top: 80px;
	grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 768px) {
	.grid-transaction {
		grid-template-columns: 1fr;
	}
	.grid-account {
		grid-template-columns: 1fr;
	}
	.grid-portfolio {
		grid-template-columns: 1fr;
	}
	.grid-all {
		grid-template-columns: 1fr;
	}
}

@media (min-width: 768px) {
	.features-portfolio img {
		margin-top: 25px;
		min-width: 25rem;
	}
}

.descript-text {
	font-size: 1.15rem;
}
 
.card {
	flex: 1;
	border-radius: 15px;	
	padding: 25px;
	height: 200px;
}
 
 .card-relief {
	background-color: #4f46e5;
	color: #eee;
 }

 .card-single {
	margin-top: 40px;
	background-color: #eee;
	height: 290px;
 }
 
 .card-border {
	flex: 1;
	border: 1px solid #eee;
	border-radius: 15px;	
	padding: 25px;
	height: 350px;
	place-items: center;
 }
 
 .card-border i {
  	font-size: 100px;
  	color: #4f46e5;
  	vertical-align: middle;
 }
 
 .card-border p {
	text-align: justify;
 }

 .coming-soon {
	text-align: center;
	padding: 3rem 1rem;
 }

 .coming-soon img {
	width: 10rem;
	max-width: 100%;
 }

 footer {
	background-color: #f3f4f6;
	color: #4b5563;
	padding: 3rem 1rem;
 }

 .footer-grid {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	gap: 2rem;
 }

 @media (min-width: 768px) {
	.footer-grid {
	  grid-template-columns: repeat(3, 1fr);
	}
 }

 footer h3,
 footer h4 {
	color: #111827;
	font-weight: bold;
	margin-bottom: 0.5rem;
 }

 footer ul {
	list-style: none;
	padding: 0;
 }

 footer li {
	margin-bottom: 0.25rem;
 }

 footer a {
	color: inherit;
	text-decoration: none;
 }

 footer a:hover {
	text-decoration: underline;
 }