/* ========================================= */
/* CSS PREMIUM - CADASTRO DE ALIMENTOS */
/* Com fundo igual à página "Por que Doar" */
/* ========================================= */

:root {
	/* Cores principais do projeto */
	--primary-red: #dc2626;
	--primary-red-dark: #b91c1c;
	--primary-red-light: #fee2e2;
	--urgent-orange: #f59e0b;
	--hope-green: #10b981;
	--warning-yellow: #fbbf24;
	--crisis-red: #ef4444;

	/* Tons de cinza */
	--gray-50: #f9fafb;
	--gray-100: #f3f4f6;
	--gray-200: #e5e7eb;
	--gray-300: #d1d5db;
	--gray-400: #9ca3af;
	--gray-500: #6b7280;
	--gray-600: #4b5563;
	--gray-700: #374151;
	--gray-800: #1f2937;
	--gray-900: #111827;

	--white: #ffffff;
	--black: #000000;
	--radius-sm: 0.375rem;
	--radius-md: 0.5rem;
	--radius-lg: 0.75rem;
	--radius-xl: 1rem;
	--shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
	--shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
	--shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
	--shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* ========================================= */
/* FUNDO PREMIUM COM EFEITO DE ALIMENTOS */
/* ========================================= */

body {
	background: linear-gradient(135deg, #1e293b 0%, #0f172a 50%, #991b1b 100%) !important;
	color: var(--white);
	padding-top: 80px;
	min-height: 100vh;
	position: relative;
	overflow-x: hidden;
}

/* Efeito de alimentos caindo */
.floating-food-background {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
	z-index: -1;
	overflow: hidden;
}

.floating-food-background i {
	position: absolute;
	font-size: 1.5rem;
	opacity: 0.3;
	animation: floatFood 20s infinite linear;
	color: rgba(255, 255, 255, 0.4);
	text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* Posições e delays aleatórios para os ícones */
.floating-food-background i:nth-child(1) {
	left: 5%;
	animation-delay: 0s;
	animation-duration: 25s;
}

.floating-food-background i:nth-child(2) {
	left: 15%;
	animation-delay: 2s;
	animation-duration: 22s;
}

.floating-food-background i:nth-child(3) {
	left: 25%;
	animation-delay: 4s;
	animation-duration: 28s;
}

.floating-food-background i:nth-child(4) {
	left: 35%;
	animation-delay: 6s;
	animation-duration: 24s;
}

.floating-food-background i:nth-child(5) {
	left: 45%;
	animation-delay: 8s;
	animation-duration: 26s;
}

.floating-food-background i:nth-child(6) {
	left: 55%;
	animation-delay: 10s;
	animation-duration: 23s;
}

.floating-food-background i:nth-child(7) {
	left: 65%;
	animation-delay: 12s;
	animation-duration: 27s;
}

.floating-food-background i:nth-child(8) {
	left: 75%;
	animation-delay: 14s;
	animation-duration: 25s;
}

.floating-food-background i:nth-child(9) {
	left: 85%;
	animation-delay: 16s;
	animation-duration: 22s;
}

.floating-food-background i:nth-child(10) {
	left: 95%;
	animation-delay: 18s;
	animation-duration: 28s;
}

.floating-food-background i:nth-child(11) {
	left: 10%;
	animation-delay: 1s;
	animation-duration: 24s;
}

.floating-food-background i:nth-child(12) {
	left: 20%;
	animation-delay: 3s;
	animation-duration: 26s;
}

.floating-food-background i:nth-child(13) {
	left: 30%;
	animation-delay: 5s;
	animation-duration: 23s;
}

.floating-food-background i:nth-child(14) {
	left: 40%;
	animation-delay: 7s;
	animation-duration: 27s;
}

.floating-food-background i:nth-child(15) {
	left: 50%;
	animation-delay: 9s;
	animation-duration: 25s;
}

@keyframes floatFood {
	0% {
		transform: translateY(-100px) rotate(0deg);
		opacity: 0;
	}

	10% {
		opacity: 0.4;
	}

	90% {
		opacity: 0.4;
	}

	100% {
		transform: translateY(100vh) rotate(360deg);
		opacity: 0;
	}
}

/* ========================================= */
/* LAYOUT PRINCIPAL */
/* ========================================= */

.main-content {
	padding: 2rem 0 4rem;
	position: relative;
	z-index: 1;
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 1.5rem;
}

/* ========================================= */
/* HEADER PREMIUM DO FORMULÁRIO */
/* ========================================= */

.form-hero {
	text-align: center;
	margin-bottom: 3rem;
	padding: 2rem 0;
}

.hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	background: linear-gradient(135deg, var(--crisis-red), var(--urgent-orange));
	color: var(--white);
	padding: 0.75rem 2rem;
	border-radius: 2rem;
	font-weight: 700;
	font-size: 0.875rem;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	margin-bottom: 1.5rem;
	box-shadow: 0 10px 30px rgba(239, 68, 68, 0.4);
	animation: pulse-badge 2s infinite;
}

@keyframes pulse-badge {

	0%,
	100% {
		box-shadow: 0 10px 30px rgba(239, 68, 68, 0.4);
	}

	50% {
		box-shadow: 0 10px 40px rgba(239, 68, 68, 0.8);
	}
}

.hero-title {
	font-size: 2.5rem;
	font-weight: 900;
	margin-bottom: 1rem;
	text-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

.hero-title .highlight {
	background: linear-gradient(135deg, #fbbf24, #ef4444);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.hero-subtitle {
	font-size: 1.125rem;
	color: rgba(255, 255, 255, 0.9);
	max-width: 600px;
	margin: 0 auto;
	line-height: 1.6;
}

.hero-subtitle strong {
	color: #fbbf24;
	font-weight: 700;
}

/* ========================================= */
/* PROGRESS STEPS */
/* ========================================= */

.progress-steps {
	display: flex;
	justify-content: space-between;
	align-items: center;
	max-width: 600px;
	margin: 0 auto 3rem;
	position: relative;
}

.progress-bar {
	position: absolute;
	top: 20px;
	left: 50px;
	right: 50px;
	height: 4px;
	background: rgba(255, 255, 255, 0.2);
	z-index: 1;
	border-radius: 2px;
}

.progress-fill {
	height: 100%;
	background: linear-gradient(90deg, var(--crisis-red), var(--urgent-orange));
	width: 0%;
	transition: width 0.5s ease;
	border-radius: 2px;
}

.step {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.5rem;
	position: relative;
	z-index: 2;
	transition: all 0.3s ease;
}

.step-number {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.1);
	color: rgba(255, 255, 255, 0.7);
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	font-size: 0.875rem;
	transition: all 0.3s ease;
	border: 3px solid rgba(255, 255, 255, 0.3);
	backdrop-filter: blur(10px);
}

.step-label {
	font-size: 0.875rem;
	font-weight: 600;
	color: rgba(255, 255, 255, 0.7);
	transition: color 0.3s ease;
}

.step.active .step-number {
	background: linear-gradient(135deg, var(--crisis-red), var(--urgent-orange));
	color: var(--white);
	transform: scale(1.1);
	box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.3);
	border-color: transparent;
}

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

.step.completed .step-number {
	background: var(--hope-green);
	color: var(--white);
}

/* ========================================= */
/* FORMULÁRIO PREMIUM */
/* ========================================= */

.premium-form {
	position: relative;
}

.form-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 2rem;
	margin-bottom: 2rem;
}

/* Cards Premium */
.premium-card {
	background: rgba(255, 255, 255, 0.1);
	padding: 2.5rem;
	border-radius: var(--radius-xl);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.2);
	position: relative;
	overflow: hidden;
	transition: all 0.3s ease;
}

