* {
			box-sizing: border-box;
			margin: 0;
			padding: 0;
		}

		body {
			font-family: 'Poppins', sans-serif;
			color: #333;
			background: #ffffff;
		}

		header {
			background: linear-gradient(90deg, #00c4ff, #7b1eff);
			color: white;
			padding: 20px 40px;
			display: flex;
			align-items: center;
			justify-content: space-between;
		}

		header .logo {
			display: flex;
			align-items: center;
			gap: 10px;
		}

		header .logo img {
			height: 40px;
		}

		header nav a {
			color: white;
			text-decoration: none;
			margin-left: 20px;
			font-weight: 500;
		}

		header nav a:hover {
			text-decoration: underline;
		}

		.hero {
			padding: 100px 20px;
			text-align: center;
			background: #f9f9f9;
		}

		.hero h1 {
			font-size: 3rem;
			color: #222;
		}

		.hero p {
			margin-top: 15px;
			color: #666;
			font-size: 1.1rem;
		}

		.hero .btn {
			margin-top: 30px;
			display: inline-block;
			background: #7b1eff;
			color: white;
			padding: 14px 30px;
			border-radius: 30px;
			text-decoration: none;
			transition: background 0.3s;
		}

		.hero .btn:hover {
			background: #5a12bb;
		}

		/* Seção Planos */
		.precos {
			background: #fff;
			padding: 60px 20px;
			text-align: center;
		}

		.precos .titulo {
			font-size: 2.5rem;
			margin-bottom: 10px;
			color: #222;
		}

		.precos .subtitulo {
			font-size: 1rem;
			color: #666;
			margin-bottom: 40px;
		}

        .font-12 {
			font-size: 12px;
			color: #666;
		}

		.cards {
			display: flex;
			flex-wrap: wrap;
			justify-content: center;
			gap: 30px;
		}

		.card {
			background: white;
			border-radius: 15px;
			padding: 30px 20px;
			width: 320px;
			box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
			position: relative;
			transition: transform 0.3s ease;
		}

		.card:hover {
			transform: scale(1.05);
		}

		.card .plano-titulo {
			color: #00c58e;
			font-size: 1.5rem;
			margin-bottom: 5px;
		}

		.card .plano-desc {
			color: #444;
			font-size: 0.9rem;
			margin-bottom: 20px;
		}

		.card .preco {
			font-size: 2.5rem;
			color: #333;
			margin-bottom: 20px;
		}

		.preco .moeda {
			font-size: 1rem;
			vertical-align: top;
		}

		.preco .tempo {
			display: block;
			font-size: 0.9rem;
			color: #00c58e;
		}

		.beneficios {
			list-style: none;
			padding: 0;
			text-align: left;
			margin-bottom: 20px;
		}

		.beneficios li {
			margin-bottom: 10px;
			padding-left: 20px;
			position: relative;
		}

		.beneficios li::before {
			content: '✔';
			color: #00c58e;
			position: absolute;
			left: 0;
		}

		.btn {
			display: inline-block;
			background: #7b1eff;
			color: white;
			padding: 12px 25px;
			border-radius: 30px;
			text-decoration: none;
			transition: background 0.3s;
		}

		.btn:hover {
			background: #5a12bb;
		}

		.destaque {
			border: 3px solid #7b1eff;
		}

		.etiqueta {
			background: #7b1eff;
			color: white;
			padding: 5px 15px;
			border-radius: 20px;
			font-size: 0.8rem;
			position: absolute;
			top: -12px;
			right: 15px;
		}

		/* Footer */
		footer {
			background: #222;
			color: white;
			text-align: center;
			padding: 20px;
			font-size: 0.9rem;
		}

		/* Responsivo */
		@media (max-width: 1000px) {
			.cards {
				flex-direction: column;
				align-items: center;
			}

			.hero h1 {
				font-size: 2.2rem;
			}
		}