/* Componentes Específicos e Efeitos Premium */

/* Contact Section Ultra Premium */
.contact {
	background: var(--gradient-hero);
	color: var(--text-light);
	position: relative;
	overflow: hidden;
}

.contact::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url("data:image/svg+xml,%3csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3cpattern id='contact-pattern' width='20' height='20' patternUnits='userSpaceOnUse'%3e%3ccircle cx='10' cy='10' r='1' fill='rgba(255,255,255,0.1)'/%3e%3c/pattern%3e%3c/defs%3e%3crect width='100' height='100' fill='url(%23contact-pattern)'/%3e%3c/svg%3e");
	opacity: 0.3;
}

.contact .section-title {
	color: var(--text-light);
}

.contact .section-subtitle {
	color: rgba(255, 255, 255, 0.9);
}

.contact-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: var(--spacing-3xl);
	align-items: start;
	position: relative;
	z-index: 2;
}

.contact-info {
	display: flex;
	flex-direction: column;
	gap: var(--spacing-xl);
}

.contact-item {
	display: flex;
	align-items: flex-start;
	gap: var(--spacing-lg);
	padding: var(--spacing-lg);
	background: var(--bg-glass);
	backdrop-filter: blur(15px);
	border-radius: var(--radius-xl);
	border: 1px solid rgba(255, 255, 255, 0.2);
	transition: var(--transition-normal);
}

.contact-item:hover {
	background: rgba(255, 255, 255, 0.15);
	transform: translateY(-5px);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.contact-icon {
	width: 70px;
	height: 70px;
	background: var(--gradient-accent);
	border-radius: var(--radius-full);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.8rem;
	color: white;
	flex-shrink: 0;
	box-shadow: var(--shadow-glow);
	transition: var(--transition-normal);
}

.contact-item:hover .contact-icon {
	transform: scale(1.1) rotate(5deg);
	box-shadow: var(--shadow-glow), var(--shadow-xl);
}

.contact-details h4 {
	font-size: 1.3rem;
	font-weight: 700;
	margin-bottom: var(--spacing-xs);
	color: var(--text-light);
}

.contact-details p {
	color: rgba(255, 255, 255, 0.8);
	line-height: 1.6;
}

/* Contact Form Premium */
.contact-form {
	background: var(--bg-glass);
	backdrop-filter: blur(20px) saturate(180%);
	-webkit-backdrop-filter: blur(20px) saturate(180%);
	padding: var(--spacing-xl);
	border-radius: var(--radius-xl);
	border: 1px solid rgba(255, 255, 255, 0.2);
	box-shadow: var(--shadow-2xl);
	position: relative;
	overflow: hidden;
}

.contact-form::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: var(--gradient-accent);
	border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

.form-group {
	margin-bottom: var(--spacing-lg);
	position: relative;
}

.form-group label {
	display: block;
	margin-bottom: var(--spacing-xs);
	font-weight: 600;
	color: var(--text-light);
	font-size: 0.95rem;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.form-control {
	width: 100%;
	padding: var(--spacing-md) var(--spacing-lg);
	border: 2px solid rgba(255, 255, 255, 0.2);
	border-radius: var(--radius-lg);
	background: rgba(255, 255, 255, 0.1);
	color: var(--text-light);
	font-size: 1rem;
	font-family: inherit;
	transition: var(--transition-normal);
	backdrop-filter: blur(10px);
}

.form-control:focus {
	outline: none;
	border-color: var(--accent-cyan);
	background: rgba(255, 255, 255, 0.15);
	box-shadow: 0 0 0 4px rgba(6, 182, 212, 0.2);
	transform: translateY(-2px);
}

.form-control::placeholder {
	color: rgba(255, 255, 255, 0.6);
}

textarea.form-control {
	resize: vertical;
	min-height: 140px;
	font-family: inherit;
}

/* Process Section Premium */
.process {
	background: var(--bg-primary);
	position: relative;
}

.process::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(45deg, transparent 48%, rgba(6, 182, 212, 0.03) 49%, rgba(6, 182, 212, 0.03) 51%, transparent 52%);
}

.process-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	gap: var(--spacing-xl);
	position: relative;
	z-index: 2;
}

.process-item {
	text-align: center;
	position: relative;
	padding: var(--spacing-xl);
	background: var(--gradient-card);
	border-radius: var(--radius-xl);
	box-shadow: var(--shadow-lg);
	border: 1px solid rgba(6, 182, 212, 0.1);
	transition: var(--transition-normal);
}

.process-item::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: var(--gradient-accent);
	opacity: 0;
	border-radius: var(--radius-xl);
	transition: var(--transition-normal);
	z-index: -1;
}

.process-item:hover::before {
	opacity: 0.05;
}

