/**
 * File: hero-test.css
 * Path: razaideal/assets/css/hero-test.css
 */

.ri-hero-test-wrap {
	background: #0B4F5C;
	overflow: hidden;
}

.ri-hero-test {
	--ri-acento: #F26B57;
	--ri-mint: #8FE3D2;
	--ri-verde: #1FA391;

	max-width: 1240px;
	margin: 0 auto;
	padding: 40px 24px 36px;
	text-align: center;
	font-family: 'Quicksand', sans-serif;
}

.ri-hero-test-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: rgba(242, 107, 87, 0.16);
	color: #FFD9CF;
	font-size: 0.8rem;
	font-weight: 700;
	padding: 8px 16px;
	border-radius: 999px;
	margin-bottom: 16px;
}

.ri-hero-test-badge-dot {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--ri-acento);
	flex-shrink: 0;
}

.ri-hero-test-titulo {
	font-size: clamp(1.6rem, 6vw, 2rem);
	font-weight: 700;
	line-height: 1.25;
	color: #fff;
	margin: 0 0 10px;
}

.ri-hero-test-mint {
	color: var(--ri-mint);
}

.ri-hero-test-texto {
	font-family: 'Inter', system-ui, sans-serif;
	font-size: 0.92rem;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.75);
	margin: 0 auto;
	max-width: 440px;
}

/* ---------- Racimo de círculos (mobile: fila centrada, solapados) ---------- */

.ri-hero-test-racimo {
	display: flex;
	justify-content: center;
	margin-top: 28px;
}

.ri-hero-test-circulo {
	display: block;
	width: 64px;
	height: 64px;
	border-radius: 50%;
	overflow: hidden;
	border: 3px solid #0B4F5C;
	margin-left: -16px;
	flex-shrink: 0;
}

.ri-hero-test-circulo:first-child {
	margin-left: 0;
}

.ri-hero-test-circulo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

/* ---------- Desktop: texto a la izquierda, racimo disperso a la derecha ---------- */

@media (min-width: 900px) {
	.ri-hero-test {
		padding: 56px 48px;
	}

	.ri-hero-test--con-fotos {
		display: grid;
		grid-template-columns: 1fr 1fr;
		align-items: center;
		gap: 40px;
		text-align: left;
	}

	.ri-hero-test-texto-col {
		max-width: 460px;
	}

	.ri-hero-test-titulo {
		font-size: clamp(2rem, 3vw, 2.4rem);
	}

	.ri-hero-test-texto {
		margin: 0;
	}

	.ri-hero-test-racimo {
		margin-top: 0;
		position: relative;
		height: 260px;
	}

	.ri-hero-test-circulo {
		position: absolute;
		width: 120px;
		height: 120px;
		margin-left: 0;
		border-width: 4px;
	}

	.ri-hero-test-circulo--0 {
		top: 10px;
		left: 60px;
	}

	.ri-hero-test-circulo--1 {
		top: 100px;
		left: 200px;
		width: 100px;
		height: 100px;
	}

	.ri-hero-test-circulo--2 {
		top: 150px;
		left: 20px;
		width: 90px;
		height: 90px;
	}

	.ri-hero-test-circulo--3 {
		top: 0;
		left: 260px;
		width: 70px;
		height: 70px;
	}

	.ri-hero-test:not(.ri-hero-test--con-fotos) {
		padding: 56px 48px;
		text-align: center;
	}
}