/* ===== RESET E ESTILOS GERAIS ===== */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: 'Lato', sans-serif;
	font-size: 16px;
	line-height: 1.6;
	color: #333333;
	background-color: #FFFFFF;
	list-style: none;
}

a {
	text-decoration: none;
	color: #006600;
	transition: color 0.3s ease;
}

a:hover {
	color: #FF0000;
}

img {
	max-width: 100%;
	height: auto;
}

.container {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 15px;
}

/* ===== TIPOGRAFIA ===== */
h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: 'Playfair Display', serif;
	margin-bottom: 20px;
	color: #333333;
}

h1 {
	font-size: 32px;
	font-weight: 700;
}

h2 {
	font-size: 28px;
	font-weight: 700;
}

h3 {
	font-size: 24px;
	font-weight: 400;
}

h4 {
	font-size: 20px;
	font-weight: 400;
}

p {
	margin-bottom: 15px;
}

.text-center {
	text-align: center;
}

ul {
	list-style: none;
}

/* ===== CORES ===== */
.bg-verde {
	background-color: #006600;
}

.bg-vermelho {
	background-color: #FF0000;
}

.bg-amarelo {
	background-color: #FFCC00;
}

.bg-azul {
	background-color: #003366;
}

.bg-bege {
	background-color: #F5F0E1;
}

.text-verde {
	color: #006600;
}

.text-vermelho {
	color: #FF0000;
}

.text-amarelo {
	color: #FFCC00;
}

.text-azul {
	color: #003366;
}

/* ===== CABEÇALHO ===== */
.header {
	background-color: #FFFFFF;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
	position: sticky;
	top: 0;
	z-index: 1000;
}

.header-container {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.header-actions {
	display: flex;
	align-items: center;
	gap: 16px;
	/* Espaço entre user-menu e form de linguagem */
}

.user-menu {
	margin-right: 0;
}

.avatar-img {
	width: 36px;
	height: 36px;
	border-radius: 110%;
	object-fit: cover;
	border: 2px solid #006600;
}

.lang-form select {
	padding: 6px 12px;
	border-radius: 4px;
	border: 1px solid #ddd;
	font-size: 14px;
	background: #fff;
	color: #333;
	cursor: pointer;
}

.logo {
	display: flex;
	align-items: center;
}

.logo img {
	/* AUMENTADO: Ajuste a altura do logótipo aqui */
	height: 80px; /* Altere este valor para o tamanho desejado (ex: 70px, 90px, etc.) */
}

.logo-text {
	font-family: 'Playfair Display', serif;
	font-size: 24px;
	font-weight: 700;
	color: #006600;
	margin-left: 10px;
}

/* ===== NAVEGAÇÃO ===== */
.nav-main {
	background-color: #006600;
}

.nav-container {
	display: flex;
	justify-content: space-between;
}

.nav-list {
	display: flex;
	list-style: none;
}

.nav-item {
	position: relative;
}

.nav-link {
	display: block;
	padding: 15px 20px;
	color: #FFFFFF;
	font-weight: 700;
	text-transform: uppercase;
	font-size: 14px;
	transition: background-color 0.3s ease;
}

.nav-link:hover {
	background-color: #004d00;
	color: #FFFFFF;
}

.nav-dropdown {
	position: absolute;
	top: 100%;
	left: 0;
	background-color: #FFFFFF;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
	min-width: 200px;
	display: none;
	z-index: 1000;
}

.nav-item:hover .nav-dropdown {
	display: block;
}

.dropdown-item {
	display: block;
	padding: 10px 15px;
	color: #333333;
	border-bottom: 1px solid #f0f0f0;
	transition: background-color 0.3s ease;
}

.dropdown-item:hover {
	background-color: #F5F0E1;
	color: #006600;
}

/* ===== BARRA DE PESQUISA ===== */
.search-bar {
	flex: 1;
	margin: 0 32px;
	min-width: 220px;
}

.search-input {
	padding: 10px 15px;
	border: 1px solid #ddd;
	border-radius: 4px 0 0 4px;
	width: 300px;
	font-size: 14px;
}

.search-button {
	background-color: #FF0000;
	color: #FFFFFF;
	border: none;
	padding: 10px 15px;
	border-radius: 0 4px 4px 0;
	cursor: pointer;
	transition: background-color 0.3s ease;
}

.search-button:hover {
	background-color: #cc0000;
}

/* ===== BANNER PRINCIPAL ===== */
.banner {
	position: relative;
	height: 500px;
	background-size: cover;
	background-position: center;
	margin-bottom: 40px;
}

.banner-principal {
	background: url('/assets/img/banner-principal.jpg');
	background-size: cover;
	background-position: center;
	height: 400px;
	margin-bottom: 40px;
	display: flex;
	opacity: 0.65;
}

.banner-overlay {
	position: relative;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.4);
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	padding: 0 20px;
}

.banner-title {
	color: #FFFFFF;
	font-size: 48px;
	margin-bottom: 20px;
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.32);
}

.banner-subtitle {
	color: #FFFFFF;
	font-size: 24px;
	max-width: 800px;
	margin-bottom: 30px;
	text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.32);
}

.banner-button {
	background-color: #FF0000;
	color: #FFFFFF;
	padding: 12px 30px;
	border-radius: 4px;
	font-weight: 700;
	text-transform: uppercase;
	transition: background-color 0.3s ease;
}

.banner-button:hover {
	background-color: #cc0000;
}

