/* =========================================================
   MULTIGRAPAS C.A. - ESTILOS CORPORATIVOS & RESPONSIVOS
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;800;900&display=swap');

* { box-sizing: border-box; }
body {
	font-family: 'Montserrat', sans-serif !important;
	color: #333;
	margin: 0;
	padding: 0;
	background-color: #ffffff;
}

/* TOPBAR */
#top {
	background-color: #0F172A !important;
	color: #CBD5E1 !important;
	padding: 12px 0 !important;
	font-size: 13px !important;
}
#top span { font-weight: 700; }
#top a { color: #fff !important; text-decoration: none !important; font-weight: 600; }
#top a:hover { color: #82C326 !important; }
#top .whatsapp { color: #25D366 !important; margin-left: 15px; font-weight: 700; }

/* MIDDLE HEADER */
#middle {
	padding: 18px 0 !important;
	background: #ffffff !important;
	box-shadow: 0 4px 15px rgba(0,0,0,0.05) !important;
}
#middle .logo img {
	max-height: 70px !important;
	width: auto !important;
}
nav.menu ul.navbar-nav {
	display: flex !important;
	gap: 25px !important;
	list-style: none !important;
	margin: 0 !important;
	padding: 0 !important;
	justify-content: flex-end !important;
	float: none !important;
}
nav.menu ul.navbar-nav li a {
	color: #0F172A !important;
	font-weight: 700 !important;
	text-transform: uppercase !important;
	text-decoration: none !important;
	font-size: 14px !important;
	padding: 8px 0 !important;
	transition: all 0.3s !important;
	background: transparent !important;
}
nav.menu ul.navbar-nav li a:hover, nav.menu ul.navbar-nav li a.active {
	color: #0056B3 !important;
	border-bottom: 3px solid #0056B3 !important;
}

/* BOTTOM HEADER SEARCH & CART */
#bottom {
	background: #0056B3 !important;
	padding: 14px 0 !important;
	color: #fff !important;
}
#bottom .search-box {
	display: flex !important;
	max-width: 480px !important;
	margin: 0;
}
#bottom .search-box input {
	width: 100% !important;
	padding: 10px 18px !important;
	border: none !important;
	border-radius: 4px 0 0 4px !important;
	outline: none !important;
	color: #333 !important;
	font-size: 14px !important;
}
#bottom .search-box button {
	background: #003B7B !important;
	color: #fff !important;
	border: none !important;
	padding: 10px 22px !important;
	border-radius: 0 4px 4px 0 !important;
	cursor: pointer !important;
	font-weight: 700 !important;
}
#bottom .cart-link {
	color: #fff !important;
	text-decoration: none !important;
	font-weight: 700 !important;
	font-size: 16px !important;
	display: flex !important;
	align-items: center !important;
	justify-content: flex-end !important;
	gap: 10px !important;
}
#bottom .cart-badge {
	background: #E53935 !important;
	color: #fff !important;
	padding: 2px 10px !important;
	border-radius: 12px !important;
	font-size: 13px !important;
}

/* HERO SLIDER */
.hero-wrap {
	background: linear-gradient(135deg, rgba(0, 86, 179, 0.82), rgba(15, 23, 42, 0.88)), url('../img/post/separador1.jpg') !important;
	background-size: cover !important;
	background-position: center !important;
	color: #fff !important;
	padding: 110px 0 !important;
	text-align: center !important;
}
.hero-wrap h1 {
	font-size: 46px !important;
	font-weight: 900 !important;
	margin-bottom: 15px !important;
	text-transform: uppercase !important;
	text-shadow: 0 2px 10px rgba(0,0,0,0.3) !important;
}
.hero-wrap h3 {
	font-size: 22px !important;
	color: #64B5F6 !important;
	margin-bottom: 25px !important;
	font-weight: 700 !important;
}
.hero-wrap p {
	font-size: 16px !important;
	max-width: 800px !important;
	margin: 0 auto 35px !important;
	line-height: 1.8 !important;
	color: #F1F5F9 !important;
}

/* POST PRINCIPAL */
#post_principal {
	padding: 80px 0 !important;
	background: #fff !important;
}
#post_principal h1 {
	font-size: 32px !important;
	font-weight: 800 !important;
	color: #0F172A !important;
	margin-bottom: 10px !important;
}
#post_principal h3 {
	font-size: 20px !important;
	font-weight: 700 !important;
	color: #0056B3 !important;
	margin-bottom: 20px !important;
}

/* SEPARADOR */
#separador1 {
	background: linear-gradient(rgba(0, 86, 179, 0.88), rgba(15, 23, 42, 0.88)), url('../img/post/separador1.jpg') !important;
	background-size: cover !important;
	background-position: center !important;
	color: #fff !important;
	padding: 65px 0 !important;
}
#separador1 h3 { font-size: 28px !important; font-weight: 800 !important; margin-bottom: 10px !important; }

