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

html,
body {
	height: 100%;
	min-height: 100vh;
	font-family: "Libertinus Serif Display", system-ui;
	background-color: #FEF5F5;
	background-attachment: fixed;
	background-size: cover;
	color: #3b2f3b;
	font-weight: normal;
}

body {
	display: flex;
	flex-direction: column;
	min-height: 100vh;
	background-color: #FEF5F5 !important;

}

main {
	flex: 1;
	background-color: transparent !important;
}

.login-container {
	text-align: center;
	margin-bottom: 20px;
	font-family: "Libertinus Serif Display", system-ui;
}

/* ============================
   LAYOUT PRINCIPAL
============================ */
.container {
	max-width: 1000px;
	margin: 0 auto;
	padding: 40px 60px;
	text-align: center;
	font-weight: normal;
	background-color: #FEF5F5
}

/* ============================
   HEADER
============================ */
.header {
	flex-wrap: nowrap;
	background-color: #DC3B82;
	color: white;
	padding: 4px 10px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.home-link,
.home-link:visited,
.home-link:hover,
.home-link:active {
	text-decoration: none;
}

.logo-text {
	display: flex;
	align-items: center;
	gap: 5px;
}

/* Logo */
.logo-header {
	width: 60px;
	height: auto;
	display: block;
}

/* Texto "Chá de Vida" */
.header-title {
	font-family: 'Cookie', cursive;
	font-size: 50px;
	color: white;
	line-height: 1;
	position: relative;
	top: 2px;
	user-select: none;
}

/* Navegação */
.nav-links ul {
	display: flex;
	align-items: center;
	gap: 20px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.nav-links a {
	text-decoration: none;
	color: white;
	font-weight: bold;
	font-size: 23px;
	padding: 6px 10px;
	border-radius: 6px;
	transition: background 0.2s, color 0.2s;
	font-family: "Libertinus Serif Display", system-ui;

}

.nav-links a:hover {
	opacity: 0.8;
}

/* feedback de compartilhamento (aparece acima do botão) */
.share-feedback {
  position: absolute;
  top: -36px;
  right: 0;
  background: rgba(0,0,0,0.85);
  color: #fff;
  padding: 6px 10px;
  border-radius: 6px;
  font-size: 13px;
  z-index: 1200;
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity 160ms ease, transform 160ms ease;
  pointer-events: none;
}
.share-feedback.show {
  opacity: 1;
  transform: translateY(0);
}
.compartilhar-container {
	margin-top: 30px;
	text-align: left;
	padding: 8px 0;
}

.share-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    color: #d7479e;
    font-size: 28px;
    margin: 0;
    margin-bottom: 10px;
    cursor: pointer;
    user-select: none;
    transition: 
        color 0.25s ease-in-out,
        transform 0.25s ease,
        filter 0.2s ease;
}

/* NOVO — destaque igual ao ícone */
.share-title:hover {
    transform: scale(1.08);   /* efeito de zoom suave, igual ao ícone */
    filter: brightness(1.12); /* leve brilho */
    color: #d7479e;           /* mantém a cor */
}


.share-title img {
	width: 32px;
	height: 32px;
	margin-left: -10px;
}

.share-title:hover {
	color: #d7479e;
}

.btn-compartilhar {
    cursor: pointer;
    transform: rotate(-45deg); 
    transition: transform 0.25s ease, filter 0.2s;
}

.btn-compartilhar:hover {
    transform: rotate(-45deg) scale(1.18); 
    filter: brightness(1.15);
}


/* Responsivo */
@media (max-width: 600px) {
  .share-title {
    font-size: 22px;
    gap: 10px;
    display: flex;            /* garante alinhamento flexível */
    align-items: center;
    justify-content: flex-start; /* força à esquerda */
    text-align: left;
    width: 100%;
  }

  .btn-compartilhar {
    width: 30px;
    height: 30px;
    margin-left: 0; /* sem margem à esquerda */
    margin-right: auto; /* empurra para a esquerda em containers flex */
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
}




/* Ícones de login e menu */
.login-header {
	width: 30px;
	height: 30px;
	filter: brightness(0) invert(1);
	transition: transform 0.3s ease;
}

.menu-icon {
	width: 46px;
	cursor: pointer;
	display: none;
}


.nav-links a:hover {
	color: #FFD6EB;
	background: #e082b5;
}

/* ============================
   MENU LATERAL (HAMBÚRGUER)
============================ */
.side-menu {
	position: fixed;
	top: 0;
	right: -260px;
	width: 260px;
	height: 100%;
	background: linear-gradient(180deg, #E45694, #A30F50);
	color: white;
	padding: 20px;
	box-shadow: -2px 0 8px rgba(0, 0, 0, 0.2);
	border-radius: 20px 0 0 20px;
	transition: right 0.3s ease-in-out;
	z-index: 1000;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.side-menu.open {
	right: 0;
}

.side-menu .menu-header {
	text-align: center;
	margin-bottom: 30px;
	font-size: 18px;
}

.side-menu ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.side-menu li {
	margin: 0;
}

.side-menu a {
	text-decoration: none;
	color: white;
	font-size: 22px;
	font-weight: bold;
	display: block;
	padding: 12px 16px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.3);
	transition: background 0.2s;
}

.side-menu a:hover {
	background: rgba(255, 255, 255, 0.2);
}

/* Botão de fechar */
.btn-close {
	background: #BD1278;
	border: none;
	padding: 12px;
	border-radius: 10px;
	font-size: 16px;
	font-weight: bold;
	cursor: pointer;
	color: white;
	transition: background 0.2s;
	margin-top: 20px;
}

.btn-close:hover {
	background: #a01065;
}

/* ============================
   LAYOUT PRINCIPAL
============================ */
.container {
	max-width: 1000px;
	margin: 0 auto;
	padding: 40px 60px;
	text-align: center;
	font-weight: normal;
	background-color: #FEF5F5
}

/* ============================
   DEPOIMENTOS PENDENTES
============================ */
.pendentes-section {
	margin-top: 60px;
}

.pendentes-list {
	margin-top: 20px;
}

.pendente-card {
	background-color: #FFF7DF;
	border: 1px solid #FFD6EB;
	border-radius: 16px;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
	text-align: left;
}

.pendente-texto {
	font-family: 'Quicksand', system-ui, sans-serif;
	font-size: 18px;
	color: #3b2f3b;
}

.pendente-nome {
	font-family: "Libertinus Serif Display", system-ui;
	font-weight: bold;
	color: #DC3B82;
	font-size: 20px;
}

.btn-aprovar {
	background-color: #28a745;
	border: none;
	font-weight: bold;
	transition: background-color .2s;
}

.btn-aprovar:hover {
	background-color: #218838;
}


.depoimento-textarea {
	resize: vertical;        /* agora permite redimensionar, mas só vertical */
	min-height: 150px;       /* aumentado – antes 80px */
	max-height: 600px;       /* limite para não ficar gigante */
	overflow: auto;          /* permite scroll caso alcance o limite */
	background-color: #FFF3D0;
	border-color: #FFF3D0;
	font-size: 1.05rem;      /* texto mais confortável */
	padding: 12px;           /* mais espaçamento interno */
	border-radius: 10px;     /* mais moderna */
}
.depoimento-form button {
	background: #c74c83;
	color: white;
	border: none;
	padding: 12px;
	border-radius: 8px;
	font-size: 1rem;
	cursor: pointer;
	transition: background 0.3s;
	margin-bottom: 20px;
}

.depoimento-form button:hover {
	background: #a53a69;
}

.clearfix::after {
	content: "";
	clear: both;
	display: table;
}

/* BOTÃO ADICIONAR DEPOIMENTO */
#btnMostrarFormulario {
	display: inline-block;
	margin: 0 auto 20px auto;
	background: #c74c83;
	width: 40%;
	color: white;
	border: none;
	padding: 12px;
	border-radius: 25px;
	font-size: 25px;
	cursor: pointer;
	transition: background 0.3s;
	font-family: "Libertinus Serif Display", system-ui;
}

#btnMostrarFormulario:hover {
	background: #a53a69;
}

.depoimentos-container {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 25px;
	padding: 20px;
}

.depoimento-card {
	background: #FFF7DF;
	border-radius: 20px;
	padding: 20px;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	text-align: center;
}

.depoimento-card h3 {
	font-family: "Libertinus Serif Display", system-ui;
	font-weight: 900px;
	color: #d7479e;
	margin-bottom: 12px;
	text-align: center;
	font-weight: normal;
}

.section-title {
	font-family: 'Cookie', cursive;
	font-size: 80px;
	color: #d7479e;
	margin: 30px 0 10px;
	margin-top: 90px;
}

.modal-title-depoimento {
	font-family: 'Cookie', cursive;
	font-size: 70px;
	color: #d7479e;
	margin: 30px 0 10px;
}

.label-depoimento {
	font-size: 25px;
	line-height: 1.7;
	color: #d7479e;
	font-family: "Libertinus Serif Display", system-ui;
	margin-bottom: 0px;
	display: block;
	text-align: left;
	font-weight: bold;
}

.description {
	font-size: 18px;
	line-height: 1.7;
	color: rgb(0, 0, 0);
	margin-bottom: 30px;
	font-family: "Libertinus Serif Display", system-ui;
	font-size: 27px;
	text-align: center;
	font-weight: bold;
}

.card-actions a img {
	width: 28px;
	height: 28px;
	margin-left: 12px;
	cursor: pointer;
}

.depoimento-card h3 {
	font-family: "Libertinus Serif Display", system-ui;
	font-weight: 500;
	color: #d7479e;
	margin-bottom: 12px;
	text-align: center;
	font-weight: bold;
	justify-content: space-between;
	font-size: 26px;
}

.texto-depoimento,
.autor-depoimento {
	font-family: "Libertinus Serif Display", system-ui;
	font-size: 24px;
	color: black;
}

.depoimento-card p,
.texto-depoimento,
.pendente-texto {
	word-wrap: break-word;
	overflow-wrap: break-word;
	white-space: normal;
	max-width: 100%;
}

.depoimento-card {
	overflow: hidden;
}

/* ============================
   MODAL 
============================ */

*/ .modal-depoimento-custom {
	background-color: #f0f8ff;
	border: 1px solid #c8e0ff;
	border-radius: 15px !important;
	overflow: hidden;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.header-depoimento-custom {
	background-color: #FFF7DF !important;
	border-bottom: none !important;
	padding: 20px 25px 0 25px !important;

	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	flex-direction: column;
}

.body-depoimento-custom {
	background-color: #FFF7DF !important;
	border-radius: 20px;
	margin-top: -10px;

}

/* Botão de Fechar  */
.btn-close-custom {
	color: #DC3B82;
	opacity: 1;
	filter: none !important;
	font-size: 1.2rem;
	margin-bottom: 5px;
}

.text-muted {
	font-size: 1.2rem;
	color: rgb(60, 60, 60);
	font-weight: bold;
}

.btn-close-custom:hover {
	color: #BD1278;
}


.input-exame-custom {
	background-color: #FFF3D0 !important;
	border: 1px solid #FFF3D0 !important;
	border-radius: 8px !important;
	padding: 10px 15px !important;
	color: #3b2f3b;
	font-family: 'Quicksand', system-ui, sans-serif !important;
	font-size: 16px !important;
	line-height: 1.5;
	box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.05);
	width: 100%;

}

.input-exame-custom::placeholder {
	color: #b5a297 !important;
	font-weight: 300;
}

.input-exame-custom:focus {
	border-color: #DC3B82 !important;
	box-shadow: 0 0 0 0.25rem rgba(220, 59, 130, 0.25) !important;
}

.btn-voltar-custom {
	width: 200px;
	background: #c74c83;
	color: white;
	border: none;
	padding: 12px 20px;
	border-radius: 25px;
	font-size: 20px;
	font-weight: normal;
	cursor: pointer;
	font-family: "Libertinus Serif Display", system-ui;
	transition: background 0.3s, box-shadow 0.3s;
	box-shadow: 0 4px 8px rgba(220, 59, 130, 0.4);
}

.btn-voltar-custom:hover {
	background: #a53a69;
	box-shadow: 0 6px 10px rgba(189, 18, 120, 0.5);
}

.btn-publicar-custom {
	width: 200px;
	background: #26A69A;
	color: white;
	border: none;
	padding: 12px 20px;
	border-radius: 25px;
	font-size: 20px;
	font-weight: normal;
	cursor: pointer;
	font-family: "Libertinus Serif Display", system-ui;
	transition: background 0.3s, box-shadow 0.3s;
	box-shadow: 0 4px 8px rgba(220, 59, 130, 0.4);
}

.btn-publicar-custom:hover {
	background: rgb(32, 138, 128);
}

.form-check {
	display: flex;
	align-items: center;
	gap: 28px;
	font-size: 25px;
	line-height: 1.7;
	color: rgb(0, 0, 0);
	font-family: "Libertinus Serif Display", system-ui;
	font-weight: bold;
	margin-bottom: 50px;
}

.form-check-label {
	margin: 0;
	color: rgb(0, 0, 0);
	margin-bottom: -60px;
	margin-right: 8px;
}

.form-check-input,
#mostrarIdentificacao {
	margin-top: 50px;
	margin-right: 25px;
}

