/* Fonte e reset básico */
:root {
	--brand: #ff2b8a;      /* Rosa principal Beb Delícias */
	--brand-2: #ff5aa7;    /* Rosa de foco/hover */
	--brand-dark: #e91e63; /* Rosa escuro */
	--text: #1a1a1a;
	--text-light: #2d2d2d;
	--muted: #6b7280;
	--muted-light: #9ca3af;
	--bg: #fff;
	--bg-alt: #fafafa;
	--bg-section: #f8f9fa;
	--card: #ffffff;
	--shadow: 0 4px 20px rgba(0,0,0,.08);
	--shadow-hover: 0 8px 30px rgba(0,0,0,.12);
	--shadow-lg: 0 12px 40px rgba(0,0,0,.15);
	--border: #e5e7eb;
	--border-light: #f3f4f6;
}

* { box-sizing: border-box; }
html, body {
	margin: 0;
	padding: 0;
	font-family: system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, "Helvetica Neue", Arial, "Noto Sans", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
	color: var(--text);
	background: var(--bg);
}

a { color: var(--brand); text-decoration: none; }
a:hover { text-decoration: underline; }

/* Header */
.site-header {
	position: sticky;
	top: 0;
	z-index: 50;
	backdrop-filter: saturate(180%) blur(12px);
	background: rgba(255,255,255,.92);
	border-bottom: 1px solid var(--border);
	box-shadow: 0 1px 3px rgba(0,0,0,.04);
}
.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}
.nav {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 14px 0;
}
.brand {
	display: flex;
	align-items: center;
	gap: 10px;
	font-weight: 800;
	font-size: 18px;
}
.brand img {
	width: 36px;
	height: 36px;
	border-radius: 8px;
	object-fit: cover;
}
.menu {
	display: flex;
	gap: 18px;
	font-weight: 600;
}
.menu a { 
	color: #111; 
	transition: color .15s ease;
}
.menu a:hover { 
	color: var(--brand);
	text-decoration: none;
}
.menu a.btn {
	background: var(--brand);
	color: #fff;
	padding: 8px 14px;
	border-radius: 10px;
	box-shadow: var(--shadow);
	transition: background .15s ease, transform .15s ease;
}
.menu a.btn:hover { 
	background: var(--brand-2); 
	text-decoration: none;
	transform: translateY(-1px);
}
.menu-toggle {
	display: none;
	flex-direction: column;
	gap: 5px;
	background: none;
	border: none;
	cursor: pointer;
	padding: 8px;
	z-index: 100;
}
.menu-toggle span {
	width: 24px;
	height: 3px;
	background: var(--text);
	border-radius: 2px;
	transition: all .3s ease;
}
.menu-toggle.active span:nth-child(1) {
	transform: rotate(45deg) translate(8px, 8px);
}
.menu-toggle.active span:nth-child(2) {
	opacity: 0;
}
.menu-toggle.active span:nth-child(3) {
	transform: rotate(-45deg) translate(7px, -7px);
}

