﻿/* Hero Section */
.contato-hero {
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color: white;
	padding: 60px 0;
	margin-bottom: 40px;
}

.hero-content h1 {
	font-size: 2.5rem;
	font-weight: 800;
	margin-bottom: 15px;
}

.hero-content p {
	font-size: 1.1rem;
	opacity: 0.95;
	line-height: 1.7;
	margin-bottom: 30px;
}

.hero-stats {
	display: flex;
	gap: 30px;
	flex-wrap: wrap;
}

.stat-item {
	display: flex;
	align-items: center;
	gap: 15px;
}

	.stat-item strong {
		display: block;
		font-size: 1.1rem;
	}

	.stat-item span {
		display: block;
		font-size: 0.9rem;
		opacity: 0.9;
	}

.hero-illustration {
	font-size: 8rem;
	opacity: 0.2;
}

/* Form Card */
.form-card {
	background: white;
	border-radius: 15px;
	box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
	padding: 40px;
	margin-bottom: 40px;
}

	.form-card h2 {
		color: #667eea;
		font-weight: 700;
		margin-bottom: 10px;
	}

	.form-card .subtitle {
		color: #6b7280;
		margin-bottom: 30px;
	}

/* Form Styles */
.form-group label {
	font-weight: 600;
	color: #374151;
	display: flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 8px;
	font-size: 1rem;
}

.form-control {
	border: 2px solid #e5e7eb;
	border-radius: 10px;
	padding: 12px 15px;
	transition: all 0.3s ease;
}

	.form-control:focus {
		border-color: #667eea;
		box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
	}

textarea.form-control {
	min-height: 150px;
	resize: vertical;
}

.input-group-text {
	background: #f3f4f6;
	/*border: 2px solid #e5e7eb;*/
	border-right: none;
	/*padding: 12px 15px;*/
	border-radius: 10px 0 0 10px;
}

.input-group .form-control {
	border-left: none;
	border-radius: 0 10px 10px 0;
}

.char-counter {
	text-align: right;
	font-size: 0.875rem;
	color: #6b7280;
	margin-top: 5px;
}

/* Button */
.btn-enviar {
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	border: none;
	color: white;
	padding: 12px 40px;
	font-size: 1.1rem;
	font-weight: 600;
	border-radius: 50px;
	transition: all 0.3s ease;
	box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

	.btn-enviar:hover {
		transform: translateY(-2px);
		box-shadow: 0 6px 20px rgba(102, 126, 234, 0.6);
		color: white;
	}

	.btn-enviar:disabled {
		opacity: 0.6;
		cursor: not-allowed;
		transform: none;
	}

/* Alerts */
.alert {
	border-radius: 10px;
	padding: 20px;
	display: flex;
	align-items: center;
	gap: 15px;
	margin-top: 20px;
	font-size: 1.5rem;
}

	.alert strong, .alert span {
		font-size: 1rem;
	}

.alert-success {
	background: #d1fae5;
	color: #065f46;
	border: 2px solid #34d399;
}

.alert-danger {
	background: #fee2e2;
	color: #991b1b;
	border: 2px solid #f87171;
}

/* Info Cards */
.info-cards {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 25px;
	margin: 40px 0;
}

.info-card {
	background: white;
	border-radius: 15px;
	padding: 35px 25px;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
	text-align: center;
	transition: all 0.3s ease;
	display: flex;
	flex-direction: column;
	align-items: center;
}

	.info-card:hover {
		transform: translateY(-5px);
		box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
	}

.info-icon {
	width: 80px;
	height: 80px;
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 20px;
	color: white;
	font-size: 3rem;
	flex-shrink: 0;
}

.info-card h3 {
	color: #374151;
	font-weight: 700;
	font-size: 1.4rem;
	margin-bottom: 12px;
}

.info-card p {
	color: #6b7280;
	line-height: 1.7;
	font-size: 1rem;
	margin: 0;
}

/* Responsive */
@@media (max-width: 768px) {
	.hero-content h1 {
		font-size: 2rem;
	}

	.form-card {
		padding: 25px;
	}

	.hero-stats {
		gap: 20px;
	}
}

