/* ===================================================
   FAMÍLIA FARMADR – Stylesheet
   =================================================== */

/* ----- Reset & Variables ----- */
*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

:root {
	--purple: #581c87;
	--yellow: #fbbf24;
	--yellow-dark: #d97706;
	--green: #16a34a;
	--green-dark: #15803d;
	--white: #ffffff;
	--gray-50: #f9fafb;
	--gray-100: #f3f4f6;
	--gray-200: #e5e7eb;
	--gray-600: #4b5563;
	--gray-700: #374151;
	--gray-900: #111827;
	--dark: #0f0a1e;

	--font-main: 'Montserrat', sans-serif;
	--font-body: 'Open Sans', sans-serif;

	--radius: 16px;
	--radius-sm: 8px;
	--shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
	--shadow-lg: 0 8px 48px rgba(0, 0, 0, 0.18);
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: var(--font-body);
	color: var(--purple);
	background: var(--white);
	overflow-x: hidden;
}

img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

a {
	text-decoration: none;
	color: inherit;
}

ul {
	list-style: none;
}

/* ----- Container ----- */
.container {
	width: min(1200px, 92%);
	margin-inline: auto;
}

/* ----- Utility text colors ----- */
.text-yellow {
	color: var(--yellow);
}
.text-purple {
	color: var(--purple);
}

/* ===================================================
   BUTTONS
   =================================================== */
.btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 12px 24px;
	border-radius: 40px;
	font-family: var(--font-main);
	font-weight: 700;
	font-size: 0.9rem;
	cursor: pointer;
	border: 2px solid transparent;
	transition: all 0.25s ease;
	white-space: nowrap;
}

.btn--yellow {
	background: var(--yellow);
	color: var(--gray-900);
}
.btn--yellow:hover {
	background: var(--yellow-dark);
}

.btn--green {
	background: var(--green);
	color: var(--white);
}
.btn--green:hover {
	background: var(--green-dark);
	transform: translateY(-2px);
}

.btn--outline-white {
	background: transparent;
	color: var(--white);
	border-color: var(--white);
}
.btn--outline-white:hover {
	background: var(--white);
	color: var(--purple);
}

.btn--outline-purple {
	background: transparent;
	color: var(--purple);
	border-color: var(--purple);
	font-size: 0.85rem;
	padding: 10px 20px;
}
.btn--outline-purple:hover {
	background: var(--purple);
	color: var(--white);
}

.btn--lg {
	padding: 16px 40px;
	font-size: 1rem;
}

/* Circle button */
.btn-circle {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	border-radius: 50%;
	flex-shrink: 0;
	font-size: 1.2rem;
	transition:
		transform 0.2s,
		opacity 0.2s;
}
.btn-circle:hover {
	transform: scale(1.1);
	opacity: 0.9;
}
.btn-circle--purple {
	background: var(--purple);
	color: var(--white);
}
.btn-circle--pink {
	background: #ec4899;
	color: var(--white);
}

/* ===================================================
   NAVBAR
   =================================================== */
.navbar {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 1000;
	background: var(--white);
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
	transition:
		background 0.3s,
		box-shadow 0.3s;
	padding: 0;
}

.navbar.scrolled {
	background: var(--white);
	box-shadow: 0 2px 20px rgba(0, 0, 0, 0.12);
}

.navbar__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 72px;
}

.navbar__logo img {
	height: 48px;
	width: auto;
	object-fit: contain;
}

.logo-text {
	font-family: var(--font-main);
	font-size: 1.2rem;
	color: var(--white);
}
.logo-text strong {
	color: var(--yellow);
}

.navbar__menu {
	display: flex;
	align-items: center;
	gap: 32px;
}
.navbar__menu a {
	font-family: var(--font-main);
	font-weight: 600;
	font-size: 0.9rem;
	color: var(--gray-700);
	position: relative;
	transition: color 0.2s;
}
.navbar__menu a::after {
	content: '';
	position: absolute;
	bottom: -4px;
	left: 0;
	width: 0;
	height: 2px;
	background: var(--yellow);
	transition: width 0.25s;
}
.navbar__menu a:hover {
	color: var(--yellow);
}
.navbar__menu a:hover::after {
	width: 100%;
}

.navbar__cta {
	font-size: 0.88rem;
	padding: 10px 22px;
}

.navbar__hamburger {
	display: none;
	flex-direction: column;
	gap: 5px;
	background: transparent;
	border: none;
	cursor: pointer;
	padding: 8px;
	z-index: 1001;
	-webkit-tap-highlight-color: transparent;
	touch-action: manipulation;
}
.navbar__hamburger span {
	display: block;
	width: 26px;
	height: 3px;
	background: var(--gray-700);
	border-radius: 4px;
	transition: all 0.3s;
}

