/* =========================================================================
 * Rodando Van — Components
 * Botones, header, footer, sidebar widgets, TOC, post hero, callouts,
 * post-card, newsletter CTA, back-to-top.
 * ========================================================================= */

/* =========================================================================
 * BOTONES
 * ========================================================================= */
.rv-btn {
	display: inline-flex;
	align-items: center;
	gap: var(--rv-space-2);
	padding: 0.75rem 1.5rem;
	background: var(--rv-primary);
	color: white;
	font-weight: 600;
	font-size: var(--rv-text-sm);
	border: none;
	border-radius: var(--rv-radius-pill);
	cursor: pointer;
	text-decoration: none;
	transition: all var(--rv-duration) var(--rv-ease);
	letter-spacing: 0.01em;
}
.rv-btn:hover {
	background: var(--rv-primary-dark);
	color: white;
	transform: translateY(-1px);
	box-shadow: var(--rv-shadow);
}

.rv-btn-outline {
	background: transparent;
	color: var(--rv-primary-dark);
	border: 1.5px solid var(--rv-primary);
}
.rv-btn-outline:hover {
	background: var(--rv-primary);
	color: white;
}

.rv-btn-deal {
	background: var(--rv-deal);
}
.rv-btn-deal:hover {
	background: var(--rv-deal-dark);
}

.rv-btn-ghost {
	background: transparent;
	color: var(--rv-ink);
	padding: 0.5rem 1rem;
}
.rv-btn-ghost:hover {
	background: var(--rv-primary-soft);
	color: var(--rv-primary-dark);
}

/* =========================================================================
 * HEADER
 * ========================================================================= */
.rv-site-header {
	position: sticky;
	top: 0;
	z-index: var(--rv-z-header);
	background: rgba(255, 255, 255, 0.92);
	backdrop-filter: saturate(180%) blur(12px);
	-webkit-backdrop-filter: saturate(180%) blur(12px);
	border-bottom: 1px solid var(--rv-line);
}

html {
	scroll-padding-top: calc(var(--rv-header-h) + 32px);
}

.rv-header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--rv-space-5);
	min-height: var(--rv-header-h);
	padding-block: var(--rv-space-3);
}

.rv-site-branding a {
	display: inline-flex;
	align-items: center;
	gap: var(--rv-space-3);
	text-decoration: none;
	color: var(--rv-ink);
	height: 100%;
}
.rv-site-branding img {
	max-height: 48px;
	width: auto;
	display: block;
}
.rv-site-title-link {
	display: inline-flex;
	align-items: center;
	text-decoration: none;
}
.rv-site-title {
	display: inline-block;
	font-family: var(--rv-font-serif);
	font-size: var(--rv-text-lg);
	font-weight: 700;
	margin: 0;
	color: var(--rv-ink);
	line-height: 1;
}

/* =========================================================================
 * BOTONES DE GUTENBERG (wp-block-button)
 * Hacer que los botones del editor Gutenberg matchen con el tema.
 * ========================================================================= */
.wp-block-button .wp-block-button__link,
.wp-block-button__link.wp-element-button {
	background: var(--rv-primary) !important;
	color: white !important;
	font-family: var(--rv-font-sans) !important;
	font-weight: 600 !important;
	border-radius: var(--rv-radius-pill) !important;
	padding: 0.85rem 1.75rem !important;
	transition: all var(--rv-duration) var(--rv-ease) !important;
	text-transform: none !important;
	letter-spacing: 0 !important;
	box-shadow: none !important;
}
.wp-block-button .wp-block-button__link:hover,
.wp-block-button__link.wp-element-button:hover {
	background: var(--rv-primary-dark) !important;
	color: white !important;
	transform: translateY(-2px);
	box-shadow: var(--rv-shadow);
}
.wp-block-button.is-style-outline .wp-block-button__link {
	background: transparent !important;
	color: var(--rv-primary-dark) !important;
	border: 1.5px solid var(--rv-primary) !important;
}
.wp-block-button.is-style-outline .wp-block-button__link:hover {
	background: var(--rv-primary) !important;
	color: white !important;
}

