BODY{
	font-weight: 400; /* default weight */
}

/* **** columnas **** */

/* Contenedor de filas */
.row {
	display: flex;
	flex-wrap: wrap;
	margin-left: -0.75rem;
	margin-right: -0.75rem;
}

/* Columnas base */
[class*="col-"] {
	padding-left: 0.75rem;
	padding-right: 0.75rem;
	width: 100%;
	box-sizing: border-box;
}

/* Sistema de 12 columnas (como Bootstrap) */
.col-1 { width: 8.333333%; }
.col-2 { width: 16.666667%; }
.col-3 { width: 25%; }
.col-4 { width: 33.333333%; }
.col-5 { width: 41.666667%; }
.col-6 { width: 50%; }
.col-7 { width: 58.333333%; }
.col-8 { width: 66.666667%; }
.col-9 { width: 75%; }
.col-10 { width: 83.333333%; }
.col-11 { width: 91.666667%; }
.col-12 { width: 100%; }

/* Columnas por cantidad de items (más intuitivo) */
.col-auto { flex: 1; } /* Ocupa espacio disponible */
.col-2equal { width: 50%; } /* 2 columnas iguales */
.col-3equal { width: 33.333333%; } /* 3 columnas iguales */
.col-4equal { width: 25%; } /* 4 columnas iguales */

/* Responsive: columnas se apilan en móvil */
@media (max-width: 768px) {
	[class*="col-"] {
		width: 100%;
		margin-bottom: 1rem;
	}

	/* Excepción para columnas que deben mantenerse */
	.col-mobile-2equal {
		width: 50%;
	}
}

.align-right {
	text-align: right;
}

/* ********** Theme base: Tricontrast AA Light ********** */

/* colors */

/*
otros tonos purpura electricos para acccent:
#9C27B0; (más parecido al color Kambrica),
#C700EA; (saturado pero no tanto) */

:root {
	--color-accent: #c100fa;
	
	/* Hover en CSS puro usando color-mix (sRGB + 20% blanco = iluminar un 20%) */
	--color-hover: color-mix(in srgb, var(--color-accent), white 20%);
}

A.strong {
	color: var(--color-accent);
	font-weight: 700;
}
BODY.theme-option-dark A.strong {
	text-shadow: 0px 1px 4px black;
}

H1 {
	font-weight: 200;
	text-transform: uppercase;
	margin-bottom: 4pt;
	font-size: var(--pt-56);
}
@media (max-width: 767px) {
	H1 {
		font-size: var(--pt-36);
	}
}

H2 {
	font-weight: 300;
	font-size: var(--pt-18);
	text-transform: uppercase;
}

section > *:first-child > h2:first-child,
section > h2:first-child {
	margin-top: 0;
}

H3 {
	font-weight: 300;
	font-size: var(--pt-16);
}

P {
	font-weight: 400;
	line-height: 151.57%;
}

P.destacado {
	font-weight: 350;
	font-size: var(--pt-18);
	margin-bottom: var(--pt-14);
}

P.h2-bajada {
	margin: 4pt 0;
	font-size: var(--pt-10);
	opacity: 0.6;
}

.strong {
	font-weight: 700;
}
.weak {
	opacity: 0.6;
}

.mbody {
	padding: 0;
	position: relative;
}
@media (max-width: 479px) {
	.mbody {
		margin: 0 32px;
	}
}
@media (max-width: 999px) {
	.mbody {
		width: auto;
		max-width: 920px;
		margin: 0 48px;
	}
}
@media (min-width: 1000px) {
	.mbody {
		width: 920px;
		margin: 0 auto;
	}
}
@media (min-width: 1300px) {
	.mbody {
		width: 920px;
		margin: 0 auto 0 calc((100% - 920px - 220px) / 2 + 220px);
	}
}

#mainhead {
}

#mainhead .mbody {
}

#mainhead UL {
	list-style: none;
	margin: 0;
	padding: 0;
}

#mainhead UL LI {
	list-style: none;
	margin: 0 2em 0 0;
	padding: 0;
	display: inline-block;
	width: 16em;
	vertical-align: top;
}

#mainhead UL LI SPAN.position-title {
	display: block;
	font-size: var(--pt-16);
	font-weight: 400;
}

#mainhead UL LI SPAN.position-organization,
#mainhead UL LI SPAN.position-location {
	display: block;
	font-size: var(--pt-11);
	opacity: 0.6;
	font-weight: 400;
}