/* Hero */
.hero {
	padding: 80px 0 60px;
	background: linear-gradient(180deg, #fff 0%, #fff 50%, #fafafa 100%);
	position: relative;
	overflow: hidden;
}
.hero::before {
	content: '';
	position: absolute;
	top: -50%;
	right: -10%;
	width: 600px;
	height: 600px;
	background: radial-gradient(circle, rgba(255,43,138,.08) 0%, transparent 70%);
	border-radius: 50%;
	pointer-events: none;
}
.hero-content {
	position: relative;
	z-index: 1;
}
.hero-badge {
	display: inline-block;
	background: linear-gradient(135deg, rgba(255,43,138,.1) 0%, rgba(255,90,167,.1) 100%);
	border: 1px solid rgba(255,43,138,.2);
	color: var(--brand);
	padding: 8px 16px;
	border-radius: 20px;
	font-size: 14px;
	font-weight: 700;
	margin-bottom: 16px;
}
.hero-features {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
	margin: 24px 0 32px;
}
.feature-tag {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	background: var(--bg-alt);
	padding: 6px 12px;
	border-radius: 20px;
	font-size: 13px;
	font-weight: 600;
	color: var(--text-light);
	border: 1px solid var(--border);
}
.hero-grid {
	display: grid;
	grid-template-columns: 1.2fr .8fr;
	gap: 32px;
	align-items: center;
}
.hero h1 {
	font-size: 48px;
	line-height: 1.15;
	margin: 0 0 18px;
	font-weight: 800;
	color: var(--text);
	letter-spacing: -0.02em;
}
.hero-subtitle {
	color: var(--muted);
	font-size: 19px;
	margin: 0 0 32px;
	line-height: 1.6;
	font-weight: 400;
}
.hero p {
	color: var(--muted);
	font-size: 18px;
	margin: 0 0 24px;
	line-height: 1.6;
}
.cta {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
}
.btn-lg {
	padding: 16px 28px;
	border-radius: 14px;
	font-weight: 700;
	font-size: 16px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	box-shadow: var(--shadow);
	transition: all .2s ease;
	text-decoration: none;
	border: none;
	cursor: pointer;
}
.btn-primary {
	background: linear-gradient(135deg, var(--brand) 0%, var(--brand-2) 100%);
	color: #fff;
}
.btn-primary:hover {
	text-decoration: none;
	transform: translateY(-2px);
	box-shadow: var(--shadow-hover);
	filter: brightness(1.05);
}
.btn-secondary {
	background: #fff;
	color: var(--brand);
	border: 2px solid var(--brand);
}
.btn-secondary:hover {
	text-decoration: none;
	transform: translateY(-2px);
	box-shadow: var(--shadow-hover);
	background: var(--bg-alt);
}
.btn-lg:active { transform: translateY(0); }
.btn-outline {
	background: #fff;
	color: var(--brand);
	border: 2px solid var(--brand);
}

.hero-card {
	background: var(--card);
	border: 1px solid var(--border);
	border-radius: 20px;
	box-shadow: var(--shadow-lg);
	padding: 24px;
	position: relative;
	z-index: 1;
	overflow: hidden;
}
.hero-card::before {
	content: '';
	position: absolute;
	top: -50%;
	right: -50%;
	width: 200%;
	height: 200%;
	background: radial-gradient(circle, rgba(255,43,138,.05) 0%, transparent 70%);
	pointer-events: none;
}
.hero-image-wrapper {
	position: relative;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 8px 24px rgba(0,0,0,.1);
}
.hero-card img {
	width: 100%;
	border-radius: 12px;
	display: block;
	transition: transform .3s ease;
}
.hero-card:hover img {
	transform: scale(1.05);
}

/* Seções */
.section {
	padding: 60px 0;
}
.section h2 {
	font-size: 32px;
	margin: 0 0 32px;
	font-weight: 800;
	color: var(--text);
	letter-spacing: -0.01em;
	line-height: 1.2;
}
.section .subtitle { color: var(--muted); margin-top: -6px; margin-bottom: 18px; }
.grid-3 {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}
.grid-2 {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
}
.order-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 16px;
}
.order-card {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 20px;
	border: 1px solid var(--border);
	border-radius: 16px;
	background: #fff;
	box-shadow: var(--shadow);
	transition: all .2s ease;
}
.order-card.featured {
	border: 2px solid var(--border);
	background: linear-gradient(135deg, #fff 0%, #fefefe 100%);
}
.order-card:hover {
	transform: translateY(-2px);
	box-shadow: var(--shadow-hover);
	border-color: var(--brand);
}
.order-card .left {
	display: flex;
	align-items: center;
	gap: 14px;
	flex: 1;
}
.icon-wrapper {
	width: 48px;
	height: 48px;
	border-radius: 12px;
	background: linear-gradient(135deg, rgba(255,43,138,.1) 0%, rgba(255,90,167,.1) 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--brand);
	flex-shrink: 0;
}
.order-card img { width: 38px; height: 38px; border-radius: 10px; object-fit: cover; }
.order-card .title { 
	font-weight: 800; 
	font-size: 16px;
	color: var(--text);
	margin-bottom: 4px;
}
.order-card .muted { 
	font-size: 14px; 
	color: var(--muted);
}
.badge {
	display: inline-block;
	background: #10b981;
	color: #fff;
	font-size: 12px;
	font-weight: 800;
	padding: 2px 8px;
	border-radius: 999px;
	margin-left: 8px;
}
.btn-mini {
	background: linear-gradient(135deg, var(--brand) 0%, var(--brand-2) 100%);
	color: #fff;
	padding: 10px 18px;
	border-radius: 12px;
	font-weight: 700;
	font-size: 14px;
	box-shadow: var(--shadow);
	transition: all .2s ease;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	white-space: nowrap;
}
.btn-mini:hover {
	filter: brightness(1.05);
	text-decoration: none;
	transform: translateY(-2px);
	box-shadow: var(--shadow-hover);
}
.btn-mini:active { transform: translateY(0); }
.btn-mini.outline {
	background: #fff;
	color: var(--brand);
	border: 2px solid var(--brand);
}
.card {
	background: var(--card);
	border: 1px solid var(--border);
	border-radius: 18px;
	box-shadow: var(--shadow);
	padding: 24px;
	transition: all .2s ease;
}
.card h3 { 
	margin: 0 0 12px; 
	font-size: 20px;
	font-weight: 800;
	color: var(--text);
	line-height: 1.3;
}
.muted { 
	color: var(--muted); 
	line-height: 1.6;
}
.product-image-wrapper {
	position: relative;
	width: 100%;
	height: 180px;
	border-radius: 12px;
	overflow: hidden;
	margin-bottom: 14px;
	box-shadow: 0 2px 8px rgba(0,0,0,.08);
}
.product-card img { 
	width: 100%; 
	height: 100%; 
	object-fit: cover; 
	transition: transform .3s ease;
}
.product-card:hover img {
	transform: scale(1.08);
}
.product-placeholder {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}
.product-badge {
	position: absolute;
	top: 12px;
	right: 12px;
	background: linear-gradient(135deg, var(--brand) 0%, var(--brand-2) 100%);
	color: #fff;
	padding: 6px 12px;
	border-radius: 20px;
	font-size: 11px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	box-shadow: 0 2px 8px rgba(255,43,138,.3);
	z-index: 2;
}
.badge-popular {
	background: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%);
	box-shadow: 0 2px 8px rgba(245,158,11,.3);
}
.product-card strong { 
	display: block; 
	margin-bottom: 8px; 
	font-size: 18px;
	font-weight: 800;
	color: var(--text);
}
.card:hover { 
	transform: translateY(-4px); 
	box-shadow: var(--shadow-hover);
	border-color: var(--brand);
}