/* Nav primario */
.rv-primary-menu {
	display: flex;
	gap: var(--rv-space-5);
	list-style: none;
	margin: 0;
	padding: 0;
	font-family: var(--rv-font-sans);
}
.rv-primary-menu a {
	display: block;
	padding: 0.5rem 0;
	color: var(--rv-ink);
	font-weight: 500;
	font-size: var(--rv-text-sm);
	text-decoration: none;
	border-radius: 0;
	text-transform: none;
	letter-spacing: 0;
	position: relative;
	transition: color var(--rv-duration) var(--rv-ease);
}
.rv-primary-menu a::after {
	content: '';
	position: absolute;
	bottom: -4px;
	left: 0;
	width: 0;
	height: 2px;
	background: var(--rv-primary);
	transition: width var(--rv-duration) var(--rv-ease);
}
.rv-primary-menu a:hover::after {
	width: 100%;
}
.rv-primary-menu .current-menu-item > a {
	color: var(--rv-primary-dark);
	font-weight: 700;
}
.rv-primary-menu .current-menu-item > a::after {
	content: '';
	position: absolute;
	bottom: -4px;
	left: 0;
	width: 100%;
	height: 3px;
	background: var(--rv-primary);
	transition: none;
}

/* Mobile toggle */
.rv-menu-toggle {
	display: none;
	background: transparent;
	border: 1px solid var(--rv-line);
	border-radius: var(--rv-radius-sm);
	padding: 0.5rem 0.7rem;
	cursor: pointer;
}
.rv-menu-toggle span {
	display: block;
	width: 22px;
	height: 2px;
	background: var(--rv-ink);
	margin: 4px 0;
	transition: transform var(--rv-duration) var(--rv-ease);
}

@media (max-width: 900px) {
	.rv-menu-toggle { display: block; }
	.rv-primary-menu {
		position: absolute;
		top: 100%;
		right: 0;
		background: white;
		flex-direction: column;
		gap: 0;
		padding: var(--rv-space-3);
		min-width: 240px;
		box-shadow: var(--rv-shadow-md);
		border-radius: var(--rv-radius);
		display: none;
	}
	.rv-primary-menu.is-open { display: flex; }
	.rv-primary-menu a { padding: 0.7rem 1rem; }
}

/* =========================================================================
 * FOOTER
 * ========================================================================= */
.rv-site-footer {
	background: var(--rv-ink);
	color: #C8D2DA;
	padding: var(--rv-space-8) 0 var(--rv-space-5);
	margin-top: var(--rv-space-9);
}
.rv-site-footer h4,
.rv-site-footer .widget-title {
	color: white;
	font-size: var(--rv-text-base);
	font-family: var(--rv-font-sans);
	letter-spacing: var(--rv-tracking-wide);
	text-transform: uppercase;
	margin-bottom: var(--rv-space-4);
}
.rv-site-footer a {
	color: #E5EAEF;
	text-decoration: none;
}
.rv-site-footer a:hover {
	color: var(--rv-primary-light);
}
.rv-footer-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: var(--rv-space-7);
	margin-bottom: var(--rv-space-7);
}
.rv-footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	padding-top: var(--rv-space-4);
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: var(--rv-text-sm);
	color: #97A4B0;
}
@media (max-width: 768px) {
	.rv-footer-grid { grid-template-columns: 1fr; gap: var(--rv-space-5); }
	.rv-footer-bottom { flex-direction: column; gap: var(--rv-space-3); text-align: center; }
}

/* =========================================================================
 * POST CARD (parts/post-card.php)
 * Reemplaza .post-card-final con el mismo aspecto pero limpio.
 * ========================================================================= */
.grid-posts {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: var(--rv-space-5);
	padding: var(--rv-space-7) 0;
}
@media (max-width: 1100px) { .grid-posts { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { .grid-posts { grid-template-columns: 1fr; } }

.post-card-final {
	position: relative;
	aspect-ratio: 1 / 1;
	background-size: cover;
	background-position: center;
	border-radius: var(--rv-radius-lg);
	overflow: hidden;
	transition: transform var(--rv-duration-md) var(--rv-ease);
	background-color: var(--rv-primary-soft);
}
.post-card-final::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, transparent 30%, rgba(15, 30, 26, 0.7) 100%);
	transition: background var(--rv-duration) var(--rv-ease);
	z-index: 1;
}
.post-card-final:hover { transform: scale(1.02); }
.post-card-final:hover::before {
	background: linear-gradient(180deg, transparent 10%, rgba(15, 30, 26, 0.85) 100%);
}
.post-card-final a {
	position: absolute;
	inset: 0;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding: var(--rv-space-4);
	z-index: 2;
	text-decoration: none;
	color: white;
}
.post-title-final h2,
.post-title-final h3 {
	margin: 0;
	color: white;
	font-family: var(--rv-font-serif);
	font-size: clamp(1.25rem, 3vw, 1.75rem);
	font-weight: 700;
	line-height: 1.2;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
.post-card-meta {
	margin-top: var(--rv-space-2);
	font-size: var(--rv-text-xs);
	letter-spacing: var(--rv-tracking-wide);
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.85);
}

