/* ==========================================================================
   1. SETTINGS & TOKENS
   ========================================================================== */

:root {
	/* --- Colores --- */
	--Accent: #8DE2D6;
	--Neutral-900: #1E1E1E; /* Negro casi puro */
	--Neutral-800: #2D2D2D;
	--Neutral-700: #606060;
	--Neutral-600: #7C7C7D;
	--Neutral-500: #A8A8A8;
	--Neutral-400: #BEBEBE;
	--Neutral-300: #E1E1E1;
	--Neutral-200: #ECECEC;
	--Neutral-100: #F9F9F9;
	--Neutral-0-White: #ffffff;

	/* --- Movimiento / Animación --- */
	--motion-duration-short: 180ms;
	--motion-duration-medium: 300ms;
	--motion-duration-long: 400ms;
	--motion-ease-gentle: cubic-bezier(0.22, 0.61, 0.36, 1);
	
	/* Animaciones específicas (Hero/Scroll) */
	--ease-gentle: cubic-bezier(0.16, 1, 0.3, 1);
	--anim-duration: 1.2s;

	/* --- Layout Base (Mobile 360px) --- */
	--Layout-Container: 320px;
	--Grid-gutter: 16px;
	--Layout-Section-padding: 72px;
	--Layout-Section-padding-XL: 90px;
	--Layout-Margin: 20px;
	
	--Admin-bar-height: 0px;
	--Header-height: 88px;

	/* --- Tipografía Base (Mobile) --- */
	--fw-title: 600;      /* SemiBold */
	--fw-paragraph: 400;  /* Regular */

	--Font-size-h1: 10.5vw;
	--Font-size-h2: 42px;
	--Font-size-h3: 32px;
	--Font-size-h4: 20px;
	--Font-size-h5: 18px;
	--Font-size-h6: 16px;

	--Font-size-pXL: 18px;
	--Font-size-pL: 17px;
	--Font-size-pM: 16px;
	--Font-size-pS: 14px;
	--Font-size-pXS: 13px;
	--Font-size-Caption: 12px;
}

/* --- Breakpoints (Variables Responsivas) --- */

/* Mobile Landscape / Tablet Pequeña (≥ 580px) */
@media (min-width: 580px) {
	:root {
		--Layout-Container: 700px;
		--Layout-Margin: 20px;
		--Grid-gutter: 24px;
		--Layout-Section-padding: 66px;
		--Layout-Section-padding-XL: 86px;

		--Font-size-h1: 64px;
		--Font-size-h2: 52px;
		--Font-size-h3: 42px;
		--Font-size-h4: 24px;
		--Font-size-h5: 20px;
		--Font-size-h6: 18px;
		--Font-size-pXL: 20px;
	}
}

/* Tablet (≥ 768px) */
@media (min-width: 767px) {
	:root {
		--Layout-Container: 700px;
		--Layout-Margin: 32px;
		--Grid-gutter: 24px;
		--Layout-Section-padding: 86px;
		--Layout-Section-padding-XL: 100px;

		--Font-size-h1: 72px;
		--Font-size-h2: 56px;
		--Font-size-h3: 48px;
		--Font-size-h4: 28px;
		--Font-size-h5: 22px;
		--Font-size-h6: 18px;

		--Font-size-pXL: 22px;
		--Font-size-pL: 18px;
		--Font-size-pM: 17px;
		--Font-size-pS: 16px;
		--Font-size-pXS: 14px;
	}
}

/* Desktop (≥ 1280px) */
@media (min-width: 1280px) {
	:root {
		--Layout-Container: 1280px;
		--Layout-Margin: 48px;
		--Grid-gutter: 32px;
		--Layout-Section-padding: 96px;
		--Layout-Section-padding-XL: 130px;

		--Header-height: 112px;

		--Font-size-h1: 120px;
		--Font-size-h2: 70px;
		--Font-size-h3: 56px;
		--Font-size-h4: 28px;
		--Font-size-h5: 22px;
		--Font-size-h6: 18px;

		--Font-size-pXL: 22px;
		--Font-size-pL: 19px;
		--Font-size-pM: 18px;
		--Font-size-pS: 16px;
		--Font-size-pXS: 14px;
	}
}

/* Desktop Grande (≥ 1920px) */
@media (min-width: 1920px) {
	:root {
		--Layout-Container: 1600px;
		--Layout-Margin: 48px;
		--Layout-Section-padding: 100px;
		--Layout-Section-padding-XL: 150px;
		--Grid-gutter: 32px;

		--Font-size-h1: 132px;
		--Font-size-h2: 96px;
		--Font-size-h3: 72px;
	}
}


/* ==========================================================================
   2. UTILS & ANIMATIONS
   ========================================================================== */

/* Fade Up (Estilo Inertia Hero) */
.fade-up {
	opacity: 0;
	transform: translate3d(0, 40px, 0) scale(1);
	transition: opacity var(--anim-duration) var(--ease-gentle),
				transform var(--anim-duration) var(--ease-gentle);
	will-change: opacity, transform;
}

.fade-up.is-visible {
	opacity: 1;
	transform: translate3d(0, 0, 0) scale(1);
}

/* Reveal Text (Efecto máscara texto) */
.reveal-text {
	overflow: hidden;
	display: block;
	line-height: 1.1;
	padding-bottom: 2px;
}

.reveal-text__inner {
	display: block;
	transform: translate3d(0, 110%, 0);
	opacity: 0;
	transition: transform var(--anim-duration) var(--ease-gentle),
				opacity 0.8s ease;
	will-change: transform;
	transform-origin: left top;
}

.reveal-text.is-visible .reveal-text__inner {
	transform: translate3d(0, 0, 0);
	opacity: 1;
}

/* Helpers de Espaciado y Texto */
.m-0 { margin: 0!important; }
.mb-0 { margin-bottom: 0!important; }
.mt-0 { margin-top: 0!important; }
.p-0 { padding: 0!important; }
.pt-0 { padding-top: 0!important; }
.pb-0 { padding-bottom: 0!important; }
.text-uppercase { text-transform: uppercase; }
.text-center { text-align: center; }

.align-items-center {
	align-items: center;
}

/* Retardos (Stagger) */
.delay-100,
.delay-100 .reveal-text__inner {
	transition-delay: 0.1s;
}

.delay-200,
.delay-200 .reveal-text__inner {
	transition-delay: 0.2s;
}

.delay-300,
.delay-300 .reveal-text__inner {
	transition-delay: 0.3s;
}

.delay-400 {
	transition-delay: 0.4s;
}

.delay-500 {
	transition-delay: 0.5s;
}


/* ==========================================================================
   3. BASE & RESET
   ========================================================================== */

html {
	scroll-behavior: smooth;
}

body {
	overflow-x: hidden;
	position: relative;
	width: 100%;
	margin: 0;
	background: var(--Neutral-0-White);
	color: var(--Neutral-900);
	font-family: "Instrument Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	font-optical-sizing: auto;
	font-style: normal;
	font-variation-settings: "wdth" 100;
	font-weight: var(--fw-paragraph);
	font-size: var(--Font-size-pM);
	line-height: 1.5;
}

