/* ==========================================================================
   Pagina Entrega e Frete
   ========================================================================== */

@keyframes vruumy-entrega-scan {
	0%   { transform: translateY(-100%); opacity: .5; }
	100% { transform: translateY(100vh); opacity: 0; }
}

@keyframes vruumy-entrega-dot {
	0%, 100% { opacity: 1; }
	50%       { opacity: .2; }
}

.vruumy-entrega {
	background: var(--vruumy-black);
	min-height: 60vh;
}

/* ==========================================================================
   Hero
   ========================================================================== */
.vruumy-entrega__hero {
	position: relative;
	padding: clamp(4.5rem, 11vw, 8rem) clamp(1.25rem, 5vw, 3rem) clamp(3rem, 7vw, 5rem);
	text-align: center;
	overflow: hidden;
	isolation: isolate;
}

.vruumy-entrega__hero-grid {
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(rgba(255, 45, 142, .05) 1px, transparent 1px),
		linear-gradient(90deg, rgba(0, 178, 255, .05) 1px, transparent 1px);
	background-size: 48px 48px;
	mask-image: radial-gradient(ellipse 90% 80% at 50% 50%, black 20%, transparent 75%);
	-webkit-mask-image: radial-gradient(ellipse 90% 80% at 50% 50%, black 20%, transparent 75%);
	pointer-events: none;
	z-index: 0;
}

.vruumy-entrega__hero-scan {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	height: 120px;
	background: linear-gradient(to bottom,
		transparent 0%,
		rgba(255, 45, 142, .05) 40%,
		rgba(255, 45, 142, .12) 50%,
		rgba(255, 45, 142, .05) 60%,
		transparent 100%);
	animation: vruumy-entrega-scan 5.5s linear infinite;
	pointer-events: none;
	z-index: 0;
}

.vruumy-entrega__hero::before {
	content: '';
	position: absolute;
	inset: 0;
	background:
		radial-gradient(ellipse 60% 55% at 20% 60%, rgba(0, 178, 255, .10) 0%, transparent 70%),
		radial-gradient(ellipse 55% 50% at 80% 35%, rgba(255, 45, 142, .12) 0%, transparent 70%);
	pointer-events: none;
	z-index: 0;
}

.vruumy-entrega__hero > * { position: relative; z-index: 1; }

.vruumy-entrega__kicker {
	display: inline-flex;
	align-items: center;
	gap: .55rem;
	font-family: var(--vruumy-font-heading);
	font-size: .65rem;
	font-weight: 700;
	letter-spacing: .3em;
	text-transform: uppercase;
	color: var(--vruumy-pink);
	margin: 0 0 1.5rem;
	padding: .45em 1.1em;
	border: 1px solid rgba(255, 45, 142, .3);
	border-radius: 999px;
	background: rgba(255, 45, 142, .06);
	backdrop-filter: blur(4px);
	box-shadow: 0 0 18px rgba(255, 45, 142, .18), inset 0 0 12px rgba(255, 45, 142, .06);
}

.vruumy-entrega__kicker .vruumy-icon svg { width: 13px; height: 13px; }

.vruumy-entrega__kicker-dot {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--vruumy-pink);
	box-shadow: 0 0 8px var(--vruumy-pink), 0 0 16px rgba(255, 45, 142, .6);
	animation: vruumy-entrega-dot 1.6s ease-in-out infinite;
	flex-shrink: 0;
}

.vruumy-entrega__title {
	font-family: var(--vruumy-font-heading);
	font-size: clamp(2.4rem, 6.5vw, 4.5rem);
	font-weight: 900;
	letter-spacing: .06em;
	text-transform: uppercase;
	color: var(--vruumy-white);
	margin: 0 0 .3rem;
	line-height: 1.1;
	text-shadow: 0 0 60px rgba(255, 45, 142, .2);
}