#mainbody {
	margin-top: 32px;
	position: relative;
}

#mainbody .mbody {
}

BUTTON,
.btn {
	background: var(--color-accent);
	color: #fff;
	text-transform: uppercase;
	text-decoration: none;
	padding: 12px 32px;
	border-radius: 8px;
	font-size: var(--pt-11);
	position: relative;
	display: inline-block;
	border: 1px solid #999;
	box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.5);
	cursor: pointer;
}

.btn STRONG {
	font-weight: 700;
}

BUTTON:active,
.btn:active {
	box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.5);
	transform: translateY(2px);
}

BUTTON:hover,
.btn:hover {
	background-color: var(--color-hover);
	color: #fff;
}

.btn-secundario {
	background: #fff;
	border-color: var(--color-accent);
	color: var(--color-accent);
}

.btn-sm {
	padding: 8px 24px;
}

SECTION {
	margin: 32px 0;
	padding: 32px 0;
}

SECTION.section-charlas {
	background-color: var(--color-accent);
	color: white;
	margin: 0;
	padding: 24px 0;
}

SECTION.section-charlas + SECTION.section-servicios {
	margin-top: 0;
}

.charlas-lista {
	max-width: 100%;
}

.charla-item {
	display: grid;
	grid-template-columns: auto 1fr auto;
	gap: 0 2rem;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	cursor: pointer;
}
@media (max-width: 480px) {
	.charla-item {
		grid-template-columns: 1fr;
	}
}

.charla-item:last-child {
	border-bottom: none;
}

.charla-link {
	display: contents; /* Permite que el enlace abarque toda la grid */
	text-decoration: none;
	color: inherit;
	cursor: pointer;
}

.charla-fecha {
	display: flex;
	flex-direction: column;
	color: black;
	grid-row: span 2;
	align-self: stretch;
}
@media (max-width: 480px) {
	.charla-fecha {
		grid-row: auto;
		flex-direction: row;
		align-items: center;
		gap: 0.5rem;
		margin-bottom: 6pt;
	}
}

.fecha-dias {
	font-size: var(--pt-24);
	line-height: 1;
	font-weight: 700;
}
@media (max-width: 480px) {
	.fecha-dias {
		font-size: var(--pt-24);
	}
}

.fecha-mes {
	font-size: var(--pt-9);
	line-height: 1;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	margin-top: 0.25rem;
	font-weight: 600;
}
@media (max-width: 480px) {
	.fecha-mes {
		margin-top: 0;
		font-size: 200%;
		text-transform: none;
		font-weight: 300;
		letter-spacing: -0.5px;
	}
}

.charla-detalle {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	padding-right: 1rem;
}

.charla-titulo {
	font-size: var(--pt-14);
	font-weight: 650;
	line-height: 1.2;
}
@media (max-width: 480px) {
	.charla-titulo {
		font-size: var(--pt-16);
	}
}

.charla-lugar {
	font-size: var(--pt-12);
	line-height: 1.3;
	font-weight: 400;
}
@media (max-width: 480px) {
	.charla-lugar {
		font-size: var(--pt-14);
	}
}

.charla-cta {
	grid-row: span 2;
	display: flex;
}
@media (max-width: 480px) {
	.charla-cta {
		grid-row: auto;
		margin-top: 1rem;
		justify-content: flex-start;
	}
}

.btn-round {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 2.5rem;
	height: 2.5rem;
	background: white;
	color: var(--color-accent);
	font-weight: 500;
	border-radius: 50%;
	font-size: var(--pt-24);
}
@media (max-width: 480px) {
	.btn-round {
		width: 2.25rem;
		height: 2.25rem;
	}
}

SECTION.section-servicios {
	background: #000;
	background: linear-gradient(
		0deg,
		rgba(0, 0, 0, 1) 0%,
		rgba(0, 0, 0, 1) 15%,
		rgba(51, 51, 51, 1) 65%,
		rgba(51, 51, 51, 1) 100%
	);
	color: #fff;
}

SECTION.section-servicios .items.servicios {
}
@media (min-width: 768px) {
	SECTION.section-servicios .items.servicios {
		display: grid;
		grid-template-columns: repeat(auto-fit, minmax(12em, 1fr));
		gap: 2em;
		align-items: stretch;
	}
}

SECTION.section-servicios .servicio {
}
@media (max-width: 767px) {
	SECTION.section-servicios .servicio {
		margin: 32px 0 48px;
	}
	SECTION.section-servicios .servicio:last-child {
		margin-bottom: 12px;
	}
}
@media (min-width: 768px) {
	SECTION.section-servicios .servicio {
		display: flex;
		flex-direction: column;
		height: 100%;
	}
}

