/* Productos Page - Clean White Design */

.productos-main {
	background: #ffffff;
	min-height: 100vh;
	padding-bottom: 60px;
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

/* Hero Section */
.hero-productos {
	text-align: center;
	padding: 80px 0 60px;
	background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.hero-productos h1 {
	font-size: 3.5rem;
	font-weight: 700;
	margin-bottom: 20px;
	color: #1a202c;
}

.hero-subtitle {
	font-size: 1.5rem;
	font-weight: 300;
	color: #4a5568;
}

/* Products Grid */
.productos-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	gap: 40px;
	margin: 60px 0;
	padding: 0 20px;
}

/* Product Cards */
.product-card {
	background: white;
	border-radius: 12px;
	overflow: hidden;
	border: 1px solid #e2e8f0;
	transition: all 0.3s ease;
	text-decoration: none;
	color: inherit;
	display: block;
	cursor: pointer;
	position: relative;
}

.product-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
	border-color: #cbd5e0;
}

.product-card:hover .product-overlay {
	opacity: 1;
}

.product-card:hover .product-image img {
	transform: scale(1.05);
}

/* Product Image */
.product-image {
	position: relative;
	height: 280px;
	overflow: hidden;
	background: #f8fafc;
}

.product-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.4s ease;
}

/* Overlay that appears on hover */
.product-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(45, 55, 72, 0.8);
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.view-product {
	background: white;
	color: #2d3748;
	padding: 12px 24px;
	border-radius: 6px;
	font-weight: 600;
	font-size: 1rem;
	border: 2px solid white;
	transition: all 0.3s ease;
}

.product-overlay:hover .view-product {
	background: transparent;
	color: white;
}

/* Product Info */
.product-info {
	padding: 30px;
}

.product-info h3 {
	font-size: 2.0rem;
	font-weight: 600;
	color: #1a202c;
	margin-bottom: 15px;
}

.product-info p {
	color: #4a5568;
	line-height: 1.6;
	margin-bottom: 20px;
	font-size: 1.3rem;
}

/* Feature Tags */
.product-features {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
}

.feature-tag {
	background: #f8fafc;
	color: #4a5568;
	padding: 6px 12px;
	border-radius: 20px;
	font-size: 1.2rem;
	font-weight: 500;
	border: 1px solid #e2e8f0;
	transition: all 0.3s ease;
}

.feature-tag_2 {
	background: #f8fafc;
	color: #4a5568;
	padding: 6px 12px;
	border-radius: 20px;
	font-size: 1.5rem;
	font-weight: 500;
	border: 1px solid #e2e8f0;
	transition: all 0.3s ease;
	font-weight: bold;
}

.product-card:hover .feature-tag {
	background: #2d3748;
	color: white;
	border-color: #2d3748;
}

.product-card:hover .feature-tag_2 {
	background: #995e00;
	color: white;
	border-color: #995e00;
}


/* Contact Section */
.contact-section {
	text-align: center;
	background: #f8fafc;
	padding: 60px 40px;
	border-radius: 12px;
	border: 1px solid #e2e8f0;
	margin: 60px 0 0;
}

.contact-section h2 {
	font-size: 2rem;
	font-weight: 600;
	color: #1a202c;
	margin-bottom: 15px;
}

.contact-section p {
	color: #4a5568;
	font-size: 1.1rem;
	margin-bottom: 30px;
}

.cta-button_2 {
	display: inline-block;
	background: #2d3748;
	color: white;
	padding: 16px 32px;
	text-decoration: none;
	border-radius: 6px;
	font-weight: 600;
	font-size: 1.1rem;
	transition: all 0.3s ease;
	border: 2px solid #2d3748;
}

.cta-button_2:hover {
	background: #4a5568;
	border-color: #4a5568;
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(45, 55, 72, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
	.hero-productos {
		padding: 60px 0 40px;
	}

	.hero-productos h1 {
		font-size: 2.5rem;
	}

	.hero-subtitle {
		font-size: 1.2rem;
	}

	.productos-grid {
		grid-template-columns: 1fr;
		gap: 30px;
		margin: 40px 0;
		padding: 0 10px;
	}

	.product-image {
		height: 240px;
	}

	.product-info {
		padding: 25px;
	}

	.contact-section {
		padding: 40px 20px;
		margin: 40px 0 0;
	}

	.container {
		padding: 0 15px;
	}
}

@media (max-width: 480px) {
	.product-card {
		margin: 0 5px;
	}

	.productos-grid {
		padding: 0 5px;
	}

	.product-info h3 {
		font-size: 1.3rem;
	}

	.feature-tag {
		font-size: 0.8rem;
		padding: 4px 8px;
	}
}

/* Animation for cards */
.product-card {
	opacity: 0;
	animation: fadeInUp 0.6s ease-out forwards;
}

.product-card:nth-child(1) {
	animation-delay: 0.1s;
}

.product-card:nth-child(2) {
	animation-delay: 0.2s;
}

.product-card:nth-child(3) {
	animation-delay: 0.3s;
}

.product-card:nth-child(4) {
	animation-delay: 0.4s;
}

.product-card:nth-child(5) {
	animation-delay: 0.5s;
}

.product-card:nth-child(6) {
	animation-delay: 0.6s;
}

.product-card:nth-child(7) {
	animation-delay: 0.7s;
}

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}


/* Make the overlay always visible on mobile */
@media (max-width: 768px) {
	.product-overlay {
		position: static;
		background: rgba(45, 55, 72, 0.9);
		opacity: 1;
		padding: 10px;
		margin-top: -50px;
		z-index: 2;
	}

	.view-product {
		font-size: 0.9rem;
		padding: 8px 16px;
	}
}
