/* Esthetic Fresh — Landing */

:root {
	--purple-deep: #5b1f74;
	--purple: #9a4fbd;
	--purple-light: #c99be0;
	--blue: #5791ff;
	--blue-light: #a9c4ff;
	--blush: #f6ded8;
	--blush-deep: #f0c3ba;
	--rose-gold: #cf9a8d;
	--cream: #fbf5ec;
	--cream-deep: #f4ecdf;
	--ink: #3a2f3d;
	--ink-soft: #6f6275;
	--white: #ffffff;
	--whatsapp: #25d366;

	--font-display: 'Playfair Display', 'Georgia', serif;
	--font-body: 'Poppins', 'Helvetica Neue', Arial, sans-serif;

	--radius-lg: 32px;
	--radius-md: 20px;
	--radius-sm: 14px;
	--shadow-soft: 0 20px 45px -20px rgba(90, 40, 100, 0.25);
	--shadow-card: 0 14px 30px -14px rgba(90, 40, 100, 0.22);
	--container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
	margin: 0;
	font-family: var(--font-body);
	color: var(--ink);
	background: var(--cream);
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}

img { max-width: 100%; display: block; }

.container {
	max-width: var(--container);
	margin: 0 auto;
	padding: 0 24px;
}

.skip-link {
	position: absolute;
	left: -9999px;
	top: 0;
	background: var(--purple-deep);
	color: #fff;
	padding: 10px 16px;
	z-index: 999;
	border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

h1, h2, h3 { font-family: var(--font-display); color: var(--purple-deep); margin: 0 0 .5em; font-weight: 600; }

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

/* ---------- Buttons ---------- */
.btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 14px 26px;
	border-radius: 100px;
	font-weight: 600;
	font-size: 15px;
	letter-spacing: .2px;
	transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
	white-space: nowrap;
}
.btn .icon { width: 18px; height: 18px; fill: currentColor; }
.btn-lg { padding: 16px 32px; font-size: 16px; }

.btn-primary {
	background: linear-gradient(120deg, var(--purple) 0%, var(--blue) 100%);
	color: #fff;
	box-shadow: var(--shadow-soft);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 24px 40px -16px rgba(90,40,100,.4); }

.btn-outline {
	background: transparent;
	color: var(--purple-deep);
	border: 2px solid var(--purple-light);
}
.btn-outline:hover { background: var(--blush); border-color: var(--blush-deep); transform: translateY(-3px); }

/* ---------- Header ---------- */
.site-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: rgba(251, 245, 236, 0.85);
	backdrop-filter: blur(10px);
	border-bottom: 1px solid rgba(154, 79, 189, 0.12);
}
.header-inner {
	display: flex;
	align-items: center;
	gap: 24px;
	padding: 14px 24px;
}
.logo-img { height: 46px; width: auto; }
.main-nav {
	display: flex;
	gap: 28px;
	margin-left: auto;
}
.main-nav a {
	font-size: 15px;
	font-weight: 500;
	color: var(--ink);
	position: relative;
	padding: 6px 0;
}
.main-nav a::after {
	content: '';
	position: absolute;
	left: 0; right: 0; bottom: 0;
	height: 2px;
	background: linear-gradient(90deg, var(--purple), var(--blue));
	transform: scaleX(0);
	transform-origin: left;
	transition: transform .25s ease;
}
.main-nav a:hover::after { transform: scaleX(1); }

.header-cta { margin-left: 16px; }
.nav-toggle {
	display: none;
	flex-direction: column;
	gap: 5px;
	background: none;
	border: none;
	cursor: pointer;
	padding: 8px;
	margin-left: auto;
}
.nav-toggle span { width: 24px; height: 2px; background: var(--purple-deep); border-radius: 2px; }