/* =========================================================================
 * POST: HERO + TOC + CONTENT
 * ========================================================================= */
.rv-post-hero {
	position: relative;
	min-height: 480px;
	display: flex;
	align-items: flex-end;
	overflow: hidden;
	margin-bottom: var(--rv-space-7);
}
.rv-post-hero-bg {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	z-index: 0;
}
.rv-post-hero-bg::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(15, 30, 26, 0.1) 0%, rgba(15, 30, 26, 0.75) 100%);
}
.rv-post-hero-inner {
	position: relative;
	z-index: 1;
	color: white;
	padding-block: var(--rv-space-7);
}
.rv-post-hero h1 {
	color: white;
	font-size: var(--rv-text-5xl);
	margin-bottom: var(--rv-space-3);
	max-width: 22ch;
	text-shadow: 0 2px 16px rgba(0, 0, 0, 0.4);
}
.rv-post-meta {
	display: flex;
	flex-wrap: wrap;
	gap: var(--rv-space-4);
	font-size: var(--rv-text-sm);
	letter-spacing: var(--rv-tracking-wide);
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.92);
}
.rv-post-meta a { color: inherit; }

/* Layout single con sidebar */
.rv-single-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) var(--rv-sidebar-width);
	gap: var(--rv-sidebar-gap);
	max-width: var(--rv-container);
	margin: 0 auto;
	padding-inline: var(--rv-gutter);
}
@media (max-width: 1024px) {
	.rv-single-layout {
		grid-template-columns: minmax(0, 1fr);
	}
}

.rv-post-content {
	max-width: var(--rv-container-narrow);
	font-size: var(--rv-text-lg);
	line-height: var(--rv-leading-relaxed);
}
.rv-post-content > * { margin-bottom: var(--rv-space-5); }
.rv-post-content h2 {
	font-size: var(--rv-text-3xl);
	margin-top: var(--rv-space-8);
	margin-bottom: var(--rv-space-4);
	padding-bottom: var(--rv-space-3);
	border-bottom: 1px solid var(--rv-line);
}
.rv-post-content h3 {
	font-size: var(--rv-text-2xl);
	margin-top: var(--rv-space-6);
	margin-bottom: var(--rv-space-3);
}
.rv-post-content img,
.rv-post-content figure {
	border-radius: var(--rv-radius-lg);
	overflow: hidden;
	margin: var(--rv-space-6) 0;
	box-shadow: var(--rv-shadow-xs);
}
.rv-post-content figure img { border-radius: 0; box-shadow: none; }
.rv-post-content figcaption {
	font-size: var(--rv-text-sm);
	color: var(--rv-muted);
	text-align: center;
	margin-top: var(--rv-space-2);
	font-style: italic;
}

/* =========================================================================
 * TOC BOX
 * ========================================================================= */
.toc-box {
	background: var(--rv-primary-soft);
	border: 1px solid color-mix(in srgb, var(--rv-primary) 25%, transparent);
	border-radius: var(--rv-radius-lg);
	padding: var(--rv-space-5);
	font-family: var(--rv-font-sans);
}
.toc-box .toc-title,
.toc-box .toc-toggle {
	font-family: var(--rv-font-sans);
	font-size: var(--rv-text-sm);
	font-weight: 700;
	letter-spacing: var(--rv-tracking-wide);
	text-transform: uppercase;
	color: var(--rv-primary-dark);
	margin-bottom: var(--rv-space-3);
}
.toc-toggle {
	display: flex;
	width: 100%;
	background: transparent;
	border: none;
	cursor: pointer;
	padding: 0;
	justify-content: space-between;
	align-items: center;
}
.toc-chevron {
	transition: transform var(--rv-duration) var(--rv-ease);
}
.toc-toggle[aria-expanded="true"] .toc-chevron { transform: rotate(180deg); }

