/* =================================================================
   SERVICIOS LOGÍSTICOS — LANDING PAGE CORPORATIVA
   Colores: Ámbar #F5A800 | Oscuro #1C1C1C | Blanco #FFFFFF
   ================================================================= */

/* --- Variables Corporativas --- */
:root {
	--sl-amber:        #F5A800;
	--sl-amber-dark:   #D4900A;
	--sl-amber-light:  #FFC13D;
	--sl-amber-bg:     rgba(245, 168, 0, 0.10);
	--sl-dark:         #1C1C1C;
	--sl-dark-2:       #2C2C2C;
	--sl-dark-3:       #3A3A3A;
	--sl-offwhite:     #F5F5F5;
	--sl-white:        #FFFFFF;
	--sl-text:         #444444;
	--sl-text-light:   #888888;
	--sl-border:       #EBEBEB;
	--sl-radius:       14px;
	--sl-transition:   0.3s ease;
	--sl-shadow-sm:    0 4px 16px rgba(0,0,0,0.08);
	--sl-shadow-md:    0 8px 32px rgba(0,0,0,0.12);
	--sl-shadow-amber: 0 8px 28px rgba(245,168,0,0.28);
}

/* --- Base --- */
html {
	scroll-behavior: smooth;
}

body {
	font-family: 'Poppins', sans-serif;
	color: var(--sl-text);
}

/* Remap colores del tema */
.bg-primary              { background-color: var(--sl-amber) !important; }
.text-primary            { color: var(--sl-amber) !important; }
.btn-primary             { background-color: var(--sl-amber) !important; border-color: var(--sl-amber) !important; color: var(--sl-dark) !important; }
.btn-primary:hover,
.btn-primary:focus       { background-color: var(--sl-amber-dark) !important; border-color: var(--sl-amber-dark) !important; }


/* ═══════════════════════════════════════
   HEADER
═══════════════════════════════════════ */
.sl-header-body {
	background-color: var(--sl-dark) !important;
	border-bottom: 2px solid var(--sl-amber) !important;
}

/* Links de navegación */
.sl-nav-link {
	font-size: 0.82rem !important;
	font-weight: 600 !important;
	letter-spacing: 1px !important;
	text-transform: uppercase !important;
	color: rgba(255,255,255,0.75) !important;
	padding: 8px 14px !important;
	border-radius: 6px !important;
	transition: color var(--sl-transition), background var(--sl-transition) !important;
}

.sl-nav-link:hover,
.sl-nav-link.active {
	color: var(--sl-amber) !important;
	background: rgba(245,168,0,0.10) !important;
}


/* ═══════════════════════════════════════
   HERO BANNER
═══════════════════════════════════════ */
.sl-hero {
	position: relative;
	min-height: 100vh;
	background-size: cover;
	background-position: center;
	background-attachment: fixed;
	display: flex;
	align-items: center;
}

.sl-hero-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		125deg,
		rgba(28, 28, 28, 0.92) 0%,
		rgba(28, 28, 28, 0.80) 55%,
		rgba(28, 28, 28, 0.55) 100%
	);
	z-index: 2;
}

.sl-hero-row {
	min-height: 100vh;
	padding-top: 110px;
	padding-bottom: 80px;
}

/* Badge "Soluciones Logísticas" */
.sl-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: var(--sl-amber);
	color: var(--sl-dark);
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 2.5px;
	text-transform: uppercase;
	padding: 7px 20px;
	border-radius: 40px;
}

/* Títular Hero */
.sl-hero-title {
	font-size: 3rem;
	font-weight: 800;
	line-height: 1.15;
	color: #FFFFFF;
	margin: 0 0 4px;
}

.sl-text-amber {
	color: var(--sl-amber);
}

.sl-hero-sub {
	font-size: 1.02rem;
	color: rgba(255,255,255,0.72);
	line-height: 1.75;
	max-width: 500px;
}

