/* ============================================
   CADASTRO DE CLIENTES/FILIAIS - ESTILOS MODERNOS
   ============================================ */

/* ============================================
   ESTILOS PARA PÁGINA DE REGISTRO (registrar.php)
   ============================================ */

.signup-page .logo img {
	width: 200px;
	margin: 0 auto;
	display: block;
}

.signup-page .ui-menu .ui-menu-item a {
    line-height: 1.2;
    font-size: 12px;
}

.signup-page .bordavermelha {
	border-bottom: 2px solid red!important;
}

/* Campos condicionais escondidos */
.signup-page .dadosempresa,
.signup-page .dadoscaepf,
.signup-page .dadoscpf {
	transition: all 0.3s ease;
}

/* Etapa 2 escondida */
.signup-page .step[data-step="2"],
.signup-page .step[data-step="2"] + .step-line {
	transition: all 0.3s ease;
}

/* Modern Signup Styles */
.signup-page .signup-box {
	padding: 20px;
	max-width: 650px;
	margin: 0 auto;
	width: 650px;
}

.signup-page .modern-card {
	border-radius: 20px;
	box-shadow: 0 10px 40px rgba(0,0,0,0.2);
	overflow: hidden;
	max-width: 100%;
}

.signup-page .modern-card .body {
	padding: 40px;
}

.signup-page .signup-header {
	text-align: center;
	margin-bottom: 30px;
}

.signup-page .signup-header h2 {
	color: #b13536;
	font-size: 32px;
	font-weight: 700;
	margin: 0 0 10px 0;
}

.signup-page .signup-header .subtitle {
	color: #666;
	font-size: 16px;
	margin: 0;
}

/* Progress Indicator */
.signup-page .progress-indicator {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 40px;
	padding: 0 10px;
}

.signup-page .step {
	display: flex;
	flex-direction: column;
	align-items: center;
	position: relative;
	z-index: 2;
}

.signup-page .step-number {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: #e0e0e0;
	color: #999;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	font-size: 16px;
	margin-bottom: 8px;
	transition: all 0.3s ease;
}

.signup-page .step.active .step-number {
	background: #b13536;
	color: white;
	box-shadow: 0 4px 12px rgba(177, 53, 54, 0.4);
}

.signup-page .step.completed .step-number {
	background: #4CAF50;
	color: white;
}

.signup-page .step-label {
	font-size: 12px;
	color: #999;
	font-weight: 500;
	text-align: center;
}

.signup-page .step.active .step-label {
	color: #b13536;
	font-weight: 700;
}

.signup-page .step-line {
	flex: 1;
	height: 3px;
	background: #e0e0e0;
	margin: 0 10px;
	position: relative;
	top: -18px;
}

/* Form Steps */
.signup-page .form-step {
	display: none;
}