/* AJUSTES PARA O BANNER DA PÁGINA (SOBRE NÓS, REGIÕES, ETC.) */
.page-banner {
    position: relative;
    height: 300px; /* Altura padrão para o banner */
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #FFFFFF;
    overflow: hidden; /* Garante que a imagem de fundo não transborde */
    margin-bottom: 40px; /* Espaçamento abaixo do banner */
  	opacity: 0.6;
}

/* ===== SEÇÕES DE CONTEÚDO ===== */
.section {
	margin-bottom: 60px;
}

.section-header {
	margin-bottom: 30px;
	text-align: center;
	position: relative;
}

.section-title {
	display: inline-block;
	position: relative;
	padding-bottom: 15px;
}

.section-title::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 80px;
	height: 3px;
	background-color: #FF0000;
}

.section-description {
	max-width: 800px;
	margin: 0 auto 30px;
	text-align: center;
	color: #666666;
}

/* ===== CATEGORIAS ===== */
.categories-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
	gap: 32px;
	margin-top: 40px;
}

.category-card {
	position: relative;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
	transition: transform 0.2s, box-shadow 0.2s;
	min-height: 320px;
	background: #f5f0e1;
}

.category-card:hover {
	transform: translateY(-8px) scale(1.03);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.region-image {
	width: 100%;
	height: 200px;
	background-size: cover;
	background-position: center;
	filter: brightness(0.75);
	transition: filter 0.3s;
}

.category-card:hover .region-image {
	filter: brightness(0.95) blur(1px);
}

.region-overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	padding: 28px 20px 18px 20px;
	background: linear-gradient(0deg, rgba(0, 0, 0, 0.7) 70%, rgba(0, 0, 0, 0) 100%);
	color: #fff;
	box-sizing: border-box;
}

.region-title {
	font-size: 1.5rem;
	font-family: 'Playfair Display', serif;
	font-weight: 700;
	margin-bottom: 10px;
}

.region-descricao {
	font-size: 1rem;
	margin-bottom: 18px;
	color: #f5f0e1;
}

.region-button {
	background: #FF0000;
	color: #fff;
	padding: 10px 22px;
	border-radius: 4px;
	font-weight: 700;
	text-transform: uppercase;
	font-size: 0.95rem;
	letter-spacing: 1px;
	transition: background 0.2s;
}

.region-button:hover {
	background: #cc0000;
	color: #fff;
}

/* ===== CARDS DE RECEITAS ===== */
.recipes-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
}

.recipe-card {
	background-color: #FFFFFF;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.recipe-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.recipe-image {
	height: 200px;
	background-size: cover;
	background-position: center;
}

.recipe-content {
	padding: 20px;
}

.recipe-title {
	font-size: 20px;
	margin-bottom: 10px;
}

.recipe-meta {
	display: flex;
	justify-content: space-between;
	align-items: center; /* Adicionado: Para alinhar verticalmente todos os itens */
	margin-bottom: 15px;
	font-size: 14px;
	color: #666666;
}

.recipe-region {
	display: flex;
	align-items: center;
	color: #006600;
	font-weight: 700;
	font-size: 14px;
}

.recipe-region i {
	margin-right: 5px;
}

.recipe-description {
	margin-bottom: 15px;
	font-size: 14px;
	color: #666666;
	line-height: 1.5;
}

.recipe-footer {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.recipe-rating {
	color: #FFCC00;
}

.recipe-button {
	background-color: #006600;
	color: #FFFFFF;
	padding: 8px 15px;
	border-radius: 4px;
	font-size: 14px;
	transition: background-color 0.3s ease;
}

.recipe-button:hover {
	background-color: #004d00;
}

.recipe-filters {
	text-align: center;
	display: inline;
	border: 1px solid black;
}

/* ==== MAPA ====*/
section#mapa-regioes {
	width: 100%;
	max-width: 1000px;
	margin: 0 auto;
	padding: 0 15px;
	text-align: center;
}

article#regiao-mapa {
	position: relative;
	width: 100%;
	min-height: 400px;
	overflow: hidden;
	border-radius: 10px;
}

.p-mapa {
	position: relative;
	text-align: center;
	font-size: 16px;
	color: #333333;
}

/* ===== PÁGINA DE RECEITA ===== */
.recipe-header {
	margin-bottom: 30px;
}

.recipe-info {
	display: flex;
	justify-content: space-between;
	margin-bottom: 30px;
	padding-bottom: 20px;
	border-bottom: 1px solid #eee;
}

.recipe-info-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}

.recipe-info-label {
	font-size: 14px;
	color: #666666;
	margin-bottom: 5px;
}

.recipe-info-value {
	font-weight: 700;
	color: #333333;
}

.recipe-main {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 30px;
	margin-bottom: 40px;
}

.recipe-image-main {
	border-radius: 8px;
	overflow: hidden;
}

.recipe-ingredients {
	background-color: #F5F0E1;
	padding: 30px;
	border-radius: 8px;
}

.ingredients-title {
	margin-bottom: 20px;
	color: #006600;
}

.ingredients-list {
	list-style-position: inside;
}

.ingredients-list li {
	margin-bottom: 10px;
	padding-left: 20px;
	position: relative;
}

.ingredients-list li::before {
	content: '•';
	position: absolute;
	left: 0;
	color: #FF0000;
}

.recipe-instructions {
	margin-bottom: 40px;
}

.instructions-title {
	color: #006600;
	margin-bottom: 20px;
}

.instructions-list {
	list-style-position: outside;
	padding-left: 20px;
}

.instructions-list li {
	margin-bottom: 20px;
}