.toc-list {
	list-style: none;
	margin: 0;
	padding: 0;
	counter-reset: toc;
}
.toc-item {
	margin: 0;
	border-left: 2px solid transparent;
	padding: 0;
	transition: border-color var(--rv-duration) var(--rv-ease);
}
.toc-item.toc-l3 { padding-left: var(--rv-space-4); }
.toc-item a {
	display: block;
	padding: 0.4rem 0.6rem;
	color: var(--rv-text);
	font-size: var(--rv-text-sm);
	line-height: 1.4;
	text-decoration: none;
	border-radius: var(--rv-radius-sm);
	transition: all var(--rv-duration) var(--rv-ease);
}
.toc-item a:hover {
	color: var(--rv-primary-dark);
	background: rgba(255, 255, 255, 0.6);
}
.toc-item a.active {
	color: var(--rv-primary-dark);
	font-weight: 600;
	background: white;
}
.toc-item:has(> a.active) { border-left-color: var(--rv-primary); }

/* TOC en sidebar = sticky */
.rv-sidebar .toc-box {
	position: sticky;
	top: calc(var(--rv-header-h) + 16px);
	max-height: calc(100vh - var(--rv-header-h) - 32px);
	overflow-y: auto;
}

/* =========================================================================
 * SIDEBAR
 * ========================================================================= */
.rv-sidebar {
	display: flex;
	flex-direction: column;
	gap: var(--rv-space-5);
}
.rv-sidebar .widget-title {
	font-size: var(--rv-text-sm);
	letter-spacing: var(--rv-tracking-wide);
	text-transform: uppercase;
	color: var(--rv-muted);
	font-family: var(--rv-font-sans);
	margin-bottom: var(--rv-space-3);
}

.ad-label {
	display: inline-block;
	font-size: 10px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--rv-muted);
	margin-bottom: var(--rv-space-2);
}

.sidebar-affiliate {
	background: white;
	border: 1px solid var(--rv-line);
	border-radius: var(--rv-radius-lg);
	overflow: hidden;
	transition: all var(--rv-duration) var(--rv-ease);
}
.sidebar-affiliate:hover {
	box-shadow: var(--rv-shadow);
	transform: translateY(-2px);
}
.sidebar-affiliate .sa-img {
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
}
.sidebar-affiliate .sa-body {
	padding: var(--rv-space-4);
}
.sidebar-affiliate .sa-tag {
	display: inline-block;
	font-size: 11px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--rv-primary-dark);
	background: var(--rv-primary-soft);
	padding: 0.2rem 0.6rem;
	border-radius: var(--rv-radius-pill);
	margin-bottom: var(--rv-space-3);
	font-weight: 600;
}
.sidebar-affiliate .sa-title {
	font-family: var(--rv-font-serif);
	font-size: var(--rv-text-lg);
	font-weight: 700;
	color: var(--rv-ink);
	margin: 0 0 var(--rv-space-2);
	line-height: 1.3;
}
.sidebar-affiliate .sa-desc {
	font-size: var(--rv-text-sm);
	color: var(--rv-text);
	margin-bottom: var(--rv-space-3);
}
.sidebar-affiliate .sa-cta {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	padding: 0.55rem 1.1rem;
	background: var(--rv-primary);
	color: white;
	font-weight: 600;
	font-size: var(--rv-text-sm);
	border-radius: var(--rv-radius-pill);
	text-decoration: none;
	transition: background var(--rv-duration) var(--rv-ease);
}
.sidebar-affiliate .sa-cta:hover {
	background: var(--rv-primary-dark);
	color: white;
}

.sidebar-about {
	background: var(--rv-primary-soft);
	border-radius: var(--rv-radius-lg);
	padding: var(--rv-space-5);
	text-align: center;
}
.sidebar-about img {
	width: 100px;
	height: 100px;
	border-radius: 50%;
	object-fit: cover;
	margin: 0 auto var(--rv-space-3);
	border: 3px solid white;
}
.sidebar-about h4 {
	font-family: var(--rv-font-serif);
	font-size: var(--rv-text-xl);
	margin-bottom: var(--rv-space-2);
	color: var(--rv-ink);
}
.sidebar-about p {
	font-size: var(--rv-text-sm);
	color: var(--rv-text);
	margin-bottom: var(--rv-space-3);
}

