@charset "iso-8859-1";
/* CSS Document */

/* =====================================================
   MOBILE FIRST (padrão)
   Menores que 576px
   ===================================================== */

body {
	background: #faeae0;
	font-family: system-ui;
	margin-top: 20px;
}

html {
	scroll-behavior: smooth;
}

a {
	text-decoration: none;
}

.shadow {
	text-shadow: 0px 0px 8px rgba(10, 10, 10, 0.8),
		0px 0px 20px rgba(211, 227, 238, 0.5);
}

.fc-day-grid-event .fc-content {
	white-space: normal !important;
}

.fc-day-grid-event .fc-title {
	white-space: normal !important;
	word-break: break-word;
}

.fc-day-grid-event {
	height: auto !important;
}

.secao {
	display: none;
}

.secao.ativa {
	display: block;
}

.pull-right {
	text-align: right;
}

.container-pages {
	background: #faf9f8;
	margin: 10px;
	padding: 10px;
	border-radius: 10px;
	text-align: justify;
}

.hero {
	min-height: 20vh;
	background-size: cover;
	background-position: center;
	display: flex;
	align-items: center;
	color: white;
}

.hero h1 {
	font-size: 3.5rem;
	font-weight: 700;
	line-height: 1;
}

.hero-page {
	min-height: 1.2vh;
	background-size: cover;
	background-position: center;
	display: flex;
	align-items: center;
	color: white;
}

.text-sobre {
	text-align: justify;
	padding-bottom: 15px;
}

/* Estado inicial (no topo da página) */
.navbar-custom {
	background-color: #b46cae;
	transition: background-color 0.4s ease, box-shadow 0.4s ease;
}

/* Estado quando a página for rolada para baixo */
.navbar-custom.scrolled {
	background-color: #fab8f4;
	/* Substitua pela sua cor personalizada */
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	/* Opcional: uma sombra leve */
}

.subtitulo {
	color: #d7770f;
	letter-spacing: 4px;
	text-transform: uppercase;
	margin-top: 12px;
}

.img-eixo {
	width: 300px;
}

.text-orange {
	color: #ea8b11;
}

.btn-orange {
	background: #ea8b11;
	font-weight: bold;
	border: none;
	border-radius: 40px;
	padding: 15px 35px;
}

.btn-orange a {
	text-decoration: none;
	color: #3a3a3a;
	border: none;
}

.btn-orange a:visited {
	text-decoration: none;
	color: #3a3a3a;
	border: none;
}

.section {
	margin-bottom: 60px;
}

.section-title {
	color: #c36b14;
	text-transform: uppercase;
	letter-spacing: 4px;
	font-size: 1.2rem;
	margin-top: 20px;
}

.section-line {
	width: 60px;
	height: 2px;
	background: #c36b14;
	margin-bottom: 30px;
}

.card {
	border: none;
	border-radius: 12px;
}

.card img {
	height: 186px;
	object-fit: cover;
}

.card-title {
	font-weight: 700;
}

.testemunho {
	background: white;
	border-radius: 15px;
	padding: 30px;
}

.cor-yellow {
	color: #FFCB61;
}

.cor-green {
	color: green;
}

.cor-red {
	color: #e80a0a;
}

.logo {
	text-align: center;
	width: 200px;
}

.limpa_float {
	clear: both;
}

.borda {
	border: 1px solid #000;
}

.form-signin {
	max-width: 330px;
	padding: 15px;
	margin: 0 auto;
	margin-top: 10px;
}

.form-titulo {
	color: #0c0c0c;
	letter-spacing: 4px;
	text-transform: uppercase;
	margin-top: 15px;
	margin-bottom: 25px;
}

.form-subtitulo {
	color: #c36b14;
	text-transform: uppercase;
	letter-spacing: 4px;
	font-size: .8rem;
}

.form-signin .form-signin-heading,
.form-signin .checkbox {
	margin-bottom: 10px;
}

.form-signin .checkbox {
	font-weight: normal;
}

.form-signin .form-control {
	position: relative;
	height: auto;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	padding: 10px;
	font-size: 16px;
}

.form-signin .form-control:focus {
	z-index: 2;
}

.form-signin input[type="email"] {
	margin-bottom: -1px;
	border-bottom-right-radius: 0;
	border-bottom-left-radius: 0;
}

.form-signin input[type="password"] {
	margin-bottom: 10px;
	border-top-left-radius: 0;
	border-top-right-radius: 0;
}

/* Container em Grid para reproduzir o mosaico idêntico */
.mosaico-grid {
	display: grid;
	grid-template-columns: repeat(12, 1fr);
	gap: 1.5rem;
	/* Equivalente ao g-4 do Bootstrap */
}

/* Estilização dos blocos das fotos */
.foto-item {
	position: relative;
	background-color: #fff;
	border-radius: 12px;
	/* Cantos arredondados suaves */
	overflow: hidden;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
	transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
	border: 2px solid transparent;
	cursor: pointer;
}

/* Efeito de evidência (Hover) solicitado */
.foto-item:hover {
	transform: translateY(-5px);
	box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
	border-color: #8c6239;
	/* Borda em tom terroso elegante */
	z-index: 5;
}

/* Garante que a imagem preencha o espaço do bloco */
.foto-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

/* Configuração de posicionamento das peças com base na imagem modelo */
.item-1 {
	grid-column: span 6;
	width: 100%;
}

/* Grande horizontal superior esquerdo */
.item-2 {
	grid-column: span 3;
	width: 100%;
}

/* Pequeno horizontal superior meio */
.item-3 {
	grid-column: span 3;
	width: 100%;
}

/* Superior direito */
.item-4 {
	grid-column: span 3;
	width: 100%;
}

/* Vertical longo esquerdo */
.item-5 {
	grid-column: span 6;
	width: 100%;
}

/* Centro horizontal longo */
.item-6 {
	grid-column: span 3;
	width: 100%;
}

.custom-card {
	background-color: #f7efe9;
	/* Cor de fundo dos cards */
	border: none;
	border-radius: 12px;
	overflow: hidden;
	transition: transform 0.2s;
}

.custom-card:hover {
	transform: translateY(-5px);
}

.card-img-top {
	height: 200px;
	object-fit: cover;
}

.icon-wrapper {
	background-color: #eeded1;
	/* Fundo do ícone circular */
	color: #8c6d58;
	/* Cor do ícone */
	width: 32px;
	height: 32px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	margin-right: 12px;
	font-size: 0.9rem;
}

.footer {
	background: #1f1b1b;
	color: #d4d4d4;
	padding-top: 10px;
}

.footer p,
.footer a {
	color: #d4d4d4;
	text-decoration: none;
	line-height: 1.8;
	transition: .3s;
}

.footer a:hover {
	color: #ff7a00;
}

.social-links {
	display: flex;
	gap: 12px;
	margin-top: 10px;
}

.social-links a {
	width: 42px;
	height: 42px;
	border: 1px solid #555;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.1rem;
}

.social-links a:hover {
	border-color: #ff7a00;
	color: #ff7a00;
}

.footer-bottom {
	border-top: 1px solid #3a3a3a;
	margin-top: 10px;
	padding: 10px 0;
	font-size: 0.9rem;
	color: #9a9a9a;
}

.footer-bottom-right {
	text-align: right;
}


#toTop {
	bottom: 10px;
	color: #333;
	cursor: pointer;
	display: none;
	font-family: verdana;
	font-size: 11px;
	position: fixed;
	right: -20px;
	text-align: center;
	width: 100px;
}