/* ============================================
   ESTILOS ESPECÍFICOS DE LA PÁGINA HOME
   ============================================ */

/* Hero Section - Asegurar texto blanco y visible */
.hero-2-single .hero-2-content h1,
.hero-2-single .hero-2-content h2 {
	color: #ffffff !important;
	text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5), 0 0 20px rgba(0, 0, 0, 0.3);
	font-weight: 800;
}

.hero-2-single .hero-2-content p {
	color: #ffffff !important;
	text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

/* Asegurar overlay oscuro para mejor contraste */
.hero-2-single.hero-overlay::before {
	background: #030a15;
	opacity: 0.5 !important;
}

/* Featured Products Area */
.featured-products-area {
	background: #f8f9fa;
}

.featured-products-slider {
	margin-top: 4rem;
}

.featured-product-item {
	padding: 0 15px;
}

.featured-product-item .products-box {
	background: #fff;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
	transition: all 0.3s ease;
	height: 100%;
	display: flex;
	flex-direction: column;
}

.featured-product-item .products-pic {
	width: 100%;
	height: 250px;
	overflow: hidden;
	position: relative;
}

.featured-product-item .products-pic img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.4s ease-out;
}

.featured-product-item .products-desc {
	padding: 2rem;
	flex: 1;
	display: flex;
	flex-direction: column;
}

.featured-product-item .products-desc h5 {
	margin-bottom: 1rem;
	font-size: 1.8rem;
	font-weight: 600;
}

.featured-product-item .products-desc h5 a {
	color: #1a1a1a;
	text-decoration: none;
	transition: color 0.3s ease;
}

.featured-product-item .products-desc h5 a:hover {
	color: var(--clr-def, #e63946);
}

.featured-product-item .product-excerpt {
	font-size: 1.4rem;
	color: #666;
	line-height: 1.6;
	margin-bottom: 1.5rem;
	flex: 1;
}

.featured-product-item .cart-btn {
	margin-top: auto;
}

@media (max-width: 768px) {
	.featured-product-item .products-pic {
		height: 200px;
	}

	.featured-product-item .products-desc {
		padding: 1.5rem;
	}
}

/* Estilos para el logo de Sika Industry - mismo tamaño que el logo de Sika normal */
.partner-sldr-2 .sika-industry-logo {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 15px;
}

.partner-sldr-2 .sika-industry-logo img {
	max-height: 120px !important;
	max-width: 200px !important;
	width: auto !important;
	height: auto !important;
	object-fit: contain;
	filter: grayscale(100%);
	opacity: .85;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	transform: scale(1);
}

.partner-sldr-2 .sika-industry-logo:hover img {
	filter: grayscale(0%);
	opacity: 1;
	transform: scale(1.08) translateY(-5px);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