/* Botones Hero */
.sl-btn-primary {
	background-color: var(--sl-amber) !important;
	border-color: var(--sl-amber) !important;
	color: var(--sl-dark) !important;
	font-weight: 700;
	transition: all var(--sl-transition);
}
.sl-btn-primary:hover,
.sl-btn-primary:focus {
	background-color: var(--sl-amber-dark) !important;
	border-color: var(--sl-amber-dark) !important;
	color: var(--sl-dark) !important;
	transform: translateY(-2px);
	box-shadow: var(--sl-shadow-amber) !important;
}

.sl-btn-outline {
	background: transparent !important;
	border: 2px solid rgba(255,255,255,0.55) !important;
	color: #FFFFFF !important;
	font-weight: 600;
	transition: all var(--sl-transition);
}
.sl-btn-outline:hover {
	border-color: var(--sl-amber) !important;
	color: var(--sl-amber) !important;
	background: transparent !important;
}

/* Strip estadísticas hero */
.sl-hero-stats {
	border-top: 1px solid rgba(255,255,255,0.15);
	padding-top: 24px;
}

.sl-stat {
	display: flex;
	flex-direction: column;
	border-left: 3px solid var(--sl-amber);
	padding-left: 16px;
}

.sl-stat-num {
	font-size: 1.9rem;
	font-weight: 800;
	color: var(--sl-amber);
	line-height: 1;
}

.sl-stat-label {
	font-size: 0.72rem;
	color: rgba(255,255,255,0.58);
	text-transform: uppercase;
	letter-spacing: 1.5px;
	margin-top: 5px;
}

/* ── Formulario en el Hero ── */
.sl-hero-form {
	background: rgba(255,255,255,0.97);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	border-radius: 22px;
	padding: 38px 34px;
	box-shadow: 0 24px 70px rgba(0,0,0,0.35);
	border-top: 5px solid var(--sl-amber);
}

.sl-form-title {
	font-size: 1.4rem;
	font-weight: 800;
	color: var(--sl-dark);
	margin-bottom: 4px;
}

.sl-form-sub {
	font-size: 0.82rem;
	color: var(--sl-text-light);
	margin-bottom: 22px;
}

/* Flecha de scroll hacia abajo */
.sl-scroll-down {
	position: absolute;
	bottom: 32px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 5;
	color: rgba(255,255,255,0.45);
	font-size: 1.1rem;
	text-decoration: none;
	animation: sl-bounce 2.2s infinite;
}

@keyframes sl-bounce {
	0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
	40%                      { transform: translateX(-50%) translateY(-10px); }
	60%                      { transform: translateX(-50%) translateY(-5px); }
}


/* ═══════════════════════════════════════
   INPUTS GLOBALES
═══════════════════════════════════════ */
.sl-input {
	border: 1.5px solid #E3E3E3;
	border-radius: 10px;
	padding: 12px 16px;
	font-size: 0.88rem;
	color: var(--sl-dark);
	background: #FAFAFA;
	transition: border-color var(--sl-transition), box-shadow var(--sl-transition), background var(--sl-transition);
	width: 100%;
}

.sl-input:focus {
	border-color: var(--sl-amber);
	box-shadow: 0 0 0 3px rgba(245,168,0,0.18);
	background: #FFFFFF;
	outline: none;
}

.sl-input::placeholder {
	color: #B0B0B0;
}

select.sl-input {
	cursor: pointer;
	appearance: none;
	-webkit-appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23888' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 14px center;
	padding-right: 36px;
}


/* ═══════════════════════════════════════
   SECCIONES BASE
═══════════════════════════════════════ */
.sl-section {
	padding: 30px 0;
}

.sl-section-light   { background-color: var(--sl-white); }
.sl-section-dark    { background-color: var(--sl-dark); }
.sl-section-offwhite{ background-color: var(--sl-offwhite); }

/* Cabecera de sección */
.sl-section-header {
	margin-bottom: 16px;
}