.signup-page .form-step.active {
	display: block;
	animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.signup-page .step-title {
	color: #333;
	font-size: 20px;
	font-weight: 600;
	margin-bottom: 25px;
	display: flex;
	align-items: center;
	gap: 10px;
	padding-bottom: 15px;
	border-bottom: 2px solid #f0f0f0;
}

.signup-page .step-title i {
	color: #b13536;
	font-size: 28px;
}

/* Form Groups */
.signup-page .form-group {
	margin-bottom: 20px;
}

.signup-page .form-label {
	display: block;
	color: #555;
	font-weight: 600;
	margin-bottom: 8px;
	font-size: 14px;
}

.signup-page .form-line {
	position: relative;
}

.signup-page .form-control {
	width: 100%;
	border: 2px solid #e0e0e0;
	border-radius: 10px;
	font-size: 15px;
	transition: all 0.3s ease;
	background-color: #fafafa;
}

.signup-page .form-control:focus {
	border-color: #b13536;
	background-color: white;
	box-shadow: 0 0 0 3px rgba(177, 53, 54, 0.1);
	outline: none;
}

.signup-page .form-control::placeholder {
	color: #aaa;
}

.signup-page .form-hint {
	display: block;
	color: #888;
	font-size: 12px;
	margin-top: 6px;
}

/* Form Row for responsive layout */
.signup-page .form-row {
	display: flex;
	gap: 15px;
	margin: 0 -7.5px;
}

.signup-page .form-row .form-group {
	flex: 1;
	padding: 0 7.5px;
}

.signup-page .form-row .col-4 {
	flex: 0 0 33.333%;
}

.signup-page .form-row .col-8 {
	flex: 0 0 66.666%;
}

/* Checkbox Group */
.signup-page .checkbox-group {
	background: #f8f8f8;
	padding: 15px;
	border-radius: 10px;
	border: 2px solid #e0e0e0;
}

.signup-page .checkbox-group label {
	margin-left: 10px;
	color: #555;
	font-size: 14px;
	line-height: 21px;
}

.signup-page .checkbox-group a {
	color: #b13536;
	font-weight: 600;
	text-decoration: none;
}

.signup-page .checkbox-group a:hover {
	text-decoration: underline;
}

/* Navigation Buttons */
.signup-page .form-navigation {
	display: flex;
	gap: 15px;
	margin-top: 35px;
}

.signup-page .btn {
	padding: 14px 30px;
	border-radius: 10px;
	font-weight: 600;
	font-size: 15px;
	border: none;
	cursor: pointer;
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
}

.signup-page .btn-back {
	background: #f0f0f0;
	color: #666;
	flex: 1;
}

.signup-page .btn-back:hover {
	background: #e0e0e0;
	transform: translateY(-2px);
}

.signup-page .btn-next {
	background: #b13536;
	color: white;
	flex: 2;
}

.signup-page .btn-next:hover {
	background: #8f2a2b;
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(177, 53, 54, 0.3);
}

.signup-page .btn-submit {
	width: 100%;
	background: #4CAF50 !important;
	color: white;
	font-size: 16px;
	padding: 16px;
}

.signup-page .btn-submit:hover {
	background: #45a049 !important;
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(76, 175, 80, 0.3);
}

.signup-page .btn i {
	font-size: 20px;
}

/* Tutorial Link */
.signup-page .tutorial-link-container {
	text-align: center;
	margin-bottom: 25px;
}

.signup-page .videotutorial {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: linear-gradient(135deg, #c1d1a5 0%, #a8bd8a 100%);
    color: #c62b2c!important; 
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(193, 209, 165, 0.4);
}

.signup-page .videotutorial:hover {
	transform: translateY(-3px);
	box-shadow: 0 6px 20px rgba(193, 209, 165, 0.6);
}

.signup-page .videotutorial i {
	font-size: 24px;
}

/* Login Link */
.signup-page .login-link {
	color: #666;
	text-decoration: none;
	font-size: 15px;
}

.signup-page .login-link strong {
	color: #b13536;
}

.signup-page .login-link:hover {
	color: #b13536;
}

.signup-page .btn:not(.btn-link):not(.btn-circle) i {
	font-size: 20px;
	position: relative;
	top: -1px;
}

/* Responsive Design */
@media (max-width: 768px) {

	.signup-page .signup-box {
		padding: 10px;
		width: 100%;
	}

	.signup-page .modern-card .body {
		padding: 25px 20px;
	}

	.signup-header h2 {
		font-size: 26px;
	}

	.signup-page .signup-header .subtitle {
		font-size: 14px;
	}

	.signup-page .progress-indicator {
		padding: 0;
	}

	.signup-page .step-number {
		width: 35px;
		height: 35px;
		font-size: 14px;
	}

	.signup-page .step-label {
		font-size: 10px;
	}

	.signup-page .step-line {
		margin: 0 5px;
	}

	.signup-page .step-title {
		font-size: 18px;
	}

	.signup-page .step-title i {
		font-size: 24px;
	}

	.signup-page .form-row {
		flex-direction: column;
		gap: 0;
	}

	.signup-page .form-row .form-group {
		flex: 1;
	}

	.signup-page .form-navigation {
		flex-direction: column;
	}

	.signup-page .btn-back,
	.signup-page .btn-next {
		flex: 1;
	}

	.signup-page .videotutorial {
		font-size: 13px;
		padding: 10px 18px;
	}

	.signup-page .videotutorial i {
		font-size: 20px;
	}
}

@media (max-width: 480px) {
	.signup-page .signup-box {
		padding: 10px;
		width: 100%;
	}

	.signup-page .modern-card .body {
		padding: 20px 15px;
	}

	.signup-page .signup-header h2 {
		font-size: 22px;
	}

	.signup-page .step-label {
		display: none;
	}

	.signup-page .step-line {
		top: -10px;
	}

	.signup-page .form-control {
		font-size: 14px;
	}

	.signup-page .btn {
		padding: 12px 20px;
		font-size: 14px;
	}
}

/* SweetAlert Customization */
.sweet-alert {
	border-radius: 15px;
}

.sweet-alert h2 {
	color: #333;
	font-size: 24px;
	font-weight: 600;
}

.sweet-alert button.confirm {
	background-color: #b13536 !important;
	border-radius: 8px;
	padding: 10px 30px;
	font-weight: 600;
}

.sweet-alert button.confirm:hover {
	background-color: #8f2a2b !important;
}

.sweet-alert .sa-icon.sa-warning {
	border-color: #f39c12;
}

.sweet-alert .sa-icon.sa-warning .sa-body,
.sweet-alert .sa-icon.sa-warning .sa-dot {
	background-color: #f39c12;
}

.sweet-alert .sa-icon.sa-error {
	border-color: #b13536;
}

.sweet-alert .sa-icon.sa-error .sa-line {
	background-color: #b13536;
}

/* Estilos específicos para formulário de cliente/filial no index.php */
.modern-card-cliente {
	border-radius: 20px;
	box-shadow: 0 10px 40px rgba(0,0,0,0.2);
	overflow: hidden;
	max-width: 100%;
}

.progress-indicator-cliente {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 40px;
	padding: 0 10px;
}

.step-cliente {
	display: flex;
	flex-direction: column;
	align-items: center;
	position: relative;
	z-index: 2;
}

.step-number-cliente {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: #e0e0e0;
	color: #999;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	font-size: 16px;
	margin-bottom: 8px;
	transition: all 0.3s ease;
}

.step-cliente.active-cliente .step-number-cliente {
	background: #b13536;
	color: white;
	box-shadow: 0 4px 12px rgba(177, 53, 54, 0.4);
}

.step-cliente.completed-cliente .step-number-cliente {
	background: #4CAF50;
	color: white;
}

.step-label-cliente {
	font-size: 12px;
	color: #999;
	font-weight: 500;
	text-align: center;
}

.step-cliente.active-cliente .step-label-cliente {
	color: #b13536;
	font-weight: 700;
}

.step-line-cliente {
	flex: 1;
	height: 3px;
	background: #e0e0e0;
	margin: 0 10px;
	position: relative;
	top: -18px;
}

.form-step-cliente {
	display: none;
}

.form-step-cliente.active-cliente {
	display: block;
	animation: fadeIn 0.5s ease;
}

.step-title-cliente {
	color: #333;
	font-size: 20px;
	font-weight: 600;
	margin-bottom: 25px;
	display: flex;
	align-items: center;
	gap: 10px;
	padding-bottom: 15px;
	border-bottom: 2px solid #f0f0f0;
}

.step-title-cliente i {
	color: #b13536;
	font-size: 28px;
}

.form-label-cliente {
	display: block;
	color: #555;
	font-weight: 600;
	margin-bottom: 8px;
	font-size: 14px;
}

.form-hint-cliente {
	display: block;
	color: #888;
	font-size: 12px;
	margin-top: 6px;
}

.form-row-cliente {
	display: flex;
	gap: 15px;
	margin: 0 -7.5px;
}

.form-row-cliente .form-group {
	flex: 1;
	padding: 0 7.5px;
}

.form-row-cliente .col-4-cliente {
	flex: 0 0 33.333%;
}

.form-row-cliente .col-8-cliente {
	flex: 0 0 66.666%;
}

.form-navigation-cliente {
	display: flex;
	gap: 15px;
	margin-top: 35px;
}

.btn-back-cliente {
	background: #f0f0f0;
	color: #666;
	flex: 1;
	padding: 14px 30px;
	border-radius: 10px;
	font-weight: 600;
	font-size: 15px;
	border: none;
	cursor: pointer;
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
}

.btn-back-cliente:hover {
	background: #e0e0e0;
	transform: translateY(-2px);
}

.btn-next-cliente {
	background: #b13536;
	color: white;
	flex: 2;
	padding: 14px 30px;
	border-radius: 10px;
	font-weight: 600;
	font-size: 15px;
	border: none;
	cursor: pointer;
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
}

.btn-next-cliente:hover {
	background: #8f2a2b;
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(177, 53, 54, 0.3);
}

.btn-submit-cliente {
	width: 100%;
	background: #4CAF50 !important;
	color: white;
	font-size: 16px;
	padding: 16px;
	border-radius: 10px;
	font-weight: 600;
	border: none;
	cursor: pointer;
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
}

.btn-submit-cliente:hover {
	background: #45a049 !important;
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(76, 175, 80, 0.3);
}

.btn-back-cliente i,
.btn-next-cliente i,
.btn-submit-cliente i {
	font-size: 20px;
}

.dadosempresa-cliente,
.dadoscaepf-cliente,
.dadoscpf-cliente {
	display: none;
	transition: all 0.3s ease;
}

/* Estilos para formulário de perfil (edição) */
.dadoscpf-perfil,
.dadoscaepf-perfil,
.dadosempresa-perfil {
	display: none;
	transition: all 0.3s ease;
}

#page_perfil .label-perfil {
	display: block;
	color: #555;
	font-weight: 600;
	margin-bottom: 8px;
	font-size: 14px;
}

#page_perfil .titulo-secao-perfil {
	color: #b13536;
	font-weight: 600;
	margin-bottom: 20px;
	border-bottom: 2px solid #f0f0f0;
	padding-bottom: 10px;
}