/* Reset de fuentes heredadas */
button,
li,
article,
* {
	font-family: "Instrument Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

/* Reset de márgenes tipográficos */
p, h1, h2, h3, h4, h5, h6 {
	margin-bottom: 0;
	margin-top: 0;
}

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

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

section {
	padding-top: var(--Layout-Section-padding);
	padding-bottom: var(--Layout-Section-padding);
}

.scroll-root {
	will-change: transform;
}

/* Correcciones barra admin de WP */
body.admin-bar {
	--Admin-bar-height: 46px;
}
@media (min-width: 783px) {
	body.admin-bar {
		--Admin-bar-height: 32px;
	}
}


/* ==========================================================================
   4. LAYOUT SYSTEM
   ========================================================================== */

.container {
	width: 100%;
	margin-inline: auto;
	padding-inline: var(--Layout-Margin);
}

.container--flush {
	padding-inline: 0;
}

/* Filas */
.row {
	display: flex;
	flex-wrap: wrap;
	margin-inline: calc(var(--Grid-gutter) / -2);
}

.row--no-gutter,
.row.g-0 {
	margin-inline: 0;
}

.row--no-gutter > [class*="col-"],
.row.g-0 > [class*="col-"] {
	padding-inline: 0;
}

/* Columnas Base */
.row > [class*="col-"] {
	padding-inline: calc(var(--Grid-gutter) / 2);
	box-sizing: border-box;
}

.col {
	flex: 1 0 0;
}

/* Mobile First (12 columnas) */
.col-1  { flex: 0 0 8.3333%;  max-width: 8.3333%; }
.col-2  { flex: 0 0 16.6667%; max-width: 16.6667%; }
.col-3  { flex: 0 0 25%;      max-width: 25%; }
.col-4  { flex: 0 0 33.3333%; max-width: 33.3333%; }
.col-5  { flex: 0 0 41.6667%; max-width: 41.6667%; }
.col-6  { flex: 0 0 50%;      max-width: 50%; }
.col-7  { flex: 0 0 58.3333%; max-width: 58.3333%; }
.col-8  { flex: 0 0 66.6667%; max-width: 66.6667%; }
.col-9  { flex: 0 0 75%;      max-width: 75%; }
.col-10 { flex: 0 0 83.3333%; max-width: 83.3333%; }
.col-11 { flex: 0 0 91.6667%; max-width: 91.6667%; }
.col-12 { flex: 0 0 100%;     max-width: 100%; }

/* Tablet (MD) */
@media (min-width: 768px) {
	.col-md-1  { flex: 0 0 8.3333%;  max-width: 8.3333%; }
	.col-md-2  { flex: 0 0 16.6667%; max-width: 16.6667%; }
	.col-md-3  { flex: 0 0 25%;      max-width: 25%; }
	.col-md-4  { flex: 0 0 33.3333%; max-width: 33.3333%; }
	.col-md-5  { flex: 0 0 41.6667%; max-width: 41.6667%; }
	.col-md-6  { flex: 0 0 50%;      max-width: 50%; }
	.col-md-7  { flex: 0 0 58.3333%; max-width: 58.3333%; }
	.col-md-8  { flex: 0 0 66.6667%; max-width: 66.6667%; }
	.col-md-9  { flex: 0 0 75%;      max-width: 75%; }
	.col-md-10 { flex: 0 0 83.3333%; max-width: 83.3333%; }
	.col-md-11 { flex: 0 0 91.6667%; max-width: 91.6667%; }
	.col-md-12 { flex: 0 0 100%;     max-width: 100%; }
}

/* Desktop (LG) */
@media (min-width: 1280px) {
	.col-lg-1  { flex: 0 0 8.3333%;  max-width: 8.3333%; }
	.col-lg-2  { flex: 0 0 16.6667%; max-width: 16.6667%; }
	.col-lg-3  { flex: 0 0 25%;      max-width: 25%; }
	.col-lg-4  { flex: 0 0 33.3333%; max-width: 33.3333%; }
	.col-lg-5  { flex: 0 0 41.6667%; max-width: 41.6667%; }
	.col-lg-6  { flex: 0 0 50%;      max-width: 50%; }
	.col-lg-7  { flex: 0 0 58.3333%; max-width: 58.3333%; }
	.col-lg-8  { flex: 0 0 66.6667%; max-width: 66.6667%; }
	.col-lg-9  { flex: 0 0 75%;      max-width: 75%; }
	.col-lg-10 { flex: 0 0 83.3333%; max-width: 83.3333%; }
	.col-lg-11 { flex: 0 0 91.6667%; max-width: 91.6667%; }
	.col-lg-12 { flex: 0 0 100%;     max-width: 100%; }
}

/* Large Desktop (XL) */
@media (min-width: 1920px) {
	.col-xl-1  { flex: 0 0 8.3333%;  max-width: 8.3333%; }
	.col-xl-2  { flex: 0 0 16.6667%; max-width: 16.6667%; }
	.col-xl-3  { flex: 0 0 25%;      max-width: 25%; }
	.col-xl-4  { flex: 0 0 33.3333%; max-width: 33.3333%; }
	.col-xl-5  { flex: 0 0 41.6667%; max-width: 41.6667%; }
	.col-xl-6  { flex: 0 0 50%;      max-width: 50%; }
	.col-xl-7  { flex: 0 0 58.3333%; max-width: 58.3333%; }
	.col-xl-8  { flex: 0 0 66.6667%; max-width: 66.6667%; }
	.col-xl-9  { flex: 0 0 75%;      max-width: 75%; }
	.col-xl-10 { flex: 0 0 83.3333%; max-width: 83.3333%; }
	.col-xl-11 { flex: 0 0 91.6667%; max-width: 91.6667%; }
	.col-xl-12 { flex: 0 0 100%;     max-width: 100%; }
}


/* ==========================================================================
   5. TYPOGRAPHY
   ========================================================================== */

h1, h2, h3, h4, h5, h6 {
	font-weight: var(--fw-title);
	color: var(--Neutral-900);
}

h1 {
	font-size: var(--Font-size-h1);
	line-height: 1;
	text-transform: uppercase;
	letter-spacing: -0.02em;
}

h2 {
	font-size: var(--Font-size-h2);
	line-height: 1.1;
	letter-spacing: -0.02em;
}

h3 {
	font-size: var(--Font-size-h3);
	line-height: 1.1;
	letter-spacing: -0.01em;
}

h4 {
	font-size: var(--Font-size-h4);
	line-height: 1.1;
	letter-spacing: -0.01em;
}

h5 {
	font-size: var(--Font-size-h5);
	line-height: 1.1;
	letter-spacing: -0.01em;
}

h6 {
	font-size: var(--Font-size-h6);
	line-height: 1.1;
	letter-spacing: -0.01em;
}

/* Clases de Utilidad */
.pXL {
	font-size: var(--Font-size-pXL);
	letter-spacing: -0.01em;
}

.pL {
	font-size: var(--Font-size-pL);
	letter-spacing: -0.01em;
}

.pM {
	font-size: var(--Font-size-pM);
	letter-spacing: -0.01em;
}

.pS {
	font-size: var(--Font-size-pS);
	letter-spacing: -0.01em;
}

.pXS {
	font-size: var(--Font-size-pXS);
	letter-spacing: -0.01em;
}

.caption {
	font-size: var(--Font-size-Caption);
	color: var(--Neutral-600);
}

.light {
	font-weight: 300;
}

.regular {
	font-weight: 400;
}

.white-link {
	color: white;
}

.bg-black {
	background: var(--Neutral-900);
	color: white;
}

.bg-black h2,
.bg-black h3,
.bg-black h4,
.bg-black h5,
.bg-black h6 {
	color: white;
}


/* ==========================================================================
   6. GLOBAL COMPONENTS
   ========================================================================== */

/* --- Buttons --- */
.btn {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	text-transform: uppercase;
	border-radius: 99999px;
	transition: all var(--motion-ease-gentle) var(--motion-duration-medium);
	position: relative;
	border: none;
	outline: none;
	cursor: pointer;
}

.btn:hover {
	background: var(--Accent);
	color: var(--Neutral-900);
}

.btn__icon-wrapper {
	content: '';
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	position: relative;
	transition: all var(--motion-ease-gentle) var(--motion-duration-medium);
}
@media (min-width: 768px) {
	.btn__icon-wrapper {
		width: 36px;
		height: 36px;
	}
}
@media (min-width: 1280px) {
	.btn__icon-wrapper {
		width: 40px;
		height: 40px;
	}
}

.btn__icon-wrapper img,
.btn__icon-wrapper svg,
.btn__icon-wrapper .btn__icon-svg { 
	opacity: 0;
	transition: all var(--motion-ease-gentle) var(--motion-duration-medium);
	width: 50%;
	height: 50%;
	object-fit: contain;
}

.btn__icon-wrapper:before {
	content: '';
	display: block;
	background: white;
	width: 12px;
	height: 12px;
	border-radius: 50%;
	position: absolute;
	left: 50%; top: 50%;
	transform: translate(-50%, -50%);
	z-index: 0;
	transition: all var(--motion-ease-gentle) var(--motion-duration-medium);
}

.btn:hover .btn__icon-wrapper:before {
	width: 100%;
	height: 100%;
}

.btn:hover .btn__icon-wrapper img,
.btn:hover .btn__icon-wrapper .btn__icon-svg,
.btn:hover .btn__icon-wrapper svg {
	opacity: 1;
	position: relative;
	z-index: 1;
}

/* Btn Sizes */
.btn--large {
	padding: 12px 32px 12px 12px;
	font-size: 14px;
	gap: 8px;
}
@media (min-width: 768px) {
	.btn--large {
		padding: 16px 32px 16px 16px;
		font-size: var(--Font-size-pL);
		gap: 12px;
	}
}
@media (min-width: 1280px) {
	.btn--large {
		padding: 20px 48px 20px 25px;
		gap: 14px;
	}
}

.btn--medium {
	padding: 8px 28px 8px 8px;
	font-size: var(--Font-size-pS);
	gap: 8px;
}
@media (min-width: 768px) {
	.btn--medium {
		gap: 8px;
	}
}
@media (min-width: 1280px) {
	.btn--medium {
		gap: 10px;
	}
}

.btn--small {
	padding: 4px 16px 4px 4px;
	font-size: var(--Font-size-Caption);
	gap: 8px;
}
.btn--small .btn__icon-wrapper {
	width: 32px;
	height: 32px;
}
@media (min-width: 1280px) {
	.btn--small {
		gap: 10px;
	}
}

/* Btn Colors */
.btn--dark {
	background: var(--Neutral-900);
	color: var(--Neutral-0-White);
}

.btn--light {
	background: var(--Neutral-0-White);
	color: var(--Neutral-900);
}

.btn--light .btn__icon-wrapper:before {
	background: var(--Neutral-900);
}

.btn--light .btn__icon-wrapper img,
.btn--light .btn__icon-wrapper svg,
.btn--light .btn__icon-wrapper .btn__icon-svg {
	color: white;
}


/* --- Header & Nav --- */
.site-header {
	position: fixed;
	top: var(--Admin-bar-height);
	left: 0;
	right: 0;
	z-index: 999;
	background-color: white;
	transition: all var(--motion-ease-gentle) var(--motion-duration-medium);
}

/* Logos & Colors Logic */
.site-logo__inner img {
	filter: none !important;
	height: 56px;
	transition: all var(--motion-ease-gentle) var(--motion-duration-medium);
}
@media (min-width: 1280px) {
	.site-logo__inner img {
		height: 80px;
	}
}

/* Light Header (White BG) */
.site-header--light {
	color: var(--Neutral-900) !important;
}
.site-header--light .site-logo__inner--light {
	display: none !important;
}
.site-header--light .site-logo__inner--dark {
	display: block !important;
}

/* Dark Header (Black/Transparent BG) */
.site-header--dark {
	color: var(--Neutral-900) !important;
}
.site-header--dark .site-logo__inner--dark {
	display: none !important;
}
.site-header--dark .site-logo__inner--light {
	display: block !important;
}

/* Menu Open State */
body.menu-is-open .site-header {
	color: var(--Neutral-900) !important;
}
body.menu-is-open .site-logo__inner--light {
	display: none !important;
}
body.menu-is-open .site-logo__inner--dark {
	display: block !important;
}

/* Header Inner */
.site-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-block: 16px;
	background: transparent;
}
.site-header.is-scrolled .site-header__inner {
	padding-top: 8px;
	padding-bottom: 8px;
	background: var(--Neutral-0-White);
}
.site-header.is-scrolled .site-logo__inner img {
	height: 48px;
}
@media (min-width: 1280px) {
	.site-header.is-scrolled .site-logo__inner img {
		height: 56px;
	}
}

/* Hamburger (Mobile) */
.menu-toggle {
	display: flex;
	align-items: center;
	justify-content: center;
	background: none;
	border: none;
	cursor: pointer;
	padding: 0;
	width: 40px;
	height: 40px;
	z-index: 1002;
	position: relative;
	color: inherit;
}
@media (min-width: 1280px) {
	.menu-toggle {
		display: none;
	}
}

.menu-toggle__box {
	width: 24px;
	height: 24px;
	display: inline-block;
	position: relative;
}
.menu-toggle__inner {
	display: block;
	top: 50%;
	margin-top: -1px;
}
.menu-toggle__inner,
.menu-toggle__inner::before,
.menu-toggle__inner::after {
	width: 24px;
	height: 2px;
	background-color: currentColor;
	border-radius: 2px;
	position: absolute;
	transition: transform 0.15s ease, background-color 0.3s ease;
}
.menu-toggle__inner::before,
.menu-toggle__inner::after {
	content: "";
	display: block;
}
.menu-toggle__inner::before {
	top: -8px;
}
.menu-toggle__inner::after {
	bottom: -8px;
}

/* Hamburger to X Animation */
body.menu-is-open .menu-toggle__inner {
	background-color: transparent !important;
}
body.menu-is-open .menu-toggle__inner::before {
	transform: translateY(8px) rotate(45deg);
}
body.menu-is-open .menu-toggle__inner::after {
	transform: translateY(-8px) rotate(-45deg);
}

/* Menu Overlay (Mobile) */
.site-nav {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	background-color: var(--Neutral-0-White);
	z-index: 1001; 
	opacity: 0;
	visibility: hidden;
	transform: translateY(-20px);
	transition: all 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: var(--Layout-Margin);
}
body.menu-is-open .site-nav {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}
body.menu-is-open {
	overflow: hidden;
}

.site-nav__list {
	list-style: none;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 24px;
	margin: 0;
	padding: 0;
}
.site-nav__list li.menu-item {
	width: 100%;
	opacity: 0;
	transform: translateY(20px);
	transition: opacity 0.4s ease, transform 0.4s ease;
}
body.menu-is-open .site-nav__list li.menu-item {
	opacity: 1;
	transform: translateY(0);
}
/* Stagger */
body.menu-is-open .site-nav__list li.menu-item:nth-child(1) { transition-delay: 0.1s; }
body.menu-is-open .site-nav__list li.menu-item:nth-child(2) { transition-delay: 0.15s; }
body.menu-is-open .site-nav__list li.menu-item:nth-child(3) { transition-delay: 0.2s; }
body.menu-is-open .site-nav__list li.menu-item:nth-child(4) { transition-delay: 0.25s; }
body.menu-is-open .site-nav__list li.menu-item:nth-child(5) { transition-delay: 0.3s; }

.site-nav__list li.menu-item a {
	display: block;
	font-size: 40px;
	font-weight: 600;
	line-height: 1.1;
	color: var(--Neutral-900);
	text-decoration: none;
	padding: 0;
}

/* Hide desktop elements in mobile */
.site-nav__list li a .nav-item__text--bottom,
.site-nav__list li a:after {
	display: none;
}
.site-nav__list li a .nav-item__text--top {
	position: relative;
	transform: none !important;
	opacity: 1 !important;
	top: auto !important;
}