.sl-section-tag {
	display: inline-block;
	font-size: 0.73rem;
	font-weight: 700;
	letter-spacing: 3px;
	text-transform: uppercase;
	color: var(--sl-amber);
	margin-bottom: 10px;
}

.sl-tag-light { color: #FFC13D !important; }

.sl-section-title {
	font-size: 2.3rem;
	font-weight: 800;
	color: var(--sl-dark);
	line-height: 1.2;
}

.sl-section-sub {
	font-size: 0.98rem;
	color: var(--sl-text-light);
	max-width: 580px;
	margin: 10px auto 0;
	line-height: 1.7;
}

.sl-body-text {
	font-size: 0.95rem;
	color: var(--sl-text);
	line-height: 1.8;
}


/* ═══════════════════════════════════════
   #COTIZA — TARJETAS DE SERVICIO
═══════════════════════════════════════ */
.sl-card-service {
	background: var(--sl-white);
	border: 1.5px solid var(--sl-border);
	border-radius: var(--sl-radius);
	padding: 34px 28px;
	height: 100%;
	position: relative;
	overflow: hidden;
	transition: all var(--sl-transition);
}

.sl-card-service::after {
	content: '';
	position: absolute;
	bottom: 0; left: 0; right: 0;
	height: 4px;
	background: linear-gradient(90deg, var(--sl-amber), var(--sl-amber-light));
	transform: scaleX(0);
	transform-origin: left;
	transition: transform var(--sl-transition);
	border-radius: 0 0 var(--sl-radius) var(--sl-radius);
}

.sl-card-service:hover {
	border-color: transparent;
	box-shadow: 0 14px 44px rgba(245,168,0,0.18);
	transform: translateY(-7px);
}

.sl-card-service:hover::after {
	transform: scaleX(1);
}

.sl-card-icon {
	width: 58px;
	height: 58px;
	background: var(--sl-amber-bg);
	border-radius: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 22px;
	font-size: 1.5rem;
	color: var(--sl-amber);
	transition: all var(--sl-transition);
}

.sl-card-service:hover .sl-card-icon {
	background: var(--sl-amber);
	color: var(--sl-dark);
	transform: scale(1.08);
}

.sl-card-service h4 {
	font-size: 1.02rem;
	font-weight: 700;
	color: var(--sl-dark);
	margin-bottom: 12px;
}

.sl-card-service p {
	font-size: 0.87rem;
	color: var(--sl-text-light);
	line-height: 1.72;
	margin: 0;
}


/* ═══════════════════════════════════════
   #RESPALDO — SECCIÓN OSCURA
═══════════════════════════════════════ */
.sl-stat-card {
	padding: 32px 20px;
	border-radius: var(--sl-radius);
	background: rgba(255,255,255,0.05);
	border: 1px solid rgba(255,255,255,0.10);
	transition: all var(--sl-transition);
}

.sl-stat-card:hover {
	background: rgba(245,168,0,0.14);
	border-color: var(--sl-amber);
	transform: translateY(-5px);
}

.sl-stat-card i {
	font-size: 2.2rem;
	color: var(--sl-amber);
	margin-bottom: 14px;
	display: block;
}

.sl-stat-card h3 {
	font-size: 2.6rem;
	font-weight: 800;
	color: var(--sl-amber);
	margin-bottom: 8px;
}

.sl-stat-card p {
	font-size: 0.82rem;
	color: rgba(255,255,255,0.65);
	text-transform: uppercase;
	letter-spacing: 1.2px;
	margin: 0;
}

/* Highlights de confianza */
.sl-highlight {
	display: flex;
	align-items: flex-start;
	gap: 18px;
	padding: 24px;
	border-radius: var(--sl-radius);
	background: rgba(255,255,255,0.05);
	border: 1px solid rgba(255,255,255,0.08);
	transition: border-color var(--sl-transition), background var(--sl-transition);
}

.sl-highlight:hover {
	border-color: var(--sl-amber);
	background: rgba(245,168,0,0.08);
}

.sl-highlight > i {
	font-size: 2rem;
	color: var(--sl-amber);
	flex-shrink: 0;
	margin-top: 2px;
}

.sl-highlight h5 {
	font-size: 0.95rem;
	font-weight: 700;
	color: #FFFFFF;
	margin-bottom: 5px;
}

.sl-highlight p {
	font-size: 0.84rem;
	color: rgba(255,255,255,0.62);
	margin: 0;
	line-height: 1.6;
}


/* ═══════════════════════════════════════
   #EQUIPO — TARJETAS DE EQUIPO
═══════════════════════════════════════ */
.sl-team-card {
	border-radius: var(--sl-radius);
	overflow: hidden;
	box-shadow: var(--sl-shadow-sm);
	background: var(--sl-white);
	transition: all var(--sl-transition);
}

.sl-team-card:hover {
	transform: translateY(-9px);
	box-shadow: 0 18px 48px rgba(245,168,0,0.22);
}

.sl-team-img-wrap {
	overflow: hidden;
	height: 240px;
}

.sl-team-img-wrap img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.sl-team-card:hover .sl-team-img-wrap img {
	transform: scale(1.06);
}

/* Avatar de iniciales (cuando no hay foto) */
.sl-team-avatar {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, var(--sl-dark-2) 0%, var(--sl-dark-3) 100%);
	font-size: 3rem;
	font-weight: 800;
	color: var(--sl-amber);
	letter-spacing: 3px;
	user-select: none;
	transition: background var(--sl-transition);
}

