:root {
	--bg: #f6f8fc;
	--surface: #ffffff;
	--text: #10203a;
	--muted: #5a6780;
	--primary: #0e63ff;
	--primary-dark: #084fd1;
	--border: #dde3ee;
	--radius: 14px;
	--shadow: 0 12px 28px rgba(16, 32, 58, 0.08);
	--container: 1200px;
	--spacing: 1rem;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

body {
	margin: 0;
	font-family: 'Source Sans 3', sans-serif;
	background: var(--bg);
	color: var(--text);
	line-height: 1.6;
}

/*------------------------------------------------------------Personalizados-----------------------------------------------------------*/

#dvFullPage {
	width: 100%;
	height: 100%;
	
}

#dvFullHeader {
	width: 100%;
	height: 100%;
	
}

#dvHeaderBox {
	width: 100%;
	height: 100%;
	max-width: 1800px;
	margin: 0 auto;
	
}
#dvFullbody {
	width: 100%;
	height: 100%;
	
}
#dvBodyBox {
	width: 100%;
	height: 100%;
	max-width: 1800px;
	margin: 0 auto;
	
}
#dvFullFooter {
	width: 100%;
	height: 100%;
	
}
#dvFooterBox {
	width: 100%;
	height: 100%;
	max-width: 1800px;
	margin: 0 auto;
	
}

h1,
h2,
h3,
h4 {
	font-family: 'Outfit', sans-serif;
	line-height: 1.2;
	margin: 0 0 0.8rem;
}

a {
	color: var(--primary);
	text-decoration: none;
}

a:hover {
	color: var(--primary-dark);
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

.container {
	width: 100%;
	margin-inline: auto;
	border: 1px solid red;
}

.clBodyBox {
	padding: 2rem 0 3rem;
	
}
.clHeaderBody{width: 100%; min-height: 100px;}
.clBranding {
	width: 20%;
	max-width: 100px;
	min-width: 100px;
	height: 100%;
	margin: 0 auto;
	flex-direction: column;
	display: flex;
	justify-content: center;
	align-items: center;
	
}

#dvHeaderLogo,
.clHeaderLogo {
	width: 100%;
	max-width: none;
	margin: 0 auto;
	display: block;
}

#dvHeaderLogo svg,
.clHeaderLogo svg {
	display: block;
	width: 100%;
	height: auto;
}

.clHeaderBox {
	background: var(--surface);
	border-bottom: 1px solid var(--border);
	position: sticky;
	top: 0;
	z-index: 20;
	
}

.clHeaderBody {
	display: grid;
	grid-template-columns: auto 1fr auto;
	gap: 1rem;
	align-items: center;
	padding: 1rem 0;
}

.site-title {
	font-family: 'Outfit', sans-serif;
	font-weight: 700;
	color: var(--text);
	font-size: 1.25rem;
}

.menu-toggle {
	display: none;
	border: 1px solid var(--border);
	background: #fff;
	padding: 0.5rem 0.75rem;
	border-radius: 8px;
	font-weight: 600;
}

.primary-nav ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	gap: 1.1rem;
}
.clFooterBand {
	width: 100%;
	height: 4px;
	background: linear-gradient(90deg, #2f7dff 0%, #61b7ff 50%, #2f7dff 100%);
}
.primary-nav li a {
	color: var(--text);
	font-weight: 600;
}

.header-actions {
	display: flex;
	justify-content: flex-end;
}

.cart-link {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.45rem 0.8rem;
	border: 1px solid var(--border);
	border-radius: 999px;
	background: #fff;
	font-weight: 600;
}

.cart-count {
	background: var(--primary);
	color: #fff;
	border-radius: 999px;
	min-width: 1.4rem;
	height: 1.4rem;
	display: inline-grid;
	place-items: center;
	font-size: 0.8rem;
}

.hero {
	background: linear-gradient(135deg, #0f2447, #15418d 58%, #1f79ff);
	color: #fff;
	padding: 4.2rem 0;
}

.hero h1 {
	font-size: clamp(2rem, 4vw, 3.2rem);
}

.hero p {
	max-width: 54ch;
	opacity: 0.92;
}

.button {
	display: inline-block;
	background: var(--primary);
	color: #fff;
	padding: 0.65rem 1rem;
	border-radius: 10px;
	font-weight: 700;
	transition: 0.2s ease;
}

.button:hover {
	background: var(--primary-dark);
	color: #fff;
}

.layout-grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 320px;
	gap: 1.25rem;
}

.woo-wrapper {
	min-height: 320px;
}

.card {
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	box-shadow: var(--shadow);
	padding: 1.2rem;
	margin-bottom: 1rem;
}

.entry-title a {
	color: var(--text);
}

.entry-meta {
	color: var(--muted);
	font-size: 0.92rem;
}

.text-link {
	font-weight: 700;
}

.section {
	padding: 2.5rem 0;
}

.section-soft {
	background: #edf3ff;
}

.post-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1rem;
}

.sidebar-area .widget {
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 1rem;
	margin-bottom: 1rem;
}

.sidebar-area #dvTips {
	margin-top: 1rem;
}

.widget-title {
	font-size: 1.05rem;
	margin-bottom: 0.5rem;
}

.clFooterBox {
	display: grid;
	grid-template-columns: 1.4fr 1fr 1fr;
	gap: 1.75rem;
	padding: 2.4rem 1.25rem 1.4rem;
	background: #0c1627;
	color: #d9e3f5;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-col {
	min-width: 0;
}

.footer-title {
	color: #ffffff;
	font-weight: 700;
	font-size: 1.02rem;
	margin-bottom: 0.7rem;
}

.footer-text {
	color: #b5c4de;
	margin: 0 0 0.9rem;
}

.footer-trust-list,
.footer-list,
.footer-nav ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 0.5rem;
}

.footer-trust-list li,
.footer-list li {
	color: #c8d6ed;
	font-size: 0.95rem;
}

.footer-nav a {
	color: #d9e3f5;
	font-weight: 600;
}

.footer-nav a:hover {
	color: #ffffff;
}

.clFooterBottom {
	display: flex;
	justify-content: space-between;
	gap: 0.8rem;
	flex-wrap: wrap;
	padding: 0.8rem 1.25rem 1.4rem;
	background: #0a1322;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.clFooterBottom p {
	margin: 0;
	font-size: 0.9rem;
	color: #93a7c8;
}

.center {
	text-align: center;
}

/* WooCommerce basic polish */
.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 0.9rem;
	box-shadow: var(--shadow);
}

.woocommerce span.onsale {
	background: var(--primary);
}

.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
	background: var(--primary);
	color: #fff;
	border-radius: 8px;
}

.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover {
	background: var(--primary-dark);
	color: #fff;
}

@media (max-width: 980px) {
	.layout-grid {
		grid-template-columns: 1fr;
	}

	.post-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 800px) {
	.clHeaderBody {
		grid-template-columns: auto auto;
	}

	.menu-toggle {
		display: inline-flex;
		justify-self: end;
	}

	.primary-nav {
		grid-column: 1 / -1;
		display: none;
	}

	.primary-nav.is-open {
		display: block;
	}

	.primary-nav ul {
		flex-direction: column;
		gap: 0.4rem;
		padding-top: 0.6rem;
	}
}

@media (max-width: 600px) {
	.post-grid {
		grid-template-columns: 1fr;
	}

	.clFooterBox {
		grid-template-columns: 1fr;
	}

	.clFooterBottom {
		flex-direction: column;
	}
}