.premium-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 4px;
	height: 100%;
	background: linear-gradient(135deg, var(--crisis-red), var(--urgent-orange));
}

.premium-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.3);
	border-color: rgba(255, 255, 255, 0.3);
}

.card-header {
	display: flex;
	align-items: center;
	gap: 1rem;
	margin-bottom: 2rem;
	padding-bottom: 1rem;
	border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}

.card-icon {
	width: 50px;
	height: 50px;
	background: linear-gradient(135deg, var(--crisis-red), var(--urgent-orange));
	border-radius: var(--radius-lg);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--white);
	font-size: 1.25rem;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.card-header h3 {
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--white);
	display: flex;
	align-items: center;
	gap: 1rem;
	flex: 1;
}

.required-badge {
	background: var(--crisis-red);
	color: var(--white);
	font-size: 0.75rem;
	padding: 0.25rem 0.75rem;
	border-radius: var(--radius-md);
	font-weight: 600;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* ========================================= */
/* ELEMENTOS DO FORMULÁRIO - TEXTO PRETO */
/* ========================================= */

.form-group {
	margin-bottom: 1.5rem;
	position: relative;
}

.form-label {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-weight: 600;
	margin-bottom: 0.5rem;
	color: rgba(255, 255, 255, 0.9);
	font-size: 0.95rem;
}

.form-label i {
	color: #fbbf24;
	width: 16px;
}

/* Inputs Premium - TEXTO PRETO */
.premium-input,
.premium-select,
.premium-textarea {
	width: 100%;
	padding: 1rem 1.25rem;
	border: 2px solid rgba(255, 255, 255, 0.2);
	border-radius: var(--radius-lg);
	font-size: 1rem;
	transition: all 0.3s ease;
	background: rgba(255, 255, 255, 0.95);
	color: var(--black) !important;
	font-family: inherit;
	backdrop-filter: blur(5px);
	font-weight: 500;
}

.premium-input::placeholder,
.premium-textarea::placeholder {
	color: rgba(0, 0, 0, 0.6);
}

.premium-input:focus,
.premium-select:focus,
.premium-textarea:focus {
	border-color: #fbbf24;
	box-shadow: 0 0 0 4px rgba(251, 191, 36, 0.2);
	outline: none;
	transform: translateY(-2px);
	background: rgba(255, 255, 255, 1);
	color: var(--black) !important;
}

/* SELECTS COM TEXTO PRETO */
.premium-select {
	appearance: none;
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%23000000' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
	background-position: right 1rem center;
	background-repeat: no-repeat;
	background-size: 1.5em 1.5em;
	padding-right: 3rem;
	color: var(--black) !important;
}

/* Garantir que as opções tenham texto preto */
.premium-select option {
	color: var(--black) !important;
	background-color: #ffffff;
	font-weight: 500;
	padding: 10px;
}

/* Estados dos selects para garantir legibilidade */
.premium-select:focus,
.premium-select:hover {
	color: var(--black) !important;
}

/* TEXTAREA com texto preto */
.premium-textarea {
	resize: vertical;
	min-height: 100px;
	color: var(--black) !important;
}

/* File Upload Premium */
.file-upload-area {
	position: relative;
	border: 2px dashed rgba(255, 255, 255, 0.3);
	border-radius: var(--radius-lg);
	padding: 2rem;
	text-align: center;
	transition: all 0.3s ease;
	cursor: pointer;
	background: rgba(255, 255, 255, 0.05);
	backdrop-filter: blur(5px);
}

.file-upload-area:hover {
	border-color: #fbbf24;
	background: rgba(251, 191, 36, 0.1);
}

.file-upload-area input[type="file"] {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	cursor: pointer;
}

.upload-content i {
	font-size: 3rem;
	color: #fbbf24;
	margin-bottom: 1rem;
}

.upload-content p {
	font-weight: 600;
	color: rgba(255, 255, 255, 0.9);
	margin-bottom: 0.5rem;
}

.upload-content span {
	font-size: 0.875rem;
	color: rgba(255, 255, 255, 0.7);
}

/* Photo Preview */
.photo-preview-container {
	width: 100%;
	height: 200px;
	border: 2px dashed rgba(255, 255, 255, 0.3);
	border-radius: var(--radius-lg);
	margin-top: 1rem;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	background: rgba(255, 255, 255, 0.05);
	backdrop-filter: blur(5px);
	position: relative;
}

.photo-preview-container i {
	font-size: 3rem;
	color: rgba(255, 255, 255, 0.4);
}

#photoPreview {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: none;
}