.recipe-tips {
	background-color: #F5F0E1;
	padding: 30px;
	border-radius: 8px;
	margin-bottom: 40px;
}

.tips-title {
	color: #FF0000;
	margin-bottom: 20px;
}

.recipe-history {
	margin-bottom: 40px;
}

.history-title {
	color: #003366;
	margin-bottom: 20px;
}

/* ===== RODAPÉ ===== */
.footer {
	background-color: #333333;
	color: #FFFFFF;
	padding: 60px 0 30px;
}

.footer-container {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 30px;
}

.footer-column h4 {
	color: #FFFFFF;
	margin-bottom: 20px;
	padding-bottom: 10px;
	border-bottom: 2px solid #FF0000;
}

.footer-links {
	list-style: none;
}

.footer-link {
	margin-bottom: 10px;
  	color: #cccccc;
	transition: color 0.3s ease;
}

.footer-link a {
	color: #cccccc;
	transition: color 0.3s ease;
}

.footer-link a:hover {
	color: #FFFFFF;
}

.footer-social {
	display: flex;
	gap: 15px;
	margin-top: 20px;
}

.social-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	background-color: #FFFFFF;
	border-radius: 50%;
	color: #333333;
	transition: background-color 0.3s ease, color 0.3s ease;
}

.social-icon:hover {
	background-color: #FF0000;
	color: #FFFFFF;
}

.footer-bottom {
	margin-top: 40px;
	padding-top: 20px;
	border-top: 1px solid #444444;
	text-align: center;
	font-size: 14px;
	color: #cccccc;
}

/* ==== LOGIN E CADASTRO (UNIFICADO) ==== */
.auth-page {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 100vh;
	background: #f5f5cd;
	padding: 40px 10px;
}

.auth-form {
	width: 100%;
	max-width: 400px;
	background: #fff;
	border-radius: 12px;
	box-shadow: 0 2px 16px rgba(0, 0, 0, 0.10);
	padding: 32px 24px;
	margin: 0 auto;
	animation: fadeIn 0.5s;
}

.auth-form h2 {
	text-align: center;
	color: #006600;
	font-family: 'Playfair Display', serif;
	font-size: 28px;
	margin-bottom: 24px;
}

.form-group {
	margin-bottom: 18px;
}

.form-group label {
	display: block;
	color: #006600;
	font-size: 16px;
	font-weight: 600;
	margin-bottom: 8px;
}

.form-group input {
	width: 100%;
	padding: 12px;
	border: 1px solid #ccc;
	border-radius: 5px;
	font-size: 16px;
	color: #333;
	background: #fafaf7;
	transition: border-color 0.3s;
}

.form-group input:focus {
	border-color: #006600;
	outline: none;
}

.btn-primary {
	width: 100%;
	padding: 12px;
	background: #006600;
	color: #fff;
	border: none;
	border-radius: 5px;
	font-size: 17px;
	font-weight: 700;
	cursor: pointer;
	transition: background 0.3s;
	margin-top: 10px;
}

.btn-primary:hover {
	background: #004d00;
}

.auth-link {
	margin-top: 18px;
	text-align: center;
	font-size: 15px;
}

.auth-link a {
	color: #006600;
	text-decoration: underline;
	font-weight: 600;
}

.auth-link a:hover {
	color: #FF0000;
}

.auth-error,
.auth-success {
	text-align: center;
	margin-bottom: 12px;
	font-size: 14px;
	border-radius: 4px;
	padding: 8px 0;
}

.auth-error {
	background: #ffeaea;
	color: #b30000;
}

.auth-success {
	background: #eaffea;
	color: #007a00;
}

/* ===== BOTÃO PARA SALVAR RECEITA ===== */
.recipe-page form[action="/receitas/salvar"] {
	text-align: right;
	margin-bottom: 20px;
	width: 100%;
	padding: 20px;
	background-color: #f5f0e1;
}

.recipe-page .btn-success {
	background-color: #006600;
	color: #fff;
	padding: 10px 20px;
	border: none;
	border-radius: 5px;
	font-size: 16px;
	cursor: pointer;
	transition: background-color 0.3s ease;
}

.recipe-page .btn-success:hover {
	background-color: #004d00;
}

/* ===== AVALIAÇÃO ===== */
.avaliacao-estrelas {
	display: flex;
	/* REMOVIDO: flex-direction: row-reverse; */ /* Padrão é 'row' para preenchimento da esquerda para a direita */
	align-items: center;
	gap: 7px;
}

/* Estilo base para todas as estrelas (estado vazio) */
.avaliacao-estrelas i.estrela-avaliavel {
    color: #ccc; /* Cor padrão para estrelas vazias */
    transition: color 0.2s ease, transform 0.2s ease;
    cursor: pointer;
}

/* Estilo para estrelas que já estão preenchidas (definidas pela lógica EJS) */
.avaliacao-estrelas i.fas.fa-star {
	color: #FFD700; /* Garante que estrelas preenchidas pelo EJS tenham a cor correta */
}

/* Efeito de Hover: Quando o mouse paira sobre o contentor das estrelas, todas as estrelas tornam-se amarelas */
.avaliacao-estrelas:hover i.estrela-avaliavel {
    color: #FFD700;
}

/* Em seguida, qualquer estrela que seja um "irmão" (seguinte na ordem HTML) da estrela sobre a qual o mouse está a pairar, reverte para cinzento.
   Isso cria o efeito de preenchimento da esquerda para a direita. */