/* =========================================================================
 * CALLOUTS (blockquote especial)
 * ========================================================================= */
.callout {
	display: flex;
	gap: var(--rv-space-3);
	padding: var(--rv-space-4) var(--rv-space-5);
	border-radius: var(--rv-radius);
	margin: var(--rv-space-5) 0;
	font-size: var(--rv-text-base);
	line-height: var(--rv-leading-normal);
}
.callout::before {
	flex-shrink: 0;
	font-size: 1.4em;
	line-height: 1;
}
.callout p:last-child { margin-bottom: 0; }
.callout-tip     { background: var(--rv-tip-soft);   border-left: 3px solid var(--rv-tip); }
.callout-tip::before { content: "💡"; }
.callout-info    { background: var(--rv-info-soft);  border-left: 3px solid var(--rv-info); }
.callout-info::before { content: "📍"; }
.callout-warning { background: var(--rv-warn-soft);  border-left: 3px solid var(--rv-warn); }
.callout-warning::before { content: "⚠️"; }

/* =========================================================================
 * NEWSLETTER CTA
 * ========================================================================= */
.newsletter-cta {
	background: linear-gradient(135deg, var(--rv-primary) 0%, var(--rv-primary-dark) 100%);
	color: white;
	padding: var(--rv-space-7);
	border-radius: var(--rv-radius-xl);
	text-align: center;
	margin: var(--rv-space-7) 0;
}
.newsletter-cta h3 {
	color: white;
	font-size: var(--rv-text-3xl);
	margin-bottom: var(--rv-space-3);
}
.newsletter-cta p {
	font-size: var(--rv-text-lg);
	opacity: 0.95;
	margin-bottom: var(--rv-space-5);
	max-width: 50ch;
	margin-inline: auto;
}
.newsletter-cta .button,
.newsletter-cta a {
	display: inline-block;
	background: white;
	color: var(--rv-primary-dark);
	padding: 0.85rem 1.75rem;
	border-radius: var(--rv-radius-pill);
	font-weight: 700;
	text-decoration: none;
	transition: all var(--rv-duration) var(--rv-ease);
}
.newsletter-cta .button:hover,
.newsletter-cta a:hover {
	background: var(--rv-ink);
	color: white;
	transform: translateY(-1px);
}

/* =========================================================================
 * AFFILIATE CARD INLINE
 * ========================================================================= */
.affiliate-card {
	display: flex;
	align-items: center;
	gap: var(--rv-space-4);
	background: white;
	border: 1px solid var(--rv-line);
	border-left: 4px solid var(--rv-accent);
	border-radius: var(--rv-radius-lg);
	padding: var(--rv-space-4) var(--rv-space-5);
	margin: var(--rv-space-5) 0;
	transition: all var(--rv-duration) var(--rv-ease);
}
.affiliate-card:hover {
	box-shadow: var(--rv-shadow);
	transform: translateY(-1px);
}
.affiliate-icon {
	font-size: 2rem;
	flex-shrink: 0;
}
.affiliate-content { flex: 1; min-width: 0; }
.affiliate-label {
	font-size: 11px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--rv-accent-dark);
	font-weight: 700;
	margin-bottom: 2px;
}
.affiliate-title {
	font-family: var(--rv-font-serif);
	font-size: var(--rv-text-lg);
	font-weight: 600;
	color: var(--rv-ink);
	margin: 0;
	line-height: 1.3;
}
.affiliate-cta {
	flex-shrink: 0;
	padding: 0.7rem 1.2rem;
	background: var(--rv-primary);
	color: white;
	border-radius: var(--rv-radius-pill);
	font-weight: 600;
	font-size: var(--rv-text-sm);
	text-decoration: none;
	white-space: nowrap;
	transition: background var(--rv-duration) var(--rv-ease);
}
.affiliate-cta:hover { background: var(--rv-primary-dark); color: white; }