.vruumy-entrega__title-accent {
	display: block;
	background: linear-gradient(90deg, var(--vruumy-pink) 0%, var(--vruumy-blue) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	filter: drop-shadow(0 0 22px rgba(255, 45, 142, .55));
}

.vruumy-entrega__subtitle {
	max-width: 580px;
	margin: 1rem auto 2rem;
	font-size: clamp(.9rem, 2vw, 1.02rem);
	line-height: 1.75;
	color: var(--vruumy-text-muted);
}

.vruumy-entrega__hero-stats {
	display: inline-flex;
	align-items: center;
	gap: 1.25rem;
	font-family: var(--vruumy-font-heading);
	font-size: .6rem;
	font-weight: 700;
	letter-spacing: .2em;
	color: rgba(255, 255, 255, .35);
	text-transform: uppercase;
}

.vruumy-entrega__hero-stats-sep {
	display: block;
	width: 28px;
	height: 1px;
	background: linear-gradient(90deg, var(--vruumy-pink), var(--vruumy-blue));
	opacity: .5;
}

/* ==========================================================================
   Layout principal -- secoes + sidebar
   ========================================================================== */
.vruumy-entrega__content {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 clamp(1.25rem, 4vw, 2.5rem) clamp(4rem, 10vw, 7rem);
	display: grid;
	grid-template-columns: 1fr 280px;
	gap: 3rem;
	align-items: start;
}

/* ==========================================================================
   Secoes de conteudo
   ========================================================================== */
.vruumy-entrega__sections {
	display: flex;
	flex-direction: column;
	gap: 0;
}

.vruumy-entrega__section {
	padding: 2rem 0;
	border-bottom: 1px solid var(--vruumy-border);
	position: relative;
}

.vruumy-entrega__section:first-child { padding-top: 0; }
.vruumy-entrega__section:last-child { border-bottom: none; }

.vruumy-entrega__section-header {
	display: flex;
	align-items: center;
	gap: .85rem;
	margin-bottom: 1.25rem;
}

.vruumy-entrega__section-num {
	font-family: var(--vruumy-font-heading);
	font-size: .58rem;
	font-weight: 700;
	letter-spacing: .1em;
	color: rgba(255, 45, 142, .45);
	flex-shrink: 0;
}

.vruumy-entrega__section-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	flex-shrink: 0;
	border-radius: 10px;
	background: linear-gradient(135deg, rgba(255,45,142,.12), rgba(0,178,255,.08));
	border: 1px solid rgba(255, 45, 142, .25);
	color: var(--vruumy-pink);
	box-shadow: 0 0 14px rgba(255, 45, 142, .18), inset 0 0 10px rgba(255, 45, 142, .07);
}

.vruumy-entrega__section-icon .vruumy-icon svg { width: 17px; height: 17px; }

.vruumy-entrega__section-title {
	font-family: var(--vruumy-font-heading);
	font-size: clamp(.82rem, 2vw, .95rem);
	font-weight: 700;
	letter-spacing: .14em;
	text-transform: uppercase;
	color: var(--vruumy-white);
	margin: 0;
}

.vruumy-entrega__section-body p {
	margin: 0 0 .85rem;
	font-size: .93rem;
	line-height: 1.8;
	color: rgba(200, 200, 220, .88);
}

.vruumy-entrega__section-body p:last-child { margin-bottom: 0; }

.vruumy-entrega__section-body ul {
	list-style: none;
	margin: .6rem 0 .85rem;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: .5rem;
}

.vruumy-entrega__section-body ul li {
	position: relative;
	padding-left: 1.3rem;
	font-size: .93rem;
	line-height: 1.65;
	color: rgba(200, 200, 220, .88);
}

.vruumy-entrega__section-body ul li::before {
	content: '';
	position: absolute;
	left: 0;
	top: .62em;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--vruumy-pink), var(--vruumy-blue));
	box-shadow: 0 0 6px rgba(255, 45, 142, .8), 0 0 12px rgba(0, 178, 255, .3);
}

/* ==========================================================================
   Sidebar
   ========================================================================== */