.process-item:hover {
	transform: translateY(-10px) scale(1.02);
	box-shadow: var(--shadow-2xl), var(--shadow-glow);
	border-color: var(--accent-cyan);
}

.process-number {
	width: 80px;
	height: 80px;
	background: var(--gradient-accent);
	border-radius: var(--radius-full);
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto var(--spacing-lg);
	font-size: 2rem;
	font-weight: 800;
	color: white;
	box-shadow: var(--shadow-glow);
	position: relative;
	transition: var(--transition-normal);
}

.process-number::after {
	content: '';
	position: absolute;
	top: -10px;
	left: -10px;
	right: -10px;
	bottom: -10px;
	border: 2px solid rgba(6, 182, 212, 0.3);
	border-radius: var(--radius-full);
	animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
	0% {
		transform: scale(1);
		opacity: 1;
	}
	100% {
		transform: scale(1.2);
		opacity: 0;
	}
}

.process-item:hover .process-number {
	transform: scale(1.1) rotate(5deg);
}

.process-item h3 {
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--text-primary);
	margin-bottom: var(--spacing-md);
}

.process-item p {
	color: var(--text-secondary);
	line-height: 1.7;
	font-size: 1.05rem;
}

/* Values Section Premium */
.values {
	background: var(--bg-secondary);
	position: relative;
}

.values::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: radial-gradient(circle at 20% 80%, rgba(139, 92, 246, 0.1) 0%, transparent 50%), 
	           radial-gradient(circle at 80% 20%, rgba(6, 182, 212, 0.1) 0%, transparent 50%);
}

.values-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: var(--spacing-lg);
	position: relative;
	z-index: 2;
}

.value-item {
	text-align: center;
	padding: var(--spacing-xl);
	background: var(--bg-primary);
	border-radius: var(--radius-xl);
	box-shadow: var(--shadow-md);
	transition: var(--transition-normal);
	position: relative;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.1);
}

.value-item::before {
	content: '';
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: conic-gradient(from 0deg, var(--accent-cyan), var(--secondary-blue), var(--accent-purple), var(--accent-cyan));
	opacity: 0;
	animation: rotate 20s linear infinite;
	transition: var(--transition-normal);
	z-index: -1;
}

.value-item:hover::before {
	opacity: 0.05;
}

@keyframes rotate {
	0% { transform: rotate(0deg); }
	100% { transform: rotate(360deg); }
}

.value-item:hover {
	transform: translateY(-8px);
	box-shadow: var(--shadow-xl), var(--shadow-glow);
}

.value-icon {
	width: 90px;
	height: 90px;
	background: var(--gradient-accent);
	border-radius: var(--radius-full);
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto var(--spacing-lg);
	font-size: 2.2rem;
	color: white;
	box-shadow: var(--shadow-glow);
	position: relative;
	transition: var(--transition-normal);
}

.value-item:hover .value-icon {
	transform: scale(1.1);
	box-shadow: var(--shadow-glow), var(--shadow-xl);
}

.value-item h3 {
	font-size: 1.3rem;
	font-weight: 700;
	color: var(--text-primary);
	margin-bottom: var(--spacing-md);
}

.value-item p {
	color: var(--text-secondary);
	line-height: 1.6;
	font-size: 0.98rem;
}

/* Footer Premium */
.footer {
	background: var(--bg-dark);
	color: var(--text-light);
	padding: var(--spacing-3xl) 0 var(--spacing-lg);
	position: relative;
	overflow: hidden;
}

.footer::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 1px;
	background: var(--gradient-accent);
}

.footer-content {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 var(--spacing-lg);
	text-align: center;
	position: relative;
	z-index: 2;
}

.footer-logo {
	margin-bottom: var(--spacing-lg);
	text-align: center;
}

.footer-logo img {
	height: 80px;
	width: auto;
	object-fit: contain;
	filter: brightness(1.1);
	transition: var(--transition-normal);
}

.footer-logo img:hover {
	filter: brightness(1.2);
	transform: scale(1.05);
}

.footer-info h3 {
	font-size: 1.8rem;
	font-weight: 700;
	margin-bottom: var(--spacing-md);
	background: var(--gradient-accent);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.footer-info p {
	color: rgba(255, 255, 255, 0.8);
	margin-bottom: var(--spacing-xs);
	font-size: 1.05rem;
}

.social-links {
	display: flex;
	justify-content: center;
	gap: var(--spacing-lg);
	margin: var(--spacing-xl) 0;
}

.social-link {
	width: 60px;
	height: 60px;
	background: var(--bg-glass);
	border: 2px solid rgba(255, 255, 255, 0.2);
	border-radius: var(--radius-full);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--text-light);
	text-decoration: none;
	font-size: 1.5rem;
	transition: var(--transition-normal);
	backdrop-filter: blur(10px);
	position: relative;
	overflow: hidden;
}