/* ===================================================
   HERO
   =================================================== */
.hero {
	position: relative;
	min-height: 85vh;
	display: flex;
	overflow: hidden;
	background: var(--purple);
}

.hero__content {
	position: relative;
	z-index: 2;
	flex: 0 0 50%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 120px 0 80px 8%;
}

.hero__badge {
	display: inline-block;
	background: var(--yellow);
	color: var(--gray-900);
	font-family: var(--font-main);
	font-weight: 700;
	font-size: 0.75rem;
	padding: 6px 16px;
	border-radius: 40px;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	margin-bottom: 20px;
	width: fit-content;
}

.hero__title {
	font-family: var(--font-main);
	font-weight: 900;
	font-size: clamp(2.8rem, 5vw, 4.5rem);
	line-height: 1.05;
	color: var(--white);
	text-transform: uppercase;
	margin-bottom: 20px;
}

.hero__subtitle {
	color: rgba(255, 255, 255, 0.82);
	font-size: 1rem;
	line-height: 1.7;
	margin-bottom: 36px;
	max-width: 420px;
}

.hero__actions {
	display: flex;
	gap: 16px;
	flex-wrap: wrap;
}

.hero__image {
	position: absolute;
	right: 0;
	top: 0;
	width: 50%;
	height: 100%;
	clip-path: polygon(12% 0%, 100% 0%, 100% 100%, 0% 100%);
}

/* Gold diagonal border on the hero image edge */
.hero::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 3;
	pointer-events: none;
	background: var(--yellow);
	clip-path: polygon(56% 0%, calc(56% + 5px) 0%, calc(50% + 5px) 100%, 50% 100%);
}

/* ===================================================
   NEEDS
   =================================================== */
.needs {
	padding: 80px 0;
	background: var(--white);
}

.section-title {
	font-family: var(--font-main);
	font-weight: 800;
	font-size: clamp(1.5rem, 3vw, 2rem);
	text-align: center;
	margin-bottom: 48px;
	color: var(--gray-900);
}

.section-title--white {
	color: var(--white);
}

.needs__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
}

.need-card {
	border-radius: 1px;
	overflow: hidden;
	box-shadow: 0 0px 0px rgba(0, 0, 0, 0.08);
	position: relative;
	cursor: pointer;
	border: 0px solid var(--gray-200);
}

.need-card__img-wrap {
	height: auto;
	position: relative;
}

.need-card__img-wrap img {
	height: auto;
	object-fit: contain;
}
.need-card__img-wrap::after {
	content: '';
	position: absolute;
	inset: 0;
}

.need-card h3 {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 1;
	text-align: center;
	font-family: var(--font-main);
	font-weight: 800;
	font-size: 1.7rem;
	text-transform: uppercase;
	color: var(--white);
	padding: 0 12px 40px;
	line-height: 1;
	letter-spacing: 0.003em;
}

.need-card__tag {
	position: absolute;
	z-index: 2;
	background: var(--yellow);
	color: var(--gray-900);
	font-family: var(--font-main);
	font-weight: 700;
	font-size: 0.6rem;
	padding: 6px 10px;
	border-radius: 8px;
	text-transform: uppercase;
	line-height: 1.3;
	text-align: center;
}
.need-card__tag--top-left {
	top: 12px;
	left: 12px;
}
.need-card__tag--top-right {
	top: 12px;
	right: 12px;
	background: var(--purple);
	color: var(--white);
}

/* ===================================================
   HOW IT WORKS
   =================================================== */
.how-it-works {
	background: var(--purple);
	padding: 80px 0;
}

.how-it-works__steps {
	display: flex;
	align-items: flex-start;
	justify-content: center;
	gap: 48px;
	flex-wrap: wrap;
	margin-top: 48px;
}

.step {
	flex: 1;
	min-width: 200px;
	max-width: 260px;
	text-align: center;
}

.step__icon {
	width: 72px;
	height: 72px;
	background: var(--yellow);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 16px;
	font-size: 2rem;
	color: var(--gray-900);
}

.step__num {
	font-family: var(--font-main);
	font-weight: 700;
	font-size: 1rem;
	color: var(--white);
	margin-bottom: 8px;
}

.step__desc {
	color: rgba(255, 255, 255, 0.8);
	font-size: 0.88rem;
	line-height: 1.6;
}

.step__arrow {
	display: none;
}

.how-it-works__cta {
	text-align: center;
	margin-top: 48px;
}