/* ---------- Hero ---------- */
.hero { position: relative; padding: 70px 0 0; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.blob { position: absolute; border-radius: 50%; filter: blur(10px); opacity: .55; }
.blob-purple { width: 420px; height: 420px; background: radial-gradient(circle at 30% 30%, var(--purple-light), transparent 70%); top: -120px; left: -100px; }
.blob-blue { width: 380px; height: 380px; background: radial-gradient(circle at 60% 40%, var(--blue-light), transparent 70%); top: 60px; right: -140px; }
.blob-blush { width: 320px; height: 320px; background: radial-gradient(circle at 50% 50%, var(--blush-deep), transparent 70%); bottom: -100px; left: 30%; }

.hero-inner {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: 1.05fr .95fr;
	gap: 50px;
	align-items: center;
	padding-bottom: 70px;
}
.eyebrow {
	display: inline-block;
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: var(--rose-gold);
	margin-bottom: 14px;
}
.hero-text h1 {
	font-size: clamp(42px, 6vw, 68px);
	line-height: 1.05;
	margin-bottom: 20px;
}
.hero-text h1 .accent {
	font-style: italic;
	background: linear-gradient(120deg, var(--purple), var(--blue));
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}
.hero-sub {
	font-size: 18px;
	color: var(--ink-soft);
	max-width: 480px;
	margin-bottom: 30px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 46px; }

.hero-stats { display: flex; gap: 36px; flex-wrap: wrap; }
.hero-stats .stat { display: flex; flex-direction: column; }
.hero-stats strong { font-family: var(--font-display); font-size: 28px; color: var(--purple-deep); }
.hero-stats .star { color: var(--rose-gold); font-size: 20px; margin-left: 2px; }
.hero-stats span { font-size: 13px; color: var(--ink-soft); }

.hero-visual { position: relative; }
.hero-photo-frame {
	border-radius: var(--radius-lg);
	overflow: hidden;
	box-shadow: var(--shadow-soft);
	border: 8px solid var(--white);
	aspect-ratio: 4/5;
}
.hero-photo { width: 100%; height: 100%; object-fit: cover; }
.hero-flower {
	position: absolute;
	width: 90px;
	top: -30px;
	right: -20px;
	opacity: .9;
	transform: rotate(15deg);
}
.floating-badge {
	position: absolute;
	background: var(--white);
	padding: 14px 20px;
	border-radius: 100px;
	box-shadow: var(--shadow-card);
	font-size: 14px;
	font-weight: 600;
	color: var(--ink);
	display: flex;
	align-items: center;
	gap: 6px;
}
.badge-bottom { bottom: -20px; left: -20px; }
.floating-badge strong { color: var(--rose-gold); font-family: var(--font-display); }

/* Marquee */
.marquee {
	position: relative;
	z-index: 1;
	background: linear-gradient(120deg, var(--purple-deep), var(--purple));
	overflow: hidden;
	padding: 16px 0;
}
.marquee-row {
	display: flex;
	gap: 40px;
	white-space: nowrap;
	animation: marquee 22s linear infinite;
	width: max-content;
}
.marquee-row span {
	font-family: var(--font-display);
	font-style: italic;
	font-size: 20px;
	color: rgba(255,255,255,.9);
	letter-spacing: 1px;
}
@keyframes marquee {
	from { transform: translateX(0); }
	to { transform: translateX(-50%); }
}

/* ---------- Sections ---------- */
.section { padding: 90px 0; }
.section-alt { background: var(--cream-deep); }
.section-eyebrow {
	display: block;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: var(--blue);
	margin-bottom: 12px;
	text-align: center;
}
.section-title {
	font-size: clamp(30px, 4vw, 42px);
	text-align: center;
	max-width: 780px;
	margin-left: auto;
	margin-right: auto;
}
.section-sub {
	text-align: center;
	max-width: 620px;
	margin: 0 auto 50px;
	color: var(--ink-soft);
	font-size: 17px;
}

/* Professionals band */
.section-pros { padding: 60px 0; }
.grid-pros {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	margin-top: 40px;
}
.pro-badge {
	text-align: center;
	padding: 30px 20px;
	border-radius: var(--radius-md);
	background: linear-gradient(160deg, var(--blush), var(--cream));
	border: 1px solid rgba(154,79,189,.12);
}
.pro-badge h3 { margin-bottom: 6px; font-size: 22px; }
.pro-badge span { font-size: 13px; color: var(--ink-soft); font-weight: 500; letter-spacing: .3px; }

/* Services grid */
.grid-services {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 28px;
	margin-top: 10px;
}
.card-service {
	background: var(--white);
	border-radius: var(--radius-md);
	overflow: hidden;
	box-shadow: var(--shadow-card);
	padding-bottom: 24px;
	transition: transform .3s ease, box-shadow .3s ease;
}
.card-service:hover { transform: translateY(-6px); box-shadow: 0 26px 40px -18px rgba(90,40,100,.32); }
.card-service-img { aspect-ratio: 4/3; overflow: hidden; }
.card-service-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.card-service:hover .card-service-img img { transform: scale(1.06); }
.card-service h3 { font-size: 21px; padding: 20px 22px 6px; margin: 0; }
.card-service p { padding: 0 22px; color: var(--ink-soft); font-size: 15px; margin: 0 0 12px; }
.card-service a { padding: 0 22px; color: var(--purple); font-weight: 600; font-size: 14px; }
.card-service a:hover { color: var(--blue); }

/* Lista de servicios */
.grid-list {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
	margin-top: 10px;
}
.list-card {
	text-align: center;
	padding: 32px 22px;
	border-radius: var(--radius-md);
	background: var(--white);
	box-shadow: var(--shadow-card);
	transition: transform .3s ease;
}
.list-card:hover { transform: translateY(-6px); }
.list-card-icon {
	width: 56px; height: 56px;
	margin: 0 auto 16px;
	display: flex; align-items: center; justify-content: center;
	font-size: 26px;
	border-radius: 50%;
	background: linear-gradient(140deg, var(--blush), var(--blue-light));
}
.list-card h3 { font-size: 18px; margin-bottom: 8px; }
.list-card p { font-size: 14px; color: var(--ink-soft); margin: 0; }

/* Maquillaje social */
.section-makeup { background: linear-gradient(180deg, var(--cream) 0%, var(--blush) 100%); }
.makeup-grid {
	display: grid;
	grid-template-columns: .9fr 1.1fr;
	gap: 60px;
	align-items: center;
}
.makeup-visual img {
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-soft);
	border: 8px solid var(--white);
}
.makeup-text .section-eyebrow,
.makeup-text .section-title,
.makeup-text .section-sub { text-align: left; margin-left: 0; }
.makeup-text .section-sub { margin-bottom: 24px; }
.check-list { list-style: none; margin: 0 0 26px; padding: 0; display: flex; flex-direction: column; gap: 16px; }
.check-list li {
	position: relative;
	padding-left: 30px;
	font-size: 15px;
	color: var(--ink-soft);
}
.check-list li::before {
	content: '✓';
	position: absolute;
	left: 0; top: 0;
	width: 20px; height: 20px;
	border-radius: 50%;
	background: linear-gradient(120deg, var(--purple), var(--blue));
	color: #fff;
	font-size: 12px;
	display: flex; align-items: center; justify-content: center;
}
.check-list strong { color: var(--ink); }
.makeup-note { font-size: 14px; font-style: italic; color: var(--rose-gold); margin-bottom: 28px; }