/* Rodapé */
.site-footer {
	background: var(--bg-alt);
	border-top: 1px solid #eee;
	margin-top: 32px;
}
.site-footer .cols {
	display: grid;
	grid-template-columns: 1.5fr 1fr 1fr;
	gap: 32px;
	padding: 40px 0 24px;
}
.site-footer h4 {
	font-size: 16px;
	font-weight: 800;
	margin: 0 0 12px;
	color: var(--text);
}
.site-footer a {
	color: var(--muted);
	transition: color .2s ease;
}
.site-footer a:hover {
	color: var(--brand);
	text-decoration: none;
}
.copyright {
	border-top: 1px solid var(--border);
	padding: 16px 0 20px;
	color: var(--muted);
	font-size: 14px;
	text-align: center;
}

/* Lista de contato mais profissional */
.contact-list {
	display: grid;
	grid-template-columns: 1fr;
	gap: 6px;
}
.contact-list a { color: #111; }
.contact-list .label { color: var(--muted); font-size: 13px; }
.contact-list .primary { font-weight: 800; }

/* Citação/verso */
.faith-quote {
	background: linear-gradient(135deg, rgba(255,43,138,.08), rgba(255,90,167,.08));
	border: 1px solid rgba(255,43,138,.2);
	border-radius: 16px;
	padding: 20px 24px;
	font-weight: 700;
	font-size: 15px;
	text-align: center;
	margin: 32px 0 0;
	color: var(--text-light);
	line-height: 1.5;
}
.contact-links {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 20px;
	font-size: 14px;
}
.contact-links .separator {
	color: var(--muted-light);
	margin: 0 4px;
}
.contact-links a {
	color: var(--brand);
	font-weight: 600;
	transition: color .2s ease;
}
.contact-links a:hover {
	color: var(--brand-2);
	text-decoration: none;
}
.faq-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
}
.delivery-apps {
	margin-top: 24px;
	padding-top: 24px;
	border-top: 1px solid var(--border);
}
.apps-grid {
	display: flex;
	justify-content: center;
	gap: 16px;
	flex-wrap: wrap;
}
.app-badge {
	display: flex;
	align-items: center;
	gap: 8px;
	background: var(--bg-alt);
	padding: 12px 20px;
	border-radius: 12px;
	border: 1px solid var(--border);
	transition: all .2s ease;
	position: relative;
}
.app-badge:first-child {
	border-color: #ea1d2c;
}
.app-badge:first-child:hover {
	border-color: #ea1d2c;
	box-shadow: 0 4px 12px rgba(234,29,44,.2);
}
.app-badge:last-child {
	border-color: #ffc107;
}
.app-badge:last-child:hover {
	border-color: #ffc107;
	box-shadow: 0 4px 12px rgba(255,193,7,.2);
}
.app-badge:hover {
	transform: translateY(-2px);
	box-shadow: var(--shadow);
}
.app-icon {
	font-size: 28px;
	line-height: 1;
}
.app-name {
	font-weight: 700;
	font-size: 15px;
	color: var(--text);
}