.btn-editar,
.btn-excluir {
	text-decoration: none !important;
}


/* ============================
   MODAL CONFIRMAR EXCLUSÃO
============================ */

.modal-confirm-custom {
	background: #FFF7DF;
	border-radius: 22px;
	padding-top: 15px;
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
	animation: fadeInUp 0.35s ease;
}

/* Ícone de alerta */
.icon-warning {
	width: 70px;
	height: 70px;
	background: #FFD6EB;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 40px;
	color: #DC3B82;
	margin: 0 auto;
	box-shadow: 0 3px 8px rgba(220, 59, 130, 0.25);
}

/* Título */
.modal-confirm-custom .modal-title {
	font-family: 'Cookie', cursive;
	font-size: 46px;
	color: #B93F88;
}

/* Mensagem */
.modal-msg {
	font-size: 20px;
	font-family: "Quicksand", sans-serif;
	color: #3b2f3b;
}

/* Botão cancelar */
.btn-cancelar {
	background: #c74c83;
	color: white;
	border: none;
	font-size: 20px;
	padding: 10px 26px;
	border-radius: 25px;
	font-family: "Libertinus Serif Display", system-ui;
	transition: background 0.2s;
}

.btn-cancelar:hover {
	background: #a53a69;
}

/* Botão excluir */
.btn-excluir-modal {
	background: #26A69A;
	color: white;
	border: none;
	font-size: 20px;
	padding: 10px 26px;
	border-radius: 25px;
	font-family: "Libertinus Serif Display", system-ui;
	transition: background 0.2s;
}