/* Reviews */
.grid-reviews {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 22px;
	margin-top: 10px;
}
.review-card {
	background: var(--white);
	padding: 28px 24px;
	border-radius: var(--radius-md);
	box-shadow: var(--shadow-card);
	text-align: center;
}
.review-avatar {
	width: 44px; height: 44px;
	margin: 0 auto 14px;
	border-radius: 50%;
	background: linear-gradient(120deg, var(--purple), var(--blue));
	color: #fff;
	display: flex; align-items: center; justify-content: center;
	font-family: var(--font-display);
	font-weight: 700;
}
.stars { color: var(--rose-gold); letter-spacing: 2px; margin-bottom: 10px; }
.review-card p { font-size: 14px; color: var(--ink-soft); font-style: italic; margin-bottom: 14px; }
.review-author { font-size: 13px; font-weight: 600; color: var(--purple-deep); }
.reviews-cta { display: flex; width: max-content; margin: 44px auto 0; }

/* Ubicacion */
.ubicacion-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
}
.ubicacion-info .section-eyebrow,
.ubicacion-info .section-title { text-align: left; margin-left: 0; }
.info-list { list-style: none; margin: 26px 0 30px; padding: 0; display: flex; flex-direction: column; gap: 18px; }
.info-list strong { display: block; color: var(--purple-deep); font-size: 14px; margin-bottom: 4px; }
.info-list span { color: var(--ink-soft); font-size: 15px; }
.ubicacion-map { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-soft); }
.ubicacion-map iframe { width: 100%; height: 360px; border: 0; display: block; }