/* Desktop Menu (≥ 1280px) */
@media (min-width: 1280px) {
	.site-nav {
		position: static;
		height: auto;
		width: auto;
		background-color: transparent;
		opacity: 1;
		visibility: visible;
		transform: none;
		padding: 0;
		display: block;
	}
	.site-nav__list {
		flex-direction: row;
		gap: 32px;
		align-items: center;
	}
	.site-nav__list li.menu-item {
		opacity: 1;
		transform: none;
		width: auto;
	}
	
	/* Rolling Text Animation */
	.site-nav__list li.menu-item a {
		font-size: var(--Font-size-h6);
		color: inherit;
		padding: 8px 0;
		display: inline-block;
		position: relative;
		overflow: hidden;
		vertical-align: middle;
	}
	.site-nav__list li a .nav-item__text--top {
		display: block;
		transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
		transform: translateY(0);
		position: relative;
	}
	.site-nav__list li a .nav-item__text--bottom {
		display: block;
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		transform: translateY(100%);
		opacity: 1;
		transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
		display: flex;
		align-items: center;
		padding: 8px 0;
	}
	/* Hover */
	.site-nav__list li a:hover .nav-item__text--top {
		transform: translateY(-140%)!important;
	}
	.site-nav__list li a:hover .nav-item__text--bottom {
		transform: translateY(0)!important;
	}
	/* Underline */
	.site-nav__list li a:after {
		display: block;
		content: '';
		width: 0;
		height: 1px;
		background: currentColor;
		position: absolute;
		bottom: 0;
		transition: all var(--motion-ease-gentle) var(--motion-duration-medium);
	}
	.site-nav__list li a:hover:after,
	.site-nav__list li.menu-item.current_page_item a:after {
		width: 100%;
		opacity: 1;
	}
}

.smooth-scroll-container {
	position: fixed;
	inset: 0;
	top: calc(var(--Header-height) + var(--Admin-bar-height));
}

/* --- Footer --- */
.btn-scroll-top {
    position: fixed;
    bottom: 20px;
    right: -60px;
    width: 48px;
    height: 48px;
    background-color: white;
    color: black;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
	mix-blend-mode: difference;
}

.btn-scroll-top.is-visible {
    right: 20px;
    opacity: 1;
}

.btn-scroll-top:hover {
    transform: translateY(-5px);
}

.btn-scroll-top svg {
    width: 24px;
    height: 24px;
}

@media (min-width: 769px) {
    .btn-scroll-top { bottom: 30px; }
    .btn-scroll-top.is-visible { right: 30px; }
}

footer {
	border-top: solid 1px var(--Neutral-900);
	padding-top: 0;
}

.site-logo__footer img {
	max-width: 100%;
	width: 547px;
	height: auto;
	min-height: 164px;
	display: block;
}

.cta-final__inner {
	padding-bottom: 56px;
	padding-top: var(--Layout-Section-padding);
}

.cta-final__title {
	text-transform: uppercase;
	max-width: 1410px;
	padding-bottom: 56px;
}

.container-button-footer {
	display: flex;
	align-items: flex-end;
	justify-content: flex-end;
}

.container--footer-black {
	padding-top: var(--Layout-Section-padding);
	padding-bottom: var(--Layout-Section-padding);
}

.col-footer-left {
	order: 2;
}

.col-footer-center {
	order: 1;
	margin-bottom: 36px;
}

.col-footer-right {
	order: 3;
}
.col-footer-right .menu-buttons--menu-footer-izquierda {
	margin-bottom: 24px;
}
.container-logo-ba-foter img {
	max-width: 80%;
	width: 180px;
}

.site-footer__inner {
	padding-top: 16px;
	padding-bottom: 16px;
}

.site-footer__inner p {
	color: var(--Neutral-400);
}

.site-footer__inner .caption,
.site-footer__inner .text-right {
	text-align: center;
}

.menu-buttons {
	padding: 0;
	margin: 0;
}

.menu-buttons li {
	list-style: none;
}

@media (min-width: 768px) {
	.col-footer-left {
		order: 1;
	}
	.col-footer-center {
		order: 2;
	}
	.site-footer__inner .caption {
		text-align: left;
	}
	.site-footer__inner .text-right {
		text-align: right;
	}
	.site-logo__footer img {
		max-width: 100%;
		width: 547px;
		height: auto;
		min-height: 164px;
		display: block;
	}
}


/* ==========================================================================
   7. PAGE: HOME
   ========================================================================== */

/* --- Hero General --- */
.bajada-container {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 32px;
    padding-top: 20px;
}

.bajada-container h4 {
    text-indent: 48px;
	font-size: var(--Font-size-h5);
	font-weight: 400;
	line-height: 1.3;
}

.width-bajada {
    width: 100%;
    max-width: 1200px;
}
@media (min-width: 580px) {
    .bajada-container h4 {
		font-size: var(--Font-size-h4);
		font-weight: 600;
		line-height: 1.2;
	}
}

@media (min-width: 768px) {
    .bajada-container h4 {
        text-indent: 86px;
    }
    .width-bajada {
        width: 90%;
    }
	.bajada-container {
		display: flex;
		flex-direction: column;
		align-items: flex-end;
		gap: 32px;
		padding-top: 48px;
	}
}

@media (min-width: 1280px) {
    .bajada-container h4 {
        text-indent: 120px;
    }
}

/* --- A. Hero Video --- */
.section.hero-video {
    position: relative;
    width: 100%;
    padding-top: 0;
    height: auto;
    min-height: calc(100dvh - var(--Admin-bar-height, 0px) - var(--Header-height, 80px));
    display: flex;
    justify-content: center;
    align-items: center;
}


.hero-video__inner {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.hero-video__inner .row,
.hero-video__content {
    display: contents;
}

.hero__title {
    width: 950px;
    max-width: 100%;
    margin-bottom: 48px;
    font-size: 13vw;
    order: 1;
}

.hero-video__frame {
    position: relative;
    z-index: 0;
    overflow: hidden;
    transform: none !important;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    order: 2;
    margin-bottom: 48px;
}


.hero-video__content .btn {
    order: 3; 
    align-self: flex-start;
}

.hero-video__media {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-video__sticky {
    position: relative;
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    top: auto;
}

/* --- DESKTOP (A partir de 580px) --- */
@media (min-width: 580px) {
    .hero__title {
        font-size: var(--Font-size-h1, clamp(32px, 10.5vw, 50px)); 
        order: initial;
        margin-bottom: 32px;
    }

    .section.hero-video {
        height: 250vh;
        display: block;
    }

    .hero-video__inner {
        display: block;
    }
    .hero-video__inner .row,
    .hero-video__content {
        display: block;
    }

    .hero-video__sticky {
        position: sticky;
        top: calc(var(--Header-height, 112px) + var(--Admin-bar-height, 0px));
        height: calc(100vh - var(--Header-height, 112px) - var(--Admin-bar-height, 0px));
        overflow: visible;
        justify-content: flex-start;
        will-change: transform;
    }

    .hero-video__content {
        margin-top: 36px;
        margin-bottom: 0;
    }

    .hero-video__frame {
        position: absolute;
        z-index: 20;
        aspect-ratio: auto;
        order: initial;
        margin-bottom: 0;
        
        --progress: 0;
        right: var(--Layout-Margin);
        bottom: var(--Layout-Margin);
        top: auto;
        left: auto;
        
        --w-start: 30vw;
        --w-end: calc(100% - var(--Layout-Margin) * 2);
        width: calc(var(--w-start) + (var(--w-end) - var(--w-start)) * var(--progress));
        min-width: 250px;
        
        --h-start: 250px;
        --h-end: calc(100vh - var(--Layout-Margin) - var(--Header-height));
        height: calc(var(--h-start) + (var(--h-end) - var(--h-start)) * var(--progress));
    }
}

/* --- B. Intro / Scroll Reveal --- */
.scroll-reveal {
	color: var(--Neutral-900);
}
.scroll-reveal b {
	font-weight: 600;
}

.reveal-word {
	opacity: 0.15;
	transition: opacity 0.2s ease;
	display: inline-block;
	margin-right: 0.1em;
	will-change: opacity;
	font-weight: inherit !important;
}

.reveal-word.is-visible {
	opacity: 1;
}

.intro {
	display: flex;
	align-items: center;
}

.intro h3 {
	width: 1500px;
	max-width: 100%;
	font-size: 30px;
}
@media (min-width: 380px) {
	.intro h3 {
		font-size: var(--Font-size-h3);
	}
}

@media (min-width: 768px) {
	.intro {
		height: 100dvh;
	}
}

/* --- C. Convocatoria Destacada (Home) --- */
.container-convocatoria-destacada-card {
	display: flex;
	align-items: flex-end;
	justify-content: flex-end;
	padding-top: 24px;
}

.convocatoria-destacada-card {
	width: 100%;
	aspect-ratio: 11/4;
	display: flex;
	align-items: flex-end;
	padding: 0;
	position: relative;
	margin-bottom: 73px;
	background-color: var(--Neutral-0-White)!important;
}

.convocatoria-destacada h3 {
	color: white;
}
.convocatoria-destacada-card .btn {
	position: relative;
	bottom: -73px;
}

@media (min-width: 768px) {
	.container-convocatoria-destacada-card {
		padding-top: 36px;
	}
	.convocatoria-destacada-card {
		width: 1182px;
		max-width: 90%;
		padding: 4px;
	}
	
	.convocatoria-destacada-card .btn {
		position: absolute;
		top: calc(100% + 16px);
		left: 0;
		bottom: initial;
	}
	.convocatoria-destacada-card {
		margin-bottom: 56px;
	}
}

/* --- D. Marcas Destacadas (Grid Mosaico) --- */
.section--xl {
	padding-block: var(--Layout-Section-padding-XL);
}

.marcas-destacadas h2 {
	margin-bottom: 36px;
}
@media (min-width: 768px) {
	.marcas-destacadas h2 {
		margin-bottom: 56px;
	}
}
@media (min-width: 1280px) {
	.marcas-destacadas h2 {
		margin-bottom: 72px;
	}
}

.container-marcas-destacadas {
	padding: 0;
}

.card-marca-destacada {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	width: 100%;
	list-style: none;
	background-size: cover !important;
	padding: 24px;
	color: white;
}
@media (min-width: 1280px) {
	.card-marca-destacada {
		padding: 32px;
	}
}
@media (min-width: 1920px) {
	.card-marca-destacada {
		padding: 36px;
	}
}

/* Grid Logic */
.marcas-destacadas-left .card-marca-destacada:nth-child(1) {
	aspect-ratio: 4 / 5;
	max-width: 90%;
	margin-right: 10%;
}
.marcas-destacadas-left .card-marca-destacada:nth-child(2) {
	aspect-ratio: 4 / 5;
	max-width: 90%;
	margin-left: 10%;
}
.marcas-destacadas-right .card-marca-destacada:nth-child(1) {
	aspect-ratio: 4 / 5;
	max-width: 90%;
	margin-right: 10%;
}
.marcas-destacadas-bottom .card-marca-destacada:nth-child(1) {
	aspect-ratio: 4 / 5;
	max-width: 90%;
	margin-left: 10%;
}

@media (min-width: 768px) {
	.marcas-destacadas-left .card-marca-destacada:nth-child(1) {
		aspect-ratio: 4 / 4;
	}
	.marcas-destacadas-left .card-marca-destacada:nth-child(2) {
		aspect-ratio: 1 / 1;
		max-width: 90%;
		margin-left: 10%;
	}
	.marcas-destacadas-right .card-marca-destacada:nth-child(1) {
		aspect-ratio: 2 / 2.5;
	}
	.marcas-destacadas-bottom .card-marca-destacada:nth-child(1) {
		aspect-ratio: 3 / 1.7;
	}
}
@media (min-width: 1000px) {
	.marcas-destacadas-left .card-marca-destacada:nth-child(1) {
		aspect-ratio: 4 / 3;
	}
}
@media (min-width: 1280px) {
	.marcas-destacadas-left {
		padding-top: 53px;
	}
	.marcas-destacadas-left .card-marca-destacada:nth-child(1) {
		aspect-ratio: 2 / 1;
		max-width: 100%;
		margin-right: 0;
	}
	.marcas-destacadas-left .card-marca-destacada:nth-child(2) {
		aspect-ratio: 1 / 1;
		max-width: 50%;
		margin-left: 50%;
	}
	.marcas-destacadas-right .card-marca-destacada:nth-child(1) {
		aspect-ratio: 1 / 1.2;
		max-width: 100%;
		margin-right: 0;
	}
	.marcas-destacadas-bottom .card-marca-destacada:nth-child(1) {
		aspect-ratio: 2 / 1.3;
		max-width: 100%;
		margin-left: 0;
	}
}
@media (min-width: 1920px) {
	.marcas-destacadas-left .card-marca-destacada:nth-child(2) {
		width: 45%;
		margin-left: 55%;
	}
	.marcas-destacadas-bottom .card-marca-destacada:nth-child(1) {
		aspect-ratio: 2 / 1;
	}
}

/* Card Content & Hover */
.card-marca-destacada:before {
	content: '';
	display: block;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.50) 54.46%, rgba(0, 0, 0, 0.50) 100%);
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
	transition: all var(--motion-ease-gentle) var(--motion-duration-medium);
}