@media (max-width: 600px) {
	.affiliate-card { flex-direction: column; align-items: flex-start; text-align: left; }
	.affiliate-cta { align-self: stretch; text-align: center; }
}

/* =========================================================================
 * BACK TO TOP (botón flotante)
 * ========================================================================= */
#rv-floating-top {
	position: fixed;
	bottom: var(--rv-space-5);
	right: var(--rv-space-5);
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: var(--rv-primary);
	color: white;
	border: none;
	font-size: 1.25rem;
	cursor: pointer;
	box-shadow: var(--rv-shadow-md);
	z-index: var(--rv-z-sticky);
	opacity: 0;
	transform: translateY(8px);
	transition: opacity var(--rv-duration) var(--rv-ease), transform var(--rv-duration) var(--rv-ease), background var(--rv-duration) var(--rv-ease);
	pointer-events: none;
}
#rv-floating-top.is-visible {
	opacity: 1;
	transform: translateY(0);
	pointer-events: auto;
}
#rv-floating-top:hover { background: var(--rv-primary-dark); }

/* =========================================================================
 * COMMENTS BÁSICO
 * ========================================================================= */
.rv-comments {
	margin-top: var(--rv-space-8);
	padding-top: var(--rv-space-7);
	border-top: 1px solid var(--rv-line);
}
.rv-comments .comment-list {
	list-style: none;
	padding: 0;
}
.rv-comments .comment-body {
	padding: var(--rv-space-4) 0;
	border-bottom: 1px solid var(--rv-line);
}
.rv-comments .comment-meta {
	font-size: var(--rv-text-sm);
	color: var(--rv-muted);
	margin-bottom: var(--rv-space-2);
}

/* =========================================================================
 * FORMS (Contact Form 7 + nativos)
 * ========================================================================= */
input[type="text"],
input[type="email"],
input[type="url"],
input[type="search"],
input[type="tel"],
textarea,
select {
	width: 100%;
	padding: 0.75rem 1rem;
	background: white;
	border: 1px solid var(--rv-line);
	border-radius: var(--rv-radius);
	font-size: var(--rv-text-base);
	transition: border-color var(--rv-duration) var(--rv-ease), box-shadow var(--rv-duration) var(--rv-ease);
}
input:focus,
textarea:focus,
select:focus {
	border-color: var(--rv-primary);
	outline: none;
	box-shadow: var(--rv-ring);
}
.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output {
	border-color: var(--rv-primary-dark);
}
.wpcf7-form-control.wpcf7-submit {
	background: var(--rv-primary);
	color: white;
	border: none;
	padding: 0.85rem 1.75rem;
	border-radius: var(--rv-radius-pill);
	font-weight: 600;
	cursor: pointer;
	transition: background var(--rv-duration) var(--rv-ease);
}
.wpcf7-form-control.wpcf7-submit:hover { background: var(--rv-primary-dark); }

/* =========================================================================
 * TÉRMINO DESTACADO (chip)
 * ========================================================================= */
.termino-destacado {
	background-color: var(--rv-primary);
	border-radius: var(--rv-radius-sm);
	padding: 0.3rem 0.7rem;
	color: white;
	font-size: 11px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	font-weight: 700;
	display: inline-block;
}

/* =========================================================================
 * TABLE STRIPED (compatibilidad con Gutenberg is-style-stripes)
 * ========================================================================= */
.wp-block-table.is-style-stripes table {
	font-family: var(--rv-font-sans);
	font-size: var(--rv-text-base);
	width: 100%;
	border-collapse: collapse;
	border-radius: var(--rv-radius);
	overflow: hidden;
	border: 1px solid var(--rv-line);
}
.wp-block-table.is-style-stripes td {
	padding: var(--rv-space-3) var(--rv-space-4);
	border-bottom: 1px solid var(--rv-line);
	color: var(--rv-text);
	vertical-align: top;
}
.wp-block-table.is-style-stripes tr:nth-child(even) {
	background-color: var(--rv-bg-soft);
}
.wp-block-table.is-style-stripes td:first-child {
	font-weight: 600;
	color: var(--rv-ink);
	width: 35%;
}

/* Compat: títulos sombreados para hero (legacy) */
.titulo-sombreado strong,
.single .entry-header .page-title {
	text-shadow: 0 2px 5px rgba(0, 0, 0, 0.6);
}