SECTION.section-servicios .servicio .precios {
	margin-top: auto;
	margin-bottom: 1rem;
	min-height: 60px;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
}

SECTION.section-servicios .servicio .currency-usd {
	font-size: var(--pt-21);
	font-weight: 800;
	color: var(--color-accent);
	text-shadow: 0px 1px 6px black;
	margin: 12px 0 -6px;
}

SECTION.section-servicios .servicio .currency-ars {
	font-size: var(--pt-10);
	font-weight: 400;
	opacity: 0.6;
}

SECTION.section-servicios .servicio .btn {
	margin-top: auto;
	width: fit-content;
}

SECTION.section-servicios .servicio P {
}
@media (max-width: 767px) {
	SECTION.section-servicios .servicio P {
		font-size: var(--pt-13);
	}
}

SECTION.section-testimonios {
	padding: 0;
}

SECTION.section-testimonios .mbody {
	margin: 0;
	position: relative;
	-webkit-overflow-scrolling: touch;
	padding-bottom: 24px;
	overflow-y: hidden;
	overflow-x: scroll;
	scrollbar-width: none; /* Firefox Ocultar scrollbar */
	-ms-overflow-style: none; /* IE y Edge Ocultar scrollbar */
	box-sizing: border-box;
	width: 100%;
	mask-image: linear-gradient(
		to right,
		black,
		black calc(100% - 96px),
		transparent 100%
	);
}
SECTION.section-testimonios .mbody::-webkit-scrollbar {
	display: none;
	width: 0;
	height: 0;
	background: transparent;
}
@media (max-width: 767px) {
	SECTION.section-testimonios .mbody {
		padding-left: 64px;
	}
}
@media (min-width: 768px) {
	SECTION.section-testimonios .mbody {
		padding-left: calc((100vw - 920px) / 2);
	}
}
@media (min-width: 1300px) {
	SECTION.section-testimonios .mbody {
		padding-left: calc((100% - 920px + 220px) / 2);
	}
}

SECTION.section-testimonios .testimonios {
	will-change: transform, scroll-position;
	scroll-behavior: smooth;
	transition: scroll-left 0.2s ease-out;
	display: flex;
	gap: 3rem;
}
@media (min-width: 768px) {
	SECTION.section-testimonios .testimonios {
		padding-right: calc((100vw - 920px) / 2);
		width: max-content;
	}
}
@media (max-width: 767px) {
	SECTION.section-testimonios .testimonios {
		padding-right: 48px;
	}
}

.testimonio {
	flex: 0 0 220px;
	scroll-snap-align: start;
}
@media (max-width: 767px) {
	.testimonio {
		flex: 0 0 calc(100vw - 96px);
		min-width: calc(100vw - 96px);
		margin: 0 48px 0 0;
		box-sizing: border-box;
	}
}

.testimonio:last-child {
	position: relative;
}
@media (max-width: 767px) {
	.testimonio:last-child::after {
		content: "";
		position: absolute;
		right: -48px;
		width: 48px;
		height: 1px;
	}
}

figure.testimonio,
figure.testimonio blockquote {
	margin: 0;
	position: relative;
}

figure.testimonio blockquote::before {
	content: "“";
	position: absolute;
	left: -1.5rem;
	top: -1.2rem;
	font-size: 3rem;
	color: var(--color-accent);
	font-family: Georgia, serif;
}

figure.testimonio blockquote P::after {
	content: "”";
	display: inline;
	color: #666;
	font-family: Georgia, serif;
}

.testimonio P,
.testimonio CITE,
.testimonio FIGCAPTION,
.testimonial-name,
.testimonial-title,
.testimonial-org {
	font-size: var(--pt-9);
	font-style: normal;
	display: block;
}
@media (max-width: 767px) {
	.testimonio P,
	.testimonio CITE,
	.testimonio FIGCAPTION,
	.testimonial-name,
	.testimonial-title,
	.testimonial-org {
		font-size: var(--pt-12);
	}
}

.testimonio FIGCAPTION {
	margin-top: 6pt;
}

.testimonial-name {
	font-weight: 700;
}

.testimonial-title,
.testimonial-org {
	opacity: 0.6;
}

.flow-cols-3 {
}
@media (min-width: 768px) {
	.flow-cols-3 {
		column-count: 3;
		column-gap: 2em;
	}
}