.avaliacao-estrelas i.estrela-avaliavel:hover ~ i.estrela-avaliavel {
    color: #ccc;
}

/* Adiciona o efeito de escala à estrela individual sobre a qual o mouse está a pairar */
.avaliacao-estrelas i.estrela-avaliavel:hover {
	transform: scale(1.2);
}

.media-nota {
	margin-left: 10px;
	font-weight: 600;
	color: #333;
}

.total-avaliacoes {
	margin-left: 8px;
	font-size: 1em;
	color: #666;
}

/* ===== LISTA DE COMENTÁRIOS ===== */
.recipe-page .comentario {
	background-color: #F5F0E1;
	padding: 15px;
	border-radius: 8px;
	margin-bottom: 15px;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.recipe-page .comentario strong {
	font-size: 16px;
	color: #006600;
	display: block;
	margin-bottom: 5px;
}

.recipe-page .comentario p {
	font-size: 14px;
	color: #333;
	margin: 0;
}

/* ===== FORMULÁRIO DE COMENTÁRIO ===== */
.recipe-page form[action="/receitas/comentar"] {
	margin-top: 20px;
}

.recipe-page textarea[name="comentario"] {
	width: 100%;
	padding: 10px;
	border: 1px solid #ccc;
	border-radius: 5px;
	font-size: 14px;
	resize: vertical;
	min-height: 100px;
	margin-bottom: 10px;
}

.recipe-page form[action="/receitas/comentar"] button {
	background-color: #006600;
	color: #fff;
	padding: 10px 20px;
	border: none;
	border-radius: 5px;
	font-size: 16px;
	cursor: pointer;
	transition: background-color 0.3s ease;
}

.recipe-page form[action="/receitas/comentar"] button:hover {
	background-color: #004d00;
}

/* ===== UTILITÁRIOS ===== */
.mt-1 {
	margin-top: 10px;
}

.mt-2 {
	margin-top: 20px;
}

.mt-3 {
	margin-top: 30px;
}

.mt-4 {
	margin-top: 40px;
}

.mt-5 {
	margin-top: 50px;
}

.mb-1 {
	margin-bottom: 10px;
}

.mb-2 {
	margin-bottom: 20px;
}

.mb-3 {
	margin-bottom: 30px;
}

.mb-4 {
	margin-bottom: 40px;
}

.mb-5 {
	margin-bottom: 50px;
}

.py-1 {
	padding-top: 10px;
	padding-bottom: 10px;
}

.py-2 {
	padding-top: 20px;
	padding-bottom: 20px;
}

.py-3 {
	padding-top: 30px;
	padding-bottom: 30px;
}

.py-4 {
	padding-top: 40px;
	padding-bottom: 40px;
}

.py-5 {
	padding-top: 50px;
	padding-bottom: 50px;
}

.px-1 {
	padding-left: 10px;
	padding-right: 10px;
}

.px-2 {
	padding-left: 20px;
	padding-right: 20px;
}

.px-3 {
	padding-left: 30px;
	padding-right: 30px;
}

.px-4 {
	padding-left: 40px;
	padding-right: 40px;
}

.px-5 {
	padding-left: 50px;
	padding-right: 50px;
}

/* ===== ESTILOS PARA PÁGINA DE CATEGORIAS ===== */
.categories-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 30px;
	margin-bottom: 50px;
}

.category-card {
	position: relative;
	height: 300px;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.category-image {
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center;
	transition: transform 0.5s ease;
}

.category-card:hover .category-image {
	transform: scale(1.05);
}

.category-overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	padding: 20px;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0));
	color: #FFFFFF;
	transition: height 0.3s ease;
}

.category-card:hover .category-overlay {
	height: 70%;
}

.category-title {
	font-size: 24px;
	margin-bottom: 10px;
	color: #FFFFFF;
}

.category-description {
	font-size: 14px;
	margin-bottom: 15px;
	opacity: 0.9;
	display: none;
}

.category-card:hover .category-description {
	display: block;
}

.category-count {
	display: inline-block;
	background-color: #FF0000;
	color: #FFFFFF;
	padding: 5px 10px;
	border-radius: 20px;
	font-size: 12px;
	margin-bottom: 15px;
}

.category-button {
	display: inline-block;
	background-color: #FFFFFF;
	color: #006600;
	padding: 8px 15px;
	border-radius: 4px;
	font-size: 14px;
	font-weight: 700;
	transition: background-color 0.3s ease;
}

.category-button:hover {
	background-color: #FFCC00;
	color: #333333;
}

ul {
	list-style: none;
}

/* ===== ESTILOS PARA PÁGINA DE REGIÃO ===== */
.region-banner {
	height: 400px;
	background-size: cover;
	background-position: center;
	position: relative;
	margin-bottom: 40px;
	list-style: none;
}

.region-description {
	margin-bottom: 50px;
}

.region-content {
	max-width: 800px;
	margin: 0 auto;
}

.region-content h2 {
	color: #006600;
	margin-bottom: 20px;
	text-align: center;
}

.region-content p {
	margin-bottom: 20px;
	line-height: 1.8;
}

.region-highlights {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
	margin-top: 40px;
}

.highlight-item {
	text-align: center;
	padding: 20px;
	background-color: #F5F0E1;
	border-radius: 8px;
}

.highlight-item i {
	font-size: 36px;
	color: #FF0000;
	margin-bottom: 15px;
}

.highlight-item h3 {
	font-size: 18px;
	margin-bottom: 10px;
	color: #006600;
}

.recipe-filters {
	margin-bottom: 40px;
}