.top-content,
.bottom-content {
	z-index: 2;
}

.titulo-marca {
	margin-top: 8px;
	line-height: 1;
	text-shadow: rgba(0,0,0,0.2) 0 0 15px;
	color: white;
}

.activacion-chip,
.descripcion-marca {
	font-size: var(--Font-size-p);
	color: white;
}
@media (min-width: 767px) {
	.activacion-chip,
	.descripcion-marca {
		font-size: var(--Font-size-pL);
	}
}
@media (min-width: 1280px) {
	.activacion-chip,
	.descripcion-marca {
		font-size: var(--Font-size-h5);
	}
}

.activacion-chip {
	padding: 6px 16px;
	border-radius: 99999px;
	border: 1px solid var(--Neutral-0---White, #FFF);
	display: inline-block;
	max-width: 100%;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.descripcion-marca {
	line-height: 1.3;
	margin: 0;
	opacity: 1;
	transform: none;
	font-weight: var(--fw-paragraph);
	transition: all var(--motion-ease-gentle) var(--motion-duration-medium);
}

.container-button-descubri .btn {
	transform: translatey(0);
	margin-top: 24px;
}
@media (min-width: 768px) {
	.container-button-descubri .btn {
		transform: translatey(-150px);
	}
}
@media (min-width: 1280px) {
	.marcas-destacadas .btn {
		margin-left: 100px;
	}
}

/* Desktop Interactions */
.card-marca-destacada video {
	display: none;
}
@media (hover: hover) {
	.card-marca-destacada:hover:before {
		background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 51.52%, #000 100%);
	}
	.card-marca-destacada video {
		display: block;
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		object-fit: cover;
		z-index: 0;
		opacity: 0;
		transition: all var(--motion-ease-gentle) var(--motion-duration-medium);
	}
	.card-marca-destacada:hover video {
		opacity: 1;
	}
	.descripcion-marca {
		opacity: 0;
		transform: translateY(-10px);
	}
	.card-marca-destacada:hover .descripcion-marca {
		transform: translateY(0);
		opacity: 1;
	}
}

/* --- E. Marcas Slider --- */
.marcas-slider-container {
	width: 100%;
	overflow: hidden;
	background: var(--Neutral-0-White);
	padding: 32px 0 0;
}

.marcas-slider {
	display: flex;
	align-items: center;
	white-space: nowrap;
	width: 100%;
}

.marcas-track {
	display: flex;
	align-items: center;
}

.marcas-slider__item {
	flex: 0 0 auto;
	margin: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}

.marcas-slider__item img {
	max-height: 100px;
	max-width: 200px;
	width: auto;
	display: block;
	object-fit: contain;
	filter: grayscale(100%);
	transition: filter 0.3s;
}

.marcas-slider__item img:hover {
	filter: grayscale(0%);
}

.container-title-line {
	border-top: solid 1px var(--Neutral-900);
	padding-top: 56px;
	padding-bottom: 32px;
}

.container-title-line h2 {
	margin: 0;
}

@media (min-width: 768px) {
	.container-title-line {
		padding-top: 48px;
		padding-bottom: 48px;
		border-bottom: solid 1px var(--Neutral-900);
	}
}

/* --- F. Tabs (Oportunidades) --- */
.tipos-oportunidades {
    padding-top: 0;
}

.types-container {
    display: flex;
    flex-direction: column;
    margin-bottom: 36px;
}

.types__item {
    cursor: pointer;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    padding: 24px 0;
    transition: opacity var(--motion-ease-gentle) var(--motion-duration-medium);
}

.types__item:not(.types__item--active) {
    opacity: 0.5;
}

.types__item:not(.types__item--active):hover {
    opacity: 0.8;
}

.types__item--active {
    opacity: 1;
}

.types__title {
    margin: 0;
    display: flex;
    align-items: baseline;
    gap: 10px;
}

.types__index {
    font-size: 12px;
    font-weight: 400;
}

.types__panel {
    display: none;
    padding-top: 24px;
    flex-direction: column;
    gap: 24px;
}

.types__item--active .types__panel {
    display: flex;
	justify-content: flex-end;
}

.types__copy {
    font-size: var(--Font-size-h5);
    font-weight: 600;
    line-height: 1.2;
}

.types__image img {
    width: 100%;
    height: auto;
    display: block;
	aspect-ratio: 16/9;
}

@media (min-width: 768px) {
    .types-container {
        display: grid;
        grid-template-columns: 7fr 5fr;
        column-gap: 48px;
        margin: 72px 0 36px;
    }

    .types__item {
        display: contents;
    }

    .types__title {
        grid-column: 1;
        padding: 24px 0;;
        opacity: 0.5;
        transition: opacity 0.2s ease;
    }
	.types__item--active .types__title {
        opacity: 1;
    }

    .types__panel {
        grid-column: 2;
        grid-row: 1 / 20;
        align-self: start;
        padding-top: 0;
        gap: 32px;
		padding-top: 32px
    }

    .types__index {
        font-size: 18px;
    }

    .marcas-slider__item img {
        max-height: 100px;
        max-width: 200px;
    }
}

@media (min-width: 1280px) {
    .types-container {
        grid-template-columns: 654px 1fr;
    }

    .types__panel {
        flex-direction: row;
        gap: 32px;
		padding-top: 24px;
    }

    .types__index {
        font-size: 20px;
    }

    .marcas-slider__item img {
        max-height: 150px;
        max-width: 300px;
    }
    
    .types__copy {
        width: 309px;
    }
	.types__image {
		width: calc(100% - 309px - 32px);
		max-width: 462px;
	}
}

@media (min-width: 1920px) {
    .types-container {
        grid-template-columns: 834px 1fr;
    }

    .types__panel.types__panel--active {
        gap: 56px;
    }

    .types__index {
        font-size: 24px;
    }
}

/* --- G. Frases Animadas (Marquee) --- */
.scroll-container {
	width: 100vw;
	position: relative;
	left: 50%;
	right: 50%;
	margin-left: -50vw;
	margin-right: -50vw;
	overflow: visible;
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 72px;
	padding: 72px 0;
}

.frase-animada {
	white-space: normal;
	padding: 0 20px;
	text-align: center;
	opacity: 0;
	filter: blur(15px);
	will-change: transform, opacity, filter;
	transform: translate3d(0, 0, 0);
	position: relative;
	z-index: 5;
	margin: 0;
}
.frase-animada:nth-child(odd) { --offset: 150px; }
.frase-animada:nth-child(even) { --offset: -150px; }
.types__item { padding-bottom: 24px; }

/* Offsets Desktop */
@media (min-width: 769px) {
	.frase-animada {
		white-space: normal;
		padding: 0;
		max-width: 80vw;
		margin-left: auto;
		margin-right: auto;
	}
	.frase-animada:nth-child(1) { --offset: 600px; }
	.frase-animada:nth-child(2) { --offset: -500px; }
	.frase-animada:nth-child(3) { --offset: 400px; }
	.frase-animada:nth-child(4) { --offset: -650px; }
	.frase-animada:nth-child(5) { --offset: 550px; }
	.frase-animada:nth-child(6) { --offset: -450px; }
	.types__item { padding-bottom: 0; }
}



/* ==========================================================================
   8. PAGE: OPORTUNIDADES
   ========================================================================== */

.section--listado-oportunidades {
    padding-top: 0;
    transform: none !important;
    filter: none !important;
    contain: none !important;
}

.card-oportunidad {
    background: white;
    display: block;
    padding: 8px;
    color: var(--Neutral-900);
    transition: all var(--anim-duration) var(--ease-gentle);
    height: 100%;
}

.container-img {
    position: relative;
    width: 100%;
    padding-top: 100%;
    overflow: hidden;
}

.container-img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all var(--anim-duration) var(--ease-gentle);
}

.card-tax-pill {
    padding: 4px 16px;
    border-radius: 999999px;
    border: 1px solid var(--Neutral-900, #1E1E1E);
    color: var(--Neutral-900, #1E1E1E);
    font-size: var(--Font-size-Caption);
    font-weight: 400;
    line-height: 130%;
    letter-spacing: -0.3px;
    text-transform: uppercase;
    margin: 16px 0 8px;
    display: inline-block;
    transition: all var(--anim-duration) var(--ease-gentle);
}

.card-desc--mobile { display: none; }

@media (max-width: 767px) {
    .card-desc--desktop { display: none; }
    .card-desc--mobile  { display: block; }
}

.card-desc {
    font-size: var(--Font-size-pXS);
    line-height: 120%;
    letter-spacing: -0.14px;
    margin-top: 8px;
    transition: all var(--anim-duration) var(--ease-gentle);
}

.card-oportunidad:hover {
    background: var(--Neutral-900);
    color: white;
}
.card-oportunidad:hover h4 {
    color: white;
}
.card-oportunidad:hover .card-tax-pill {
    border: 1px solid white;
    color: white;
}
.card-oportunidad .featured-img {
    z-index: 2;
    transition: all var(--anim-duration) var(--ease-gentle);
}
.card-oportunidad .img-hover {
    transition: all var(--anim-duration) var(--ease-gentle);
    transform: scale(1.1);
}
.card-oportunidad:hover .featured-img {
    opacity: 0;
}
.card-oportunidad:hover .img-hover {
    transform: scale(1);
}

/* --- Barra de búsqueda --- */
.search-bar-container {
    padding: 0;
    margin-bottom: 16px;
}

.search-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.search-icon {
    position: absolute;
    left: 16px;
    width: 20px;
    height: 20px;
    color: #666;
}

.search-input {
    width: 100%;
    padding: 12px 16px 12px 48px;
    border-radius: 999px;
    border: 1px solid var(--Neutral-900);
    outline: none;
    font-family: inherit;
}

/* --- Filtros --- */
.oportunidades-filters {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    margin-bottom: 32px;
}

.container-filtros {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    flex-grow: 1;
    min-width: 0;
    position: relative;
}
.container-filtros:before {
    content: '';
    display: block;
    background: linear-gradient(270deg, #FFF 0%, rgba(255, 255, 255, 0.00) 100%);
    position: absolute;
    top: 0;
    right: 0;
    width: 16px;
    height: 100%;
    z-index: 9;
}

.filtros-label {
    display: none;
}

.filter-form {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 4px;
    gap: 12px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.filter-form::-webkit-scrollbar {
    display: none;
}

.filter-group {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
}

.filter-pill-wrapper {
    position: relative;
    display: inline-block;
}

.pill-visual {
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: #fff;
    border: 1px solid var(--Neutral-900);
    border-radius: 999px;
    padding: 10px 20px;
    font-size: var(--Font-size-pXS);
    color: var(--Neutral-900);
    white-space: nowrap;
    transition: background-color 0.3s ease;
    cursor: pointer;
    font-family: inherit;
    line-height: normal;
}

.pill-arrow {
    width: 10px;
    height: 10px;
    background: url(../img/arrow-filter.svg) no-repeat;
    background-size: 10px;
    pointer-events: none;
}

/* --- Custom multiselect dropdown --- */
.filter-dropdown.is-in-body {
    position: fixed;
    z-index: 10000;
    background: #fff;
    border: 1px solid var(--Neutral-900);
    border-radius: 16px;
    padding: 6px 0;
    min-width: 180px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
    display: none;
    max-height: 260px;
    overflow-y: auto;
    scrollbar-width: none;
}

.filter-dropdown.is-in-body::-webkit-scrollbar {
    display: none;
}

.filter-dropdown.is-in-body.open {
    display: block;
}

.filter-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 16px;
    cursor: pointer;
    font-size: var(--Font-size-pXS);
    white-space: nowrap;
    transition: background-color 0.15s ease;
}

.filter-option:hover {
    background-color: #f5f5f5;
}

.filter-checkbox {
    -webkit-appearance: none;
    appearance: none;
    width: 16px;
    height: 16px;
    min-width: 16px;
    border: 1.5px solid var(--Neutral-900);
    border-radius: 4px;
    cursor: pointer;
    position: relative;
    transition: background-color 0.15s ease, border-color 0.15s ease;
}

.filter-checkbox:checked {
    background-color: var(--Neutral-900);
    border-color: var(--Neutral-900);
}

.filter-checkbox:checked::after {
    content: '';
    position: absolute;
    width: 4px;
    height: 8px;
    border: 2px solid #fff;
    border-top: none;
    border-left: none;
    transform: rotate(45deg);
    top: 0px;
    left: 4px;
}

/* --- Botón limpiar todos --- */
.btn-limpiar-filtros {
    background: none;
    border: none;
    color: var(--Neutral-900);
    font-size: var(--Font-size-pXS);
    font-family: inherit;
    text-decoration: underline;
    cursor: pointer;
    padding: 4px 8px;
    white-space: nowrap;
    display: none;
    align-items: center;
    opacity: 0.65;
    transition: opacity 0.2s ease;
    flex-shrink: 0;
}

.btn-limpiar-filtros:hover {
    opacity: 1;
}

.filter-pill-wrapper.active .pill-visual {
    background-color: var(--Accent);
    border-color: var(--Neutral-900);
}

.filter-pill-wrapper:hover .pill-visual {
    border-color: var(--Neutral-900);
    background-color: #f0f0f0;
}

.filter-pill-wrapper.active:hover .pill-visual {
    background-color: #81d3c4;
}

/* --- Botón abrir calendario --- */
.open-calendar {
    flex-shrink: 0;
    background-color: var(--Neutral-900);
    border-radius: 50%;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    cursor: pointer;
}

.calendar-label,
.calendar-icon-desktop {
    display: none;
}

.calendar-icon-mobile {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* --- Layout wrapper --- */
.layout-oportunidades-wrapper,
.col-oportunidades,
.main-column-grid {
    transform: none !important;
    filter: none !important;
    contain: none !important;
    will-change: auto !important;
}

.layout-oportunidades-wrapper {
    position: relative;
}


.col-oportunidades {
    box-sizing: border-box;
}

/* --- Grid de cards --- */
.oportunidades-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 4px;
    row-gap: 24px;
    transition: opacity 0.4s ease;
}

.oportunidades-grid.is-loading {
    opacity: 0.5;
    pointer-events: none;
}

.oportunidad-item {
    width: 100%;
    min-width: 0;
}

/*   SIDEBAR CALENDAR — Arquitectura nueva */

.sidebar-calendar {
    background-color: var(--Neutral-900);
    color: #fff;
    overflow: hidden;
    z-index: 9999;
}

.sidebar-calendar.is-in-body {
    position: fixed;
    top: 0;
    right: 0;
    height: 100dvh;
    transform: translateX(100%);
    opacity: 0;
    transition: transform 0.35s cubic-bezier(0.22, 0.61, 0.36, 1),
                opacity 0.2s ease;
}

.sidebar-calendar.is-in-body.open {
    transform: translateX(0);
    opacity: 1;
}

/* Mobile: ocupa toda la pantalla */
.sidebar-calendar.is-in-body {
    width: 100vw;
}

@media (min-width: 1025px) {
    .sidebar-calendar.is-in-body {
        width: 360px;
        top: calc(var(--Header-height) + var(--Admin-bar-height, 0px));
        height: calc(100dvh - var(--Header-height) - var(--Admin-bar-height, 0px));
    }
}

/* --- Interior del sidebar --- */
.sidebar-inner {
    width: 100%;
    height: 100%;
    padding: 25px 25px 0 25px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
}

.sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    color: white;
    flex-shrink: 0;
}


.sidebar-content {
    flex-grow: 1;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 25px;
    scrollbar-width: thin;
    scrollbar-color: rgba(255,255,255,0.4) transparent;
}
.sidebar-content::-webkit-scrollbar {
    width: 4px;
}
.sidebar-content::-webkit-scrollbar-track {
    background: transparent;
}
.sidebar-content::-webkit-scrollbar-thumb {
    background: rgba(255,255,255,0.4);
    border-radius: 2px;
}

.sidebar-header h4 {
    color: white;
    max-width: calc(100% - 46px);
    padding-right: 16px;
}

.close-btn {
    background: #fff;
    border: none;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    cursor: pointer;
    font-size: 20px;
    line-height: 1;
    color: #000;
    flex-shrink: 0;
}

/* --- Eventos en el sidebar --- */
.calendar-month-group {
    margin-bottom: 30px;
}

.month-title {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.month-events-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.month-events-list li {
    margin-bottom: 15px;
}

.sidebar-event-card {
    display: flex;
    gap: 12px;
    text-decoration: none;
    color: #fff;
    align-items: flex-start;
}

.sidebar-event-card:hover {
    opacity: 0.8;
    color: #ccc;
}

.event-thumb {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
    background: #333;
}

.event-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.event-info h5 {
    margin: 0 0 5px;
    font-size: 0.95rem;
    line-height: 1.2;
    color: #fff;
}

.event-info p {
    margin: 0;
    font-size: 0.8rem;
    color: #aaa;
}

/* --- Load more --- */
.load-more-container {
    width: 100%;
    display: flex;
    justify-content: center;
    margin: 40px 0 var(--Layout-Section-padding);
}

/* --- Responsive breakpoints --- */
@media (min-width: 580px) {
    .card-oportunidad {
        padding: 16px;
    }
    .card-tax-pill {
        padding: 6px 20px;
        font-size: var(--Font-size-pXS);
        line-height: 150%;
        letter-spacing: -0.42px;
        margin: 24px 0 12px;
    }
    .oportunidades-grid {
        column-gap: 12px;
    }
}

@media (min-width: 768px) {
    .oportunidades-grid {
        grid-template-columns: repeat(3, 1fr);
        column-gap: 12px;
        row-gap: 24px;
    }
}

@media (min-width: 1025px) {
    .oportunidades-filters {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .filtros-label {
        display: block;
        margin-right: 16px;
    }

    .filter-form {
        flex-wrap: wrap;
        overflow-x: visible;
    }

    .open-calendar {
        background-color: transparent;
        border-radius: 0;
        width: auto;
        height: auto;
        padding: 0;
        gap: 8px;
    }

    .calendar-label,
    .calendar-icon-desktop {
        display: block;
    }

    .calendar-icon-mobile {
        display: none;
    }
}

@media (min-width: 1280px) {
    .pill-visual {
        font-size: var(--Font-size-pS);
    }
    .open-calendar h6 {
        font-size: var(--Font-size-pM);
    }
}

@media (min-width: 1368px) {
    .oportunidades-grid {
        grid-template-columns: repeat(4, 1fr);
        column-gap: 16px;
        row-gap: 24px;
    }
}


/* ==========================================================================
   9. PAGE: MARCAS QUE YA PARTICIPAN
   ========================================================================== */

ul.list-marcas {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1px;
	background-color: var(--Neutral-300);
	border: 1px solid var(--Neutral-300);
	padding: 0;
	margin: 0;
	list-style: none;
}
@media (min-width: 580px) {
	ul.list-marcas {
		grid-template-columns: repeat(3, 1fr);
	}
}
@media (min-width: 768px) {
	ul.list-marcas {
		grid-template-columns: repeat(4, 1fr);
	}
}
@media (min-width: 1280px) {
	ul.list-marcas {
		grid-template-columns: repeat(6, 1fr);
	}
}

li.item-marca {
	background-color: #fff;
	aspect-ratio: 1 / 1;
	overflow: hidden;
	border-radius: 0 !important;
}

a.marca-link {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	text-decoration: none;
	position: relative;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	z-index: 1;
	padding: 2px;
	transition: transform 0.4s ease;
}

a.marca-link:hover {
	transform: scale(1.06);
}

/* White Curtain Overlay */
a.marca-link::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #ffffff;
	opacity: 1;
	transition: opacity 0.4s ease;
	z-index: 1;
}

a.marca-link:hover::before {
	opacity: 0.3;
	background-color: rgba(0,0,0,0.3);
}

a.marca-link:hover .marca-title {
	color: white;
}

.marca-title {
	color: var(--Neutral-800);
	z-index: 2;
	text-align: center;
}

img.marca-logo {
	position: relative;
	z-index: 2;
	max-width: 100%;
	object-fit: contain;
	transition: filter 0.3s ease, transform 0.3s ease;
}

a.marca-link:hover img.marca-logo {
	filter: invert(1);
	transform: scale(1.05);
}

.section--carousel-marcas h3 {
	max-width: 900px;
	margin-bottom: 36px;
}


/* ==========================================================================
   10. PAGE: FAQ
   ========================================================================== */

/* FAQ Accordion */
.ba-accordion-wrapper {
	border-bottom: 2px solid var(--Neutral-900);
}

.ba-accordion-item {
	border-top: 2px solid var(--Neutral-900);
	position: relative;
}

.ba-accordion-item:before {
	content: '';
	display: block;
	width: 100%;
	height: 0;
	background: var(--Accent);
	z-index: -1;
	transition: all 0.3s var(--ease-gentle);
	position: absolute;
	bottom: 0;
	left: 0;
}

.ba-accordion-item:hover:before {
	height: 100%;
}

.ba-accordion-trigger {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: start;
	gap: 16px;
	border: none;
	padding: 36px 16px;
	cursor: pointer;
	text-align: left;
	transition: background-color 0.3s ease;
	outline: none;
	position: relative;
	background: transparent;
}

.ba-acc-number {
	width: 32px;
}

.ba-acc-title {
	width: 800px;
	max-width: calc(100% - 32px - 24px);
}

.ba-acc-icon {
	width: 16px;
	height: 16px;
	position: relative;
	flex-shrink: 0;
}

.ba-acc-icon .line {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	transition: transform 0.3s ease;
	background: var(--Neutral-900);
}

.line-horizontal {
	width: 100%;
	height: 4px;
}

.line-vertical {
	width: 4px;
	height: 100%;
}

.ba-accordion-trigger[aria-expanded="true"] .line-vertical {
	transform: translate(-50%, -50%) rotate(90deg);
	opacity: 0;
}

.ba-accordion-content {
	max-height: 0;
	opacity: 0;
	overflow: hidden;
	transition: max-height 0.4s ease, opacity 0.4s ease;
	display: flex;
	justify-content: space-between;
}

.ba-accordion-content.is-open {
	opacity: 1;
}

.ba-accordion-body a:not(.btn) {
	color: var(--Neutral-900) !important;
	text-decoration: underline !important;
}

.ba-accordion-body .btn {
	margin-top: 16px;
}

.ba-accordion-body {
	width: 800px;
	max-width: calc(100% - 32px - 24px);
	padding-bottom: 36px;
	display: block;
}

.space-32 {
	width: 16px;
	height: 16px;
}

.space-24 {
	width: 24px;
	height: 24px;
}

.ba-accordion-content .btn:hover {
	background-color: #CAF1EB;
}

/* ≥ 581px */
@media (min-width: 581px) {
	.ba-accordion-trigger {
		padding-left: 0;
		padding-right: 0;
	}
	.space-32 {
		width: 32px;
		height: 32px;
	}
	.ba-acc-icon {
		width: 20px;
		height: 20px;
	}
}

/* ≥ 981px */
@media (min-width: 981px) {
	.ba-accordion-trigger {
		justify-content: space-between;
		gap: 0;
		padding: 36px 0;
	}
	.ba-acc-icon {
		width: 24px;
		height: 24px;
	}
}

/* ==========================================================================
   10. PAGE: CONTACTO
   ========================================================================== */
/* Base (mobile) */
.container-contacto {
	display: flex;
	flex-direction: column-reverse;
}

.container-text-contacto {
	width: 100%;
}

.container-text-contacto h5 {
	margin-bottom: 12px;
}

.container-text-contacto h4 {
	font-size: 5.3vw;
}
.container-text-contacto a {
	color: var(--Neutral-900);
}

.container-form {
	padding: 56px 0 0 0;
	width: 100%;
}

.form-group {
	margin-bottom: 30px;
}

form label,
.form-group label {
	display: block;
	font-size: var(--Font-size-h6);
	font-weight: 600;
	line-height: 110%;
	letter-spacing: -0.2px;
}

form input:not([type="submit"]),
form textarea {
	width: 100%;
	border: none;
	border-bottom: 1px solid var(--Neutral-900);
	background: transparent;
	padding: 12px 0;
	border-radius: 0;
	outline: none;
	transition: border-color 0.3s ease;
	font-size: var(--Font-size-pXL, 24px);
	font-weight: 400;
	line-height: 150%;
	letter-spacing: -0.72px;
}

.wpcf7-not-valid {
	border-bottom: 1px solid #dc3232 !important;
	color: #dc3232 !important;
}

.form-group.field-error label {
	color: #dc3232;
}

.form-group.field-error input:not([type="submit"]),
.form-group.field-error textarea {
	border-bottom-color: #dc3232;
}

form input::placeholder,
form textarea::placeholder {
	color: var(--Neutral-500) !important;
	font-weight: 400;
}

.form-submit-container {
	text-align: right;
	margin-top: 20px;
}

.btn-submit {
	border: none;
}

.form-response {
	margin-bottom: 20px;
	text-align: right;
}

.form-response.success {
	color: var(--Accent);
	font-weight: 700;
}

.form-response.error {
	color: #E74040;
	font-weight: 700;
}

.wpcf7-submit {
	outline: none;
	border: none;
	display: flex;
	padding: 1rem 1.75rem;
	justify-content: center;
	align-items: center;
	gap: 0.625rem;
	border-radius: 9999px;
	background: var(--Neutral-900, #1E1E1E);
	color: var(--Neutral-0---White, #FFF);
	font-size: var(--Font-size-pS, 1rem);
	font-style: normal;
	font-weight: 500;
	line-height: 150%;
	text-transform: uppercase;
}

.wpcf7-submit:hover {
	opacity: 0.7;
	cursor: pointer;
}

.wpcf7 form.sent .wpcf7-response-output {
	background-color: var(--Accent);
	border-color: var(--Accent);
	font-size: var(--Font-size-pM);
	padding: 1rem;
}

.wpcf7 form .wpcf7-response-output {
	margin: 1em 0;
	border-radius: 4px;
}
#hubspot-form-feedback {
    background: var(--Neutral-200);
    padding: 24px;
}
#hubspot-form-feedback:empty {
	padding: 0!important;
}
#hubspot-submit-btn {
	outline: none;
    border: none;
    cursor: pointer;
}

/* ≥ 580px */
@media (min-width: 580px) {
	.container-text-contacto h4 {
		font-size: var(--Font-size-h4);
	}
}
/* ≥ 768px */
@media (min-width: 768px) {
	.container-text-contacto h5 {
		margin-bottom: 20px;
	}
	#hubspot-form-feedback {
		padding: 32px;
	}
}

/* ≥ 1281px */
@media (min-width: 1281px) {
	.container-contacto {
		flex-direction: row;
	}
	.container-text-contacto {
		width: 533px;
	}
	.container-form {
		padding: 0 70px 0 0;
		width: calc(100% - 533px);
	}

}



/* ==========================================================================
   MODAL SUSCRIPCIÓN
   ========================================================================== */

.modal-suscripcion {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 99998;
    align-items: center;
    justify-content: center;
}

.modal-suscripcion.is-open {
    display: flex;
}

.modal-suscripcion__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    cursor: pointer;
}

.modal-suscripcion__box {
    position: relative;
    z-index: 1;
    background: #fff;
    padding: 56px 40px 40px;
    max-width: 560px;
    width: 90vw;
    max-height: 90dvh;
    overflow-y: auto;
    scrollbar-width: thin;
}

.modal-suscripcion__close {
    position: absolute;
    top: 16px;
    right: 20px;
    background: none;
    border: none;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    color: var(--Neutral-900);
    opacity: 0.5;
    padding: 0;
    transition: opacity 0.2s ease;
}

.modal-suscripcion__close:hover {
    opacity: 1;
}

.modal-suscripcion__title {
    margin-bottom: 32px;
    text-transform: uppercase;
}

.required-star {
    font-weight: 400;
}

#suscripcion-form-feedback {
    background: var(--Neutral-200);
    padding: 24px;
}