.flow-cols-3 p {
}
@media (min-width: 768px) {
	.flow-cols-3 p {
		break-inside: avoid;
		margin-top: 0;
		margin-bottom: 10pt;
	}
}

SECTION.section-experiencia {
	background: #eee;
	padding-bottom: 0;
	margin-bottom: 0;
}
@media (min-width: 480px) {
	SECTION.section-experiencia {
		padding-top: 16px;
	}
}

NAV.section-enlaces {
	background: #eee;
	padding: 8px 0 24px;
}

.lista-links {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(11em, 12.5em));
	gap: 1.5em;
	list-style-type: none;
	padding: 0;
}

.link-block {
	display: flex;
	align-items: center;
	text-decoration: none;
	color: inherit;
	gap: 0.5em;
	width: 12em;
	font-size: var(--pt-11);
}

.link-block:hover .link-label {
	color: var(--color-hover);
}

.link-block:hover .link-icon {
	background-color: var(--color-hover);
}

.link-icon {
	background-color: var(--color-accent);
	border-radius: 8px;
	flex-shrink: 0;
	background-size: 100%;
	background-position: center;
	background-repeat: no-repeat;
	width: var(--pt-36);
	height: var(--pt-36);
}
@media (max-width: 999px) {
	.link-icon {
		width: var(--pt-32);
		height: var(--pt-32);
	}
}

.icon-kambrica { background-image: url("../img/sqi-kambrica.svg"); }
.icon-xdm { background-image: url("../img/sqi-xdm.svg"); }
.icon-medium { background-image: url("../img/sqi-medium.svg"); }
.icon-linkedin { background-image: url("../img/sqi-linkedin.svg"); }
/* .icon-apps { background-image: url("../img/sqi-apps.svg"); } */
.icon-apps { background-image: url("../img/sqi-ccur.svg"); 
	background-size: 66%;
    background-position-x: 55%;
}



.link-label {
	font-weight: 400;
	line-height: 131.95%;
	letter-spacing: -0.4px;
}

.alert {
	padding: 1em 1.5em;
	margin: 0;
	text-align: center;
	font-weight: 600;
	border: 1px solid #ccc;
	width: 100%;
	box-sizing: border-box;
}
.alert-success {
	color: #155724;
	background-color: #d4edda;
	border-color: #c3e6cb;
}
.alert-error {
	color: #721c24;
	background-color: #f8d7da;
	border-color: #f5c6cb;
}

.contacto-layout {
}
@media (min-width: 768px) {
	.contacto-layout {
		display: flex;
		align-items: flex-start;
		margin-top: 4pt;
	}
}

.contacto-layout aside,
.contacto-layout .aside {
}
@media (min-width: 768px) {
	.contacto-layout aside,
	.contacto-layout .aside {
		flex: 0 0 14em;
		margin-right: 2em;
	}
}

.contacto-layout form {
}
@media (min-width: 768px) {
	.contacto-layout form {
		flex: 1;
		margin-top: 11pt;
	}
}
@media (max-width: 767px) {
	.contacto-layout form {
		margin-top: 32px;
	}
}

.contacto-layout form div {
	margin-bottom: 1.5em;
}

.contacto-layout form label {
	display: block;
	text-transform: uppercase;
	margin-bottom: 0.5em;
	font-weight: 400;
	font-size: var(--pt-11);
	line-height: 151.57%;
}

.contacto-layout form input,
.contacto-layout form textarea {
	display: block;
	width: 100%;
	padding: 0.8em;
	border: 1px solid #ccc;
	border-radius: 4px;
	box-sizing: border-box;
	border-top-color: #666;
}

.contacto-layout form textarea {
	min-height: 8em;
}

#mainfoot {
	background-color: var(--color-accent);
	color: white;
}

.footer-final {
	padding: 16px 0 32px;
}

.footer-content {
	font-size: var(--pt-9);
}
@media (max-width: 767px) {
	/* .footer-content { flex-direction: column; gap: 10px; } */
}

SPAN img {
	display: inline-block;
	vertical-align: middle;
	margin-left: 4px;
}

/* form JS */
.sending-text {
	display: none;
}

.spinner {
	display: none;
	width: 20px;
	height: 20px;
	border: 3px solid rgba(255, 255, 255, 0.5);
	border-radius: 50%;
	border-top-color: #fff;
	animation: spin 1s ease-in-out infinite;
	margin-left: 10px;
	vertical-align: middle;
}