.sl-team-card:hover .sl-team-avatar {
	background: linear-gradient(135deg, var(--sl-amber) 0%, var(--sl-amber-dark) 100%);
	color: var(--sl-dark);
}

.sl-team-info {
	padding: 22px 20px 20px;
	text-align: center;
	border-top: 4px solid var(--sl-amber);
}

.sl-team-info h4 {
	font-size: 1rem;
	font-weight: 700;
	color: var(--sl-dark);
	margin-bottom: 4px;
}

.sl-team-role {
	font-size: 0.76rem;
	color: var(--sl-amber);
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1.2px;
	display: block;
}

.sl-team-social a {
	display: inline-flex;
	width: 34px;
	height: 34px;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	border: 1.5px solid var(--sl-border);
	color: var(--sl-text-light);
	margin: 0 3px;
	font-size: 0.8rem;
	text-decoration: none;
	transition: all var(--sl-transition);
}

.sl-team-social a:hover {
	background: var(--sl-amber);
	border-color: var(--sl-amber);
	color: var(--sl-dark);
	transform: scale(1.12);
}


/* ═══════════════════════════════════════
   #NOSOTROS — CHECKLIST
═══════════════════════════════════════ */
.sl-about-feature {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 0.9rem;
	color: var(--sl-dark);
	font-weight: 500;
	padding: 8px 12px;
	border-radius: 8px;
	background: rgba(245,168,0,0.07);
}

.sl-about-feature i {
	color: var(--sl-amber);
	font-size: 1rem;
	flex-shrink: 0;
}


/* ═══════════════════════════════════════
   #CONTÁCTENOS — FORMULARIO + INFO
═══════════════════════════════════════ */
.sl-contact-info {
	display: flex;
	flex-direction: column;
	gap: 22px;
}

.sl-contact-item {
	display: flex;
	align-items: flex-start;
	gap: 16px;
}

.sl-contact-icon {
	width: 48px;
	height: 48px;
	background: var(--sl-amber-bg);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.15rem;
	color: var(--sl-amber);
	flex-shrink: 0;
	transition: all var(--sl-transition);
}

.sl-contact-item:hover .sl-contact-icon {
	background: var(--sl-amber);
	color: var(--sl-dark);
}

.sl-contact-item h6 {
	font-size: 0.73rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	color: var(--sl-amber);
	margin-bottom: 3px;
}