.vruumy-entrega__sidebar {
	position: sticky;
	top: 160px;
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.vruumy-entrega__contact-card {
	background: linear-gradient(135deg, rgba(255,45,142,.08), rgba(0,178,255,.06));
	border: 1px solid rgba(255, 45, 142, .25);
	border-radius: var(--vruumy-radius);
	padding: 1.5rem;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: .75rem;
	box-shadow: 0 0 28px rgba(255, 45, 142, .1);
}

.vruumy-entrega__contact-card-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: linear-gradient(135deg, rgba(255,45,142,.18), rgba(0,178,255,.12));
	border: 1px solid rgba(255, 45, 142, .35);
	color: var(--vruumy-pink);
	box-shadow: 0 0 18px rgba(255, 45, 142, .3);
}

.vruumy-entrega__contact-card-icon .vruumy-icon svg { width: 22px; height: 22px; }

.vruumy-entrega__contact-card-title {
	font-family: var(--vruumy-font-heading);
	font-size: .8rem;
	font-weight: 700;
	letter-spacing: .14em;
	text-transform: uppercase;
	color: var(--vruumy-white);
	margin: 0;
}

.vruumy-entrega__contact-card-text {
	margin: 0;
	font-size: .8rem;
	line-height: 1.6;
	color: var(--vruumy-text-muted);
}

.vruumy-entrega__contact-card-btn {
	display: inline-flex;
	align-items: center;
	gap: .5rem;
	background: #25D366;
	color: #fff;
	text-decoration: none;
	font-family: var(--vruumy-font-heading);
	font-size: .72rem;
	font-weight: 700;
	letter-spacing: .12em;
	text-transform: uppercase;
	padding: .75em 1.4em;
	border-radius: 999px;
	box-shadow: 0 4px 18px rgba(37, 211, 102, .4);
	transition: transform .22s var(--vruumy-ease), box-shadow .22s var(--vruumy-ease);
	width: 100%;
	justify-content: center;
}

.vruumy-entrega__contact-card-btn svg { width: 17px; height: 17px; }

.vruumy-entrega__contact-card-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 24px rgba(37, 211, 102, .6);
	color: #fff;
}

.vruumy-entrega__contact-card-link {
	font-size: .78rem;
	color: var(--vruumy-text-muted);
	text-decoration: none;
	transition: color .22s var(--vruumy-ease);
}

.vruumy-entrega__contact-card-link:hover { color: var(--vruumy-blue); }

/* Navegacao de topicos */
.vruumy-entrega__nav-card {
	background: var(--vruumy-gray);
	border: 1px solid var(--vruumy-border);
	border-radius: var(--vruumy-radius);
	padding: 1.25rem;
}

.vruumy-entrega__nav-card-label {
	display: block;
	font-family: var(--vruumy-font-heading);
	font-size: .65rem;
	font-weight: 700;
	letter-spacing: .22em;
	text-transform: uppercase;
	color: var(--vruumy-text-muted);
	margin-bottom: .85rem;
}

.vruumy-entrega__nav-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: .15rem;
}

.vruumy-entrega__nav-link {
	display: flex;
	align-items: center;
	gap: .6rem;
	padding: .55em .5em;
	border-radius: 7px;
	text-decoration: none;
	font-size: .78rem;
	font-weight: 500;
	color: var(--vruumy-text-muted);
	transition: color .2s var(--vruumy-ease), background .2s var(--vruumy-ease);
}

.vruumy-entrega__nav-link:hover {
	color: var(--vruumy-white);
	background: rgba(255, 255, 255, .05);
}

.vruumy-entrega__nav-num {
	font-family: var(--vruumy-font-heading);
	font-size: .58rem;
	font-weight: 700;
	letter-spacing: .06em;
	color: rgba(255, 45, 142, .5);
	flex-shrink: 0;
	min-width: 20px;
}

/* ==========================================================================
   Responsivo
   ========================================================================== */
@media (max-width: 900px) {
	.vruumy-entrega__content {
		grid-template-columns: 1fr;
	}

	.vruumy-entrega__sidebar {
		position: static;
		flex-direction: row;
		flex-wrap: wrap;
	}

	.vruumy-entrega__contact-card,
	.vruumy-entrega__nav-card {
		flex: 1;
		min-width: 260px;
	}
}

@media (max-width: 600px) {
	.vruumy-entrega__sidebar { flex-direction: column; }
	.vruumy-entrega__hero-stats { flex-wrap: wrap; justify-content: center; gap: .6rem; }
}