@keyframes spin {
	to {
		transform: rotate(360deg);
	}
}

.error-message {
	color: #dc3545;
	font-size: 0.875rem;
	margin-top: 0.25rem;
	min-height: 1rem;
}

.form-message {
	margin-bottom: 1rem;
	padding: 0.75rem;
	border-radius: 0.25rem;
}

.form-loading {
	opacity: 0.75;
	pointer-events: none;
}

.hidden {
	display: none;
}

.documento-confirmacion {
	max-width: 680px;
}

.documento-papel {
	background: white;
	padding: 2rem;
	margin: 1.5rem 0;
	border-radius: 4px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(0, 0, 0, 0.05);
	position: relative;
	max-width: 680px;

	word-wrap: break-word;
	overflow-wrap: break-word;
	word-break: break-word;
}

.documento-papel::before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: linear-gradient(
		to bottom,
		transparent,
		transparent 95%,
		rgba(0, 0, 0, 0.03) 100%
	);
	pointer-events: none;
}

.documento-contenido {
	font-family: "Courier New", Courier, Monaco, monospace;
	font-size: var(--pt-10);
	line-height: 151.57%;
	color: #333;
	min-height: 21.5em;
	min-width: 32em;
}

.documento-contenido p {
	margin: 0.5rem 0;
}

.documento-acciones {
	margin-top: 1.5rem;
	text-align: center;
}

/* debugging */
/*
HTML{ }
@media (max-width: 999px) { HTML { border: 4px solid yellow; } }
@media (max-width: 767px) { HTML { border: 4px solid orange; } }
@media (max-width: 479px) { HTML { border: 4px solid red; } }

.testimonios{
	background-color: orange;
}
.testimonios .mbody {
	background-color: yellow;
}
.testimonios .testimonio blockquote {
	background-color: lime;
}
*/

/******* profile image *****/

.profile-photo {
}

@media (max-width: 399px) {
	.profile-photo {
		display: none;
	}
}

@media (min-width: 400px) and (max-width: 767px) {
	#mainhead UL.positions {
		margin-right: 80px;
	}
	#mainhead UL LI {
		display: block;
	}
	.position-title {
		margin-top: 4pt;
	}
	.profile-photo {
		width: 130px;
		height: 130px;
		border-radius: 50%;
		border: 4px solid var(--color-accent);
		background-image: url(../img/sb-hero.png);
		background-position: 66% 9%;
		background-repeat: no-repeat;
		float: right;
		background-size: 218px;
		background-color: #f0f0f0;
		margin-top: 10px;
		margin-left: 20px;
	}
}

@media (min-width: 400px) and (max-width: 479px) {
	.profile-photo {
		margin-right: -20px;
	}
}

@media (min-width: 768px) and (max-width: 1299px) {
	#mainhead H1 {
		margin-right: 140px;
	}
	.profile-photo {
		width: 120px;
		height: 120px;
		border-radius: 50%;
		border: 4px solid var(--color-accent);
		background-image: url("../img/sb-hero.png");
		background-position: 66% 9%;
		background-repeat: no-repeat;
		float: right;
		shape-outside: circle(50%);
		background-size: 198px;
		background-color: #f0f0f0;
		margin-top: -80px;
		margin-left: 20px;
	}
}

@media (min-width: 1300px) {
	.profile-photo {
		display: none;
	}
}

/******* hero image *****/

@media (min-width: 1300px) {
	.mbody {
		width: 920px;
		margin: 0 auto 0 calc((100% - 920px - 220px) / 2 + 220px);
	}

	.imagen-dinamica {
		position: fixed;
		bottom: 0;
		left: 0;
		z-index: 1000;
		pointer-events: none;
		background-size: cover;
		width: calc((100vw - 920px) / 2 + 64px);
		height: 60vh;
		min-height: 256px;
		background-image: url("../img/sb-hero.png");
		background-repeat: no-repeat;
		background-position: right top;
	}
}

.imagen-dinamica::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: inherit;
	background-size: cover;
	clip-path: polygon(-20% -20%, 120% -20%, 120% 100%, 0 100%);
	filter: drop-shadow(8px 8px 12px rgba(0, 0, 0, 0.3));
	z-index: -1;
	pointer-events: none;
}

/* Solo define las propiedades de animación cuando existe la clase js-enabled */
.js-enabled [data-animar-entrada] {
	opacity: 0;
	transform: translateY(16px);
	transition: none;
}