.sl-contact-item p,
.sl-contact-item a {
	font-size: 0.92rem;
	color: var(--sl-text);
	margin: 0;
	text-decoration: none;
	line-height: 1.55;
}

.sl-contact-item a:hover {
	color: var(--sl-amber);
}

.sl-contact-form-wrap {
	background: var(--sl-white);
	border-radius: 18px;
	padding: 38px;
	border: 1.5px solid var(--sl-border);
	box-shadow: var(--sl-shadow-sm);
}


/* ═══════════════════════════════════════
   BARRA DE CONTACTO RÁPIDO (amber)
═══════════════════════════════════════ */
.sl-contact-bar {
	background: var(--sl-amber);
	padding: 30px 0;
}

.sl-cbar-item {
	display: flex;
	align-items: center;
	gap: 16px;
	padding: 10px 40px;
	border-right: 1px solid rgba(28,28,28,0.18);
}

.sl-cbar-item:last-child {
	border-right: none;
}

.sl-cbar-item > i {
	font-size: 2rem;
	color: var(--sl-dark);
	flex-shrink: 0;
}

.sl-cbar-label {
	display: block;
	font-size: 0.68rem;
	font-weight: 700;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: rgba(28,28,28,0.55);
	margin-bottom: 2px;
}

.sl-cbar-value {
	display: block;
	font-size: 0.95rem;
	font-weight: 700;
	color: var(--sl-dark);
	text-decoration: none;
	transition: opacity var(--sl-transition);
}

.sl-cbar-value:hover {
	opacity: 0.75;
	color: var(--sl-dark);
}


/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
.sl-footer {
	background: var(--sl-dark);
	border-top: 3px solid var(--sl-amber);
	padding: 28px 0;
}


/* ═══════════════════════════════════════
   FOOTER – REDES SOCIALES
═══════════════════════════════════════ */
.sl-footer-social {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
}

.sl-social-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	border: 1px solid rgba(255,255,255,0.15);
	color: rgba(255,255,255,0.55);
	font-size: 1rem;
	text-decoration: none;
	transition: color 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

/* LinkedIn */
.sl-social-linkedin:hover {
	border-color: #0077B5;
	background: rgba(0,119,181,0.15);
	color: #0077B5;
}

/* Instagram */
.sl-social-instagram:hover {
	border-color: #E1306C;
	background: rgba(225,48,108,0.12);
	color: #E1306C;
}

/* TikTok – marca en blanco sobre oscuro */
.sl-social-tiktok:hover {
	border-color: rgba(255,255,255,0.7);
	background: rgba(255,255,255,0.08);
	color: #ffffff;
}

/* ═══════════════════════════════════════
   WHATSAPP FLOTANTE
═══════════════════════════════════════ */
.whatsapp-float {
	position: fixed;
	width: 64px;
	height: 64px;
	bottom: 32px;
	left: 32px;
	background-color: #25D366;
	color: #FFFFFF;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2.5rem;
	box-shadow: 0 4px 20px rgba(37,211,102,0.40);
	z-index: 9999;
	text-decoration: none;
	transition: background var(--sl-transition), transform var(--sl-transition), box-shadow var(--sl-transition);
}

.whatsapp-float:hover {
	background: #128C7E;
	color: #FFFFFF;
	transform: scale(1.12);
	box-shadow: 0 8px 28px rgba(18,140,126,0.45);
}


/* ═══════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════ */
@media (max-width: 1199px) {
	.sl-hero-title { font-size: 2.5rem; }
	.sl-cbar-item  { padding: 10px 24px; }
}

@media (max-width: 991px) {
	.sl-hero-title   { font-size: 2.1rem; }
	.sl-hero-form    { padding: 28px 24px; }
	.sl-section      { padding: 70px 0; }
	.sl-section-title{ font-size: 1.9rem; }

	.sl-cbar-item {
		border-right: none;
		padding: 12px 16px;
		border-bottom: 1px solid rgba(28,28,28,0.12);
	}
	.sl-cbar-item:last-child { border-bottom: none; }
}

