/* BODY GENERAL */
html,
body {
	width: 100%;
	overflow-x: hidden; /* 🔒 Evita el scroll horizontal */
}

body {
	background-color: rgb(20, 19, 19);
	max-width: 1200px;
	margin: 0 auto;
	font-family: Arial, sans-serif;
}

/* LOGO CENTRADO Y FIJO */
.container-logo {
	position: fixed;
	top: 10px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 1000;
	background-color: rgb(12, 10, 10);
	padding: 10px;
	border-radius: 10px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
	display: flex;
	justify-content: center;
	align-items: center;
}
.container-logo img {
	width: 200px;
	height: auto;
}

/* Espacio debajo del logo para evitar superposición */
.etapa1 {
	margin-top: 120px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 40px;
	padding: 40px 20px;
	flex-wrap: nowrap;
}
.etapa1 h1 {
	color: white;
	font-size: 48px;
	margin: 10px 0;
}
.etapa1 span {
	color: white;
	font-size: 24px;
}
.etapa1 p {
	background-color: rgb(231, 6, 201);
	color: white;
	font-size: 20px;
	padding: 5px 10px;
	display: inline-block;
	border-radius: 5px;
	margin-bottom: 10px;
}
.baner-1 {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 900px;
}
.baner-1 img {
	width: 100%;
	max-width: 400px;
	height: auto;
}

/* BOTÓN WHATSAPP */
button.btn-wsp {
	background-color: #fef606;
	font-size: 22px;
	border: none;
	border-radius: 10px;
	color: rgb(0, 0, 0);
	padding: 12px 24px;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	transition: background-color 0.3s ease;
}
button.btn-wsp:hover {
	background-color: #e6e603;
}

/* TARJETAS DE MARCAS */
#card-container {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	background-color: rgb(12, 12, 12);
	border-radius: 10px;
	margin: 40px auto;
	gap: 20px;
}
.card {
	background-color: white;
	border-radius: 10px;
	padding: 10px;
	display: flex;
	justify-content: center;
	align-items: center;
	box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}
.card img {
	width: 80px;
	height: auto;
}

/* SECCIÓN INFORMATIVA */
.info {
	background-color: whitesmoke;
	display: flex;
	justify-content: space-around;
	align-items: center;
	flex-wrap: wrap;
	padding: 10px 20px;
	border-radius: 20px;
}
.info-text {
	flex: 1 1 400px;
	text-align: center;
	color: white;
}
.info-text h2 {
	color: black;
	font-size: 32px;
	margin-bottom: 10px;
}
.info-text p {
	font-size: 20px;
	margin-bottom: 20px;
	color: black;
}
#seg {
	background-color: #bd1e83;
	padding: 20px;
	border-radius: 10px;
	display: inline-block;
	margin: 10px 15px 10px 0;
}
#seg img {
	width: 50px;
	height: auto;
}
#seg p {
	color: white;
	font-size: 20px;
	margin: 0;
}
.info > div img {
	max-width: 400px;
	width: 100%;
	height: auto;
}
.rubia {
	background-color: rgb(6, 231, 32);
	padding: 20px;
	border-radius: 10px;
	font-size: 20px;
	color: white;
	cursor: pointer;
}

/* SECCIÓN TONERS */
.quetoner {
	color: white;
	text-align: center;
	font-size: 45px;
	padding: 20px 0;
}
.barra {
	display: block;
	margin: 0 auto;
}
.quetoner-text {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 20px;
	padding: 20px;
}
.quetoner-text > div {
	flex: 1 1 300px;
	max-width: 100%;
}

.quetoner-text h3 {
	color: rgb(226, 13, 190);
	font-size: 30px;
}
.sabermas,
.sabermasuno {
	border-radius: 10px;
	padding: 10px 20px;
	font-size: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	margin: 20px auto;
}
.sabermas {
	background-color: rgb(236, 10, 202);
	color: white;
}
.sabermasuno {
	background-color: #fef606;
	color: white;
}

.whatsapp-float {
	position: fixed;
	width: 70px;
	height: 70px;
	bottom: 30px;
	right: 30px;
	background-color: #25d366;
	color: white;
	border-radius: 50%;
	text-align: center;
	font-size: 36px;
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
	z-index: 1001;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	animation: floatPulse 2.5s infinite;
}
.whatsapp-float:hover {
	transform: scale(1.15);
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6);
	background-color: #1ebe5d;
}

/* Animación sutil para llamar la atención */
@keyframes floatPulse {
	0%,
	100% {
		transform: scale(1);
	}
	50% {
		transform: scale(1.05);
	}
}
/* ============================= */
/* 📱 MEDIA QUERIES RESPONSIVE  */
/* ============================= */

/* Tablets y pantallas medianas */
@media (max-width: 1024px) {
	.etapa1 {
		flex-direction: column;
		align-items: center;
		text-align: center;
	}

	.baner-1 {
		width: 100%;
		justify-content: center;
	}

	.quetoner-text {
		flex-direction: column;
		align-items: center;
		gap: 40px;
	}

	.quetoner-text > div {
		max-width: 100%;
	}

	.info {
		flex-direction: column;
		text-align: center;
	}

	#seg {
		display: block;
		margin: 15px auto;
	}

	.info > div img {
		max-width: 100%;
	}
}

/* Celulares */
@media (max-width: 768px) {
	.container-logo img {
		width: 150px;
	}

	.btn-wsp,
	.rubia,
	.sabermas,
	.sabermasuno {
		font-size: 18px;
		padding: 10px 20px;
	}

	.etapa1 h1 {
		font-size: 32px;
		text-align: center;
	}

	.etapa1 span {
		font-size: 18px;
	}

	.quetoner {
		font-size: 28px;
	}

	.whatsapp-float {
		width: 60px;
		height: 60px;
		font-size: 28px;
		bottom: 20px;
		right: 20px;
	}

	.card img {
		width: 60px;
	}

	.card {
		flex: 1 1 45%;
	}

	#card-container {
		padding: 0 10px;
	}
	@media (max-width: 768px) {
		.quetoner-text {
			flex-direction: column;
			align-items: center;
		}
		.quetoner-text > div {
			width: 100%;
		}
	}
}

/* Pantallas muy pequeñas */
@media (max-width: 480px) {
	.container-logo img {
		width: 120px;
	}

	.etapa1 p {
		font-size: 16px;
	}

	.btn-wsp,
	.rubia,
	.sabermas,
	.sabermasuno {
		font-size: 16px;
		padding: 8px 16px;
	}

	.card {
		flex: 1 1 100%;
	}

	.baner-1 img {
		max-width: 100%;
	}

	.info-text h2 {
		font-size: 24px;
	}

	.info-text p {
		font-size: 16px;
	}

	.quetoner-text h3 {
		font-size: 24px;
	}
}

a {
	text-decoration: none;
	color: inherit;
}
p {
	color: white;
}