/* ===================================================
   PRODUCTS
   =================================================== */
.products {
	padding: 80px 0;
	background: var(--gray-50);
}

.products__header {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	margin-bottom: 40px;
	flex-wrap: wrap;
	gap: 12px;
}

.products__eyebrow {
	font-family: var(--font-main);
	font-size: 0.78rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--purple);
	margin-bottom: 6px;
}

.products__title {
	font-family: var(--font-main);
	font-weight: 900;
	font-size: clamp(1.6rem, 3vw, 2.2rem);
	color: var(--gray-900);
}

.products__catalog-link {
	font-family: var(--font-main);
	font-weight: 600;
	font-size: 0.88rem;
	color: var(--purple);
	transition: color 0.2s;
}
.products__catalog-link:hover {
	color: var(--purple);
}

.products__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

/* Product Card */
.product-card {
	background: var(--white);
	border-radius: var(--radius);
	overflow: hidden;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
	border: 1px solid var(--gray-200);
	display: flex;
	flex-direction: column;
	position: relative;
}

.product-card__badge {
	position: absolute;
	top: 14px;
	left: 14px;
	z-index: 3;
	font-family: var(--font-main);
	font-weight: 700;
	font-size: 0.7rem;
	text-transform: uppercase;
	padding: 5px 12px;
	border-radius: 40px;
}
.product-card__badge--popular {
	background: var(--purple);
	color: var(--white);
}
.product-card__badge--featured {
	background: var(--yellow);
	color: var(--gray-900);
}
.product-card__badge--deal {
	background: var(--green);
	color: var(--white);
}

.product-card__handle {
	position: absolute;
	top: 14px;
	right: 14px;
	z-index: 3;
	font-family: var(--font-main);
	font-weight: 600;
	font-size: 0.72rem;
	color: var(--white);
	background: rgba(0, 0, 0, 0.45);
	padding: 4px 10px;
	border-radius: 40px;
	backdrop-filter: blur(4px);
}

.product-card__img-wrap {
	height: 220px;
	position: relative;
}
.product-card__img-wrap::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.72) 0%, transparent 50%);
}

.product-card__overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 1;
	padding: 0 16px 16px;
}
.product-card__category {
	font-family: var(--font-main);
	font-weight: 600;
	font-size: 0.72rem;
	text-transform: uppercase;
	color: var(--yellow);
	letter-spacing: 0.07em;
	display: block;
	margin-bottom: 4px;
}
.product-card__overlay h3 {
	font-family: var(--font-main);
	font-weight: 900;
	font-size: 1.25rem;
	color: var(--white);
	text-transform: uppercase;
}

.product-card__body {
	padding: 20px;
	display: flex;
	flex-direction: column;
	flex: 1;
	gap: 16px;
}

.product-card__desc {
	font-size: 0.88rem;
	color: var(--gray-600);
	line-height: 1.6;
}

.product-card__benefits {
	display: flex;
	flex-direction: column;
	gap: 6px;
}
.product-card__benefits li {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 0.85rem;
	color: var(--gray-700);
}
.product-card__benefits li i {
	color: var(--purple);
	font-size: 1rem;
	flex-shrink: 0;
}

.product-card__footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: auto;
}

.product-card__from {
	display: block;
	font-size: 0.72rem;
	color: var(--gray-600);
}

.product-card__price {
	font-family: var(--font-main);
	font-weight: 800;
	font-size: 1.3rem;
	color: var(--gray-900);
}

/* ===================================================
   ABOUT
   =================================================== */
.about {
	padding: 80px 0;
	background: var(--purple);
}

.about__inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
}

.about__eyebrow {
	font-family: var(--font-main);
	font-weight: 700;
	font-size: 0.78rem;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--yellow);
	margin-bottom: 16px;
}

.about__title {
	font-family: var(--font-main);
	font-size: clamp(1.4rem, 2.5vw, 1.85rem);
	font-weight: 400;
	color: var(--white);
	line-height: 1.4;
	margin-bottom: 28px;
}
.about__title strong {
	font-weight: 800;
}

.about__list {
	display: flex;
	flex-direction: column;
	gap: 14px;
	margin-bottom: 28px;
}
.about__list li {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	font-size: 0.9rem;
	color: rgba(255, 255, 255, 0.82);
	line-height: 1.5;
}
.about__list li i {
	color: var(--yellow);
	font-size: 1.1rem;
	margin-top: 2px;
	flex-shrink: 0;
}

.link-map {
	font-family: var(--font-main);
	font-weight: 600;
	font-size: 0.88rem;
	color: var(--yellow);
	transition: opacity 0.2s;
}
.link-map:hover {
	opacity: 0.8;
}