#suscripcion-form-feedback:empty {
    padding: 0 !important;
}

#suscripcion-submit-btn {
    outline: none;
    border: none;
    cursor: pointer;
    margin-top: 8px;
}

@media (max-width: 580px) {
    .modal-suscripcion__box {
        padding: 48px 24px 32px;
        width: 100vw;
        max-width: 100vw;
        max-height: 100dvh;
        align-self: flex-end;
    }
}


/* ==========================================================================
   11. PAGE: CONVOCATORIAS ABIERTAS
   ========================================================================== */

.hero--convocatorias-abiertas {
	padding-bottom: 0!important;
}

/* Horizontal Scroll System */
.horizontal-scroll-wrapper {
	position: relative;
	width: 100%;
	display: block;
}

.sticky-container {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	overflow: hidden;
	display: flex;
	align-items: center;
	background: #fff;
	z-index: 10;
	will-change: transform;
	box-sizing: border-box;
	padding-top: var(--Header-height);
}

.horizontal-strip {
	display: flex;
	gap: 24px;
	padding: 0 var(--Layout-Margin);
	width: max-content;
	height: 100%;
	align-items: center;
	will-change: transform;
}

/* Scroll Cards */
.card-convocatoria {
	aspect-ratio: 4 / 5;
	height: 75vh;
	flex-shrink: 0;
	overflow: hidden;
	position: relative;
	background-color: var(--Neutral-900);
	max-width: 93vw;
}