/* ========================================= */
/* BOTÕES PREMIUM */
/* ========================================= */

.premium-btn {
	background: linear-gradient(135deg, var(--crisis-red), var(--urgent-orange));
	color: var(--white);
	border: none;
	padding: 1rem 1.5rem;
	border-radius: var(--radius-lg);
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
	backdrop-filter: blur(5px);
}

.premium-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
	filter: brightness(1.1);
}

.premium-btn:active {
	transform: translateY(0);
}

.btn-search-cep,
.btn-location {
	white-space: nowrap;
}

/* Botão de Toggle */
.btn-toggle {
	width: 100%;
	background: rgba(255, 255, 255, 0.1);
	color: rgba(255, 255, 255, 0.9);
	border: 2px solid rgba(255, 255, 255, 0.2);
	padding: 1rem 1.5rem;
	border-radius: var(--radius-lg);
	font-weight: 600;
	transition: all 0.3s ease;
	backdrop-filter: blur(5px);
}

.btn-toggle:hover {
	background: rgba(251, 191, 36, 0.2);
	border-color: #fbbf24;
	color: #fbbf24;
}

/* ========================================= */
/* LAYOUT RESPONSIVO */
/* ========================================= */

.form-row {
	display: flex;
	gap: 1rem;
}

.half-width {
	flex: 1;
}