.btn-excluir-modal:hover {
	background: rgb(32, 138, 128);
}

/* Animação suave ao aparecer */
@keyframes fadeInUp {
	from {
		transform: translateY(20px);
		opacity: 0;
	}

	to {
		transform: translateY(0);
		opacity: 1;
	}
}

/* ============================
	DUVIDAS
============================= */
/* Botão de dúvidas fixo */
.duvidas-btn {
	position: fixed;
	bottom: 100px;
	right: 30px;
	width: 60px;
	height: 60px;
	border-radius: 50%;
	background-color: #26A69A;
	color: white;
	border: none;
	cursor: pointer;
	font-size: 28px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
	z-index: 999;
	display: flex;
	align-items: center;
	justify-content: center;
	content: '?';
	font-weight: bold;
	line-height: 1;
}

.duvidas-btn::before {
	content: '?';
	color: white;
	font-size: 28px;
	font-weight: bold;
	line-height: 1;
	display: block;
}


.duvidas-btn img {
	display: none;
}

/* Modal de dúvidas */
.duvidas-modal {
	display: none;
	position: fixed;
	bottom: 120px;
	right: 30px;
	width: 300px;
	background-color: #FFF7DF;
	border-radius: 20px;
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
	padding: 20px;
	z-index: 1000;
	font-family: "Quicksand", sans-serif;
}