.social-link::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: var(--gradient-accent);
	opacity: 0;
	transition: var(--transition-normal);
	border-radius: var(--radius-full);
}

.social-link:hover::before {
	opacity: 1;
}

.social-link:hover {
	transform: translateY(-5px);
	border-color: var(--accent-cyan);
	box-shadow: var(--shadow-glow);
}

.social-link i {
	position: relative;
	z-index: 2;
}

.footer-divider {
	height: 1px;
	background: rgba(255, 255, 255, 0.2);
	margin: var(--spacing-xl) 0 var(--spacing-md);
}

.footer-bottom {
	color: rgba(255, 255, 255, 0.6);
	font-size: 0.9rem;
}

/* Loading States */
.loading-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: var(--gradient-hero);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 9999;
	opacity: 1;
	transition: opacity 0.5s ease;
}

.loading-overlay.hidden {
	opacity: 0;
	pointer-events: none;
}

.loading-spinner {
	width: 60px;
	height: 60px;
	border: 4px solid rgba(255, 255, 255, 0.2);
	border-left-color: var(--accent-cyan);
	border-radius: 50%;
	animation: spin 1s linear infinite;
}

@keyframes spin {
	to { transform: rotate(360deg); }
}

/* Scroll to Top Button */
.scroll-to-top {
	position: fixed;
	bottom: 2rem;
	right: 2rem;
	width: 60px;
	height: 60px;
	background: var(--gradient-accent);
	border: none;
	border-radius: var(--radius-full);
	color: white;
	font-size: 1.5rem;
	cursor: pointer;
	box-shadow: var(--shadow-xl);
	transition: var(--transition-normal);
	z-index: 1000;
	opacity: 0;
	visibility: hidden;
	transform: scale(0.8);
}

.scroll-to-top.visible {
	opacity: 1;
	visibility: visible;
	transform: scale(1);
}

.scroll-to-top:hover {
	transform: translateY(-3px) scale(1.1);
	box-shadow: var(--shadow-glow), var(--shadow-xl);
}

/* Notification System */
.notification {
	position: fixed;
	top: 2rem;
	right: 2rem;
	background: var(--gradient-card);
	padding: var(--spacing-md) var(--spacing-lg);
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-xl);
	border: 1px solid rgba(6, 182, 212, 0.3);
	z-index: 1001;
	transform: translateX(100%);
	transition: transform 0.3s ease;
}

.notification.show {
	transform: translateX(0);
}

.notification.success {
	border-color: rgba(34, 197, 94, 0.5);
	background: linear-gradient(135deg, rgba(34, 197, 94, 0.1) 0%, rgba(255, 255, 255, 1) 100%);
}

.notification.error {
	border-color: rgba(239, 68, 68, 0.5);
	background: linear-gradient(135deg, rgba(239, 68, 68, 0.1) 0%, rgba(255, 255, 255, 1) 100%);
}

/* Contact Links */
.contact-link {
	text-decoration: none;
	color: inherit;
	cursor: pointer;
}

.contact-link:hover {
	background: rgba(255, 255, 255, 0.05);
	transform: translateY(-2px);
}

.contact-link:hover .contact-icon {
	background: var(--accent-cyan);
	color: white;
	transform: scale(1.1);
}

/* WhatsApp Floating Button */
.whatsapp-float {
	position: fixed;
	bottom: 2rem;
	right: 2rem;
	width: 60px;
	height: 60px;
	background: #25d366;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.8rem;
	color: white;
	text-decoration: none;
	box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
	z-index: 1000;
	transition: all 0.3s ease;
	animation: whatsappPulse 2s infinite;
}

.whatsapp-float:hover {
	transform: scale(1.1);
	box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
	color: white;
}

@keyframes whatsappPulse {
	0% {
		box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
	}
	50% {
		box-shadow: 0 4px 20px rgba(37, 211, 102, 0.8), 0 0 0 10px rgba(37, 211, 102, 0.1);
	}
	100% {
		box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
	}
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
	.contact-content {
		grid-template-columns: 1fr;
	}
	
	.whatsapp-float {
		bottom: 1.5rem;
		right: 1.5rem;
		width: 55px;
		height: 55px;
		font-size: 1.6rem;
	}
}

@media (max-width: 480px) {
	.whatsapp-float {
		bottom: 1rem;
		right: 1rem;
		width: 50px;
		height: 50px;
		font-size: 1.4rem;
	}
	
	.contact-form {
		padding: 1.5rem;
	}
	
	.form-control {
		padding: 0.8rem;
		font-size: 0.95rem;
	}
}
