/* ===================================
   PERSONAJES CSS - SELECCIÓN Y DETALLE
   ================================= */

/* ===================================
   FUENTES - Libre Caslon Condensed (fontsource)
   ================================= */

/* libre-caslon-condensed-latin-400-normal */
@font-face {
  font-family: 'Libre Caslon Condensed';
  font-style: normal;
  font-display: swap;
  font-weight: 400;
  src: url(https://cdn.jsdelivr.net/fontsource/fonts/libre-caslon-condensed@latest/latin-400-normal.woff2) format('woff2'), url(https://cdn.jsdelivr.net/fontsource/fonts/libre-caslon-condensed@latest/latin-400-normal.woff) format('woff');
}

/* libre-caslon-condensed-latin-700-normal */
@font-face {
  font-family: 'Libre Caslon Condensed';
  font-style: normal;
  font-display: swap;
  font-weight: 700;
  src: url(https://cdn.jsdelivr.net/fontsource/fonts/libre-caslon-condensed@latest/latin-700-normal.woff2) format('woff2'), url(https://cdn.jsdelivr.net/fontsource/fonts/libre-caslon-condensed@latest/latin-700-normal.woff) format('woff');
}

/* ===================================
   PÁGINA DETALLE PERSONAJE
   ================================= */

.page-detalle {
	height: 100vh;
	overflow: hidden;
}

@supports (height: 100dvh) {
	.page-detalle {
		height: 100dvh;
	}
}

/* Container con posicionamiento absoluto para elementos */
.detalle-container {
	position: relative;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

/* Efecto nieve/partículas */
.snow-effect {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	pointer-events: none;
	z-index: 1;
	overflow: hidden;
}

.snowflake {
	position: absolute;
	top: -20px;
	color: rgba(255, 255, 255, 0.8);
	font-size: 1.5rem;
	animation: fall linear forwards;
	user-select: none;
}

@keyframes fall {
	to {
		transform: translateY(100vh);
	}
}

/* Logo Kutxabank arriba izquierda */
.detalle-logo {
	position: absolute;
	top: 96px;
	left: 80px;
	z-index: 10;
	cursor: pointer;
}

.detalle-logo img {
	height: 49px;
	width: auto;
	display: block;
}

/* Icono Volumen en detalle personaje */
.detalle-volume {
	position: absolute;
	top: 96px;
	right: 80px;
	z-index: 10;
	width: 24px;
	height: 24px;
	background: none;
	border: none;
	padding: 0;
	cursor: pointer;
	transition: opacity 0.2s ease;
	color: inherit;
}

.detalle-volume:hover {
	opacity: 0.7;
}

.detalle-volume svg {
	width: 24px;
	height: 24px;
	display: block;
}

.detalle-greeting {
	position: absolute;
	top: 50%;
	left: 112px;
	transform: translateY(-50%);
	z-index: 10;
	max-width: 420px;
}

.detalle-greeting-title {
	font-family: 'Libre Caslon Condensed', serif;
	font-size: 72px;
	font-weight: 700;
	line-height: 80px;
	margin: 0;
	color: inherit;
	text-wrap: balance;
}

    .detalle-greeting-title:lang(eu) {
        font-size: 61px;
        line-height: 65px;
    }

.detalle-greeting-text {
	font-family: 'Inter', sans-serif;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.5;
	margin: 16px 0 0 0;
	color: inherit;
	max-width: 320px;
}

/* DESKTOP: Selector de idioma posicionado abajo izquierda */
.detalle-bottom-controls {
	position: absolute;
	bottom: 12dvh;
	left: 112px;
	z-index: 10;
}

.detalle-lang-selector {
	font-family: 'Inter', sans-serif;
	font-size: 16px;
	line-height: 24px;
	display: flex;
	align-items: center;
	gap: 4px;
}

/* Spacers no necesarios, ocultos */
.detalle-bottom-spacer-center,
.detalle-bottom-spacer {
	display: none;
}

/* DESKTOP: Wrapper para indicadores + botones de navegación */
.slides-indicators-wrapper {
	position: absolute;
	bottom: 12dvh;
	left: 50%;
	transform: translateX(-50%);
	z-index: 10;
	display: flex;
	align-items: center;
	gap: 10px;
}

/* DESKTOP: Indicadores centrados horizontalmente */
.slides-indicators {
	display: flex;
	align-items: center;
	background: rgba(0, 0, 0, 0.15);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	padding: 8px 16px;
	height: 40px;
	border-radius: 20px;
}

/* Botones de navegación prev/next (solo desktop) */
.slides-nav-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	padding: 8px;
	background: rgba(0, 0, 0, 0.15);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border: none;
	border-radius: 20px;
	cursor: pointer;
	transition: all 0.2s ease;
}

.slides-nav-btn:hover {
	background: rgba(0, 0, 0, 0.25);
	transform: scale(1.05);
}

.slides-nav-btn svg {
	width: 24px;
	height: 24px;
}

.detalle-lang-link {
	text-decoration: none;
	color: inherit;
	font-weight: 400;
	transition: opacity 0.2s ease;
}

.detalle-lang-link:hover {
	opacity: 0.7;
}

.detalle-lang-link.active {
	font-weight: 700;
}

.detalle-lang-sep {
	margin: 0 4px;
	opacity: 0.6;
}

/* DESKTOP: Botones de acción (Saludar, Bailar, Dar carbón) */
.detalle-action-buttons {
	position: absolute;
	bottom: 140px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 10;
	display: flex;
	align-items: center;
	gap: 24px;

	/* TODO: CONTROL PARA ESCOGER VIDEO DE PERSONAJE OCULTO */
	display: none;
}

.detalle-action-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 16px;
	height: 48px;
	padding: 8px 4px 8px 20px;
	background-color: #FFFFFF;
	color: #000000;
	border: none;
	border-radius: 32px;
	font-family: 'Inter', sans-serif;
	font-size: 16px;
	font-weight: 600;
	line-height: 24px;
	cursor: pointer;
	transition: all 0.2s ease;
}

.detalle-action-btn:hover {
	transform: scale(1.05);
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.detalle-action-btn-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 8px;
}

.detalle-action-btn-icon svg {
	width: 24px;
	height: 24px;
}

.detalle-info {
	position: absolute;
	top: 50%;
	right: 94px;
	transform: translateY(-50%);
	z-index: 10;
	max-width: 364px;
}

.detalle-nombre {
	color: var(--Beltza-Seriedad, #000);
	/* Titles/Title · XL */
	font-family: 'Libre Caslon Condensed', Arial, Helvetica, sans-serif;
	font-size: 72px;
	font-style: bold;
	font-weight: 700;
	line-height: 80px; /* 111.111% */
	padding-bottom: 1rem;
}

.detalle-descripcion {
	font-family: 'Inter', sans-serif;
	font-size: 14px;
	font-weight: 400;
	line-height: 20px;
	color: black;
	margin: 0;
}

/* Navegación fija abajo izquierda */
.detalle-nav {
	position: absolute;
	bottom: 112px;
	left: 112px;
	z-index: 10;
	display: flex;
	gap: var(--spacing-md);
}

.detalle-nav-btn {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background-color: black;
	border: none;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all var(--transition-fast);
	color: white;
	text-decoration: none;
}

.detalle-nav-btn:hover {
	background-color: var(--color-rojo-kutxabank);
	transform: scale(1.1);
}

/* Media del personaje (imagen o video) centrada y más grande */
.detalle-personaje-img,
.detalle-personaje-media {
	position: relative;
	z-index: 2;
	width: 950px;
	height: auto;
	max-height: 95vh;
	flex-shrink: 0;
	object-fit: contain;
	animation: float 6s ease-in-out infinite, fadeIn 1s ease-out;
	/* Desvanecimiento de bordes */
	mask-image: radial-gradient(
		ellipse 60% 60% at center,
		black 50%,
		transparent 90%
	);
	-webkit-mask-image: radial-gradient(
		ellipse 60% 60% at center,
		black 50%,
		transparent 90%
	);
}

/* Video específico en detalle - ajustes */
video.detalle-personaje-media {
	object-fit: contain;
}

/* Botón "Elígeme" - dentro de detalle-info, debajo de descripción */
.detalle-btn {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 16px;
	background-color: #000000;
	color: #FFFFFF;
	padding: 8px 4px 8px 20px;
	border-radius: 32px;
	text-decoration: none;
	font-weight: 600;
	font-size: 16px;
	line-height: 24px;
	transition: all var(--transition-fast);
	overflow: hidden;
	border: none;
	cursor: pointer;
	margin-top: 24px;
	height: 48px;
}

.detalle-btn:hover {
	transform: scale(1.05);
	box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

/* Contenedor del texto del botón */
.detalle-btn-text {
	display: flex;
	align-items: center;
	justify-content: center;
}

/* Contenedor del icono circular rojo */
.detalle-btn-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	background-color: #E83F43;
	border-radius: 20px;
	padding: 8px;
	flex-shrink: 0;
}

.detalle-btn-icon svg {
	width: 24px;
	height: 24px;
	display: block;
}

/* Botón Descargar Carta - usa <a> en lugar de <button> */
a.detalle-btn {
	text-decoration: none;
}

.detalle-btn-download {
	margin-top: 12px;
}

/* Responsive Detalle */
@media (max-width: 1400px) {
	.detalle-greeting {
		left: 80px;
		max-width: 380px;
	}

	.detalle-greeting-title {
		font-size: 56px;
		line-height: 64px;
	}
    .detalle-greeting-title:lang(eu) {
        font-size: 54px;
        line-height: 62px;
    }

	.detalle-greeting-text {
		font-size: 15px;
		max-width: 280px;
	}

	.detalle-info {
		right: 48px;
		max-width: 320px;
	}

	.detalle-nombre {
		font-size: 52px;
		line-height: 68px;
	}

	.detalle-bottom-controls {
		left: 80px;
	}
}

@media (max-width: 1200px) {
	.detalle-logo {
		top: 64px;
		left: 64px;
	}

	.detalle-volume {
		top: 64px;
		right: 64px;
	}

	.detalle-greeting {
		left: 64px;
		max-width: 340px;
	}

	.detalle-greeting-title {
		font-size: 48px;
		line-height: 56px;
	}
        .detalle-greeting-title:lang(eu) {
            font-size: 48px;
            line-height: 56px;
        }

	.detalle-greeting-text {
		font-size: 14px;
		max-width: 260px;
	}

	.detalle-personaje-img,
	.detalle-personaje-media {
		width: 750px;
		height: auto;
	}

	.detalle-info {
		right: 64px;
		max-width: 280px;
	}

	.detalle-nombre {
		font-size: 44px;
		line-height: 56px;
	}

	.detalle-descripcion {
		font-size: 13px;
		line-height: 18px;
	}

	.detalle-bottom-controls {
		left: 64px;
	}
    .slides-indicators-wrapper {
        left: 68%;
    }
}

@media (max-width: 1024px) {
	.detalle-logo {
		top: 48px;
		left: 48px;
	}

	.detalle-volume {
		top: 48px;
		right: 48px;
	}

	.detalle-greeting {
		left: 48px;
		max-width: 320px;
	}

	.detalle-greeting-title {
		font-size: 40px;
		line-height: 48px;
	}
        .detalle-greeting-title:lang(eu) {
            font-size: 40px;
            line-height: 48px;
        }

	.detalle-greeting-text {
		font-size: 14px;
		max-width: 240px;
		margin-top: 12px;
	}

	.detalle-personaje-img,
	.detalle-personaje-media {
		width: 620px;
		height: auto;
	}

	.detalle-info {
		right: 48px;
		max-width: 260px;
	}

	.detalle-nombre {
		font-size: 36px;
		line-height: 48px;
	}

	.detalle-btn {
		font-size: 14px;
	}

	.detalle-bottom-controls {
		left: 48px;
	}

	.detalle-lang-selector {
		font-size: 14px;
	}
}

@media (max-width: 900px) {
	/* En tablets pequeñas, simplificamos el layout */
	.detalle-greeting {
		top: auto;
		bottom: auto;
		transform: none;
        top: 37%;
		left: 48px;
		max-width: 280px;
	}

	.detalle-greeting-title {
		font-size: 32px;
		line-height: 40px;
	}
        .detalle-greeting-title:lang(eu) {
            font-size: 32px;
            line-height: 40px;
        }

	.detalle-greeting-text {
		font-size: 13px;
		max-width: 220px;
		margin-top: 10px;
	}

	.detalle-personaje-img,
	.detalle-personaje-media {
		width: 550px;
	}

	.detalle-info {
		top: auto;
		right: 48px;
		transform: none;
		max-width: 240px;
	}

	.detalle-nombre {
		font-size: 32px;
		line-height: 42px;
	}    
}

/* ===================================
   BOTTOM SHEET - MOBILE ONLY
   ================================= */

/* Ocultar en desktop */
.bottom-sheet-overlay,
.bottom-sheet,
.mobile-buttons,
.mobile-btn-flecha,
.mobile-title,
.mobile-action-buttons,
.mobile-lang-selector,
.mobile-nav-arrow {
	display: none;
}

.detalle-nav {
	display: none;
}

@media (max-width: 768px) {

	/* Ocultar elementos desktop en móvil */
	.detalle-info,
	.detalle-nav,
	.detalle-btn,
	.detalle-bottom-controls,
	.detalle-action-buttons {
		display: none !important;
	}

	/* Logo Kutxabank en mobile - más pequeño y arriba izquierda */
	.detalle-logo {
		top: 18px;
		left: 27px;
	}

	.detalle-logo img {
		height: 24px;
	}

	/* Icono volumen en mobile */
	.detalle-volume {
		top: 26px;
		right: 80px;
		width: 16px;
		height: 16px;
		aspect-ratio: 1/1;
	}

	.detalle-volume svg {
		width: 16px;
		height: 16px;
	}

	/* MOBILE: Selector de idioma dropdown */
	.mobile-lang-selector {
		display: block;
		position: absolute;
		top: 26px;
		right: 24px;
		z-index: 100;
	}

	.mobile-lang-btn {
		display: flex;
		align-items: center;
		gap: 4px;
		background: transparent;
		border: none;
		cursor: pointer;
		padding: 0;
		font-family: 'Inter', sans-serif;
		font-size: 12px;
		font-weight: 400;
		line-height: 16px;
		color: #232323;
	}

	.mobile-lang-chevron {
		width: 16px;
		height: 16px;
		transition: transform 0.2s ease;
	}

	.mobile-lang-selector.open .mobile-lang-chevron {
		transform: rotate(180deg);
	}

	.mobile-lang-dropdown {
		display: none;
		position: absolute;
		top: 100%;
		right: 0;
		margin-top: 8px;
		background: white;
		border-radius: 8px;
		box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
		min-width: 80px;
		overflow: hidden;
		z-index: 101;
	}

	.mobile-lang-selector.open .mobile-lang-dropdown {
		display: block;
	}

	.mobile-lang-option {
		display: block;
		padding: 12px 16px;
		font-family: 'Inter', sans-serif;
		font-size: 14px;
		font-weight: 400;
		color: #232323;
		text-decoration: none;
		transition: background-color 0.2s ease;
	}

	.mobile-lang-option:hover {
		background-color: #F5F5F5;
	}

	.mobile-lang-option.active {
		font-weight: 600;
		background-color: #F0F0F0;
	}

	/* Ajustar imagen/video del personaje en móvil */
	.detalle-personaje-img,
	.detalle-personaje-media {
		width: 145vw;
		height: auto;
		max-height: 65vh;
		margin-top: 0px;
	}

	/* Título móvil (felicitación) */
	.mobile-title {
		display: block;
		position: absolute;
		top: 84px;
		left: 0;
		right: 0;
		z-index: 10;
		font-family: 'Libre Caslon Condensed', serif;
		font-size: 40px;
		font-weight: 700;
		line-height: 52px;
		text-align: center;
		color: #000000;
		margin: 0;
		padding: 0 24px;
		white-space: nowrap;
	}
    .mobile-title:lang(eu) {
        font-size: 35px;
    }

    @media (max-width: 380px) {
        .mobile-title:lang(eu) {
            font-size: 29px;
        }
    }

	/* En móvil: ocultar <br> para que quede en 1 línea */
	.mobile-title br {
		display: none;
	}

	/* Mostrar detalle-greeting-text en móvil (aunque el padre esté oculto) */
	.detalle-greeting {
		display: block !important;
		position: absolute;
		top: 140px;
		left: 50%;
		transform: translateX(-50%);
		text-align: center;
		width: calc(100% - 48px);
		max-width: 400px;
	}

	.detalle-greeting-title {
		display: none;
	}

	.detalle-greeting-text {
		display: block;
		font-size: 14px;
		line-height: 1.5;
		max-width: 100%;
		margin: 0;
		text-align: center;
	}

	/* MOBILE: Botones de acción compactos (solo iconos) */
	.mobile-action-buttons {
		display: flex;
		align-items: center;
		gap: 12px;
		position: absolute;
		bottom: 130px;
		left: 50%;
		transform: translateX(-50%);
		z-index: 10;

		/* TODO: OCULTAR CONTROLES DE VIDEO PERSONAJE TEMPORAL */
		display: none;
	}

	.mobile-action-btn {
		display: flex;
		align-items: center;
		justify-content: center;
		width: 40px;
		height: 40px;
		padding: 8px;
		background-color: #FFFFFF;
		color: #000000;
		border: none;
		border-radius: 20px;
		cursor: pointer;
		transition: all 0.2s ease;
	}

	.mobile-action-btn:hover {
		transform: scale(1.1);
		box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
	}

	.mobile-action-btn svg {
		width: 24px;
		height: 24px;
		display: block;
	}

	/* Botones móviles principales */
	.mobile-buttons {
		display: flex;
		flex-direction: column;
		gap: 12px;
		position: absolute;
		bottom: 64px;
		left: 50%;
		transform: translateX(-50%);
		align-items: center;
		z-index: 10;
		width: 209px;
	}
        @media (max-width: 358px) {
            .mobile-buttons {
                bottom: 75px;
            }
        }

	.mobile-btn {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		gap: 12px;
		min-height: 46px;
		height: 46px;
		padding: 8px 4px 8px 20px;
		border-radius: 32px;
		font-family: 'Inter', sans-serif;
		font-size: 15px;
		font-weight: 600;
		line-height: 1.3;
		cursor: pointer;
		transition: all 0.2s ease;
		border: none;
		text-decoration: none;
		white-space: nowrap;
	}

	.mobile-btn-conocelo {
		background-color: #FFFFFF;
		color: #000000;
	}

	.mobile-btn-conocelo:hover {
		transform: scale(1.02);
		box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
	}

	.mobile-btn-conocelo .mobile-btn-icon {
		background: transparent;
		padding: 8px;
	}

	.mobile-btn-conocelo .mobile-btn-icon svg {
		width: 24px;
		height: 24px;
	}

	.mobile-btn-enviar {
		background-color: #000000;
		color: #FFFFFF;
		width: auto;
	}

	.mobile-btn-enviar:hover {
		transform: scale(1.02);
		box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
	}

	/* Botón Descargar Carta - Mobile */
	.mobile-btn-download {
		background-color: #000000;
		color: #FFFFFF;
		text-decoration: none;
		margin-top: 8px;
	}

	.mobile-btn-download:hover {
		transform: scale(1.02);
	}

	.mobile-btn-icon {
		display: flex;
		align-items: center;
		justify-content: center;
		width: 40px;
		height: 40px;
		background-color: #E83F43;
		border-radius: 20px;
		flex-shrink: 0;
	}

	.mobile-btn-icon svg {
		width: 24px;
		height: 24px;
		display: block;
	}

	/* Botón flecha abajo */
	.mobile-btn-flecha {
		display: flex;
		align-items: center;
		justify-content: center;
		position: absolute;
		bottom: 88px;
		left: 50%;
		transform: translateX(-50%);
		z-index: 10;
		width: 64px;
		height: 64px;
		background-color: #000000;
		border-radius: 32px;
		border: none;
		cursor: pointer;
		transition: all 0.2s ease;
	}

	.mobile-btn-flecha:hover {
		transform: translateX(-50%) scale(1.05);
	}

	.mobile-btn-flecha svg {
		width: 38px;
		height: 38px;
		color: #FFFFFF;
	}

	/* ===================================
	   BOTTOM SHEET OVERLAY
	   ================================= */

	.bottom-sheet-overlay {
		display: block;
		position: fixed;
		inset: 0;
		background: rgba(0, 0, 0, 0.5);
		z-index: 999;
		opacity: 0;
		visibility: hidden;
		transition: opacity 0.3s ease, visibility 0.3s ease;
	}

	.bottom-sheet-overlay.active {
		opacity: 1;
		visibility: visible;
	}

	/* ===================================
	   BOTTOM SHEET CONTAINER
	   ================================= */

	.bottom-sheet {
		display: block;
		position: fixed;
		bottom: 0;
		left: 0;
		right: 0;
		background: #FFFFFF;
		border-radius: 24px 24px 0 0;
		z-index: 1000;
		transform: translateY(100%);
		transition: transform 0.4s cubic-bezier(0.32, 0.72, 0, 1);
		padding: 24px 28px 48px;
		max-height: 85vh;
		overflow-y: auto;
	}

	.bottom-sheet.open {
		transform: translateY(0);
	}

	/* Botón cerrar */
	.bottom-sheet-close {
		position: absolute;
		top: 24px;
		right: 28px;
		width: 24px;
		height: 24px;
		background: transparent;
		border: none;
		cursor: pointer;
		z-index: 10;
		padding: 0;
	}

	.bottom-sheet-close svg {
		width: 24px;
		height: 24px;
		display: block;
	}

	/* ===================================
	   BOTTOM SHEET CONTENIDO
	   ================================= */

	.bottom-sheet-content {
		display: none;
		flex-direction: column;
		gap: 32px;
		align-items: center;
	}

	.bottom-sheet[data-mode="info"] .bottom-sheet-info {
		display: flex;
	}

	.bottom-sheet[data-mode="postal"] .bottom-sheet-postal {
		display: flex;
		align-items: stretch;
	}

	/* ===================================
	   BOTTOM SHEET - MODO INFO
	   ================================= */

	.bottom-sheet-info {
		text-align: center;
	}

	.bottom-sheet-info-header {
		display: flex;
		flex-direction: column;
		gap: 8px;
		align-items: center;
		width: 100%;
		margin-top: 1.5rem;
	}

	.bottom-sheet-nombre {
		font-family: 'Libre Caslon Condensed', serif;
		font-size: 40px;
		font-weight: 700;
		line-height: 52px;
		color: #000000;
		margin: 0;
	}

	.bottom-sheet-descripcion {
		font-family: 'Inter', sans-serif;
		font-size: 14px;
		font-weight: 400;
		line-height: 20px;
		color: #000000;
		margin: 0;
		text-align: center;
	}

	/* ===================================
	   BOTTOM SHEET - MODO POSTAL
	   ================================= */

	.bottom-sheet-postal {
		text-align: left;
	}

	.bottom-sheet-postal .bottom-sheet-nombre {
		font-size: 32px;
		line-height: 40px;
		text-align: left;
		width: 100%;
	}

	.bottom-sheet-postal-header {
		display: flex;
		flex-direction: column;
		gap: 16px;
		width: 100%;
	}

	/* Textarea dedicatoria */
	.bottom-sheet-textarea-wrapper {
		position: relative;
		width: 100%;
	}

	.bottom-sheet-textarea-lines {
		position: absolute;
		top: 24px;
		left: 0;
		right: 0;
		bottom: 0;
		pointer-events: none;
		z-index: 0;
		display: flex;
		flex-direction: column;
		gap: 24px;
	}

	.bottom-sheet-textarea-line {
		height: 1px;
		width: 100%;
		background-color: #E7E3DF;
	}

	.bottom-sheet-textarea {
		position: relative;
		width: 100%;
		min-height: 150px;
		padding: 0;
		border: none;
		background: transparent;
		font-family: 'Inter', sans-serif;
		font-size: 16px;
		font-weight: 400;
		line-height: 24px;
		resize: none;
		outline: none;
		z-index: 1;
		color: #93887F;
	}

	.bottom-sheet-textarea::placeholder {
		color: #93887F;
	}

	/* Campos remitente/destinatario */
	.bottom-sheet-fields {
		display: flex;
		flex-direction: column;
		gap: 16px;
		width: 100%;
	}

	.bottom-sheet-field {
		display: flex;
		flex-direction: column;
		gap: 16px;
	}

	.bottom-sheet-field-label {
		font-family: 'Inter', sans-serif;
		font-size: 16px;
		font-weight: 400;
		line-height: 24px;
		color: #1E1E1E;
	}

	.bottom-sheet-field-input-wrapper {
		display: flex;
		flex-direction: column;
		gap: 8px;
	}

	.bottom-sheet-field-input {
		width: 100%;
		border: none;
		padding: 0;
		font-family: 'Inter', sans-serif;
		font-size: 16px;
		font-weight: 400;
		line-height: 24px;
		outline: none;
		background: transparent;
	}

	.bottom-sheet-field-input::placeholder {
		color: #93887F;
	}

	.bottom-sheet-field-line {
		height: 1px;
		width: 100%;
		background-color: #E7E3DF;
	}

	/* ===================================
	   BOTTOM SHEET BOTONES
	   ================================= */

	.bottom-sheet-buttons {
		display: flex;
		flex-direction: column;
		gap: 24px;
		width: 100%;
		align-items: center;
		text-align: center;
	}

	.bottom-sheet-buttons p {
		margin-top: 24px;
	}

	.bottom-sheet-btn-primary {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		gap: 16px;
		height: 48px;
		padding: 8px 4px 8px 20px;
		background: #000000;
		color: #FFFFFF;
		border: none;
		border-radius: 32px;
		font-family: 'Inter', sans-serif;
		font-size: 16px;
		font-weight: 600;
		line-height: 24px;
		cursor: pointer;
		transition: all 0.2s ease;
	}

	.bottom-sheet-btn-primary:hover {
		transform: scale(1.02);
		box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
	}

	.bottom-sheet-btn-primary .bottom-sheet-btn-icon {
		display: flex;
		align-items: center;
		justify-content: center;
		width: 40px;
		height: 40px;
		background: #E83F43;
		border-radius: 20px;
		flex-shrink: 0;
	}

	.bottom-sheet-btn-primary .bottom-sheet-btn-icon svg {
		width: 24px;
		height: 24px;
		display: block;
	}

	.bottom-sheet-btn-secondary {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		gap: 16px;
		height: 48px;
		padding: 8px 20px;
		background: transparent;
		color: #000000;
		border: 1px solid #000000;
		border-radius: 32px;
		font-family: 'Inter', sans-serif;
		font-size: 16px;
		font-weight: 600;
		line-height: 24px;
		cursor: pointer;
		transition: all 0.2s ease;
	}

	.bottom-sheet-btn-secondary:hover {
		background-color: rgba(0, 0, 0, 0.05);
		transform: scale(1.02);
	}

	.bottom-sheet-btn-secondary svg {
		width: 24px;
		height: 24px;
	}

	/* ===================================
	   SLIDES INDICATORS - MOBILE
	   Horizontal, encima de los botones mobile
	   ================================= */

	/* Resetear el wrapper en mobile - solo para los dots */
	.slides-indicators-wrapper {
		position: absolute !important;
		bottom: 180px !important;
		left: 50% !important;
		transform: translateX(-50%) !important;
		z-index: 10;
	}

        @media (max-height: 768px) {
            .slides-indicators-wrapper {
                bottom: 160px !important;
            }
        }

    @media (max-width: 358px) {
        .slides-indicators-wrapper {
            bottom: 174px !important;
        }
    }

	/* Ocultar los botones de navegación dentro del wrapper */
	.slides-indicators-wrapper .slides-nav-btn {
		display: none !important;
	}

	.slides-indicators {
		display: flex !important;
		position: static !important;
		background: rgba(0, 0, 0, 0.15) !important;
		backdrop-filter: blur(10px);
		-webkit-backdrop-filter: blur(10px);
		padding: 12px 16px !important;
		border-radius: 24px !important;
		margin: 0 !important;
	}

	/* ===================================
	   FLECHAS NAVEGACIÓN - MOBILE
	   Cada flecha posicionada fixed individualmente
	   ================================= */
	.mobile-nav-arrow {
		display: flex;
		align-items: center;
		justify-content: center;
		position: fixed;
		top: 50%;
		transform: translateY(-50%);
		width: 40px;
		height: 40px;
		padding: 8px;
		background: rgba(0, 0, 0, 0.15);
		border: none;
		border-radius: 20px;
		cursor: pointer;
		z-index: 999;
		transition: background 0.2s ease;
	}

	/* Flecha izquierda - anterior */
	.mobile-nav-prev {
		left: 17px;
	}

	/* Flecha derecha - siguiente */
	.mobile-nav-next {
		right: 17px;
	}

	.mobile-nav-arrow:hover {
		background: rgba(0, 0, 0, 0.25);
	}

	.mobile-nav-arrow:active {
		background: rgba(0, 0, 0, 0.3);
	}

	.mobile-nav-arrow svg {
		width: 24px;
		height: 24px;
	}

	.mobile-nav-arrow path {
		stroke: white;
	}

	.slides-indicators-personajes {
		display: flex;
		align-items: center;
		gap: 8px;
	}

	.slide-dot {
		width: 8px;
		height: 8px;
		border-radius: 50%;
		background-color: rgba(255, 255, 255, 0.5);
		border: none;
		cursor: pointer;
		transition: all 0.3s ease;
		padding: 0;
	}

	.slide-dot-personaje:hover {
		background-color: white;
		transform: scale(1.3);
	}

	.slide-dot-personaje.active {
		width: 22px;
		height: 8px;
		border-radius: 4px;
		background-color: white;
	}

	/* Ocultar tooltip en mobile */
	.slide-dot-personaje::after {
		display: none;
	}

}