.duvidas-modal h3 {
	font-size: 40px;
	color: #DC3B82;
	margin-bottom: 10px;
	font-family: 'Cookie', cursive;
}

.duvidas-modal p {
	font-size: 19px;
	line-height: 1.4;
	margin-bottom: 15px;
	color: rgb(0, 0, 0);
}

.duvidas-modal .btn-login-modal {
	display: flex;
	flex-direction: column;
	align-items: center;
	background-color: #26A69A;
	color: white;
	text-decoration: none;
	padding: 10px 20px;
	border-radius: 25px;
	font-weight: normal;
	text-align: center;
	align-items: center;
	font-family: "Libertinus Serif Display", system-ui;
}

.duvidas-modal .close-modal {
	position: absolute;
	top: 8px;
	right: 10px;
	font-size: 30px;
	cursor: pointer;
	color: rgb(0, 0, 0);
}

/* ============================
   FOOTER
============================ */
.footer {
	background: #FF9DC9;
	color: white;
	text-align: center;
	padding: 12px 20px;
	font-size: 20px;
	border-top: 4px solid #FF9DC9;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 20px;
	flex-wrap: wrap;
	margin-top: auto;
}

.footer .footer-logo {
	font-family: 'Cookie', cursive;
	font-size: 40px;
	margin: 0;
}