.about__map {
	position: relative;
	border-radius: var(--radius);
	overflow: hidden;
	height: 380px;
	background: #1a1a3e;
}
.about__map iframe {
	width: 100%;
	height: 100%;
	border: none;
	filter: grayscale(30%) saturate(0.8);
}

.about__map-btn {
	position: absolute;
	bottom: 16px;
	right: 16px;
	background: rgba(15, 10, 30, 0.85);
	backdrop-filter: blur(6px);
	color: var(--yellow) !important;
	border-color: rgba(255, 255, 255, 0.3) !important;
	font-size: 0.8rem !important;
	padding: 8px 18px !important;
}
.about__map-btn:hover {
	background: var(--purple) !important;
}

/* ===================================================
   TESTIMONIALS
   =================================================== */
.testimonials {
	padding: 80px 0;
	background: var(--white);
}

.testimonials__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

.testimonial-card {
	background: var(--gray-50);
	border: 1px solid var(--gray-200);
	border-radius: var(--radius);
	padding: 28px;
	display: flex;
	flex-direction: column;
	gap: 16px;
	transition: box-shadow 0.3s;
}
.testimonial-card:hover {
	box-shadow: var(--shadow);
}

.stars {
	font-size: 1.1rem;
	color: var(--yellow-dark);
	letter-spacing: 2px;
}

.testimonial-card p {
	font-size: 0.92rem;
	color: var(--gray-600);
	line-height: 1.7;
	flex: 1;
	font-style: italic;
}

.testimonial-card__author strong {
	display: block;
	font-family: var(--font-main);
	font-weight: 700;
	font-size: 0.9rem;
	color: var(--gray-900);
}
.testimonial-card__author span {
	font-size: 0.8rem;
	color: var(--purple);
	font-weight: 600;
}

/* ===================================================
   FAQ
   =================================================== */
.faq {
	padding: 80px 0;
	background: var(--gray-50);
}

.faq__inner {
	max-width: 760px;
	margin-inline: auto;
}

.faq__list {
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin-top: 40px;
}

.faq__item {
	background: var(--white);
	border: 1px solid var(--gray-200);
	border-radius: var(--radius-sm);
	overflow: hidden;
	transition: box-shadow 0.2s;
}
.faq__item:hover {
	box-shadow: var(--shadow);
}

.faq__item summary {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 20px 24px;
	font-family: var(--font-main);
	font-weight: 600;
	font-size: 0.95rem;
	color: var(--purple);
	cursor: pointer;
	list-style: none;
	user-select: none;
}
.faq__item summary::-webkit-details-marker {
	display: none;
}

.faq__item summary i {
	font-size: 1.1rem;
	flex-shrink: 0;
	transition: transform 0.3s;
	color: var(--purple);
}

.faq__item[open] summary i {
	transform: rotate(180deg);
}

.faq__item p {
	padding: 0 24px 20px;
	font-size: 0.9rem;
	color: var(--gray-600);
	line-height: 1.7;
	border-top: 1px solid var(--gray-100);
	padding-top: 16px;
}

/* ===================================================
   FOOTER
   =================================================== */
.footer {
	background: var(--purple);
	padding: 64px 0 0;
}

.footer__inner {
	display: grid;
	grid-template-columns: 2fr 1.2fr 1fr;
	gap: 48px;
	padding-bottom: 48px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__logo {
	font-family: var(--font-main);
	font-size: 1.4rem;
	color: var(--white);
	display: block;
	margin-bottom: 12px;
}
.footer__logo strong {
	color: var(--yellow);
}
.footer__logo--small img {
	width: 140px;
	height: auto;
	object-fit: contain;
}

.footer__brand p {
	color: rgba(255, 255, 255, 0.6);
	font-size: 0.88rem;
	line-height: 1.7;
	margin-bottom: 20px;
}

.footer__social {
	display: flex;
	gap: 12px;
}
.footer__social a {
	width: 38px;
	height: 38px;
	border-radius: 50%;
	border: 1px solid rgba(255, 255, 255, 0.2);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--white);
	font-size: 1.1rem;
	transition:
		background 0.2s,
		border-color 0.2s;
}
.footer__social a:hover {
	background: var(--purple);
	border-color: var(--purple);
}