#page_perfil .titulo-secao-perfil:not(:first-of-type) {
	margin-top: 30px;
}

#page_perfil .titulo-secao-perfil i {
	vertical-align: middle;
	font-size: 24px;
	margin-right: 8px;
}

#page_perfil .hint-perfil {
	display: block;
	color: #888;
	font-size: 12px;
	margin-top: 6px;
}

/* ============================================
   ESTILOS PARA PAGE_NOVO_CLIENTE (index.php)
   ============================================ */

#page_novo_cliente .logo img {
	width: 200px;
	margin: 0 auto;
	display: block;
}

#page_novo_cliente .ui-menu .ui-menu-item a {
    line-height: 1.2;
    font-size: 12px;
}

#page_novo_cliente .bordavermelha {
	border-bottom: 2px solid red!important;
}

/* Campos condicionais escondidos */
#page_novo_cliente .dadosempresa,
#page_novo_cliente .dadoscaepf,
#page_novo_cliente .dadoscpf {
	transition: all 0.3s ease;
}

/* Modern Form Container */
#page_novo_cliente .form-container-cliente {
	padding: 20px;
	max-width: 900px;
	margin: 0 auto;
}

#page_novo_cliente .card-cliente {
	border-radius: 20px;
	box-shadow: 0 10px 40px rgba(0,0,0,0.15);
	overflow: hidden;
	background: white;
}