.footer p {
	margin: 0;
	font-size: 30px;
}

.footer .social-icons {
	display: flex;
	gap: 10px;
	align-items: center;
}

.footer a {
	color: white;
	font-size: 18px;
	display: inline-block;
	transition: transform 0.2s ease;
}

.footer a:hover {
	transform: scale(1.2);
	color: #FFD6EB;
}

/* ========================================= */
/* ESTILOS PARA O TOAST DE NOTIFICAÇÃO */
/* ========================================= */
.toast-container {
	position: fixed;
	bottom: 20px;
	right: 20px;
	z-index: 1060;
	pointer-events: none;
}

.toast-notification {
	background-color: #28a745;
	color: #fff;
	padding: 15px 20px;
	border-radius: 8px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
	display: flex;
	align-items: center;
	gap: 15px;
	opacity: 0;
	transform: translateY(100%);
	transition: opacity 0.5s ease-out, transform 0.5s ease-out;
	pointer-events: auto;
	font-family: 'Quicksand', sans-serif;
	font-weight: bold;
	max-width: 380px;
}

.toast-notification.show {
	opacity: 1;
	transform: translateY(0);
}

.toast-success {
	background-color: #28a745;
}

.toast-error {
	background-color: #dc3545;
}

.toast-warning {
	background-color: #fd7e14;
}

.toast-icon {
	font-size: 20px;
	font-weight: 700;
	line-height: 1;
	color: #fff;
}

/* ===== Corrige posicionamento: header estático; titulo e ações posicionados em relação ao .depoimento-card ===== */
.depoimento-card {
  position: relative; /* já definido, necessário para posicionamento absoluto dos filhos */
}

/* Faz o container do header não interferir no posicionamento absoluto */
.depoimento-card .card-header {
  position: static !important;  /* não será o ancestor posicionado */
  display: block !important;
  width: 100%;
  padding: 0;
  margin: 0;
}

/* Agora h3 e actions são posicionados em relação ao .depoimento-card (pai posicionado) */
.depoimento-card .card-header h3,
.depoimento-card .card-actions {
  position: absolute;
  top: 12px;
  z-index: 50;
}

/* título no canto superior esquerdo */
.depoimento-card .card-header h3 {
  left: 16px;
  margin: 0;
  font-family: "Libertinus Serif Display", system-ui;
  font-size: 20px;
  color: #d7479e;
  font-weight: 700;
  white-space: nowrap;
}

/* ações no canto superior direito */
.depoimento-card .card-actions {
  right: 12px;
  display: flex;
  gap: 8px;
  align-items: center;
}

/* garante tamanho dos ícones */
.depoimento-card .card-actions img {
  width: 28px;
  height: 28px;
  cursor: pointer;
}

/* Texto central — reserva espaço suficiente no topo para título/ações */
.depoimento-card .texto-depoimento {
  display: block !important;
  margin: 70px 28px 10px !important; /* topo maior para não sobrepor os elementos absolutos */
  font-family: "Libertinus Serif Display", system-ui;
  font-size: 22px;
  color: #111;
  line-height: 1.45;
  text-align: center;
  word-wrap: break-word;
  overflow-wrap: break-word;
  font-weight: 500;
  max-width: calc(100% - 56px);
}

/* Autor centralizado abaixo do texto */
.depoimento-card .autor-depoimento {
  position: static !important;
  float: none !important;
  display: block !important;
  width: 100% !important;
  text-align: center !important;
  margin: 14px 0 6px !important;
  padding: 0;
  font-size: 18px;
  color: #444;
  font-weight: 700;
  z-index: 3;
}

/* Compartilhar centralizado logo abaixo do autor */
.depoimento-card .compartilhar-container {
  width: 100%;
  text-align: center !important;
  margin-top: 6px !important;
  padding-top: 6px;
  z-index: 2;
}

.depoimento-card .compartilhar-container .share-title {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 26px;
  margin: 0;
  padding: 6px 10px;
}