.cep-input-group,
.address-input-group {
	display: flex;
	gap: 0.5rem;
}

.cep-input-group input,
.address-input-group input {
	flex: 1;
}

/* Seção de Endereço */
.address-section {
	margin-top: 2rem;
	padding-top: 2rem;
	border-top: 2px solid rgba(255, 255, 255, 0.2);
}

.section-title {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 1.25rem;
	font-weight: 700;
	color: var(--white);
	margin-bottom: 1.5rem;
}

.section-title i {
	color: #fbbf24;
}

/* ========================================= */
/* RODAPÉ DO FORMULÁRIO */
/* ========================================= */

.premium-footer {
	background: rgba(255, 255, 255, 0.1);
	padding: 2.5rem;
	border-radius: var(--radius-xl);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.2);
	margin-top: 2rem;
}

.impact-message {
	display: flex;
	align-items: center;
	gap: 1rem;
	background: linear-gradient(135deg, var(--hope-green), #3b82f6);
	color: var(--white);
	padding: 1.5rem;
	border-radius: var(--radius-lg);
	margin-bottom: 2rem;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.impact-message i {
	font-size: 2rem;
	flex-shrink: 0;
}

.impact-message strong {
	display: block;
	font-size: 1.125rem;
	margin-bottom: 0.25rem;
}

.impact-message span {
	font-size: 0.95rem;
	opacity: 0.9;
}

/* Checkbox Customizado */
.checkbox-container {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
	cursor: pointer;
	padding: 1rem;
	border: 2px solid rgba(255, 255, 255, 0.2);
	border-radius: var(--radius-lg);
	transition: all 0.3s ease;
	background: rgba(255, 255, 255, 0.05);
	backdrop-filter: blur(5px);
}

.checkbox-container:hover {
	border-color: #fbbf24;
	background: rgba(251, 191, 36, 0.1);
}

.checkbox-container input {
	display: none;
}

.checkmark {
	width: 24px;
	height: 24px;
	border: 2px solid rgba(255, 255, 255, 0.4);
	border-radius: var(--radius-sm);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
	flex-shrink: 0;
	margin-top: 0.125rem;
	backdrop-filter: blur(5px);
}

.checkbox-container input:checked+.checkmark {
	background: #fbbf24;
	border-color: #fbbf24;
}

.checkbox-container input:checked+.checkmark::after {
	content: '✓';
	color: var(--gray-800);
	font-weight: bold;
	font-size: 0.875rem;
}

.terms-text {
	font-size: 0.95rem;
	color: rgba(255, 255, 255, 0.9);
	line-height: 1.5;
}

.terms-text strong {
	color: #fbbf24;
}

/* Botão de Submit Premium */
.premium-submit-btn {
	width: 100%;
	background: linear-gradient(135deg, var(--crisis-red), var(--urgent-orange));
	color: var(--white);
	border: none;
	padding: 1.5rem 2rem;
	border-radius: var(--radius-lg);
	font-size: 1.125rem;
	font-weight: 700;
	cursor: pointer;
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.75rem;
	box-shadow: 0 10px 30px rgba(239, 68, 68, 0.4);
	position: relative;
	overflow: hidden;
	backdrop-filter: blur(5px);
}

.premium-submit-btn::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
	transition: left 0.6s ease;
}

.premium-submit-btn:hover::before {
	left: 100%;
}

.premium-submit-btn:hover {
	transform: translateY(-3px);
	box-shadow: 0 15px 40px rgba(239, 68, 68, 0.6);
}

.premium-submit-btn:active {
	transform: translateY(-1px);
}

.btn-loading {
	display: none;
}

.premium-submit-btn.loading .btn-text {
	opacity: 0;
}

.premium-submit-btn.loading .btn-loading {
	display: block;
	position: absolute;
}

/* ========================================= */
/* MENSAGENS DE FEEDBACK */
/* ========================================= */

.help-text {
	font-size: 0.875rem;
	color: rgba(255, 255, 255, 0.7);
	margin-top: 0.5rem;
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.error-message {
	color: #fbbf24;
	font-size: 0.875rem;
	font-weight: 600;
	margin-top: 0.5rem;
	min-height: 1.25rem;
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.error-message::before {
	content: '⚠';
	font-size: 0.75rem;
}

.location-status-text {
	font-size: 0.875rem;
	color: rgba(255, 255, 255, 0.7);
	margin-top: 0.5rem;
	font-style: italic;
}

/* Estados de Erro */
.form-group.has-error .premium-input,
.form-group.has-error .premium-select,
.form-group.has-error .premium-textarea {
	border-color: #fbbf24;
	box-shadow: 0 0 0 4px rgba(251, 191, 36, 0.2);
}

/* ========================================= */
/* SEÇÃO OPCIONAL */
/* ========================================= */

.optional-details {
	margin-top: 2rem;
}

.optional-content {
	margin-top: 1.5rem;
	padding: 1.5rem;
	background: rgba(255, 255, 255, 0.05);
	border-radius: var(--radius-lg);
	border: 1px solid rgba(255, 255, 255, 0.2);
	transition: all 0.3s ease;
	backdrop-filter: blur(5px);
}

.optional-content.hidden {
	display: none;
}

.optional-content.visible {
	display: block;
	animation: slideDown 0.3s ease;
}

@keyframes slideDown {
	from {
		opacity: 0;
		transform: translateY(-10px);
	}

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

/* ========================================= */
/* ANIMAÇÕES */
/* ========================================= */

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}

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

/* ========================================= */
/* RESPONSIVIDADE */
/* ========================================= */

@media (max-width: 1024px) {
	.form-grid {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}

	.premium-card {
		padding: 2rem;
	}

	.hero-title {
		font-size: 2rem;
	}
}

@media (max-width: 768px) {
	.container {
		padding: 0 1rem;
	}

	.main-content {
		padding: 1rem 0 2rem;
	}

	.form-hero {
		margin-bottom: 2rem;
		padding: 1rem 0;
	}

	.hero-title {
		font-size: 1.75rem;
	}

	.hero-subtitle {
		font-size: 1rem;
	}

	.progress-steps {
		margin-bottom: 2rem;
	}

	.step-label {
		font-size: 0.75rem;
	}

	.premium-card {
		padding: 1.5rem;
	}

	.card-header {
		flex-direction: column;
		align-items: flex-start;
		gap: 0.75rem;
	}

	.card-header h3 {
		flex-direction: column;
		align-items: flex-start;
		gap: 0.5rem;
	}

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

	.cep-input-group,
	.address-input-group {
		flex-direction: column;
	}

	.premium-footer {
		padding: 1.5rem;
	}

	.impact-message {
		flex-direction: column;
		text-align: center;
		gap: 0.75rem;
	}

	.checkbox-container {
		padding: 1rem;
	}

	.premium-submit-btn {
		padding: 1.25rem 1.5rem;
		font-size: 1rem;
	}

	/* Ajustar animação de alimentos para mobile */
	.floating-food-background i {
		font-size: 1.25rem;
	}
}

@media (max-width: 480px) {
	.hero-title {
		font-size: 1.5rem;
	}

	.hero-badge {
		font-size: 0.75rem;
		padding: 0.4rem 1rem;
	}

	.progress-steps {
		gap: 0.5rem;
	}

	.step-number {
		width: 32px;
		height: 32px;
		font-size: 0.75rem;
	}

	.step-label {
		font-size: 0.7rem;
	}

	.progress-bar {
		left: 40px;
		right: 40px;
	}

	.premium-card {
		padding: 1.25rem;
	}

	.card-icon {
		width: 40px;
		height: 40px;
		font-size: 1rem;
	}

	.card-header h3 {
		font-size: 1.25rem;
	}
}

/* Estados de loading */
.form-loading {
	pointer-events: none;
	opacity: 0.7;
}

.form-loading::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(255, 255, 255, 0.1);
	z-index: 10;
	backdrop-filter: blur(2px);
}