@font-face {
	font-family: 'Woodford Bourne';
	src: url('fonts/WoodfordBournePRO-ExtraLight.otf') format('opentype');
	font-weight: 200;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Woodford Bourne';
	src: url('fonts/WoodfordBournePRO-Light.otf') format('opentype');
	font-weight: 300;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Woodford Bourne';
	src: url('fonts/WoodfordBournePro-Regular.ttf') format('truetype');
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Woodford Bourne';
	src: url('fonts/WoodfordBournePRO-Medium.otf') format('opentype');
	font-weight: 500;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Woodford Bourne';
	src: url('fonts/WoodfordBournePRO-SemiBold.otf') format('opentype');
	font-weight: 600;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Woodford Bourne';
	src: url('fonts/WoodfordBournePRO-Bold.otf') format('opentype');
	font-weight: 700;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Woodford Bourne';
	src: url('fonts/WoodfordBournePRO-Black.otf') format('opentype');
	font-weight: 900;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Woodford Bourne';
	src: url('fonts/WoodfordBournePRO-Ultra.otf') format('opentype');
	font-weight: 950;
	font-style: normal;
	font-display: swap;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

:root {
	--color-purple-dark: #590990;
	--color-purple: #8355ac;
	--color-orange: #ff6766;
	--color-fucsia: #b92d5a;
	--color-pink: #f5a7b5;
	--color-turquoise: #38b5c7;
	--color-sky: #9ad9e0;

	--color-bg: #f8f8f8;
	--color-white: #fff;
	--color-text: #333;
	--color-muted: #666;
	--color-heading: var(--color-purple-dark);
	--color-accent: var(--color-orange);

	--font-brand: 'Woodford Bourne', Arial, sans-serif;
}

body, html {
	min-height: 100dvh;
}

body {
	font-family: var(--font-brand);
	background-color: var(--color-bg);
	color: var(--color-text);
	margin: 0;
}

h1, h2, h3 {
	color: var(--color-heading);
}

h2 {
	font-size: clamp(1.9rem, 3.2vw, 2.75rem);
}

a, a:visited, a:active, a:link, a:hover {
	color: var(--color-purple);
	text-decoration: none;
}

.hero {
	position: relative;
	background-image: url('../assets/img/FONDOS/FONDO-1.png');
	background-size: cover;
	background-position: center;
	background-color: var(--color-pink);
}

.hero__nav {
	display: flex;
	justify-content: flex-end;
	flex-wrap: wrap;
	gap: 30px;
	padding: 30px 40px;
}

.hero__nav a {
	color: var(--color-white);
	font-weight: bold;
	font-size: 0.85rem;
	letter-spacing: 0.05em;
	text-transform: uppercase;
}

.hero__nav a:hover {
	color: var(--color-purple-dark);
}

.hero__content {
	padding: 20px 0 0 clamp(80px, 12vw, 220px);
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	flex-wrap: wrap;
}

.hero__text {
	align-self: center;
}

.hero__logo {
	width: clamp(320px, 34vw, 520px);
	height: auto;
	display: block;
	margin: 0 auto;
}

.hero__tagline {
	color: var(--color-white);
	font-size: clamp(1.7rem, 3.2vw, 3rem);
	margin: 6px 0 0;
	text-align: center;
	white-space: nowrap;
}

.hero__gallery {
	width: clamp(460px, 52vw, 820px);
	height: auto;
	display: block;
	flex: 0 0 auto;
}

.benefits {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	max-width: 1200px;
	margin: 0 auto;
	padding: 80px 20px;
}

.benefits__image {
	flex: 1 1 440px;
	max-width: 670px;
	width: 100%;
	height: auto;
	border-radius: 20px;
	border-bottom-left-radius: 100px;
}

.benefits__list-img {
	flex: 1 1 320px;
	max-width: 350px;
	width: 100%;
	height: auto;
}

.products {
	background-image: url('../assets/img/FONDOS/FONDO-2.png');
	background-size: cover;
	background-position: center;
	padding: 70px 0 90px;
	text-align: center;
}

.products h2 {
	color: var(--color-white);
	margin: 0 0 50px;
	padding: 0 20px;
}

.carousel {
	position: relative;
	width: 100%;
}

.carousel__track {
	display: flex;
	align-items: center;
	gap: 40px;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scroll-behavior: smooth;
	padding: 10px 7vw;
	scrollbar-width: none;
	-ms-overflow-style: none;
}

.carousel__track::-webkit-scrollbar {
	display: none;
}

.carousel__slide {
	flex: 0 0 clamp(260px, 24vw, 400px);
	scroll-snap-align: center;
	display: flex;
	align-items: center;
}

.carousel__slide a {
	display: block;
	width: 100%;
}

.carousel__slide img {
	width: 100%;
	height: auto;
	filter: drop-shadow(0 14px 24px rgba(0, 0, 0, 0.3));
	transition: transform 0.25s ease, filter 0.25s ease;
}

.carousel__slide a:hover img {
	transform: scale(1.06);
	filter: drop-shadow(0 18px 30px rgba(0, 0, 0, 0.4));
}

.carousel__btn {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 2;
	width: 52px;
	height: 52px;
	border: none;
	border-radius: 50%;
	background-color: var(--color-white);
	color: var(--color-purple-dark);
	font-size: 1.2rem;
	cursor: pointer;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.carousel__btn--prev {
	left: 20px;
}

.carousel__btn--next {
	right: 20px;
}

.carousel__btn:hover {
	background-color: var(--color-fucsia);
	color: var(--color-white);
}

.social {
	text-align: center;
	padding: 80px 20px;
}

.social h2 {
	margin: 0 0 50px;
}

.social__content {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 60px;
	max-width: 1100px;
	margin: 0 auto;
}

.social__tagline {
	color: var(--color-pink);
	font-size: clamp(2rem, 3vw, 2.6rem);
	line-height: 1.25;
	text-align: left;
	margin: 0;
}

.social__tagline strong {
	color: var(--color-fucsia);
}

.social__buttons {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.social__buttons img {
	display: block;
	width: clamp(200px, 16vw, 260px);
	height: auto;
}

.social__products {
	width: clamp(300px, 30vw, 420px);
	height: auto;
	filter: drop-shadow(0 10px 20px rgba(89, 9, 144, 0.2));
}

.footer {
	background-image: url('../assets/img/FONDOS/FONDO-3.png');
	background-size: cover;
	background-position: center;
	padding: 40px 20px;
}

.footer__content {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	justify-content: space-between;
	gap: 30px;
}

.footer__logo {
	width: 200px;
	height: auto;
}

.footer__company,
.footer__contact {
	color: var(--color-white);
	font-size: 1rem;
}

.footer__company p,
.footer__contact p {
	margin: 0 0 12px;
}

.footer__brand {
	font-weight: bold;
	font-size: 1.25rem;
}

.footer__contact a {
	color: var(--color-white);
	font-weight: bold;
}

.footer__social {
	display: flex;
	gap: 10px;
	margin-bottom: 12px;
}

.footer__social img {
	height: 36px;
	width: auto;
	display: block;
}

.footer__copyright {
	color: rgba(255, 255, 255, 0.75);
	font-size: 0.8rem;
}

@media (max-width: 600px) {
	.hero__nav {
		justify-content: center;
		padding: 20px;
	}

	.hero__content {
		flex-direction: column;
		align-items: center;
		text-align: center;
		padding: 0 20px 0px;
	}

	.hero__gallery {
		width: 100%;
		max-width: 400px;
	}

	.social__tagline {
		text-align: center;
	}

	.footer__content {
		flex-direction: column;
		align-items: center;
		text-align: center;
	}
}
