:root {
	--primary-color: #BCA6F4;
	--secondary-color: #ffe66d;
	--text-dark: #111111;
	--text-light: #ffffff;
}

* {
	box-sizing: border-box;
}

body {
	margin: 0;
	font-family: 'Instrument Sans', sans-serif;
	color: var(--text-light);
	font-size: 20px;
	background: url('img/desktop/Fondo1920x1080_LandingxNyx.webp') center center / cover fixed no-repeat;
}

.page-overlay {
	min-height: 100vh;
}

h1,h2,h3,h4,h5 {
	font-family: 'Instrument Serif', serif;
}

.italics {
	font-family: 'Instrument Serif', sans-serif;
	font-style: italic;
	font-size: 24px;
}

.hero {
	min-height: 90vh;
	display: flex;
	align-items: center;
	padding: 4rem 0;
}

.hero-card {
	background: rgba(0, 0, 0, 0.6);
	border-radius: 1.5rem;
	padding: 2rem 2.25rem;
	border: 1px solid rgba(255, 255, 255, 0.16);
	backdrop-filter: blur(8px);
}

.hero-tagline {
	font-size: 0.9rem;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	opacity: 0.9;
	margin-bottom: 0.5rem;
}

.hero-title {
	font-size: clamp(2.2rem, 4vw, 3.4rem);
	font-weight: 700;
	margin-bottom: 1rem;
}

.hero-subtitle {
	font-size: 1.05rem;
	margin-bottom: 1.5rem;
	max-width: 520px;
}

.hero-cta {
	border-radius: 999px;
	padding-inline: 2.2rem;
	font-weight: 600;
}

.hero-small-text {
	font-size: 0.85rem;
	opacity: 0.9;
	margin-top: 0.75rem;
}

.hero-image {
	border-radius: 1.5rem;
	overflow: hidden;
}

.hero-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.text-final {
	font-size: 30px;
}

.btn-primary {
	background-color: var(--primary-color);
	border-color: #423975;
	color: #20184F;
	border-radius: 50px;
	font-weight: 600;
	padding: 15px 100px;
}

.btn-primary:hover {
	background-color: #cbb7ff;
	border-color: #cbb7ff;
	color: #20184F;
}

.btn-primary:active,
.btn-primary.active,
.show > .btn-primary.dropdown-toggle {
  background-color: #d4c3ff !important;
  border-color: #d4c3ff !important;
  color: #20184F !important;
}

.btn-check:checked + .btn-primary {
  background-color: #d4c3ff !important;
  border-color: #d4c3ff !important;
  color: #20184F !important;
}

.pin-section {
	padding: 1rem 0;
	position: relative;
}

.section-title {
	margin-bottom: 1.5rem;
}

.pin-text {
	font-size: 1rem;
	line-height: 1.6;
	margin-bottom: 1rem;
}

.pin-text {
  list-style: none;
  padding-left: 0;
  font-size: 20px;
}

.pin-text ul {
	padding-left: 1.2rem;
}

.pin-text li {
  background: url('img/desktop/diamond.png') no-repeat left 6px;
  background-size: 22px 22px;
  padding-left: 30px;
  margin-bottom: 1rem;
}

.pin-image-wrapper {
	position: relative;
}

.pin-image-card {
	padding: 0.75rem;
}

.pin-image-card img {
	display: block;
	width: 100%;
	object-fit: cover;
	float: right;
	position: absolute;
    right: -14%;
}

.pin-image-card-left {
	padding: 0.75rem;
}

.pin-image-card-left img {
	display: block;
	width: 100%;
	object-fit: cover;
	float: left;
	position: absolute;
    left: -14%;
}

@media (max-width: 768px) {
	.hero {
		padding: 3rem 0;
		min-height: 0vh;
	}

	.hero-card {
		padding: 1.75rem 1.5rem;
	}

	.hero-image {
		margin-top: 1.5rem;
	}

	.pin-section {
		padding: 3rem 0;
	}

	.pin-image-wrapper {
		margin-top: 2rem;
	}

	.logo {
		width: 50%;
	}

	.btn-primary {
		width: 100%;
    	padding: 20px;
	}

	.envolve {
		width: 100% !important;
	}

	.ptbnone {
		padding-top: 0 !important;
	}

	.title-footer {
		width: 100%;
	}
}

@media (min-width: 1800px) {
	.pin-image-card img {
		right: -11%;
	}

	.pin-image-card-left img {
		left: -11%;
	}
}