/* =============================================================
   pages-conteudo.css — Blog (index + post) e Seja Parceiro
   Paridade visual com src/routes/blog.tsx, blog.$slug.tsx e parceiros.tsx
   ============================================================= */

/* ---------- Blog index ---------- */
.awr-blog-hero {
	position: relative;
	overflow: hidden;
	background: linear-gradient(135deg, #0a2555 0%, #0f2f66 55%, #061a44 100%);
	color: #fff;
	padding: 56px 0 72px;
}
.awr-blog-hero::before {
	content: "";
	position: absolute;
	inset: 0 0 auto 0;
	height: 3px;
	background: linear-gradient(90deg, transparent, #FFDF00, transparent);
}
.awr-blog-hero__inner { position: relative; z-index: 1; }
.awr-blog-hero__crumbs { display: flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 600; color: rgba(255,255,255,.6); margin-bottom: 16px; }
.awr-blog-hero__crumbs a { color: inherit; text-decoration: none; }
.awr-blog-hero__crumbs a:hover { color: #FFDF00; }
.awr-blog-hero__crumbs span:last-child { color: rgba(255,255,255,.9); }

.awr-blog-hero__badge {
	display: inline-flex; align-items: center; gap: 8px;
	border: 1px solid rgba(255,223,0,.3); background: rgba(255,223,0,.1);
	border-radius: 999px; padding: 5px 14px; font-size: 11px; font-weight: 800;
	text-transform: uppercase; letter-spacing: .05em; color: #FFDF00;
}
.awr-blog-hero__dot { width: 7px; height: 7px; border-radius: 50%; background: #34d399; display: inline-block; }

.awr-blog-hero__title { font-size: 40px; font-weight: 800; line-height: 1.1; margin: 16px 0 0; letter-spacing: -0.01em; }
.awr-blog-hero__title span { background: linear-gradient(90deg, #FFDF00, #FFE84D, #FFDF00); -webkit-background-clip: text; background-clip: text; color: transparent; }
.awr-blog-hero__lead { max-width: 640px; margin: 16px 0 0; color: rgba(255,255,255,.8); font-size: 16px; line-height: 1.6; }

.awr-blog-hero__stats { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; margin: 24px 0 0; padding: 0; }
.awr-blog-hero__stats li {
	display: inline-flex; align-items: center; gap: 6px;
	border: 1px solid rgba(255,255,255,.15); background: rgba(255,255,255,.08);
	border-radius: 999px; padding: 5px 14px; font-size: 12px; font-weight: 700; color: rgba(255,255,255,.9);
}
.awr-blog-hero__stats li strong { color: #FFDF00; }

.awr-blog-body { background: #f7f9ff; padding: 48px 0 64px; }

.awr-blog-featured {
	display: grid;
	grid-template-columns: 1fr;
	overflow: hidden;
	border-radius: 24px;
	border: 2px solid rgba(10,37,85,.1);
	background: #fff;
	box-shadow: 0 12px 32px -16px rgba(10,37,85,.25);
	text-decoration: none;
	color: inherit;
	margin-bottom: 40px;
	transition: transform .3s ease, border-color .3s ease;
}
.awr-blog-featured:hover { transform: translateY(-4px); border-color: rgba(10,37,85,.3); }
.awr-blog-featured__media {
	position: relative;
	min-height: 220px;
	background: linear-gradient(135deg, #0a2555, #061a44);
}
.awr-blog-featured__tag {
	position: absolute; left: 16px; top: 16px;
	display: inline-flex; align-items: center; gap: 6px;
	background: #FFDF00; color: #0a2555; border-radius: 999px;
	padding: 5px 12px; font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: .05em;
}
.awr-blog-featured__tag span { width: 6px; height: 6px; border-radius: 50%; background: #0a2555; }
.awr-blog-featured__body { padding: 24px; }
.awr-blog-featured__meta { display: flex; align-items: center; gap: 10px; font-size: 12px; font-weight: 700; color: #64748b; margin-bottom: 12px; }
.awr-blog-featured__body h2 { font-size: 24px; font-weight: 800; line-height: 1.2; color: #0a2555; margin: 0 0 12px; }
.awr-blog-featured__body p { color: #64748b; line-height: 1.6; margin: 0 0 20px; }
.awr-blog-featured__footer { display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
.awr-blog-featured__city { font-size: 12px; font-weight: 700; color: #64748b; }
.awr-blog-featured__cta {
	display: inline-flex; align-items: center; gap: 8px;
	background: linear-gradient(135deg, #0a2555, #061a44); color: #fff;
	border-radius: 999px; padding: 8px 18px; font-size: 12px; font-weight: 800;
}

.awr-blog-badge {
	display: inline-block; border-radius: 999px; padding: 3px 10px;
	font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: .04em;
	background: rgba(10,37,85,.06); color: #0a2555;
}

.awr-blog-body__head { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 24px; flex-wrap: wrap; }
.awr-blog-body__head h2 { font-size: 22px; font-weight: 800; color: #0a2555; margin: 0; }
.awr-blog-body__head h2 span { color: #FFDF00; -webkit-text-stroke: .3px #0a2555; }
.awr-blog-body__count { font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .05em; color: #64748b; }

.awr-blog-grid { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: 1fr; gap: 24px; }
@media (min-width: 641px) { .awr-blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .awr-blog-grid { grid-template-columns: repeat(3, 1fr); } }

.awr-blog-card {
	position: relative; display: flex; flex-direction: column; height: 100%;
	overflow: hidden; border-radius: 16px; border: 2px solid rgba(10,37,85,.1);
	background: #fff; text-decoration: none; color: inherit;
	box-shadow: 0 2px 8px -4px rgba(10,37,85,.15);
	transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.awr-blog-card:hover { transform: translateY(-4px); border-color: rgba(10,37,85,.3); box-shadow: 0 16px 32px -16px rgba(10,37,85,.3); }
.awr-blog-card::before {
	content: ""; position: absolute; inset: 0 0 auto 0; height: 3px; z-index: 1;
	background: linear-gradient(90deg, #0a2555, #FFDF00, #0a2555); opacity: .7;
}
.awr-blog-card__media {
	position: relative; aspect-ratio: 16/9;
	background: linear-gradient(135deg, #10305f, #0a2555);
}
.awr-blog-card__badge {
	position: absolute; left: 12px; top: 12px;
	background: rgba(255,255,255,.95); color: #0a2555; border-radius: 999px;
	padding: 3px 10px; font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: .04em;
}
.awr-blog-card__index {
	position: absolute; right: 12px; top: 12px;
	background: rgba(10,37,85,.85); color: #FFDF00; border-radius: 6px;
	padding: 2px 8px; font-size: 10px; font-weight: 700;
}
.awr-blog-card__body { display: flex; flex: 1; flex-direction: column; padding: 20px; }
.awr-blog-card__time { font-size: 11px; font-weight: 600; color: #64748b; margin-bottom: 8px; }
.awr-blog-card__body h3 { font-size: 18px; font-weight: 800; line-height: 1.3; color: #0a2555; margin: 0 0 8px; }
.awr-blog-card__body p { font-size: 14px; line-height: 1.6; color: #64748b; margin: 0 0 16px; }
.awr-blog-card__footer {
	margin-top: auto; display: flex; align-items: center; justify-content: space-between;
	border-top: 1px solid rgba(10,37,85,.1); padding-top: 12px; font-size: 12px;
}
.awr-blog-card__city { font-weight: 600; color: #64748b; }
.awr-blog-card__link { font-weight: 800; color: #0a2555; }
.awr-blog-card:hover .awr-blog-card__link { color: #b8930a; }

/* ---------- Post ---------- */
.awr-post-hero {
	position: relative; overflow: hidden;
	background: linear-gradient(135deg, #0a2555, #0a2555 60%, #061a44);
	color: #fff; padding: 40px 0 56px;
}
.awr-post-hero::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 3px; background: linear-gradient(90deg, transparent, #fbbf24, transparent); }
.awr-post-hero__inner { position: relative; z-index: 1; max-width: 720px; margin: 0 auto; }
.awr-post-hero .awr-breadcrumb { color: rgba(219,234,254,1); font-size: 12px; margin-bottom: 16px; }
.awr-post-hero .awr-breadcrumb a { color: inherit; }
.awr-post-hero .awr-breadcrumb a:hover { color: #fbbf24; }
.awr-post-hero .awr-breadcrumb span { color: rgba(255,255,255,.85); }

.awr-post-hero__badge {
	display: inline-flex; align-items: center; gap: 8px; margin-bottom: 20px;
	border: 1px solid rgba(251,191,36,.4); background: rgba(255,255,255,.1);
	border-radius: 999px; padding: 5px 14px; font-size: 11px; font-weight: 700;
	text-transform: uppercase; letter-spacing: .05em; color: #fde68a;
}
.awr-post-hero__dot { width: 8px; height: 8px; border-radius: 50%; background: #34d399; display: inline-block; }
.awr-post-hero__title { font-size: 30px; font-weight: 800; line-height: 1.15; margin: 0; }
@media (min-width: 640px) { .awr-post-hero__title { font-size: 42px; } }

.awr-post-hero__meta { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
.awr-post-hero__pill {
	display: inline-flex; align-items: center; gap: 6px;
	border: 1px solid rgba(255,255,255,.2); background: rgba(255,255,255,.1);
	border-radius: 999px; padding: 6px 14px; font-size: 12px; font-weight: 600; color: rgba(255,255,255,.9);
}
.awr-post-hero__pill--gold { border-color: rgba(251,191,36,.4); background: rgba(251,191,36,.15); color: #fde68a; }

.awr-post-article { max-width: 720px; padding-top: 8px; padding-bottom: 40px; }

.awr-post-prose { max-width: 72ch; margin: 0 auto; }
.awr-post-prose p { font-size: 16px; line-height: 1.75; color: #1e293b; margin: 0 0 16px; }
.awr-post-prose__lead { font-size: 18px; }
.awr-post-prose__h2 {
	position: relative; padding-left: 16px; margin: 36px 0 16px;
	font-size: 24px; font-weight: 800; line-height: 1.25; color: #0f172a;
}
.awr-post-prose__h2::before {
	content: ""; position: absolute; left: 0; top: 4px; bottom: 4px; width: 4px; border-radius: 999px;
	background: linear-gradient(180deg, #fbbf24, #0a2555);
}
.awr-post-prose__list { list-style: none; margin: 0 0 16px; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.awr-post-prose__list li {
	position: relative; border: 1px solid #e2e8f0; background: #f8fafc; border-radius: 10px;
	padding: 10px 16px 10px 36px; font-size: 15px; line-height: 1.6; color: #1e293b;
}
.awr-post-prose__check {
	position: absolute; left: 10px; top: 11px; width: 18px; height: 18px; border-radius: 50%;
	background: #0a2555; color: #fbbf24; font-size: 10px; font-weight: 700;
	display: flex; align-items: center; justify-content: center;
}

.awr-post-cta {
	margin: 32px 0; padding: 20px 24px; border-radius: 16px;
	border: 2px solid #0a2555; background: #f0f4ff;
	display: flex; flex-wrap: wrap; align-items: center; gap: 16px; justify-content: space-between;
}
.awr-post-cta p { margin: 0; flex: 1 1 220px; font-size: 15px; color: #0f172a; }
.awr-post-cta--final { flex-direction: column; align-items: flex-start; }
.awr-post-cta--final .awr-btn { margin-top: 4px; }

.awr-post-faq {
	margin-top: 48px; padding: 24px; border-radius: 24px;
	border: 1px solid #e2e8f0; background: linear-gradient(135deg, #fff, #f8fafc);
}
.awr-post-faq__eyebrow { display: block; font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .05em; color: #b45309; margin-bottom: 4px; }

.awr-post-related { background: linear-gradient(180deg, #f8fafc, #fff); padding: 48px 0; }
.awr-post-related__head { display: flex; align-items: flex-end; justify-content: space-between; gap: 12px; flex-wrap: wrap; margin-bottom: 28px; }
.awr-post-related__head h2 { font-size: 24px; font-weight: 800; color: #0f172a; margin: 4px 0 0; }
.awr-post-related__all { font-size: 12px; font-weight: 700; color: #0a2555; text-decoration: none; border: 2px solid #e2e8f0; border-radius: 999px; padding: 8px 16px; }
.awr-post-related__all:hover { border-color: #fbbf24; }
.awr-post-related__grid { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: 1fr; gap: 16px; }
@media (min-width: 641px) { .awr-post-related__grid { grid-template-columns: repeat(2, 1fr); } }
.awr-post-related__card {
	display: flex; gap: 16px; padding: 16px; border-radius: 16px; border: 2px solid #e2e8f0;
	background: #fff; text-decoration: none; color: inherit;
	box-shadow: 0 2px 8px -4px rgba(15,23,42,.08); transition: transform .2s ease, border-color .2s ease;
}
.awr-post-related__card:hover { transform: translateY(-4px); border-color: #0a2555; }
.awr-post-related__thumb {
	width: 88px; height: 88px; flex-shrink: 0; border-radius: 12px;
	background: linear-gradient(135deg, #0a2555, #10305f);
}
.awr-post-related__card h3 { font-size: 15px; font-weight: 700; color: #0f172a; margin: 6px 0 8px; line-height: 1.35; }
.awr-post-related__link { font-size: 12px; font-weight: 700; color: #0a2555; }

/* ---------- Parceiros ---------- */
.awr-parceiros { padding: 64px 0 56px; }
.awr-parceiros__crumbs { font-size: 13px; font-weight: 600; color: #0a2555; margin-bottom: 16px; }
.awr-parceiros__crumbs a { color: inherit; text-decoration: none; }
.awr-parceiros__crumbs a:hover { text-decoration: underline; }

.awr-parceiros__hero { margin-bottom: 40px; }
.awr-parceiros__badge {
	display: inline-flex; align-items: center; gap: 8px; margin-bottom: 12px;
	border-radius: 999px; padding: 5px 14px; font-size: 12px; font-weight: 800;
	text-transform: uppercase; letter-spacing: .04em; background: rgba(10,37,85,.1); color: #0a2555;
}
.awr-parceiros__title { font-size: 30px; font-weight: 800; line-height: 1.2; margin: 0 0 12px; }
@media (min-width: 768px) { .awr-parceiros__title { font-size: 40px; } }
.awr-parceiros__lead { max-width: 720px; font-size: 17px; line-height: 1.65; color: #64748b; margin: 0; }

.awr-parceiros__benefits { display: grid; grid-template-columns: 1fr; gap: 16px; margin-bottom: 40px; }
@media (min-width: 641px) { .awr-parceiros__benefits { grid-template-columns: repeat(2, 1fr); } }
.awr-parceiros__card {
	border: 2px solid #e2e8f0; border-radius: 16px; background: #fff; padding: 20px;
	box-shadow: 0 2px 8px -4px rgba(15,23,42,.08);
}
.awr-parceiros__card h2 { font-size: 16px; font-weight: 800; margin: 0 0 6px; color: #0f172a; }
.awr-parceiros__card p { font-size: 14px; line-height: 1.6; color: #64748b; margin: 0; }

.awr-parceiros__steps { margin-bottom: 40px; }
.awr-parceiros__steps ol { list-style: none; margin: 16px 0 0; padding: 0; display: grid; grid-template-columns: 1fr; gap: 16px; }
@media (min-width: 641px) { .awr-parceiros__steps ol { grid-template-columns: repeat(3, 1fr); } }
.awr-parceiros__steps li { display: flex; gap: 12px; align-items: flex-start; border: 1px solid #e2e8f0; border-radius: 16px; padding: 18px; background: #f8fafc; }
.awr-parceiros__step-num {
	flex-shrink: 0; width: 32px; height: 32px; border-radius: 50%;
	background: #0a2555; color: #FFDF00; font-weight: 800; font-size: 14px;
	display: flex; align-items: center; justify-content: center;
}
.awr-parceiros__steps h3 { font-size: 15px; font-weight: 800; margin: 0 0 4px; color: #0f172a; }
.awr-parceiros__steps p { font-size: 13px; line-height: 1.55; color: #64748b; margin: 0; }

.awr-parceiros__form {
	border-radius: 24px; border: 2px solid rgba(10,37,85,.3); background: #fff;
	padding: 24px; box-shadow: 0 8px 24px -12px rgba(10,37,85,.2); margin-bottom: 32px;
}
.awr-parceiros__form h2 { font-size: 22px; font-weight: 800; margin: 0 0 8px; color: #0f172a; }
.awr-parceiros__form > p { font-size: 14px; color: #64748b; margin: 0 0 20px; }
.awr-parceiros__form-grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
@media (min-width: 641px) { .awr-parceiros__form-grid { grid-template-columns: repeat(2, 1fr); } }
.awr-parceiros__field { display: flex; flex-direction: column; gap: 6px; font-size: 14px; font-weight: 700; color: #0f172a; }
.awr-parceiros__field--full { grid-column: 1 / -1; }
.awr-parceiros__field input {
	border: 2px solid #e2e8f0; border-radius: 12px; background: #f8fafc;
	padding: 12px 16px; font-size: 15px; font-weight: 400; color: #0f172a;
}
.awr-parceiros__field input:focus { outline: none; border-color: #0a2555; }
.awr-parceiros__submit { grid-column: 1 / -1; width: 100%; justify-content: center; gap: 10px; }
.awr-parceiros__form-note { grid-column: 1 / -1; font-size: 12px; color: #64748b; margin: 0; }

.awr-parceiros__cta {
	border-radius: 20px; border: 1px dashed #cbd5e1; background: #f8fafc;
	padding: 24px; text-align: center; margin-bottom: 32px;
}
.awr-parceiros__cta p { margin: 0 0 16px; font-weight: 700; color: #0f172a; }
.awr-parceiros__cta-buttons { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }

@media (max-width: 400px) {
	.awr-blog-hero__title { font-size: 32px; }
	.awr-post-hero__title { font-size: 26px; }
	.awr-parceiros__title { font-size: 26px; }
}