.card-convocatoria__link {
	display: block;
	width: 100%;
	height: 100%;
	text-decoration: none;
	position: relative;
}

.card-convocatoria__bg {
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center;
	position: absolute;
	top: 0;
	left: 0;
	transition: transform 0.6s ease;
	z-index: 0;
}

.card-convocatoria:hover .card-convocatoria__bg {
	transform: scale(1.1);
}

.card-convocatoria__overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
	transition: background 0.4s ease;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 0%, rgba(0, 0, 0, 0.85) 100%);
	transition: all ease 0.3s;
}

.card-convocatoria:hover .card-convocatoria__overlay {
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 0%, rgba(0, 0, 0, 0.85) 67.31%);
}

.card-convocatoria__content {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	padding: 30px;
	z-index: 2;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	align-items: flex-start;
}

.card-convocatoria__pill {
	display: flex;
	padding: 7px 20px;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	gap: 10px;
	border-radius: 999999px;
	border: 1px solid white;
	color: var(--Neutral-0---White, #FFF);
	font-size: var(--Font-size-pXS, 14px);
	font-weight: 400;
	line-height: 150%;
	letter-spacing: -0.42px;
	text-transform: uppercase;
	margin-bottom: 12px;
}

.card-convocatoria__title {
	color: white;
}

#sticky-layer {
	position: fixed;
	inset: 0;
	z-index: 900;
	pointer-events: none;
}

#sticky-layer .sticky-container {
	pointer-events: auto;
}

.por-que-postularse-convocatoria {
	padding: var(--Layout-Section-padding-XL) 0;
}

.por-que-postularse-convocatoria,
.por-que-postularse-convocatoria h3,
.por-que-postularse-convocatoria li {
	color: white;
}

.por-que-postularse-convocatoria h3 {
	max-width: 1369px;
}

.list-arrow {
	padding: 0;
}

.list-arrow li {
	list-style: none;
	padding-left: 42px;
	padding-bottom: 12px;
	background: url('../img/arrow-right.svg') no-repeat left 3px;
}

.por-que-postularse-convocatoria ul {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 12px;
	margin-top: 48px;
}

.por-que-postularse-convocatoria li {
	font-size: var(--Font-size-h4);
	line-height: 110%;
	letter-spacing: -0.32px;
	width: 1080px;
	max-width: 100%;
}

.img-convocatoria {
	margin-top: -52px;
}

.img-convocatoria img {
	max-height: 90vh;
	width: 100%;
	object-fit: cover;
}


/* ==========================================================================
   12. PAGE: PRENSA
   ========================================================================== */

.container-hero-object {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	flex-direction: column-reverse;
	padding-left: 0;
}

.container-hero-object .section--hero-interno {
	max-width: 1200px;
	width: 100%;
}

.prensa-filters {
	width: 100%;
	padding: 0 var(--Layout-Margin);
	display: flex;
	gap: 16px;
	margin-bottom: 32px;
}

.filter-btn {
	background: none;
	border: none;
	display: block;
	padding: 4px 0;
	color: var(--Neutral-900);
	font-size: var(--Font-size-h4);
	font-weight: 400;
	line-height: 120%;
	letter-spacing: -0.32px;
	text-transform: uppercase;
	transition: all ease 0.3s;
	cursor: pointer;
}

.filter-btn.is-active {
	font-weight: 700;
}

.filter-btn:hover {
	opacity: 0.7;
}

/* Grid */
.prensa-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	align-items: flex-start;
	gap: 16px;
	align-self: stretch;
	flex-wrap: wrap;
	height: auto !important;
    min-height: 200px;
    overflow: hidden;
}
.prensa-wrapper, 
.prensa-container { 
    height: auto !important; 
}

.prensa-card {
	transition: all ease 0.3s;
}

.prensa-card:nth-child(even) {
	margin-top: 48px;
}

.prensa-card__link {
	display: flex;
	padding: 0;
	flex-direction: column;
	align-items: flex-start;
	gap: 8px;
	align-self: stretch;
}

.prensa-card__image {
	position: relative;
	width: 100%;
}