/* CTA fixa no mobile */
.cta-bar {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(255,255,255,.98);
	backdrop-filter: blur(10px);
	border-top: 1px solid var(--border);
	box-shadow: 0 -4px 20px rgba(0,0,0,.1);
	padding: 12px 0;
	display: none; /* visível apenas no mobile */
	z-index: 100;
}
.cta-bar .container { 
	display: flex; 
	gap: 10px; 
	width: 100%;
}
.cta-bar a { 
	flex: 1; 
	text-align: center; 
	justify-content: center;
	font-size: 15px;
	padding: 14px 16px;
}

/* Páginas internas */
.page {
	padding: 36px 0;
}
.prose {
	max-width: 800px;
	margin: 0 auto;
	color: #222;
	line-height: 1.7;
}
.prose h1 { font-size: 36px; margin: 0 0 16px; }
.prose h2 { margin-top: 28px; }
.prose p { margin: 0 0 14px; }
.prose ul { margin: 8px 0 16px 20px; }

/* Melhorias de acessibilidade e performance */
img { max-width: 100%; height: auto; }
button, a { cursor: pointer; }
:focus-visible { 
	outline: 2px solid var(--brand); 
	outline-offset: 3px; 
	border-radius: 4px;
}
/* Melhorar contraste para acessibilidade */
a:focus, button:focus {
	outline: 2px solid var(--brand);
	outline-offset: 2px;
}
/* Reduzir animações para usuários que preferem */
@media (prefers-reduced-motion: reduce) {
	*, *::before, *::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
	}
	html {
		scroll-behavior: auto;
	}
}

/* Melhorias de tipografia */
h1, h2, h3, h4, h5, h6 {
	font-weight: 800;
	line-height: 1.2;
}

/* Espaçamento consistente */
.prose p + p {
	margin-top: 16px;
}

/* Animações suaves */
@keyframes fadeIn {
	from { opacity: 0; transform: translateY(10px); }
	to { opacity: 1; transform: translateY(0); }
}
@keyframes slideIn {
	from { opacity: 0; transform: translateX(-20px); }
	to { opacity: 1; transform: translateX(0); }
}
@keyframes pulse {
	0%, 100% { transform: scale(1); }
	50% { transform: scale(1.05); }
}
.card, .order-card, .hero-card {
	animation: fadeIn 0.6s ease-out;
}
.hero-content {
	animation: slideIn 0.6s ease-out;
}
.btn-primary {
	position: relative;
	overflow: hidden;
}
.btn-primary::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 0;
	height: 0;
	background: rgba(255,255,255,.2);
	border-radius: 50%;
	transform: translate(-50%, -50%);
	transition: width .6s, height .6s;
}
.btn-primary:hover::before {
	width: 300px;
	height: 300px;
}