.filters-container {
	background-color: #F5F0E1;
	padding: 20px;
	border-radius: 8px;
}

.filters-container h3 {
	margin-bottom: 20px;
	color: #006600;
	text-align: center;
}

.filter-group {
	display: flex;
	align-items: center;
	margin-bottom: 15px;
}

.filter-group label {
	width: 150px;
	font-weight: 700;
}

.filter-select {
	flex: 1;
	padding: 10px;
	border: 1px solid #ddd;
	border-radius: 4px;
}

.filter-button {
	display: block;
	width: 200px;
	margin: 20px auto 0;
	padding: 10px 15px;
	background-color: #006600;
	color: #FFFFFF;
	border: none;
	border-radius: 4px;
	font-weight: 700;
	cursor: pointer;
	transition: background-color 0.3s ease;
}

.filter-button:hover {
	background-color: #004d00;
}

.region-facts {
	margin-top: 60px;
}

.facts-container {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 30px;
}

.fact-item {
	display: flex;
	background-color: #FFFFFF;
	padding: 20px;
	border-radius: 8px;
	box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.fact-icon {
	font-size: 36px;
	color: #FF0000;
	margin-right: 20px;
}

.fact-content h3 {
	font-size: 18px;
	margin-bottom: 10px;
	color: #006600;
}

.pagination {
	display: flex;
	justify-content: center;
	margin-top: 40px;
}

.pagination-link,
.pagination-current,
.pagination-next {
	display: inline-block;
	padding: 8px 15px;
	margin: 0 5px;
	border-radius: 4px;
}

.pagination-current {
	background-color: #006600;
	color: #FFFFFF;
}

.pagination-link {
	background-color: #f0f0f0;
	color: #333333;
}

.pagination-next {
	background-color: #f0f0f0;
	color: #333333;
	padding-right: 20px;
}

.pagination-link:hover,
.pagination-next:hover {
	background-color: #FFCC00;
	color: #333333;
}

/* ===== ESTILOS PARA PÁGINA DE RECEITA ===== */
.breadcrumbs {
	background-color: #f0f0f0;
	padding: 10px 0;
	margin-bottom: 20px;
}

.breadcrumbs-list {
	display: flex;
	list-style: none;
}

.breadcrumbs-list li {
	position: relative;
	padding-right: 25px;
	margin-right: 15px;
}

.breadcrumbs-list li:after {
	content: '>';
	position: absolute;
	right: 0;
	color: #666666;
}

.breadcrumbs-list li:last-child {
	padding-right: 0;
	margin-right: 0;
	color: #666666;
}

.breadcrumbs-list li:last-child:after {
	display: none;
}

.breadcrumbs-list a {
	color: #006600;
}

.breadcrumbs-list a:hover {
	text-decoration: underline;
}

.recipe-page {
	margin-bottom: 60px;
}

.servings-control {
	display: flex;
	align-items: center;
	margin-bottom: 20px;
}

.servings-control span {
	margin-right: 10px;
	font-weight: 700;
}

.servings-btn {
	width: 40px;
	height: 40px;
	border: 1px solid #ddd;
	background-color: #FFFFFF;
	border-radius: 4px;
	margin-right: 5px;
	cursor: pointer;
	transition: all 0.3s ease;
}

.servings-btn.active {
	background-color: #006600;
	color: #FFFFFF;
	border-color: #006600;
}

.servings-btn:hover:not(.active) {
	background-color: #f0f0f0;
}

.recipe-actions {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin: 40px 0;
	padding: 20px;
	background-color: #F5F0E1;
	border-radius: 8px;
}

.action-button {
	padding: 10px 20px;
	background-color: #FFFFFF;
	color: #333333;
	border: 1px solid #ddd;
	border-radius: 4px;
	cursor: pointer;
	transition: all 0.3s ease;
}

.action-button:hover {
	background-color: #f0f0f0;
}

.share-buttons {
	display: flex;
	align-items: center;
}

.share-buttons span {
	margin-right: 10px;
	font-weight: 700;
}

.share-button {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background-color: #FFFFFF;
	border: 1px solid #ddd;
	margin-left: 5px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.3s ease;
}

.share-button:hover {
	background-color: #f0f0f0;
}

.recipe-pairing {
	margin-bottom: 40px;
	padding: 30px;
	background-color: #F5F0E1;
	border-radius: 8px;
}

/* Adicionado para garantir que os itens da harmonização quebrem a linha */
.recipe-pairing ul li {
    display: block; /* Garante que cada item se comporte como um bloco */
    margin-bottom: 10px; /* Adiciona espaço entre os itens */
    white-space: normal; /* Garante que o texto dentro do item quebre a linha */
    word-wrap: break-word; /* Para palavras longas que não quebram */
    overflow-wrap: break-word; /* Equivalente moderno de word-wrap */
}

.pairing-title {
	color: #006600;
	margin-bottom: 20px;
}

.recipe-comments {
	margin-top: 60px;
}

.comments-title {
	margin-bottom: 20px;
}

.comments-login-message {
	padding: 20px;
	background-color: #f0f0f0;
	border-radius: 8px;
	text-align: center;
}

.comments-login-message a {
	color: #006600;
	font-weight: 700;
}

.comments-login-message a:hover {
	text-decoration: underline;
}

/* ===== ESTILOS PARA PÁGINA SOBRE NÓS (AJUSTADOS) ===== */
.about-page .container {
    padding-top: 20px;
    padding-bottom: 40px;
}

.about-section,
.mission-content, /* Renomeado para consistência */
.values-section,
.contact-section {
    padding: 40px;
    margin-bottom: 40px;
    background-color: #f9f9f9; /* Fundo mais claro para seções */
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Sombra suave */
}

.about-section h2,
.mission-content h2,
.values-section h2,
.contact-section h2 {
    text-align: center;
    margin-bottom: 30px;
    color: #333333;
    font-size: 36px;
    border-bottom: 2px solid #006600; /* Linha de destaque */
    padding-bottom: 10px;
    display: inline-block; /* Para a linha ficar apenas no texto */
    width: auto;
}

.about-content p {
    margin-bottom: 15px;
    line-height: 1.8;
    text-align: justify;
}

/* Seção Missão */
.mission-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); /* Layout responsivo */
    gap: 30px;
    margin-top: 30px;
}