/* PRODUCTOS GRID & TABS */
.productos-sec { padding: 80px 0 !important; background: #f8fafc !important; }
.productos-sec h2 { font-size: 32px !important; font-weight: 800 !important; color: #0F172A !important; margin-bottom: 5px !important; }
.productos-sec h2 span { font-size: 16px !important; color: #64748B !important; font-weight: 600 !important; }

.product-card {
	background: #fff !important;
	border-radius: 8px !important;
	overflow: hidden !important;
	box-shadow: 0 5px 20px rgba(0,0,0,0.06) !important;
	margin-bottom: 30px !important;
	transition: all 0.3s !important;
	border: 1px solid #e2e8f0 !important;
}
.product-card:hover { transform: translateY(-6px) !important; box-shadow: 0 14px 35px rgba(0, 86, 179, 0.18) !important; }
.product-card .img-wrap {
	height: 200px !important;
	background-size: contain !important;
	background-position: center !important;
	background-repeat: no-repeat !important;
	padding: 15px !important;
	background-color: #ffffff !important;
	border-bottom: 1px solid #f1f5f9 !important;
}
.product-card .body { padding: 20px !important; text-align: center !important; }
.product-card h4 { font-size: 16px !important; font-weight: 800 !important; color: #0F172A !important; margin-bottom: 8px !important; line-height: 1.3 !important; }
.product-card h5 { font-size: 13px !important; color: #64748B !important; margin-bottom: 15px !important; }

/* CATEGORIAS SIDEBAR */
.cat-sidebar {
	background: #fff !important;
	border-radius: 8px !important;
	border: 1px solid #e2e8f0 !important;
	overflow: hidden !important;
	margin-bottom: 30px !important;
	box-shadow: 0 4px 15px rgba(0,0,0,0.04) !important;
}
.cat-sidebar .cat-header {
	background: #0056B3 !important;
	color: #fff !important;
	padding: 16px 20px !important;
	font-size: 16px !important;
	font-weight: 800 !important;
	text-transform: uppercase !important;
}
.cat-sidebar ul {
	list-style: none !important;
	padding: 0 !important;
	margin: 0 !important;
}
.cat-sidebar ul li a {
	display: block !important;
	padding: 13px 20px !important;
	color: #334155 !important;
	text-decoration: none !important;
	font-weight: 600 !important;
	font-size: 14px !important;
	border-bottom: 1px solid #f1f5f9 !important;
	transition: all 0.2s !important;
}
.cat-sidebar ul li a:hover, .cat-sidebar ul li a.active {
	background: #F1F5F9 !important;
	color: #0056B3 !important;
	font-weight: 800 !important;
	padding-left: 25px !important;
}

.subcat-sidebar {
	background: #F8FAFC !important;
	border-radius: 6px !important;
	border: 1px solid #CBD5E1 !important;
	margin-bottom: 25px !important;
	padding: 18px !important;
}
.subcat-sidebar h5 {
	font-size: 14px !important;
	font-weight: 800 !important;
	color: #0056B3 !important;
	margin-bottom: 12px !important;
	text-transform: uppercase !important;
}

/* PARALLAX */
#parallax {
	background: linear-gradient(rgba(15, 23, 42, 0.78), rgba(15, 23, 42, 0.78)), url('../img/post/parallax.jpg') !important;
	background-size: cover !important;
	background-position: center !important;
	color: #fff !important;
	padding: 90px 0 !important;
	text-align: center !important;
}
#parallax h2 { font-size: 38px !important; font-weight: 900 !important; margin-bottom: 10px !important; }
#parallax h3 { font-size: 20px !important; color: #82C326 !important; text-transform: uppercase !important; }

/* SERVICIOS HOME */
#servicios_home {
	padding: 80px 0 !important;
	background: #fff !important;
}
#servicios_home .item-box {
	background: #f8fafc !important;
	padding: 25px !important;
	border-radius: 8px !important;
	border-left: 4px solid #0056B3 !important;
	margin-bottom: 20px !important;
}
#servicios_home .item-box h4 { font-size: 18px !important; font-weight: 800 !important; color: #0F172A !important; margin-bottom: 8px !important; }

/* FOOTER */
footer {
	background: #0F172A !important;
	color: #CBD5E1 !important;
	padding-top: 65px !important;
}
footer h4 { color: #82C326 !important; font-size: 16px !important; font-weight: 800 !important; text-transform: uppercase !important; margin-bottom: 20px !important; }
footer ul { list-style: none !important; padding: 0 !important; line-height: 2.2 !important; font-size: 14px !important; }
footer ul li a { color: #CBD5E1 !important; text-decoration: none !important; }
footer ul li a:hover { color: #fff !important; }

#bottom_footer {
	background: #070D18 !important;
	padding: 22px 0 !important;
	border-top: 1px solid rgba(255,255,255,0.05) !important;
	margin-top: 45px !important;
	font-size: 13px !important;
	color: #64748B !important;
}

/* BOTON WHATSAPP FLOTANTE */
#whatsapp-float {
	position: fixed !important;
	bottom: 25px !important;
	right: 25px !important;
	background-color: #25D366 !important;
	color: #FFF !important;
	border-radius: 50px !important;
	text-align: center !important;
	font-size: 30px !important;
	box-shadow: 2px 5px 15px rgba(0,0,0,0.3) !important;
	z-index: 99999 !important;
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	width: 60px !important;
	height: 60px !important;
	text-decoration: none !important;
	transition: all 0.3s ease !important;
}
#whatsapp-float:hover { transform: scale(1.12) !important; background-color: #128C7E !important; color: #fff !important; }

/* RESPONSIVE */
@media (max-width: 768px) {
	#middle .row { flex-direction: column !important; text-align: center !important; gap: 15px !important; }
	nav.menu ul.navbar-nav { justify-content: center !important; flex-wrap: wrap !important; }
	#bottom .search-box { max-width: 100% !important; margin-bottom: 10px !important; }
	.hero-wrap h1 { font-size: 26px !important; }
	.hero-wrap h3 { font-size: 16px !important; }
	#parallax h2 { font-size: 26px !important; }
}