/* Melhorias no menu mobile */
@media (max-width: 900px) {
	.menu-toggle {
		display: flex;
	}
	.menu {
		position: fixed;
		top: 0;
		right: -100%;
		width: 280px;
		height: 100vh;
		background: #fff;
		flex-direction: column;
		padding: 80px 24px 24px;
		box-shadow: -4px 0 20px rgba(0,0,0,.1);
		transition: right .3s ease;
		gap: 0;
		z-index: 99;
		overflow-y: auto;
	}
	.menu.active {
		right: 0;
	}
	.menu a {
		padding: 16px;
		border-bottom: 1px solid var(--border);
		font-size: 16px;
		width: 100%;
		display: block;
		font-weight: 600;
	}
	.menu a:last-child {
		border-bottom: none;
	}
	.brand { font-size: 16px; }
	.brand img { width: 32px; height: 32px; }
	.nav {
		padding: 12px 0;
	}
}
@media (max-width: 768px) {
	.hero-features {
		flex-direction: column;
		gap: 8px;
	}
	.feature-tag {
		width: 100%;
		justify-content: center;
	}
	.hero-card {
		margin-top: 24px;
		padding: 20px;
	}
	.order-grid {
		gap: 12px;
	}
	.grid-2 {
		gap: 16px;
	}
	.product-image-wrapper {
		height: 200px;
	}
	.prose {
		padding: 0 4px;
	}
	.prose h1 {
		font-size: 28px;
		margin-bottom: 12px;
	}
	.prose p {
		font-size: 15px;
		line-height: 1.6;
	}
}

/* Responsivo */
@media (max-width: 900px) {
	.hero-grid, .site-footer .cols, .grid-3, .grid-2, .order-grid, .faq-grid { grid-template-columns: 1fr; }
	.hero { padding-top: 32px; padding-bottom: 32px; }
	.hero h1 { font-size: 32px; line-height: 1.2; margin-bottom: 14px; }
	.hero-subtitle { font-size: 16px; line-height: 1.5; margin-bottom: 20px; }
	.hero p { font-size: 15px; }
	.hero-features {
		margin: 16px 0 24px;
		gap: 8px;
	}
	.feature-tag {
		font-size: 12px;
		padding: 5px 10px;
	}
	.cta {
		flex-direction: column;
		gap: 10px;
		width: 100%;
	}
	.cta .btn-lg {
		width: 100%;
		justify-content: center;
	}
	.section { padding: 40px 0; }
	.section h2 { font-size: 26px; margin-bottom: 20px; }
	.container {
		padding: 0 16px;
	}
	.cta-bar { 
		display: flex;
		padding: 12px 0;
		z-index: 100;
	}
	.cta-bar .container {
		padding: 0 16px;
	}
	body { padding-bottom: 80px; } /* espaço para a barra fixa */
	.order-card {
		flex-direction: column;
		align-items: flex-start;
		gap: 16px;
		padding: 16px;
	}
	.order-card > a {
		width: 100%;
		text-align: center;
		justify-content: center;
	}
	.contact-links {
		flex-direction: column;
		gap: 6px;
		margin-top: 16px;
		text-align: center;
	}
	.contact-links .separator {
		display: none;
	}
	.hero-badge {
		font-size: 11px;
		padding: 6px 12px;
		margin-bottom: 12px;
	}
	.phone-mockup-wrapper {
		padding: 20px 10px;
	}
	.phone-mockup {
		width: 280px;
		height: 560px;
		padding: 10px;
		border-radius: 32px;
	}
	.phone-screen {
		border-radius: 26px;
	}
	.phone-notch {
		width: 100px;
		height: 20px;
	}
	.phone-status {
		font-size: 11px;
	}
	.phone-indicators {
		bottom: 12px;
		padding: 6px 10px;
	}
	.indicator {
		width: 6px;
		height: 6px;
	}
	.indicator.active {
		width: 20px;
	}
	.delivery-apps {
		margin-top: 20px;
		padding-top: 20px;
	}
	.apps-grid {
		flex-direction: column;
		gap: 12px;
	}
	.app-badge {
		width: 100%;
		justify-content: center;
		padding: 14px 20px;
	}
	.card {
		padding: 20px;
	}
	.product-card {
		margin-bottom: 0;
	}
	.faith-quote {
		margin-top: 24px;
		padding: 16px 20px;
		font-size: 14px;
	}
	.site-footer .cols {
		gap: 24px;
		padding: 32px 0 20px;
	}
	.site-footer h4 {
		font-size: 15px;
		margin-bottom: 10px;
	}
}