.prensa-card__image .wp-post-image {
	aspect-ratio: 836/497;
	width: 100%;
	object-fit: cover;
}

.card-prensa__icon {
	position: absolute;
	top: 8px;
	right: 8px;
	width: 32px;
	height: 32px;
	transition: all 0.3s ease;
}

.prensa-card__content {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 12px;
	align-self: stretch;
	transition: all ease 0.3s;
}

.prensa-card__category {
	display: inline-block;
	padding: 4px 8px;
	border-radius: 999999px;
	border: 1px solid var(--Neutral-900, #1E1E1E);
	color: var(--Neutral-900, #1E1E1E);
	font-size: var(--Font-size-pXS, 12px);
	font-weight: 400;
	line-height: 150%;
	letter-spacing: -0.42px;
	text-transform: uppercase;
	transition: all ease 0.3s;
}

.prensa-card .prensa-card__title {
	font-size: var(--Font-size-h6);
	transition: all ease 0.3s;
}

/* Prensa Hover */
.prensa-card:hover {
	background-color: var(--Neutral-900);
	color: white;
}

.prensa-card:hover .prensa-card__category {
	border: 1px solid white;
	color: white;
}

.prensa-card:hover .prensa-card__title {
	color: white;
}

.prensa-card:hover .card-prensa__icon {
	top: -56px;
	right: -56px;
	opacity: 0;
}

@media (min-width: 581px) {
	.prensa-card__link { padding: 24px; gap: 24px; }
	.prensa-card__category { padding: 7px 20px; font-size: var(--Font-size-pXS, 14px); }
	.prensa-card .prensa-card__title { 
		font-size: var(--Font-size-h4);
	}
}
@media (min-width: 768px) {
	.container-hero-object {
		flex-direction: row;
		padding-left: var(--Layout-Margin);
	}
	.container-hero-object .section--hero-interno { 
		width: calc(100% - 200px);
	 }
	.prensa-filters {
		width: 160px;
		padding: 0;
		display: block;
		gap: 0;
		margin-bottom: 0;
		padding-bottom: var(--Layout-Section-padding);
	}
	.prensa-grid { gap: 56px; }
	.card-prensa__icon { top: 16px; right: 16px; width: 56px; height: 56px; }
}
@media (min-width: 1025px) {
	.container-hero-object .section--hero-interno { width: calc(100% - 250px); }
	.prensa-filters { width: 200px; }
}

/* ==========================================================================
   13. PAGE: DETALLE (SINGLES)
   ========================================================================== */

/* Oportunidad */
.oportunidad-hero {
    padding-top: 16px;
}

.container-frase-flecha {
    display: flex;
    padding-bottom: 36px;
    align-items: center;
    gap: 23px;
    align-self: stretch;
}

.container-flecha-back {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.container-flecha-back svg {
    fill: #606060;
}

.tooltip {
    display: none;
    max-width: 200px;
    padding: 12px;
    background: var(--Neutral-800);
    color: white;
    font-size: var(--Font-size-pS);
    border-radius: 4px;
    position: absolute;
    top: 100%;
    left: 0;
    transition: all ease 0.3s;
    transform: translatey(-10px);
}

.container-flecha-back:hover .tooltip {
    display: inline-block;
    transform: translatey(0);
}

.container-flecha-back:hover svg {
    fill: var(--Neutral-900);
}

.pill-frase {
    display: inline-block;
    padding: 16px 25px;
    border-radius: 999px;
    border: 1px solid var(--Neutral-900, #1E1E1E);
    font-size: var(--Font-size-pS);
}

.subtitulo-oportunidad {
    color: var(--Neutral-900);
    font-size: 20px!important;
    font-weight: 600;
    line-height: 120%;
    text-transform: uppercase;
    margin-bottom: 12px;
}
.oportunidad-media {
    padding-top: 0;
}

.container-btn-meinteresa {
	gap: 16px;
    display: flex;
    flex-wrap: wrap;
}

.media-wrapper {
    width: 100%;
}

.media-wrapper video,
.media-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    max-height: calc(100vh - var(--Header-height));
}

.oportunidad-info-grid {
    padding-top: var(--Layout-Section-padding-XL);
    padding-bottom: var(--Layout-Section-padding-XL);
}

.oportunidad-info-grid h4 {
    color: white;
    font-size: 32px;
    margin-bottom: 24px;
}

.oportunidad-info-grid li {
    font-size: var(--Font-size-h4);
    padding-bottom: 32px;
}

.oportunidad-galeria {
    padding-top: 24px;
}

.gallery-wrapper {
    position: relative;
    width: 100%;
}

.gallery-viewport {
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-behavior: smooth;
    cursor: grab;
}

.gallery-viewport::-webkit-scrollbar {
    display: none;
}

.gallery-track {
    display: flex;
    flex-wrap: nowrap;
    gap: 16px;
    margin-bottom: 24px;
}

.gallery-item {
    max-height: calc(90vh - var(--Header-height));
	height: 210px;
    object-fit: cover;
    display: block;
    flex-shrink: 0;
    cursor: pointer;
}


.gallery-controls {
    display: flex;
    align-items: center;
    gap: 24px;
    justify-content: center;
	margin-top: 16px;
}

.gallery-controls[hidden] {
    display: none !important;
}

.circle-btn {
    background-color: var(--Neutral-900);
    color: #fff;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
    transition: background 0.3s;
}

.circle-btn:hover {
    background-color: var(--Neutral-500);
}

/* ─── BA GALLERY WRAPPER ─────────────────────────────────────── */
.ba-gallery-wrapper {
    position: relative;
    width: 100%;
}

/* ─── BA GALLERY CAROUSEL ────────────────────────────────────── */
.ba-gallery-carousel .gallery-viewport {
    overflow-x: clip;
    overflow-y: visible;
}

.ba-gallery-carousel.is-scrollable .gallery-viewport {
    cursor: grab;
}

.ba-gallery-carousel .gallery-viewport.is-dragging {
    cursor: grabbing;
    user-select: none;
}

.ba-gallery-carousel .gallery-track {
    will-change: transform;
    user-select: none;
    /* gap y margin-bottom heredados del base: 24px */
}

.ba-gallery-carousel .gallery-btn:focus-visible {
    outline: 2px solid currentColor;
    outline-offset: 2px;
}

/* ─── GALLERY ITEM: OPORTUNIDAD CARD (carousel marcas) ───────── */
.gallery-item--oportunidad-card {
    flex-shrink: 0;
    width: 320px;
    height: auto !important;
    max-height: none !important;
    cursor: pointer;
}

.gallery-item--oportunidad-card .oportunidad-item {
    width: 100%;
	height: 100%;
}

.gallery-item--oportunidad-card .card-oportunidad {
    height: 100%;
}
.gallery-item--oportunidad-card .container-img {
	margin-bottom: 16px;
}

@media (min-width: 768px) {
    .gallery-item--oportunidad-card {
		width: 450px!important;
	}
}

/* ─── BA LIGHTBOX ────────────────────────────────────────────── */
.ba-lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: rgba(0, 0, 0, 0.88);
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.ba-lightbox.is-open {
    display: flex;
}

body.lightbox-open {
    overflow: hidden;
}

.ba-lightbox__img-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: calc(100vw - 160px);
    max-height: 90dvh;
}

.ba-lightbox__img {
    display: block;
    max-width: 100%;
    max-height: 90dvh;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 4px;
    user-select: none;
    -webkit-user-drag: none;
}

.ba-lightbox__btn {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.5);
    background: transparent;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, border-color 0.2s;
}

.ba-lightbox__btn:hover {
    background: rgba(255,255,255,0.15);
    border-color: #fff;
}

.ba-lightbox__close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.5);
    background: transparent;
    color: #fff;
    font-size: 22px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, border-color 0.2s;
    line-height: 1;
}

.ba-lightbox__close:hover {
    background: rgba(255,255,255,0.15);
    border-color: #fff;
}

@media (max-width: 600px) {
    .ba-lightbox__img-wrap {
        max-width: calc(100vw - 80px);
    }

    .ba-lightbox__btn {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }
}

.container-flex {
    display: flex;
    justify-content: flex-end;
}

.oportunidad-mas-info .wysiwyg-content {
    width: 1280px;
    max-width: 80%;
    line-height: 1.5;
}

.oportunidad-mas-info .wysiwyg-content p {
    font-size: var(--Font-size-h4);
    line-height: 1.5;
}

.oportunidad-mapa {
    padding-top: 0;
    padding-inline: 0;
}

.map-responsive-wrapper {
    position: relative;
    padding-bottom: 75%;
    height: 0;
    overflow: hidden;
    max-width: 100%;
    width: 1280px;
    background-color: #f0f0f0;
    margin: 0 auto;
}

.map-responsive-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
    border: 0;
}

.oportunidad-relacionadas {
	padding-bottom: 32px;
}
.oportunidad-relacionadas h3 {
    margin-bottom: 36px;
}

.oportunidad-relacionadas .row {
    display: flex;
    flex-wrap: wrap;
	gap: 24px 0;
}

.oportunidad-relacionadas .oportunidad-item {
    flex: 0 0 50% !important;
    max-width: 50% !important;
    width: 50% !important;
}
.back-section {
	padding-top: 32px;
}

@media (min-width: 580px) {
    .pill-frase {
        font-size: unset;
    }
    
    .subtitulo-oportunidad {
        font-size: 36px!important;
    }

    .oportunidad-info-grid h4 {
        font-size: 36px;
        margin-bottom: 48px;
    }

    .map-responsive-wrapper {
        padding-bottom: 33%;
    }

    .oportunidad-relacionadas h3 {
        margin-bottom: 56px;
    }
}

@media (min-width: 768px) {
    .subtitulo-oportunidad {
        font-size: 52px!important;
    }

    .oportunidad-info-grid h4 {
        font-size: 48px;
    }

    .gallery-item {
        height: 480px;
    }

    .container-frase-flecha {
        padding-bottom: 56px;
    }

    .oportunidad-media {
        padding-top: var(--Layout-Section-padding);
    }

    .oportunidad-mapa {
		padding-top: var(--Layout-Section-padding);
        padding-inline: var(--Layout-Margin);
    }

    .oportunidad-relacionadas .oportunidad-item {
        flex: 0 0 33.333% !important;
        max-width: 33.333% !important;
        width: 33.333% !important;
    }
}

@media (min-width: 1024px) {
    .gallery-item {
        width: auto;
    }
}

@media (min-width: 1280px) {
    .container-frase-flecha {
        padding-bottom: 64px;
    }

    .oportunidad-relacionadas .oportunidad-item {
        flex: 0 0 25% !important;
        max-width: 25% !important;
        width: 25% !important;
    }
}

/* Marcas Single */
.marca-hero {
	padding-top: 0;
}
.marca-hero .container-frase-flecha {
	margin-bottom: 8px;
}

.marca-hero .marca-logo {
	background: var(--Neutral-300);
	width: 150px;
	height: 150px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 24px;
}

.marca-logo img {
	object-fit: contain;
	-webkit-font-smoothing: antialiased;
}

.marca-contenido .container-wysiwyg-content {
	position: relative;
	display: flex;
}