/* Mobile */
@media (max-width: 768px) {
  .depoimento-card .card-header h3 {
    top: 10px;
    left: 12px;
    font-size: 18px;
  }

  .depoimento-card .card-actions {
    top: 8px;
    right: 8px;
  }

  .depoimento-card .texto-depoimento {
    margin: 64px 18px 8px !important;
    font-size: 18px;
	color: #111;
	font-weight: bold;
  }

  .depoimento-card .autor-depoimento {
    font-size: 16px;
  }

  .depoimento-card .compartilhar-container .share-title {
    font-size: 20px;
  }
}

/* ========================= MOBILE ========================= */
@media (max-width: 768px) {

	/* -------- Layout Geral -------- */
	.container {
		padding: 20px 16px;
	}

	main {
		padding: 0;
	}

	.section-title {
		font-size: 70px;
		margin: 20px 0 10px;
	}

	.description {
		font-size: 22px;
		margin-bottom: 40px;
		font-weight: bold;
	}

	/* -------- HEADER -------- */
	.header {
		padding: 8px 12px;
	}

	.logo-header {
			width: 50px;
		}

		.header-title {
			font-size: 40px;
		}


	/* Esconde menu desktop e mostra o hambúrguer */
	.nav-links {
		display: none !important;
	}

	.menu-icon {
		display: block !important;
		width: 38px;
	}

	/* -------- Botão adicionar depoimento -------- */
	#btnMostrarFormulario {
		width: 80%;
		font-size: 20px;
		padding: 12px 0;
		border-radius: 25px;
	}

	/* -------- GRID de depoimentos -------- */
	.depoimentos-container {
		display: flex;
		flex-direction: column;
		gap: 14px;
		padding: 0;
		margin-top: 15px;
	}

	.depoimento-card {
		padding: 12px;
		border-radius: 18px;
	}

	.depoimento-card h3 {
		font-size: 25px;
		text-align: center;
	}

	.texto-depoimento {
		font-size: 20px;
		text-align: center;
		line-height: 1.5;
		margin: 8px 0;
		font-weight: bold;
	}
	.card-header h3{
		font-size: 22px;
	}
	
	

	.autor-depoimento {
		font-size: 18px;
		text-align: right;
		margin-top: 6px;
		color: #444;
		font-weight: bold;
	}

	/* Social icons no footer */
	.social-icons img {
		width: 22px;
	}

	/* -------- Cards pendentes (Admin) -------- */
	.pendente-card {
		padding: 14px;
	}

	.pendente-texto {
		font-size: 16px;
	}

	.pendente-nome {
		font-size: 18px;
	}

	/* -------- Modal Depoimento -------- */
	.modal-dialog {
		margin: 0 10px !important;
	}

	.modal-title-depoimento {
		font-size: 45px !important;
	}

	.label-depoimento {
		font-size: 18px !important;
		margin-bottom: 6px;
	}

	.depoimento-textarea {
		font-size: 16px;
		min-height: 120px;
	}

	.text-muted {
		font-size: 14px !important;
	}

	.form-check {
		font-size: 16px;
		gap: 10px;
		margin-bottom: 20px;
		flex-direction: row;
	}

	#mostrarIdentificacao {
		margin: 0;
	}

	.btn-voltar-custom,
	.btn-publicar-custom {
		width: 100%;
		max-width: 100%;
		font-size: 18px;
		padding: 12px 10px;
		margin-top: 10px;
	}

	/* -------- Modal excluir -------- */
	.modal-confirm-custom {
		margin: 0 12px;
	}

	.modal-msg {
		font-size: 16px;
	}

	.btn-cancelar,
	.btn-excluir-modal {
		font-size: 16px;
		padding: 10px 20px;
	}

	/* -------- MENU LATERAL (corrigido) -------- */
		.side-menu {
		  position: fixed;
		  top: 0;
		  right: -260px;                 /* fechado por padrão; JS alterna a classe .open */
		  width: 260px;
		  height: 100%;
		  padding: 16px;
		  background: linear-gradient(180deg, #E45694, #A30F50);
		  color: #fff;
		  box-shadow: -2px 0 12px rgba(0,0,0,0.25);
		  border-radius: 20px 0 0 20px;
		  transition: right 0.28s ease-in-out, box-shadow 0.18s ease;
		  z-index: 1200;                 /* acima da maior parte do conteúdo */
		  display: flex;
		  flex-direction: column;
		  justify-content: space-between;
		  overflow-y: auto;
		}

		/* estado aberto — adicione/remove via JS (por exemplo: sideMenu.classList.toggle('open')) */
		.side-menu.open {
		  right: 0;
		}

		/* === CORREÇÕES PARA O BLOCO DE LOGIN === */
		.login-container {
		  display: flex;
		  flex-direction: column;
		  align-items: center;
		  justify-content: center;
		  padding: 10px 0 20px 0;
		}

		.login-logo {
		  width: 180px;
		  height: auto;
		  margin-bottom: 8px;
		}

		.login-text {
		  text-align: center;
		  font-size: 22px;
		  padding: 5px 0;
		  font-weight: 500;
		  margin-top: 15px;
		  margin-left: 40px;
		}

		/* === LINKS DO MENU LATERAL === */
		.side-menu ul {
		  list-style: none;
		  padding: 0;
		  margin: 0;
		  display: block;
		  margin-top: 10px;
		}

		.side-menu li {
		  width: 100%;
		  text-align: left;
		  padding: 8px 0;
		}

		.side-menu a {
		  font-size: 22px;
		  padding: 6px 10px;
		  display: flex;
		  align-items: center;
		  gap: 10px;
		  text-decoration: none;
		  color: #fff;
		  transition: background-color 0.18s ease, transform 0.12s ease;
		  border-radius: 8px;
		}

		.side-menu a:hover,
		.side-menu a:focus {
		  background-color: rgba(255, 255, 255, 0.06);
		  transform: translateX(2px);
		  outline: none;
		}

		/* ícones ao lado dos links */
		.icones {
		  width: 30px !important;
		  height: 30px !important;
		  margin-right: 8px;
		  flex-shrink: 0;
		  vertical-align: middle;
		}

		/* === BOTÃO FECHAR (estilizado, sem aparência desativada) === */
		.btn-close {
		  background-color: #d7479e !important;
		  color: #ffffff !important;
		  font-weight: normal;
		  padding: 10px 16px;
		  font-size: 20px;
		  border-radius: 25px;
		  cursor: pointer;
		  width: 70%;
		  display: flex;
		  justify-content: center;
		  align-items: center;
		  margin: 20px auto 10px auto;
		  transition: background-color 0.18s ease, transform 0.12s ease, box-shadow 0.18s ease;
		  box-shadow: 0 6px 14px rgba(215,71,158,0.14);
		  opacity: 1 !important;
		}

		/* hover / focus mais visíveis, acessíveis por teclado também */
		.btn-close:hover,
		.btn-close:focus {
		  background-color: #b83d85 !important;
		  border-color: #ffffff !important;
		  transform: translateY(-1px);
		  outline: none;
		  box-shadow: 0 8px 18px rgba(184,61,133,0.2);
		}

		.btn-close:focus-visible {
		  outline: 3px solid rgba(215,71,158,0.18);
		  outline-offset: 3px;
		}

		/* evita que botões dentro do menu fiquem com opacidade reduzida por regras gerais */
		.side-menu button,
		.side-menu a {
		  opacity: 1 !important;
		}

		/* adaptações para telas menores */
		@media (max-width: 768px) {
		  .side-menu {
		    width: 240px;
		    right: -240px;
		    border-radius: 0 0 0 0;
		  }

		  .login-logo { width: 140px; }
		  .side-menu a { font-size: 20px; padding: 8px; }
		  .btn-close { font-size: 18px; width: 80%; padding: 10px 14px; }
		}




	/* -------- Botão dúvidas -------- */
	.duvidas-btn {
		width: 60px;
		height: 60px;
		bottom: 20px;
		right: 20px;
	}

	/* toast */
	.toast-container {
		padding: 0 10px;
	}

	.toast-notification {
		width: 100%;
		font-size: 14px;
	}
}
/* ============================
   FOOTER - MOBILE
============================ */
@media (max-width: 600px) {
    .footer {
        padding: 8px 6px;
        font-size: 14px;
    }

    .footer-logo {
        font-size: 18px !important;
    }

    .footer p {
        font-size: 10px;
        margin: 3px 0;
    }

    .footer span {
        font-size: 10px;
    }

    .social-icons img {
        width: 16px;
        height: 16px;
    }

    .social-icons {
        gap: 8px;
        margin-top: 6px;
    }
}