.mission-item {
    display: flex;
    align-items: flex-start;
    background-color: #FFFFFF;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mission-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

.mission-icon {
    font-size: 36px;
    color: #006600; /* Cor ajustada para o verde principal */
    margin-right: 20px;
    flex-shrink: 0; /* Evita que o ícone encolha */
}

.mission-text h3 {
    font-size: 24px;
    color: #333333;
    margin-bottom: 10px;
}

.mission-text p {
    font-size: 16px;
    color: #555555;
    line-height: 1.6;
}

/* Seção Valores */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.value-item {
    text-align: center;
    background-color: #FFFFFF;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

.value-icon {
    font-size: 48px;
    color: #006600; /* Cor ajustada para o verde principal */
    margin-bottom: 20px;
}

.value-item h3 {
    font-size: 28px;
    color: #333333;
    margin-bottom: 15px;
}

.value-item p {
    font-size: 16px;
    color: #555555;
    line-height: 1.6;
}

/* Seção Contacto */
.contact-container {
    display: flex; /* Alterado de grid para flex para melhor controlo de quebra */
    flex-wrap: wrap; /* Permite que os itens quebrem para a próxima linha em telas menores */
    gap: 40px;
    margin-top: 30px;
}

.contact-info,
.contact-form {
    flex: 1; /* Distribui o espaço igualmente */
    min-width: 300px; /* Largura mínima para cada coluna */
}

.contact-info p {
    margin-bottom: 20px;
    line-height: 1.7;
}

.contact-list {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.contact-list li {
    margin-bottom: 10px;
    font-size: 18px;
    color: #555555;
}

.contact-list li i {
    color: #006600;
    margin-right: 10px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-link {
    display: inline-flex;
    align-items: center;
    padding: 10px 15px;
    background-color: #006600; /* Cor ajustada para o verde principal */
    color: #FFFFFF;
    border-radius: 5px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.social-link:hover {
    background-color: #004d00;
    transform: translateY(-2px);
}

.social-link i {
    margin-right: 8px;
}

/* Formulário de Contacto */
.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #333333;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #dddddd;
    border-radius: 5px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.contact-form input[type="text"]:focus,
.contact-form input[type="email"]:focus,
.contact-form textarea:focus {
    border-color: #006600;
    outline: none;
}

.contact-form textarea {
    resize: vertical; /* Permite redimensionar verticalmente */
    min-height: 120px;
}

.submit-button {
    display: block;
    width: 100%;
    padding: 15px 20px;
    background-color: #006600;
    color: #FFFFFF;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.submit-button:hover {
    background-color: #004d00;
    transform: translateY(-2px);
}

/* Estilos para mensagens de feedback (sucesso/erro) */
.contact-form p[style] { /* Para manter a especificidade do seu HTML */
    padding: 10px;
    border-radius: 5px;
    margin-top: -10px; /* Ajusta o espaçamento */
    margin-bottom: 20px;
}

.contact-form p[style][color="green"] {
    background-color: #e6ffe6;
    border: 1px solid #00cc00;
}

.contact-form p[style][color="red"] {
    background-color: #ffe6e6;
    border: 1px solid #cc0000;
}

/* ===== ESTILOS PARA O FORMULÁRIO DE CRIAÇÃO/EDIÇÃO DE RECEITAS (NOVA.TXT) ===== */
.recipe-form {
    background-color: #FFFFFF;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
}

.recipe-form h1 {
    text-align: center;
    margin-bottom: 30px;
    color: #006600;
}

.form-section {
    background-color: #f9f9f9;
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 30px;
    border: 1px solid #eee;
}

.form-section h2 {
    color: #006600;
    font-size: 24px;
    margin-bottom: 25px;
    border-bottom: 2px solid #FFCC00; /* Linha amarela para destaque */
    padding-bottom: 10px;
    display: inline-block;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333333;
}

.form-group input[type="text"],
.form-group input[type="number"],
.form-group input[type="file"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    color: #333;
    background-color: #fff;
    transition: border-color 0.3s ease;
}

.form-group input[type="text"]:focus,
.form-group input[type="number"]:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #006600;
    outline: none;
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

/* Estilos para grupos de itens dinâmicos (ingredientes, passos, dicas) */
.ingredient-group,
.passo-group,
.dica-group {
    background-color: #f0f0f0;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    border: 1px dashed #ccc; /* Borda tracejada para indicar agrupamento */
    position: relative; /* Para posicionar o botão de remover */
}

.remove-item-btn {
    background-color: #dc3545; /* Vermelho */
    color: white;
    padding: 8px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.9em;
    transition: background-color 0.3s ease;
    margin-top: 10px; /* Espaçamento acima do botão */
    display: block; /* Ocupa a largura total do seu container */
    width: fit-content; /* Ajusta a largura ao conteúdo */
    margin-left: auto; /* Alinha à direita */
}

.remove-item-btn:hover {
    background-color: #c82333;
}

#add-ingrediente-btn,
#add-passo-btn,
#add-dica-btn {
    background-color: #006600; /* Verde */
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1em;
    transition: background-color 0.3s ease;
    margin-top: 20px;
    margin-bottom: 20px;
    display: inline-block; /* Permite que os botões fiquem na mesma linha se houver espaço */
}

#add-ingrediente-btn:hover,
#add-passo-btn:hover,
#add-dica-btn:hover {
    background-color: #004d00;
}

/* Estilo para o botão de submissão final do formulário */
.recipe-form .btn-primary {
    margin-top: 30px;
    padding: 15px 25px;
    font-size: 1.1em;
    font-weight: bold;
}

/* Estilo para a imagem atual na edição */
.recipe-form .form-group img {
    margin-top: 10px;
    border: 1px solid #ddd;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}


/* ===== MEDIA QUERIES PARA RESPONSIVIDADE ===== */

/* Tablets (landscape) e Desktops pequenos */
@media (max-width: 1124px) { /* Ajustado para 1124px para ser consistente com o seu CSS */
	h1 { font-size: 28px; }
	h2 { font-size: 24px; }
	h3 { font-size: 20px; }

	.header-container,
	.nav-container,
	.nav-list {
		flex-direction: column;
		align-items: center;
	}

	.search-bar,
	.search-input {
		width: 100%;
		margin: 10px 0;
	}

	.banner {
		height: 320px;
	}

	.banner-title {
		font-size: 28px;
	}

	.banner-subtitle {
		font-size: 16px;
	}

	.recipes-grid,
	.footer-container {
		grid-template-columns: 1fr;
	}

	.recipe-main {
		grid-template-columns: 1fr;
	}

    /* Ajustes específicos para a página Sobre Nós */
    .about-section h2,
    .mission-content h2,
    .values-section h2,
    .contact-section h2 {
        font-size: 32px;
    }

    .mission-items,
    .values-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    /* Ajustes para o formulário de receitas */
    .recipe-form {
        padding: 20px;
    }
    .form-section {
        padding: 15px;
    }
    .form-section h2 {
        font-size: 22px;
    }
}

/* Tablets (portrait) e Smartphones grandes */
@media (max-width: 1023px) { /* Mantido 1023px para o seu breakpoint existente */
	.categories-grid,
	.region-highlights,
	.team-grid,
	.values-grid {
		grid-template-columns: 1fr 1fr;
	}

	.facts-container,
	.mission-items,
	.contact-container {
		grid-template-columns: 1fr;
	}

	/* Mapa responsivo */
	section#mapa-regioes {
		width: 100%;
		max-width: 100%;
		padding: 0 15px;
	}

	article#regiao-mapa {
		min-height: 280px;
	}

    /* Ajustes específicos para a página Sobre Nós */
    .page-banner {
        height: 250px;
    }

    .banner-title {
        font-size: 36px;
    }

    .banner-subtitle {
        font-size: 16px;
    }

    .about-section,
    .mission-content,
    .values-section,
    .contact-section {
        padding: 30px;
        margin-bottom: 30px;
    }

    .about-section h2,
    .mission-content h2,
    .values-section h2,
    .contact-section h2 {
        font-size: 28px;
        margin-bottom: 25px;
    }

    .mission-item {
        flex-direction: column; /* Ícone e texto empilhados */
        text-align: center;
        align-items: center;
    }

    .mission-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }

    .contact-container {
        flex-direction: column; /* Colunas empilhadas */
    }

    .contact-info,
    .contact-form {
        min-width: unset; /* Remove largura mínima para se ajustar */
        width: 100%;
    }
}

/* Smartphones grandes e pequenos */
@media (max-width: 767px) { /* Mantido 767px para o seu breakpoint existente */
	.categories-grid,
	.region-highlights,
	.team-grid,
	.values-grid,
	.about-section {
		grid-template-columns: 1fr;
	}

	.recipe-actions {
		flex-direction: column;
		gap: 20px;
	}

	.share-buttons {
		width: 100%;
		justify-content: center;
	}

	.filter-group {
		flex-direction: column;
		align-items: flex-start;
	}

	.filter-group label {
		margin-bottom: 5px;
	}

	.filter-select {
		width: 100%;
	}

	.banner-title {
		font-size: 24px;
	}

	.banner-subtitle {
		font-size: 14px;
	}

    /* Ajustes específicos para a página Sobre Nós */
    .page-banner {
        height: 200px;
    }

    .banner-title {
        font-size: 28px; /* Ajustado para ser um pouco maior em mobile */
    }

    .banner-subtitle {
        font-size: 14px;
    }

    .about-section,
    .mission-content,
    .values-section,
    .contact-section {
        padding: 20px;
        margin-bottom: 20px;
    }

    .about-section h2,
    .mission-content h2,
    .values-section h2,
    .contact-section h2 {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .mission-items,
    .values-grid {
        grid-template-columns: 1fr; /* Uma coluna em telas muito pequenas */
    }

    .social-links {
        flex-direction: column; /* Botões sociais empilhados */
        align-items: center;
    }

    .social-link {
        width: 100%;
        justify-content: center;
    }

    /* Ajustes para o formulário de receitas */
    .recipe-form {
        padding: 15px;
    }
    .form-section {
        padding: 10px;
    }
    .form-section h2 {
        font-size: 20px;
        margin-bottom: 15px;
    }
    .remove-item-btn {
        width: 100%; /* Ocupa a largura total em telas pequenas */
        margin-left: 0;
    }
    #add-ingrediente-btn,
    #add-passo-btn,
    #add-dica-btn {
        width: 100%;
        display: block;
        margin-left: 0;
        margin-right: 0;
    }
    .ingredient-group,
    .passo-group,
    .dica-group {
        padding: 15px;
    }
}

/* Estilos para a secção de valor nutricional colapsável */
.nutritional-details {
    margin-top: 30px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background-color: #fefefe;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    overflow: hidden; /* Garante que os cantos arredondados funcionem */
}

.nutritional-summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background-color: #f0f0f0;
    cursor: pointer;
    outline: none; /* Remove o contorno de foco padrão */
    user-select: none; /* Impede a seleção de texto ao clicar */
    border-bottom: 1px solid #e0e0e0;
}