.footer__col h4 {
	font-family: var(--font-main);
	font-weight: 700;
	font-size: 0.88rem;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--yellow);
	margin-bottom: 16px;
}
.footer__col ul {
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.footer__col ul li {
	display: flex;
	align-items: flex-start;
	gap: 8px;
	color: rgba(255, 255, 255, 0.7);
	font-size: 0.87rem;
	line-height: 1.5;
}
.footer__col ul li i {
	font-size: 1rem;
	margin-top: 2px;
	flex-shrink: 0;
	color: var(--purple-light);
}

.footer__bottom {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 8px;
	padding: 20px;
	color: rgba(255, 255, 255, 0.35);
	font-size: 0.8rem;
}

/* ===================================================
   WHATSAPP FLOAT
   =================================================== */
.whatsapp-float {
	position: fixed;
	bottom: 28px;
	right: 28px;
	z-index: 999;
	width: 58px;
	height: 58px;
	background: #25d366;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--white);
	font-size: 1.8rem;
	box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
	transition:
		transform 0.25s,
		box-shadow 0.25s;
}
.whatsapp-float:hover {
	transform: scale(1.1);
	box-shadow: 0 6px 28px rgba(37, 211, 102, 0.6);
}

/* ===================================================
   RESPONSIVE
   =================================================== */
@media (max-width: 1024px) {
	.hero__content {
		padding: 100px 0 60px 6%;
	}
	.hero__title {
		font-size: clamp(2rem, 4vw, 3.2rem);
	}
	.needs__grid {
		grid-template-columns: repeat(2, 1fr);
	}
	.products__grid {
		grid-template-columns: repeat(2, 1fr);
	}
	.testimonials__grid {
		grid-template-columns: repeat(2, 1fr);
	}
	.about__inner {
		grid-template-columns: 1fr;
	}
	.about__map {
		height: 300px;
	}
	.footer__inner {
		grid-template-columns: 1fr 1fr;
	}
	.footer__brand {
		grid-column: 1 / -1;
	}
}

@media (max-width: 768px) {
	.navbar__menu {
		position: fixed;
		top: 72px;
		left: 0;
		right: 0;
		background: var(--white);
		box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
		flex-direction: column;
		padding: 24px;
		gap: 20px;
		transform: translateY(-120%);
		visibility: hidden;
		opacity: 0;
		transition:
			transform 0.3s ease,
			visibility 0.3s,
			opacity 0.3s;
		z-index: 999;
	}
	.navbar__menu a {
		color: var(--gray-700);
		font-size: 1rem;
	}
	.navbar__menu.open {
		transform: translateY(0);
		visibility: visible;
		opacity: 1;
	}
	.navbar__cta {
		display: none;
	}
	.navbar__hamburger {
		display: flex;
	}

	.hero {
		flex-direction: column;
		min-height: auto;
	}
	.hero__content {
		padding: 100px 24px 40px;
		flex: none;
		text-align: left;
	}
	.hero__image {
		position: relative;
		width: 100%;
		height: 300px;
		clip-path: none;
	}
	.hero__image img {
		width: 100%;
		height: 100%;
		object-fit: cover;
	}
	.hero__diagonal {
		display: none;
	}
	.hero::after {
		display: none;
	}

	.needs__grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 12px;
	}
	.need-card h3 {
		font-size: 1.1rem;
		padding: 0 8px 20px;
	}

	.products__grid {
		grid-template-columns: 1fr;
	}
	.products__header {
		flex-direction: column;
		align-items: flex-start;
	}

	.how-it-works__steps {
		flex-direction: column;
		align-items: center;
		gap: 32px;
	}
	.step {
		max-width: 100%;
	}

	.about__inner {
		grid-template-columns: 1fr;
		gap: 32px;
	}
	.about__map {
		height: 260px;
	}

	.testimonials__grid {
		grid-template-columns: 1fr;
	}

	.footer__inner {
		grid-template-columns: 1fr;
		gap: 32px;
	}
	.footer__bottom {
		flex-direction: column;
		text-align: center;
	}
}

@media (max-width: 480px) {
	.needs__grid {
		grid-template-columns: 1fr 1fr;
		gap: 10px;
	}
	.need-card h3 {
		font-size: 0.9rem;
		padding: 0 6px 14px;
	}
	.hero__title {
		font-size: 2.2rem;
	}
	.hero__subtitle {
		font-size: 0.9rem;
	}
	.hero__actions {
		flex-direction: column;
	}
	.hero__actions .btn {
		text-align: center;
		justify-content: center;
	}
	.section-title {
		font-size: 1.3rem;
	}
	.step__desc {
		font-size: 0.82rem;
	}
	.product-card__img-wrap {
		height: 180px;
	}
	.testimonial-card {
		padding: 20px;
	}
	.about__title {
		font-size: 1.2rem;
	}
	.faq__item summary {
		padding: 16px 18px;
		font-size: 0.88rem;
	}
}