@media (max-width: 767px) {
	.sl-hero-title   { font-size: 1.75rem; }
	.sl-section      { padding: 55px 0; }
	.sl-section-title{ font-size: 1.65rem; }
	.sl-hero-row     { padding-top: 90px; padding-bottom: 60px; }
	.sl-stat-card h3 { font-size: 2rem; }
	.sl-contact-form-wrap { padding: 24px 20px; }
	.sl-hero-form    { padding: 24px 18px; }
}

@media (max-width: 575px) {
	.sl-hero-title { font-size: 1.55rem; }
	.sl-badge      { font-size: 0.65rem; }
	.sl-stat-num   { font-size: 1.55rem; }
}


/* ═══════════════════════════════════════
   #EQUIPO — TARJETAS DE MONTACARGAS
═══════════════════════════════════════ */
.sl-equipo-card {
	background: var(--sl-white);
	border-radius: var(--sl-radius);
	overflow: hidden;
	border: 1.5px solid var(--sl-border);
	box-shadow: var(--sl-shadow-sm);
	transition: all var(--sl-transition);
	height: 100%;
	display: flex;
	flex-direction: column;
}

.sl-equipo-card:hover {
	border-color: var(--sl-amber);
	box-shadow: 0 16px 44px rgba(245,168,0,0.22);
	transform: translateY(-7px);
}

/* Imagen del montacargas */
.sl-equipo-img {
	position: relative;
	height: 220px;
	overflow: hidden;
	background: var(--sl-dark);
}

.sl-equipo-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
	display: block;
}

.sl-equipo-card:hover .sl-equipo-img img {
	transform: scale(1.06);
}