/* Contacto */
.contacto { text-align: center; background: linear-gradient(150deg, var(--purple-deep), var(--purple) 55%, var(--blue) 130%); }
.contacto .section-eyebrow { color: rgba(255,255,255,.75); }
.contacto .section-title { color: #fff; }
.contacto .section-sub { color: rgba(255,255,255,.85); }
.contact-buttons { display: flex; justify-content: center; margin-bottom: 30px; }
.contacto .btn-primary { background: #fff; color: var(--purple-deep); box-shadow: 0 20px 40px -18px rgba(0,0,0,.35); }
.social-row { display: flex; justify-content: center; gap: 20px; }
.social-row a {
	width: 44px; height: 44px;
	border-radius: 50%;
	background: rgba(255,255,255,.15);
	display: flex; align-items: center; justify-content: center;
}
.social-row svg { width: 20px; height: 20px; fill: #fff; }
.social-row a:hover { background: rgba(255,255,255,.28); }

/* Footer */
.site-footer { background: var(--ink); color: rgba(255,255,255,.75); padding-top: 50px; }
.footer-inner {
	display: grid;
	grid-template-columns: 1.2fr 1fr auto;
	gap: 30px;
	align-items: start;
	padding-bottom: 30px;
	border-bottom: 1px solid rgba(255,255,255,.1);
}
.site-footer .logo-img-lg { height: 50px; margin-bottom: 12px; filter: brightness(0) invert(1); opacity: .9; }
.site-footer p { font-size: 14px; margin: 0; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 14px; }
.footer-links a:hover { color: #fff; }
.footer-copy { grid-column: 1 / -1; }
.dev-credit { text-align: center; padding: 16px 0; font-size: 12px; color: rgba(255,255,255,.5); }
.dev-credit a { color: rgba(255,255,255,.6); }
.dev-credit a:hover { color: #fff; }

/* WhatsApp float */
.whatsapp-float {
	position: fixed;
	bottom: 24px; right: 24px;
	width: 58px; height: 58px;
	border-radius: 50%;
	background: var(--whatsapp);
	display: flex; align-items: center; justify-content: center;
	box-shadow: 0 14px 30px -8px rgba(37,211,102,.6);
	z-index: 90;
	animation: pulse 2.4s ease-in-out infinite;
}
.whatsapp-float svg { width: 28px; height: 28px; fill: #fff; }
@keyframes pulse {
	0%, 100% { transform: scale(1); }
	50% { transform: scale(1.08); }
}

/* Reveal on scroll */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in-view { opacity: 1; transform: translateY(0); }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
	.hero-inner { grid-template-columns: 1fr; }
	.hero-visual { max-width: 420px; margin: 0 auto; }
	.makeup-grid, .ubicacion-grid { grid-template-columns: 1fr; }
	.makeup-text, .ubicacion-info { text-align: center; }
	.makeup-text .section-eyebrow, .makeup-text .section-title, .makeup-text .section-sub,
	.ubicacion-info .section-eyebrow, .ubicacion-info .section-title { text-align: center; margin-left: auto; margin-right: auto; }
	.info-list { align-items: center; }
	.grid-services { grid-template-columns: repeat(2, 1fr); }
	.grid-list { grid-template-columns: repeat(2, 1fr); }
	.grid-reviews { grid-template-columns: repeat(2, 1fr); }
	.grid-pros { grid-template-columns: 1fr; }
	.footer-inner { grid-template-columns: 1fr; text-align: center; }
	.footer-links { align-items: center; }
}

@media (max-width: 720px) {
	.main-nav { display: none; }
	.nav-toggle { display: flex; }
	.header-cta { display: none; }
	.hero { padding-top: 40px; }
	.hero-actions { justify-content: center; }
	.hero-stats { justify-content: center; }
	.hero-text { text-align: center; }
	.hero-sub { margin-left: auto; margin-right: auto; }
	.badge-bottom { left: 50%; transform: translateX(-50%); bottom: -18px; }
	.hero-flower { display: none; }
	.grid-services, .grid-list, .grid-reviews { grid-template-columns: 1fr; }
	.section { padding: 60px 0; }
}

/* Mobile nav open state */
.main-nav.open {
	display: flex;
	flex-direction: column;
	position: absolute;
	top: 100%;
	left: 0; right: 0;
	background: var(--cream);
	padding: 20px 24px;
	gap: 18px;
	box-shadow: 0 20px 30px -20px rgba(0,0,0,.2);
}