#page_novo_cliente .card-cliente .body {
	padding: 40px;
}

#page_novo_cliente .header-cliente {
	text-align: center;
	margin-bottom: 35px;
}

#page_novo_cliente .header-cliente h2 {
	color: #b13536;
	font-size: 28px;
	font-weight: 700;
	margin: 0 0 10px 0;
}

#page_novo_cliente .header-cliente .subtitle-cliente {
	color: #666;
	font-size: 15px;
	margin: 0;
}

/* Progress Steps */
#page_novo_cliente .progress-steps-cliente {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 40px;
	padding: 0 20px;
}

#page_novo_cliente .step-cliente {
	display: flex;
	flex-direction: column;
	align-items: center;
	position: relative;
	z-index: 2;
}

#page_novo_cliente .step-number-cliente {
	width: 45px;
	height: 45px;
	border-radius: 50%;
	background: #e0e0e0;
	color: #999;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	font-size: 18px;
	margin-bottom: 10px;
	transition: all 0.3s ease;
}

#page_novo_cliente .step-cliente.active .step-number-cliente {
	background: #b13536;
	color: white;
	box-shadow: 0 4px 12px rgba(177, 53, 54, 0.4);
}

#page_novo_cliente .step-cliente.completed .step-number-cliente {
	background: #4CAF50;
	color: white;
}

#page_novo_cliente .step-label-cliente {
	font-size: 13px;
	color: #999;
	font-weight: 500;
	text-align: center;
}

#page_novo_cliente .step-cliente.active .step-label-cliente {
	color: #b13536;
	font-weight: 700;
}

#page_novo_cliente .step-line-cliente {
	flex: 1;
	height: 3px;
	background: #e0e0e0;
	margin: 0 10px;
	position: relative;
	top: -20px;
}

/* Form Steps Content */
#page_novo_cliente .form-step-cliente {
	display: none;
}

#page_novo_cliente .form-step-cliente.active {
	display: block;
	animation: fadeInCliente 0.5s ease;
}