/* Badge "DISPONIBLE" */
.sl-equipo-badge {
	position: absolute;
	top: 14px;
	left: 14px;
	background: var(--sl-amber);
	color: var(--sl-dark);
	font-size: 0.68rem;
	font-weight: 800;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	padding: 5px 14px;
	border-radius: 30px;
	box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

/* Cuerpo de la tarjeta */
.sl-equipo-body {
	padding: 22px 22px 20px;
	display: flex;
	flex-direction: column;
	flex: 1;
}

.sl-equipo-title {
	font-size: 0.95rem;
	font-weight: 700;
	color: var(--sl-dark);
	margin-bottom: 16px;
	line-height: 1.35;
}

.sl-equipo-title i {
	color: var(--sl-amber);
}

/* Lista de especificaciones técnicas */
.sl-equipo-specs {
	list-style: none;
	padding: 0;
	margin: 0 0 18px;
	flex: 1;
}

.sl-equipo-specs li {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 9px 0;
	font-size: 0.85rem;
	border-bottom: 1px solid var(--sl-border);
	color: var(--sl-text);
}

.sl-equipo-specs li:last-child {
	border-bottom: none;
}

.sl-equipo-specs li > i {
	color: var(--sl-amber);
	font-size: 0.85rem;
	width: 16px;
	flex-shrink: 0;
	text-align: center;
}

.spec-label {
	font-size: 0.75rem;
	font-weight: 700;
	color: var(--sl-text-light);
	text-transform: uppercase;
	letter-spacing: 0.5px;
	min-width: 100px;
	flex-shrink: 0;
}

.spec-value {
	font-weight: 700;
	color: var(--sl-dark);
	font-size: 0.88rem;
}


/* ═══════════════════════════════════════
   COTIZA — CHOOSE SERVICE (imagen reveal)
═══════════════════════════════════════ */
.sl-choose-section {
	background: var(--sl-dark);
	overflow: hidden;
}

/* ---- Lista de items ---- */
.sl-choose-list {
	display: flex;
	flex-direction: column;
	gap: 0;
}

.sl-choose-item {
	display: flex;
	align-items: flex-start;
	gap: 18px;
	padding: 22px 0;
	border-bottom: 1px solid rgba(255,255,255,0.08);
	cursor: pointer;
	transition: all 0.3s ease;
	position: relative;
	padding-left: 0;
}

.sl-choose-item:first-child {
	border-top: 1px solid rgba(255,255,255,0.08);
}

/* Borde izquierdo amber en activo */
.sl-choose-item::before {
	content: '';
	position: absolute;
	left: -28px;
	top: 0;
	bottom: 0;
	width: 3px;
	background: var(--sl-amber);
	border-radius: 0 2px 2px 0;
	transform: scaleY(0);
	transition: transform 0.3s ease;
}

.sl-choose-item.active::before,
.sl-choose-item:hover::before {
	transform: scaleY(1);
}

/* Número */
.sl-choose-num {
	font-size: 2.2rem;
	font-weight: 800;
	line-height: 1;
	color: rgba(255,255,255,0.15);
	transition: color 0.3s ease;
	min-width: 52px;
	text-align: right;
	padding-top: 2px;
	flex-shrink: 0;
}

.sl-choose-item.active .sl-choose-num,
.sl-choose-item:hover .sl-choose-num {
	color: var(--sl-amber);
}

/* Contenido de texto */
.sl-choose-content h4 {
	font-size: 1.05rem;
	font-weight: 700;
	color: rgba(255,255,255,0.6);
	margin-bottom: 0;
	transition: color 0.3s ease;
}

.sl-choose-item.active .sl-choose-content h4,
.sl-choose-item:hover .sl-choose-content h4 {
	color: var(--sl-white);
}

.sl-choose-content p {
	font-size: 0.85rem;
	color: rgba(255,255,255,0.45);
	margin-top: 6px;
	margin-bottom: 8px;
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.4s ease, opacity 0.3s ease;
	opacity: 0;
	line-height: 1.6;
}

.sl-choose-item.active .sl-choose-content p,
.sl-choose-item:hover .sl-choose-content p {
	max-height: 80px;
	opacity: 1;
}

/* Link "Solicitar servicio" */
.sl-choose-link {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 0.78rem;
	font-weight: 700;
	color: var(--sl-amber);
	text-decoration: none;
	text-transform: uppercase;
	letter-spacing: 0.8px;
	max-height: 0;
	overflow: hidden;
	opacity: 0;
	transition: max-height 0.4s ease 0.1s, opacity 0.3s ease 0.1s;
}

.sl-choose-link:hover {
	color: var(--sl-amber-light);
}

.sl-choose-item.active .sl-choose-link,
.sl-choose-item:hover .sl-choose-link {
	max-height: 32px;
	opacity: 1;
}

/* ---- Caja de imagen (columna derecha) ---- */
.sl-choose-imgbox {
	position: sticky;
	top: 100px;
	border-radius: 16px;
	overflow: hidden;
	height: 500px;
	background: var(--sl-dark-2);
}

.sl-choose-img {
	position: absolute;
	inset: 0;
	opacity: 0;
	transition: opacity 0.5s ease;
}

.sl-choose-img.active {
	opacity: 1;
}

.sl-choose-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	display: block;
}

/* Caption dentro de la imagen */
.sl-choose-img-caption {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 20px 24px;
	background: linear-gradient(to top, rgba(0,0,0,0.80) 0%, transparent 100%);
	color: var(--sl-white);
}

.sl-choose-img-tag {
	display: inline-block;
	background: var(--sl-amber);
	color: var(--sl-dark);
	font-size: 0.7rem;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 1px;
	padding: 3px 10px;
	border-radius: 20px;
	margin-bottom: 6px;
}

.sl-choose-img-caption p {
	font-size: 0.82rem;
	color: rgba(255,255,255,0.80);
	margin: 0;
	line-height: 1.5;
}

/* Responsive */
@media (max-width: 991px) {
	.sl-choose-imgbox {
		position: relative;
		top: auto;
		height: 280px;
		margin-top: 32px;
	}
	.sl-choose-item::before {
		left: -18px;
	}
}