.corchete {
	width: 13px;
	border-top: solid 2px var(--Neutral-900, #1E1E1E);
	border-bottom: solid 2px var(--Neutral-900, #1E1E1E);
}

.corchete-left {
	border-left: solid 2px var(--Neutral-900, #1E1E1E);
}

.corchete-right {
	border-right: solid 2px var(--Neutral-900, #1E1E1E);
}

.marca-contenido .wysiwyg-content {
	width: calc(100% - 26px);
	padding: 16px 8px;
}

.container-img-marca-1 img {
	margin-left: 32px;
	margin-top: 32px;
}

.marca-barra-gris {
	padding-top: var(--Layout-Margin, 48px);
	padding-bottom: var(--Layout-Margin, 48px);
	background: var(--Neutral-200, #ECECEC);
}

.marca-barra-gris p {
	width: calc(100% - 32px - 30px);
	display: flex;
	gap: 30px;
	align-self: stretch;
	font-weight: 600;
	line-height: 150%;
	letter-spacing: -0.72px;

}

.marca-barra-gris p svg {
	width: 32px;
	height: 32px;
	display: none;
}

/* Convocatoria Single */
.section--hero-convocatoria {
	padding-top: 48px;
}

.container-fechas-convocatoria {
	display: grid;
    gap: 16px;
    grid-template-columns: repeat(1, 1fr);
}

.bajada-container .card-fechas {
	display: flex;
	padding: 32px;
	flex-direction: column;
	align-items: flex-start;
	gap: 10px;
	border-radius: 8px;
	border: 1px solid var(--Neutral-900, #1E1E1E);
}
.row-card-item .col-6 {
	margin-bottom: 16px;
}

.section--cards .card-item {
	display: flex;
	padding: 16px;
	flex-direction: column;
	align-items: flex-start;
	justify-content: space-between;
	gap: 48px;
	border-radius: 8px;
	border: 1px solid var(--Neutral-900, #1E1E1E);
	background: var(--Neutral-0---White, #FFF);
	height: 100%;
}

.section--cards .card-item .card-bottom,
.section--cards .card-item .card-top {
	width: 100%;
}

.card-icon {
	width: 64px;
	height: 64px;
	margin-bottom: 16px;
}

.card-content p {
	color: var(--Neutral-700, #606060);
	line-height: 1.2;
	margin-top: 8px;
}

.card-icon img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.section--cards .card-item .btn {
	width: 100%;
}

.section-postularse-convocatoria .container-motivos {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 48px;
	flex: 1 0 0;
}

.section-postularse-convocatoria .container-motivos h3 {
	width: 100%;
}

.container-postulacion-convocatoria {
	display: flex;
	width: 1080px;
	max-width: 100%;
	flex-direction: column;
	align-items: flex-start;
	gap: 32px;
}

.container-postulacion-convocatoria .list-arrow li {
	font-size: var(--Font-size-h4);
	font-weight: 400;
	line-height: 110%;
	letter-spacing: -0.32px;
	padding-bottom: 32px;
}

.actions-motivos {
	display: flex;
	align-items: flex-start;
	gap: 20px;
}

.convocatoria-galeria {
	padding-top: 24px;
}

.convocatoria-galeria img {
	height: 600px;
}

@media (min-width: 767px) {
	.container-fechas-convocatoria {
		gap: 32px;
		grid-template-columns: repeat(2, 1fr);
	}
	.row-card-item .col-6 {
		margin-bottom: 32px;
	}
	.marca-hero {
		padding-top: var(--Layout-Section-padding);
	}
	.marca-hero .marca-logo {
		margin-bottom: 0;
		width: 220px;
		height: 220px;
	}
	.marca-hero .container-frase-flecha {
		margin-bottom: 0;
	}
	.marca-contenido .wysiwyg-content {
		padding: 16px 24px;
	}

	.container-img-marca-1 img {
		margin-left: 80px;
		margin-top: 56px;
	}
	.marca-barra-gris p svg  {
		display: block!important;
	}
}
@media (min-width: 1280px) {
	.section--cards .card-item {
		margin-bottom: 0;
	}
}



/*===================
/* 404
/* ================== */
.page-404-wrapper {
    position: relative;
    width: 100%;
    min-height: calc(100vh - var(--Header-height, 80px));
    background-color: var(--Neutral-900);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 24px;
    box-sizing: border-box;
}

.page-404-corner {
    position: absolute;
}

.page-404-corner.top-left {
    top: 32px;
    left: 32px;
}

.page-404-corner.bottom-right {
    bottom: 32px;
    right: 32px;
}

.page-404-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    text-align: center;
	
}
.page-404-center h1{
    font-size: 38vw;
}

.page-404-wrapper h1 {
    color: var(--Neutral-0-White)
}

@media (min-width: 768px) {
    .page-404-corner.top-left {
        top: 16px;
        left: 16px;
    }
    
    .page-404-corner.bottom-right {
        bottom: 16px;
        right: 16px;
    }
	.page-404-center h1{
		font-size: 120px;
	}

}
@media (min-width: 1280px) {
	.page-404-center h1{
		font-size: 170px;
	}
}

/* ─── MOBILE ITEM CAROUSEL ───────────────────────────────────── */
.js-mobile-carousel {
    flex-wrap: nowrap !important;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    cursor: grab;
}
.js-mobile-carousel::-webkit-scrollbar {
    display: none;
}
.js-mobile-carousel.is-dragging {
    cursor: grabbing;
}
.js-mobile-carousel .oportunidad-item {
    flex: 0 0 236px !important;
    max-width: 236px !important;
    width: 236px !important;
    scroll-snap-align: start;
}
@media (min-width: 768px) {
    .js-mobile-carousel .oportunidad-item {
        flex: 0 0 356px !important;
        max-width: 356px !important;
        width: 356px !important;
    }
}



/* ───CONVOCATORIA CERRADA: NÚMEROS ──────────────────────── */
.section--numeros-cc {
	background-color: var(--Neutral-900);
	color: var(--Neutral-0-White);
}

/* Flex wrap centrado: impares quedan centrados en la última fila */
.container-nros {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 32px;
}

.section--numeros-cc .numero-item {
	text-align: center;
	padding: 1rem 0;
	flex: 0 0 50%;
	max-width: calc(50% - 16px);
}

@media (min-width: 768px) {
	.container-nros {
		gap: 0;
	}
	.section--numeros-cc .numero-item {
		flex: 0 0 25%;
		max-width: 25%;
		padding: 1.25rem 1.5rem;
	}
}

@media (min-width: 1280px) {
	.section--numeros-cc .numero-item {
		flex: 0 0 20%;
		max-width: 20%;
	}
}

.section--numeros-cc .numero-linea-superior {
	font-size: var(--Font-size-p);
	color: var(--Neutral-0-White);
	margin-bottom: 0;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	opacity: 0.75;
}

.section--numeros-cc .numero-valor {
	margin: 0;
	line-height: 1;
}

.section--numeros-cc .numero-counter {
	font-size: clamp(1.8rem, 4.5vw, 4.5rem);
	font-weight: var(--fw-title);
	color: var(--Neutral-0-White);
	line-height: 1;
	display: block;
	white-space: nowrap;
}

.section--numeros-cc .numero-linea-inferior {
	font-size: var(--Font-size-p);
	color: var(--Neutral-0-White);
	margin-top: 0.25rem;
	opacity: 0.75;
	line-height: 1.1;
}

/* ───CONVOCATORIA CERRADA: PRÓXIMAS CONVOCATORIAS ─── */
.convocatorias-prox-section .card-convocatoria {
	width: 100%;
}
.conv-prox-row {
	display: flex;
	flex-wrap: nowrap;
	overflow-x: auto;
	overflow-y: hidden;
	scrollbar-width: none;
	-ms-overflow-style: none;
	scroll-snap-type: x mandatory;
	scroll-padding-inline: 10vw;
	gap: 16px;
	margin-top: 2rem;
	padding-bottom: 4px;
	padding-inline: 10vw;
	cursor: grab;
}

.conv-prox-row::-webkit-scrollbar {
	display: none;
}

.conv-prox-row.is-dragging {
	cursor: grabbing;
	scroll-snap-type: none;
}

.conv-prox-item {
	flex: 0 0 80vw;
	width: 80vw;
	scroll-snap-align: center;
	scroll-snap-stop: always;
}

.conv-prox-row .card-convocatoria {
	height: auto !important;
}

@media (min-width: 540px) {
	.conv-prox-row {
		padding-inline: max(10vw, calc(50vw - 215px));
		scroll-padding-inline: max(10vw, calc(50vw - 215px));
	}

	.conv-prox-item {
		flex: 0 0 min(430px, 80vw);
		width: min(430px, 80vw);
	}
}

@media (min-width: 1280px) {
	.conv-prox-row {
		flex-wrap: wrap;
		overflow-x: visible;
		gap: 20px;
		padding-inline: var(--Layout-Margin);
		scroll-padding-inline: 0;
		scroll-snap-type: none;
		cursor: default;
	}

	.conv-prox-item {
		flex: 0 0 calc(33.333% - 14px);
		width: calc(33.333% - 14px);
		scroll-snap-align: none;
		scroll-snap-stop: normal;
	}
}

.oportunidad-relacionadas .card-convocatoria {
	height: auto;
	aspect-ratio: 4 / 5;
	width: 100%;
	max-width: 100%;
	flex-shrink: 1;
}

.conv-prox-controls {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 24px;
	margin-top: 16px;
}

@media (min-width: 1280px) {
	.conv-prox-controls {
		display: none;
	}
}

/* ───LISTADO CONVOCATORIAS (scroll horizontal): ancho explícito ─ */
.horizontal-strip .card-convocatoria {
	width: 80vw;
	height: calc(100svh - var(--Header-height) - 2 * var(--Layout-Margin));
	aspect-ratio: unset;
	background-color: white !important;
}

@media (min-width: 768px) {
	.horizontal-strip .card-convocatoria {
		width: min(430px, 60vh);
		height: auto;
		aspect-ratio: 4 / 5;
	}
}

/* ───CONVOCATORIAS FINALIZADAS: SLIDER BYN ──────────────── */
.section--convocatorias-finalizadas h3 {
	margin-bottom: 2rem;
}

.finalizadas-controls {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 24px;
	margin-top: 16px;
	padding-inline: var(--Layout-Margin);
}

.convocatorias-finalizadas-slider-container {
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
	cursor: grab;
	padding-left: var(--Layout-Margin);
	padding-right: 0;
}
.convocatorias-finalizadas-slider-container::-webkit-scrollbar {
	display: none;
}
.convocatorias-finalizadas-slider-container.is-dragging {
	cursor: grabbing;
}

.convocatorias-finalizadas-track {
	display: flex;
	gap: 12px;
	width: max-content;
	padding-bottom: 1rem;
}

.conv-finalizada-item {
	position: relative;
	flex: 0 0 300px;
	height: 390px;
	overflow: hidden;
	display: block;
	text-decoration: none;
}

@media (min-width: 768px) {
	.conv-finalizada-item {
		flex: 0 0 430px;
		height: 560px;
	}
}

.conv-finalizada-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: grayscale(1);
	transition: filter 0.4s ease, transform 0.4s ease;
	display: block;
}

.conv-finalizada-item:hover img {
	filter: grayscale(0.2);
	transform: scale(1.04);
}

.conv-finalizada-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 60%);
	display: flex;
	align-items: flex-end;
	padding: 1.25rem;
}

.conv-finalizada-title {
	color: #fff;
	margin: 0;
	font-weight: var(--fw-title);
	text-transform: uppercase;
}

/* ───TAXONOMIA MARCA  ───────────────────────────────────── */
.acciones-de-marca .card-marca-destacada {
	height: 600px;
	max-height: 80vh;
	margin-bottom: var(--Grid-gutter);
}

/* reCAPTCHA: oculta el badge flotante (se incluye leyenda legal en cada form) */
.grecaptcha-badge {
	visibility: hidden !important;
}
.recaptcha-legal {
	font-size: 11px;
	line-height: 1.4;
	color: rgba(255, 255, 255, 0.5);
	margin-bottom: 12px;
}
.recaptcha-legal a {
	color: inherit;
	text-decoration: underline;
}