@keyframes fadeInCliente {
	from {
		opacity: 0;
		transform: translateY(20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

#page_novo_cliente .titulo-secao-cliente {
	color: #333;
	font-size: 20px;
	font-weight: 600;
	margin-bottom: 25px;
	display: flex;
	align-items: center;
	gap: 10px;
	padding-bottom: 15px;
	border-bottom: 2px solid #f0f0f0;
}

#page_novo_cliente .titulo-secao-cliente i {
	color: #b13536;
	font-size: 28px;
}

/* Form Elements */
#page_novo_cliente .form-group-cliente {
	margin-bottom: 20px;
}

#page_novo_cliente .label-cliente {
	display: block;
	color: #555;
	font-weight: 600;
	margin-bottom: 8px;
	font-size: 14px;
}

#page_novo_cliente .input-cliente {
	width: 100%;
	padding: 12px 15px;
	border: 2px solid #e0e0e0;
	border-radius: 10px;
	font-size: 15px;
	transition: all 0.3s ease;
	background-color: #fafafa;
}

#page_novo_cliente .input-cliente:focus {
	border-color: #b13536;
	background-color: white;
	box-shadow: 0 0 0 3px rgba(177, 53, 54, 0.1);
	outline: none;
}

#page_novo_cliente .input-cliente::placeholder {
	color: #aaa;
}

#page_novo_cliente .hint-cliente {
	display: block;
	color: #888;
	font-size: 12px;
	margin-top: 6px;
}

/* Form Layout */
#page_novo_cliente .row-cliente {
	display: flex;
	gap: 15px;
	margin: 0 -7.5px;
}

#page_novo_cliente .row-cliente .form-group-cliente {
	flex: 1;
	padding: 0 7.5px;
}

#page_novo_cliente .row-cliente .col-3 {
	flex: 0 0 25%;
}

#page_novo_cliente .row-cliente .col-4 {
	flex: 0 0 33.333%;
}

#page_novo_cliente .row-cliente .col-6 {
	flex: 0 0 50%;
}

#page_novo_cliente .row-cliente .col-8 {
	flex: 0 0 66.666%;
}

#page_novo_cliente .row-cliente .col-9 {
	flex: 0 0 75%;
}

/* Navigation Buttons */
#page_novo_cliente .form-nav-cliente {
	display: flex;
	gap: 15px;
	margin-top: 35px;
}

#page_novo_cliente .btn-cliente {
	padding: 14px 30px;
	border-radius: 10px;
	font-weight: 600;
	font-size: 15px;
	border: none;
	cursor: pointer;
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
}

#page_novo_cliente .btn-back-cliente {
	background: #f0f0f0;
	color: #666;
	flex: 1;
}

#page_novo_cliente .btn-back-cliente:hover {
	background: #e0e0e0;
	transform: translateY(-2px);
}

#page_novo_cliente .btn-next-cliente {
	background: #b13536;
	color: white;
	flex: 2;
}

#page_novo_cliente .btn-next-cliente:hover {
	background: #8f2a2b;
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(177, 53, 54, 0.3);
}

#page_novo_cliente .btn-submit-cliente {
	width: 100%;
	background: #4CAF50 !important;
	color: white;
	font-size: 16px;
	padding: 16px;
}

#page_novo_cliente .btn-submit-cliente:hover {
	background: #45a049 !important;
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(76, 175, 80, 0.3);
}

#page_novo_cliente .btn-cliente i {
	font-size: 20px;
}

/* ============================================
   ESTILOS PARA PAGE_PERFIL (index.php)
   ============================================ */

#page_perfil .logo img {
	width: 200px;
	margin: 0 auto;
	display: block;
}

#page_perfil .ui-menu .ui-menu-item a {
    line-height: 1.2;
    font-size: 12px;
}

#page_perfil .bordavermelha {
	border-bottom: 2px solid red!important;
}

/* Campos condicionais escondidos */
#page_perfil .dadosempresa,
#page_perfil .dadoscaepf,
#page_perfil .dadoscpf {
	transition: all 0.3s ease;
}

/* Modern Form Container */
#page_perfil .form-container-perfil {
	padding: 20px;
	max-width: 900px;
	margin: 0 auto;
}

#page_perfil .card-perfil {
	border-radius: 20px;
	box-shadow: 0 10px 40px rgba(0,0,0,0.15);
	overflow: hidden;
	background: white;
}

#page_perfil .card-perfil .body {
	padding: 40px;
}

#page_perfil .header-perfil {
	text-align: center;
	margin-bottom: 35px;
}