.nutritional-summary h2 {
    margin: 0; /* Remove a margem padrão do h2 para alinhar melhor */
    font-size: 20px;
    color: #333;
}

.nutritional-summary .arrow-icon {
    transition: transform 0.3s ease; /* Animação para a seta */
    color: #555;
    font-size: 1.2em;
}

/* Rotação da seta quando o <details> está aberto */
.nutritional-details[open] .nutritional-summary .arrow-icon {
    transform: rotate(180deg);
}

/* Estilos para a Tabela Nutricional (mantidos e ligeiramente ajustados) */
.nutritional-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 0; /* Remove margem superior, já que está dentro do details */
    background-color: #f9f9f9;
    border-radius: 0 0 8px 8px; /* Apenas cantos inferiores arredondados */
}

.nutritional-table th,
.nutritional-table td {
    padding: 12px 20px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.nutritional-table th {
    background-color: #e9e9e9;
    font-weight: bold;
    color: #444;
    text-transform: uppercase;
    font-size: 0.85em;
}

.nutritional-table tbody tr:nth-child(odd) {
    background-color: #ffffff;
}

.nutritional-table tbody tr:hover {
    background-color: #f5f5f5;
}

.nutritional-table td strong {
    color: #555;
}

/* Remove a borda inferior da última linha da tabela */
.nutritional-table tbody tr:last-child td {
    border-bottom: none;
}


/* Ajustes para responsividade */
@media (max-width: 600px) {
    .nutritional-summary {
        padding: 12px 15px;
    }
    .nutritional-summary h2 {
        font-size: 18px;
    }

    .nutritional-table thead {
        display: none; /* Oculta o cabeçalho em telas pequenas */
    }

    .nutritional-table,
    .nutritional-table tbody,
    .nutritional-table tr,
    .nutritional-table td {
        display: block; /* Faz com que os elementos da tabela se comportem como blocos */
        width: 100%;
    }

    .nutritional-table tr {
        margin-bottom: 10px;
        border: 1px solid #ddd;
        border-radius: 6px;
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    }

    .nutritional-table td {
        text-align: right;
        padding-left: 50%;
        position: relative;
    }

    .nutritional-table td::before {
        content: attr(data-label); /* Usa o atributo data-label para exibir o nome do nutriente */
        position: absolute;
        left: 15px;
        width: calc(50% - 30px);
        padding-right: 10px;
        white-space: nowrap;
        text-align: left;
        font-weight: bold;
        color: #333;
    }
}

/* Ajustes para responsividade */
@media (max-width: 600px) {
    .nutritional-table thead {
        display: none; /* Oculta o cabeçalho em telas pequenas */
    }

    .nutritional-table,
    .nutritional-table tbody,
    .nutritional-table tr,
    .nutritional-table td {
        display: block; /* Faz com que os elementos da tabela se comportem como blocos */
        width: 100%;
    }

    .nutritional-table tr {
        margin-bottom: 15px;
        border: 1px solid #ddd;
        border-radius: 8px;
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    }

    .nutritional-table td {
        text-align: right;
        padding-left: 50%;
        position: relative;
    }

    .nutritional-table td::before {
        content: attr(data-label); /* Usa o atributo data-label para exibir o nome do nutriente */
        position: absolute;
        left: 15px;
        width: calc(50% - 30px);
        padding-right: 10px;
        white-space: nowrap;
        text-align: left;
        font-weight: bold;
        color: #333;
    }
}

/* ===== Até 480px ===== */
@media (max-width: 480px) {
	.logo img {
		/* AUMENTADO: Ajuste a altura do logótipo em telas pequenas aqui */
		height: 60px; /* Era 40px, agora 60px para ser maior */
	}

	.nav-link {
		padding: 10px 12px;
		font-size: 12px;
	}

	.banner {
		height: 250px;
	}

	.banner-title {
		font-size: 20px;
	}

	.banner-subtitle {
		font-size: 13px;
	}

	.recipe-title {
		font-size: 18px;
	}

	.recipe-description {
		font-size: 13px;
	}

	.auth-form {
		padding: 16px 10px;
		max-width: 95vw;
	}

	.auth-form h2 {
		font-size: 20px;
	}

	/* mapa */
	#mapa,
	article#regiao-mapa {
		min-height: 220px;
	}
}

/* ===== Até 375px (celulares muito pequenos) ===== */
@media (max-width: 375px) {
	.header-container {
		flex-direction: column;
		align-items: stretch;
	}

	.search-bar {
		margin: 10px 0;
	}

	#mapa {
		width: 100%;
		min-height: 200px;
	}
}
