html,
body{
	margin:0;
	padding:0;
	overflow-x:hidden;
	font-family:Arial, Helvetica, sans-serif;
}

*{
	box-sizing:border-box;
}

img{
	max-width:100%;
	height:auto;
}

.container_santo_detalhe{
	width:100%;
	max-width:1100px;
	margin:0 auto;
	padding:24px 18px 30px 18px;
	font-family:Arial, Helvetica, sans-serif;
}

.topo_santo_detalhe{
	margin-bottom:18px;
}

.faixa_titulo_santo{
	border-bottom:3px solid #d8a327;
	padding-bottom:10px;
}

.titulo_santo_detalhe{
	margin:0;
	display:flex;
	align-items:center;
	gap:12px;
	font-size:34px;
	line-height:1.1;
	color:#1a3e6e;
	font-family:Georgia, "Times New Roman", serif;
	font-weight:700;
}

.icone_titulo_santo{
	width:38px;
	height:38px;
	object-fit:contain;
	display:block;
	flex:0 0 auto;
}

.meta_santo_detalhe{
	margin-top:10px;
}

.data_santo_detalhe{
	display:inline-block;
	padding:7px 12px;
	border-radius:999px;
	background:#eef4fb;
	border:1px solid #d6e1ee;
	color:#2b5f95;
	font-size:13px;
	font-weight:700;
}

.box_santo_detalhe{
	display:grid;
	grid-template-columns:280px 1fr;
	gap:22px;
	margin-top:18px;
	padding:20px;
	background:#ffffff;
	border:1px solid #e4ebf3;
	border-radius:18px;
	box-shadow:0 8px 20px rgba(0,0,0,0.06);
}

.coluna_imagem_santo{
	display:flex;
	align-items:flex-start;
	justify-content:center;
}

.imagem_santo_detalhe{
	width:100%;
	max-width:250px;
	height:auto;
	border-radius:16px;
	display:block;
	box-shadow:0 8px 20px rgba(0,0,0,0.10);
	border:1px solid #e4ebf3;
	background:#fff;
}

.imagem_santo_placeholder{
	width:100%;
	max-width:250px;
	min-height:300px;
	border-radius:16px;
	border:1px solid #dde7f4;
	background:linear-gradient(135deg, #f8fbff, #eef4fb);
	display:flex;
	flex-direction:column;
	align-items:center;
	justify-content:center;
	text-align:center;
	padding:20px;
}

.imagem_santo_placeholder img{
	width:72px;
	height:72px;
	object-fit:contain;
	opacity:.8;
	margin-bottom:12px;
}

.imagem_santo_placeholder span{
	font-size:14px;
	color:#5c7088;
	font-weight:700;
}

.coluna_conteudo_santo{
	display:flex;
	flex-direction:column;
	min-width:0;
}

.bloco_texto_santo{
	font-size:17px;
	line-height:1.9;
	color:#2b3f55;
	word-break:normal;
	overflow-wrap:break-word;
}

.bloco_texto_santo p{
	margin:0 0 12px 0;
}

.msg_texto_vazio{
	padding:18px;
	border-radius:12px;
	background:#f8fbff;
	border:1px solid #dde7f4;
	color:#72849a;
	font-size:15px;
	line-height:1.7;
	text-align:center;
}

.acoes_santo_detalhe{
	display:flex;
	gap:10px;
	flex-wrap:wrap;
	margin-top:22px;
}

.botao_santo{
	display:inline-block;
	padding:10px 16px;
	border-radius:10px;
	text-decoration:none;
	font-size:13px;
	font-weight:700;
	transition:.15s ease;
}

.botao_voltar_lista{
	background:#1a3e6e;
	color:#fff;
}

.botao_voltar_lista:hover{
	background:#143153;
}

.botao_ver_hoje{
	background:#eef4fb;
	color:#1a3e6e;
	border:1px solid #d6e1ee;
}

.botao_ver_hoje:hover{
	background:#e4eef9;
}

.box_sem_resultado{
	grid-template-columns:1fr;
}

/* DARK MODE */
body.modo-escuro .titulo_santo_detalhe{
	color:#e7eef7;
}

body.modo-escuro .data_santo_detalhe{
	background:#182230;
	border-color:#2b3a4d;
	color:#9fc2e6;
}

body.modo-escuro .box_santo_detalhe{
	background:#182230;
	border-color:#2b3a4d;
	box-shadow:0 10px 28px rgba(0,0,0,0.24);
}

body.modo-escuro .imagem_santo_detalhe{
	border-color:#2b3a4d;
	background:#182230;
}

body.modo-escuro .imagem_santo_placeholder{
	background:#1b2533;
	border-color:#2b3a4d;
}

body.modo-escuro .imagem_santo_placeholder span{
	color:#b7c7d8;
}

body.modo-escuro .bloco_texto_santo{
	color:#e0e9f3;
}

body.modo-escuro .msg_texto_vazio{
	background:#1b2533;
	border-color:#2b3a4d;
	color:#b8c6d6;
}

body.modo-escuro .botao_voltar_lista{
	background:#27476d;
	color:#fff;
}

body.modo-escuro .botao_voltar_lista:hover{
	background:#315985;
}

body.modo-escuro .botao_ver_hoje{
	background:#182230;
	color:#dce6f1;
	border-color:#2b3a4d;
}

body.modo-escuro .botao_ver_hoje:hover{
	background:#223246;
}

/* RESPONSIVO */
@media(max-width:900px){
	.box_santo_detalhe{
		grid-template-columns:220px 1fr;
	}
}

@media(max-width:700px){
	.box_santo_detalhe{
		grid-template-columns:1fr;
	}

	.coluna_imagem_santo{
		justify-content:center;
	}
}

@media(max-width:600px){
	.container_santo_detalhe{
		max-width:100%;
		padding:20px 10px 26px 10px;
	}

	.faixa_titulo_santo{
		text-align:center;
	}

	.titulo_santo_detalhe{
		font-size:25px;
		line-height:1.2;
		justify-content:center;
		text-align:center;
		flex-wrap:wrap;
	}

	.icone_titulo_santo{
		width:32px;
		height:32px;
	}

	.meta_santo_detalhe{
		text-align:center;
	}

	.box_santo_detalhe{
		padding:16px;
		gap:18px;
		border-radius:16px;
	}

	.imagem_santo_detalhe{
		max-width:230px;
	}

	.imagem_santo_placeholder{
		max-width:230px;
		min-height:240px;
	}

	.bloco_texto_santo{
		font-size:16px;
		line-height:1.75;
	}

	.acoes_santo_detalhe{
		flex-direction:column;
	}

	.botao_santo{
		text-align:center;
		width:100%;
	}
}