.js-enabled [data-animar-entrada].visible {
	opacity: 1;
	transform: translateY(0);
	transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

/* Retrasos escalonados */
.js-enabled [data-animar-entrada].visible:nth-child(1) { transition-delay: 0.1s; }
.js-enabled [data-animar-entrada].visible:nth-child(2) { transition-delay: 0.2s; }
.js-enabled [data-animar-entrada].visible:nth-child(3) { transition-delay: 0.3s; }
.js-enabled [data-animar-entrada].visible:nth-child(4) { transition-delay: 0.4s; }
.js-enabled [data-animar-entrada].visible:nth-child(5) { transition-delay: 0.5s; }

/* ******** DARK THEME ******** */

BODY.theme-option-dark {
	background-color: #111;
	color: #fff;
}
BODY.theme-option-dark BUTTON,
BODY.theme-option-dark .btn {
	border-color: #ffffff99;
}

BODY.theme-option-dark SECTION.section-charlas {
	background-color: #333;
	color: #fff;
	text-shadow: 0px 1px 6px black;
	margin: 0;
	padding: 24px 0;
}
BODY.theme-option-dark SECTION.section-charlas .charla-fecha {
	color: var(--color-accent);
}

BODY.theme-option-dark SECTION.section-servicios {
	background: var(--color-accent);
}

BODY.theme-option-dark SECTION.section-servicios .servicio .currency-usd {
	color: #000;
	text-shadow: none;
}

BODY.theme-option-dark .section-testimonios {
	background: #111;
}

BODY.theme-option-dark section.section-experiencia,
BODY.theme-option-dark .section-enlaces {
	background-color: var(--color-accent);
}
BODY.theme-option-dark .section-enlaces .link-icon {
	background-color: #000;
}

BODY.theme-option-dark .circle-back {
	background: black;
}
BODY.theme-option-dark .circle-middle {
	background: #ccc;
}

BODY.theme-option-dark .theme-chooser {
	border-color: #666;
	background-color: #222222cc;
	backdrop-filter: blur(4px);
	box-shadow: 0 4px 20px #000000cc;
}
BODY.theme-option-dark .theme-item:hover {
	background-color: #333;
}
BODY.theme-option-dark .mode-option,
BODY.theme-option-dark .color-option {
	border-color: #666;
}

BODY.theme-option-dark .contacto-layout form input,
BODY.theme-option-dark .contacto-layout form textarea {
	border-color: #555;
	border-top-color: #999;
	background: #222;
	color: white;
}

BODY.theme-option-dark P.h2-bajada {
	opacity: 1;
}
BODY.theme-option-dark SECTION.section-servicios .servicio .currency-ars {
	opacity: 1;
}

BODY.theme-option-dark .lista-links LI:hover {
	position: relative;
	border-radius: 16px;
	padding:8px;
	margin:-8px;
	background-color:var( --color-hover );
}

BODY.theme-option-dark .link-block:hover .link-label {
	color: #fff;	
}

/* Fix para el wrapper del formulario dentro del flex layout */
.contacto-layout .form-wrapper {
	width: 100%;
	flex: 1; /* Hereda la propiedad flex que antes tenía el form */
}

/* Estilos para el Modal Nativo (<dialog>) */
#spam-challenge-dialog {
	padding: 2rem;
	border: 2px solid var(--color-accent, #000);
	border-radius: 8px;
	max-width: 500px;
	box-shadow: 0 10px 25px rgba(0,0,0,0.2);
	background: var(--bg-color, #fff);
	color: var(--text-color, #000);
	position: fixed;
}

#spam-challenge-dialog::backdrop {
	background: rgba(0, 0, 0, 0.5);
	backdrop-filter: blur(2px);
}

#spam-challenge-dialog h3 {
	margin-top: 0;
	font-weight: 700;
	font-size: 1.25rem;
}

#spam-challenge-dialog .challenge-error {
	color: #dc3545;
	font-size: 0.9em;
	margin-top: 10px;
	font-weight: 600;
	min-height: 1.2em;
}

#spam-challenge-dialog .dialog-actions {
	margin-top: 1.5rem;
	text-align: left;
	display: flex;
	justify-content: flex-start;
	gap: 1rem;
	flex-wrap: wrap;
}

.captcha-input-group {
	margin-top: 1rem;
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.captcha-input-group input[type="number"] {
	font-size: 1.2rem;
	padding: 0.5rem;
	width: 100%;
	border: 1px solid #ccc;
	border-radius: 4px;
}