#page_perfil .header-perfil h2 {
	color: #b13536;
	font-size: 28px;
	font-weight: 700;
	margin: 0 0 10px 0;
}

#page_perfil .header-perfil .subtitle-perfil {
	color: #666;
	font-size: 15px;
	margin: 0;
}

/* Seções do Perfil */
#page_perfil .titulo-secao-perfil {
	color: #333;
	font-size: 20px;
	font-weight: 600;
	margin: 30px 0 20px 0;
	display: flex;
	align-items: center;
	gap: 10px;
	padding-bottom: 12px;
	border-bottom: 2px solid #f0f0f0;
}

#page_perfil .titulo-secao-perfil:first-child {
	margin-top: 0;
}

#page_perfil .titulo-secao-perfil i {
	color: #b13536;
	font-size: 24px;
}

/* Form Elements */
#page_perfil .form-group-perfil {
	margin-bottom: 20px;
}

#page_perfil .label-perfil {
	display: block;
	color: #555;
	font-weight: 600;
	margin-bottom: 8px;
	font-size: 14px;
}

#page_perfil .input-perfil {
	width: 100%;
	padding: 12px 15px;
	border: 2px solid #e0e0e0;
	border-radius: 10px;
	font-size: 15px;
	transition: all 0.3s ease;
	background-color: #fafafa;
}

#page_perfil .input-perfil:focus {
	border-color: #b13536;
	background-color: white;
	box-shadow: 0 0 0 3px rgba(177, 53, 54, 0.1);
	outline: none;
}

#page_perfil .input-perfil::placeholder {
	color: #aaa;
}

#page_perfil .hint-perfil {
	display: block;
	color: #888;
	font-size: 12px;
	margin-top: 6px;
}

/* Form Layout */
#page_perfil .row-perfil {
	display: flex;
	gap: 15px;
	margin: 0 -7.5px;
}

#page_perfil .row-perfil .form-group-perfil {
	flex: 1;
	padding: 0 7.5px;
}

#page_perfil .row-perfil .col-3 {
	flex: 0 0 25%;
}

#page_perfil .row-perfil .col-4 {
	flex: 0 0 33.333%;
}

#page_perfil .row-perfil .col-6 {
	flex: 0 0 50%;
}

#page_perfil .row-perfil .col-8 {
	flex: 0 0 66.666%;
}

#page_perfil .row-perfil .col-9 {
	flex: 0 0 75%;
}

/* Submit Button */
#page_perfil .btn-submit-perfil {
	width: 100%;
	padding: 16px;
	background: #b13536;
	color: white;
	font-size: 16px;
	font-weight: 600;
	border: none;
	border-radius: 10px;
	cursor: pointer;
	transition: all 0.3s ease;
	margin-top: 35px;
}

#page_perfil .btn-submit-perfil:hover {
	background: #8f2a2b;
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(177, 53, 54, 0.3);
}

#page_perfil .btn-submit-perfil i {
	margin-right: 8px;
	font-size: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
	.signup-page .signup-box,
	#page_novo_cliente .form-container-cliente,
	#page_perfil .form-container-perfil {
		padding: 10px;
	}

	.signup-page .modern-card .body,
	#page_novo_cliente .card-cliente .body,
	#page_perfil .card-perfil .body {
		padding: 20px;
	}

	.signup-page .form-row,
	#page_novo_cliente .row-cliente,
	#page_perfil .row-perfil {
		flex-direction: column;
		gap: 0;
	}

	.signup-page .form-row .form-group,
	#page_novo_cliente .row-cliente .form-group-cliente,
	#page_perfil .row-perfil .form-group-perfil {
		padding: 0;
	}

	.signup-page .progress-indicator,
	#page_novo_cliente .progress-steps-cliente {
		padding: 0;
	}

	.signup-page .step-number,
	#page_novo_cliente .step-number-cliente {
		width: 35px;
		height: 35px;
		font-size: 14px;
	}

	.signup-page .step-label,
	#page_novo_cliente .step-label-cliente {
		font-size: 10px;
	}

	.signup-page .form-navigation,
	#page_novo_cliente .form-nav-cliente {
		flex-direction: column;
	}

	.signup-page .btn-back,
	.signup-page .btn-next,
	#page_novo_cliente .btn-back-cliente,
	#page_novo_cliente .btn-next-cliente {
		flex: 1;
		width: 100%;
	}
}