/* Melhorias para tablets */
@media (min-width: 768px) and (max-width: 1024px) {
	.grid-3, .faq-grid { grid-template-columns: repeat(2, 1fr); }
	.grid-2 { grid-template-columns: repeat(2, 1fr); }
	.hero-grid { grid-template-columns: 1fr; }
	.hero-card { max-width: 400px; margin: 0 auto; }
}

/* Seção de Pedidos Reais - Mockup de Celular */
.phone-mockup-wrapper {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 40px 20px;
}
.phone-mockup {
	position: relative;
	width: 320px;
	height: 640px;
	background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
	border-radius: 40px;
	padding: 12px;
	box-shadow: 0 20px 60px rgba(0,0,0,.3), 0 0 0 2px rgba(255,255,255,.1);
}
.phone-screen {
	width: 100%;
	height: 100%;
	background: #000;
	border-radius: 32px;
	overflow: hidden;
	position: relative;
	display: flex;
	flex-direction: column;
}
.phone-header {
	background: #000;
	padding: 8px 20px 4px;
	position: relative;
	z-index: 10;
}
.phone-notch {
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 120px;
	height: 24px;
	background: #000;
	border-radius: 0 0 16px 16px;
}
.phone-status {
	display: flex;
	justify-content: space-between;
	align-items: center;
	color: #fff;
	font-size: 12px;
	font-weight: 600;
	margin-top: 4px;
}
.phone-time {
	font-size: 13px;
}
.phone-icons {
	display: flex;
	gap: 4px;
	font-size: 10px;
}
.phone-content {
	flex: 1;
	position: relative;
	overflow: hidden;
	background: #fff;
}
.slideshow-container {
	width: 100%;
	height: 100%;
	position: relative;
}
.slide {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	transition: opacity 0.8s ease-in-out;
	display: flex;
	align-items: center;
	justify-content: center;
}
.slide.active {
	opacity: 1;
	z-index: 2;
}
.slide img,
.slide video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.slide video {
	background: #000;
}
.slide-placeholder {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 16px;
	color: var(--muted);
	text-align: center;
	padding: 40px;
	height: 100%;
}
.slide-placeholder span {
	font-size: 48px;
}
.slide-placeholder code {
	background: var(--bg-alt);
	padding: 4px 8px;
	border-radius: 4px;
	font-size: 12px;
}
.phone-indicators {
	position: absolute;
	bottom: 16px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 8px;
	z-index: 10;
	background: rgba(0,0,0,.3);
	padding: 8px 12px;
	border-radius: 20px;
	backdrop-filter: blur(10px);
}
.indicator {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: rgba(255,255,255,.4);
	cursor: pointer;
	transition: all .3s ease;
}
.indicator.active {
	background: var(--brand);
	width: 24px;
	border-radius: 4px;
}
.phone-footer {
	background: #000;
	padding: 8px 0;
	position: relative;
	z-index: 10;
}
.phone-home-indicator {
	width: 120px;
	height: 4px;
	background: rgba(255,255,255,.3);
	border-radius: 2px;
	margin: 0 auto;
}
.pedidos-info {
	margin-top: 24px;
}
.section-subtitle {
	color: var(--muted);
	font-size: 16px;
	line-height: 1.6;
}

/* Melhorias de impressão */
@media print {
	.site-header, .cta-bar, .site-footer { display: none; }
	body { padding: 0; }
}


