* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	/* background: linear-gradient(135deg, #dc2626 0%, #16a34a 100%); */
	background: linear-gradient(135deg, #8bd8ab 0%, #b7c7bd 100%);
	min-height: 100vh;
	padding: 10px 20px;
}

.container {
	max-width: 800px;
	margin: 0 auto;
}

.header {
	text-align: center;
	color: white;
	margin-bottom: 60px;
}

.header h1 {
	font-size: 3rem;
	font-weight: 700;
	margin-bottom: 15px;
	text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.header p {
	font-size: 1.2rem;
	opacity: 0.9;
	max-width: 600px;
	margin: 0 auto;
}

.cards-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
	gap: 40px;
	margin-bottom: 60px;
}

.card {
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(20px);
	border-radius: 25px;
	overflow: hidden;
	box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
	transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	position: relative;
	cursor: pointer;
}

.card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 6px;
	background: linear-gradient(90deg, #dc2626, #16a34a, #f59e0b, #ef4444);
	background-size: 300% 100%;
	animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {

	0%,
	100% {
		background-position: 0% 50%;
	}

	50% {
		background-position: 100% 50%;
	}
}

.card:hover {
	transform: translateY(-15px) scale(1.02);
	box-shadow: 0 40px 80px rgba(0, 0, 0, 0.25);
}

.card-header {
	padding: 30px 30px 0;
	text-align: center;
	position: relative;
}

.card-icon {
	width: 80px;
	height: 80px;
	margin: 0 auto 20px;
	background: linear-gradient(135deg, #dc2626, #16a34a);
	border-radius: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2.5rem;
	box-shadow: 0 15px 35px rgba(220, 38, 38, 0.3);
	animation: float 3s ease-in-out infinite;
}

@keyframes float {

	0%,
	100% {
		transform: translateY(0px);
	}

	50% {
		transform: translateY(-10px);
	}
}

.card:nth-child(1) .card-icon {
	animation-delay: 0s;
}

.card:nth-child(2) .card-icon {
	animation-delay: 0.5s;
}

.card:nth-child(3) .card-icon {
	animation-delay: 1s;
}

.card-title {
	font-size: 1.8rem;
	font-weight: 700;
	color: #2d3748;
	margin-bottom: 10px;
	background: linear-gradient(135deg, #dc2626, #16a34a);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.card-subtitle {
	font-size: 1rem;
	color: #19191a;
	margin-bottom: 25px;
	font-weight: 500;
}

.card-body {
	padding: 0 30px 30px;
}

.features {
	list-style: none;
	margin-bottom: 30px;
}

.features li {
	display: flex;
	align-items: center;
	margin-bottom: 12px;
	font-size: 0.95rem;
	color: #000000;
	transition: transform 0.2s ease;
}

.features li:hover {
	transform: translateX(5px);
}

.features li::before {
	content: '✨';
	margin-right: 12px;
	font-size: 1.2rem;
}

.card.albums .features li::before {
	content: '📸';
}

.card.photos .features li::before {
	content: '🖼️';
}

.card.digital .features li::before {
	content: '💻';
}

.price-section {
	background: linear-gradient(135deg, #f7fafc, #edf2f7);
	border-radius: 15px;
	padding: 20px;
	margin-bottom: 25px;
	border: 2px solid #e2e8f0;
}

.price {
	font-size: 2.2rem;
	font-weight: 800;
	color: #dc2626;
	text-align: center;
}

.price-label {
	font-size: 0.85rem;
	color: #718096;
	text-align: center;
	margin-top: 5px;
	font-weight: 500;
}

.price-separator {
	height: 1px;
	background: linear-gradient(90deg, transparent, #696b6d, transparent);
	margin: 20px 0;
}

.btn-card {
	width: 100%;
	padding: 15px 25px;
	color: white;
	/* background: linear-gradient(135deg, #dc2626, #16a34a); */
	background: linear-gradient(135deg, #487c6a, #14863e);
	border: none;
	border-radius: 15px;
	font-size: 1.1rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.btn-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
	transition: left 0.5s;
}

.btn-card:hover::before {
	left: 100%;
}

.btn-card:hover {
	transform: translateY(-2px);
	box-shadow: 0 15px 35px rgba(220, 38, 38, 0.4);
}

.btn-card:active {
	transform: translateY(0);
}

/* Cards específicos */
.card.albums {
	background: linear-gradient(135deg, rgba(220, 38, 38, 0.1), rgba(255, 255, 255, 0.95));
}

.card.albums .card-icon {
	background: linear-gradient(135deg, #dc2626, #b91c1c);
}

.card.photos {
	background: linear-gradient(135deg, rgba(22, 163, 74, 0.1), rgba(255, 255, 255, 0.95));
}

.card.photos .card-icon {
	background: linear-gradient(135deg, #16a34a, #15803d);
}

.card.digital {
	background: linear-gradient(135deg, rgba(245, 158, 11, 0.1), rgba(255, 255, 255, 0.95));
}

.card.digital .card-icon {
	background: linear-gradient(135deg, #f59e0b, #d97706);
}

.special-offer {
	position: absolute;
	top: 15px;
	right: 15px;
	background: linear-gradient(135deg, #dc2626, #ef4444);
	color: white;
	padding: 8px 15px;
	border-radius: 20px;
	font-size: 0.8rem;
	font-weight: 600;
	animation: pulse 2s infinite;
}

@keyframes pulse {

	0%,
	100% {
		transform: scale(1);
	}

	50% {
		transform: scale(1.05);
	}
}

.testimonial {
	background: rgba(220, 38, 38, 0.05);
	border-left: 4px solid #dc2626;
	padding: 20px;
	margin-top: 20px;
	border-radius: 0 15px 15px 0;
	font-style: italic;
	color: #4a5568;
	position: relative;
}

.testimonial::before {
	content: '"';
	font-size: 3rem;
	color: #dc2626;
	position: absolute;
	top: -10px;
	left: 10px;
	font-family: serif;
}

.testimonial-author {
	text-align: right;
	margin-top: 10px;
	font-weight: 600;
	color: #dc2626;
	font-style: normal;
}

/* Mobile Responsivo */
@media (max-width: 768px) {
	.cards-grid {
		grid-template-columns: 1fr;
		gap: 30px;
	}

	.header h1 {
		font-size: 2.2rem;
	}

	.card-header {
		padding: 25px 25px 0;
	}

	.card-body {
		padding: 0 25px 25px;
	}

	.card-icon {
		width: 70px;
		height: 70px;
		font-size: 2rem;
	}
}

/* Seção CTA */
.cta-section {
	text-align: center;
	/* background: rgba(255, 255, 255, 0.1); */

	background: linear-gradient(135deg, #8bd8ab 0%, #4f8664 100%);
	backdrop-filter: blur(10px);
	border-radius: 25px;
	padding: 50px 30px;
	color: white;
}

.cta-section h2 {
	font-size: 2.5rem;
	margin-bottom: 20px;
	font-weight: 700;
}

.cta-section p {
	font-size: 1.2rem;
	margin-bottom: 30px;
	opacity: 0.9;
}

.cta-buttons {
	display: flex;
	gap: 20px;
	justify-content: center;
	flex-wrap: wrap;
}

.cta-btn {
	padding: 15px 30px;
	background: rgba(255, 255, 255, 0.2);
	color: white;
	border: 2px solid rgba(255, 255, 255, 0.3);
	border-radius: 50px;
	text-decoration: none;
	font-weight: 600;
	transition: all 0.3s ease;
	backdrop-filter: blur(10px);
}

.cta-btn:hover {
	background: rgba(255, 255, 255, 0.3);
	transform: translateY(-3px);
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
	background: #f59e0b;
	transform: translatey(-2px);
	/* background-color: #2aa073; */
}