/* Components Styles */

/* Specialties Tags */
.specialties {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 15px;
	margin-bottom: 40px;
}

.specialty-tag {
	background: rgba(255, 255, 255, 0.2);
	color: white;
	padding: 8px 16px;
	border-radius: 4px;
	font-size: 0.9rem;
	letter-spacing: 2px;
	font-weight: 500;
	border: 1px solid rgba(255, 255, 255, 0.1);
	transition: all 0.3s ease;
	text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.specialty-tag:hover {
	background: rgba(255, 255, 255, 0.3);
	transform: translateY(-2px);
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Buttons */
.cta-buttons {
	display: flex;
	gap: 20px;
	justify-content: center;
	flex-wrap: wrap;
}

.btn {
	padding: 15px 30px;
	border: none;
	border-radius: 4px;
	font-size: 1.1rem;
	font-weight: 500;
	text-decoration: none;
	transition: all 0.3s ease;
	cursor: pointer;
	position: relative;
	overflow: hidden;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 180px;
	letter-spacing: 2px;
}

.btn-primary {
	background: linear-gradient(45deg, #b5906e, #f88257);
	color: white;
	box-shadow: 0 8px 8px rgba(19, 17, 17, 0.4);
	text-transform: uppercase;
}

.btn-secondary {
	background: rgba(255, 255, 255, 0.2);
	color: white;
	border: 2px solid rgba(255, 255, 255, 0.3);
	backdrop-filter: blur(10px);
}

.btn:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 8px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
	box-shadow: 0 8px 8px rgba(19, 17, 17, 0.4);
	background: linear-gradient(45deg, #b5906e, #f88257);
}

.btn-secondary:hover {
	background: rgba(255, 255, 255, 0.3);
	border-color: rgba(255, 255, 255, 0.5);
}

/* Cookie Banner */
.cookie-banner {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	background: rgba(0, 0, 0, 0.95);
	backdrop-filter: blur(10px);
	color: white;
	padding: 20px;
	z-index: 1000;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	transform: translateY(100%);
	transition: transform 0.5s ease;
}

.cookie-banner.show {
	transform: translateY(0);
}

.cookie-content {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 20px;
}

.cookie-text {
	flex: 1;
	min-width: 300px;
}

.cookie-text p {
	margin-bottom: 10px;
	line-height: 1.5;
}

.cookie-actions {
	display: flex;
	gap: 15px;
	flex-wrap: wrap;
}

.cookie-btn {
	padding: 10px 20px;
	border: none;
	border-radius: 4px;
	cursor: pointer;
	font-weight: 500;
	transition: all 0.3s ease;
	font-size: 0.9rem;
}

.cookie-accept {
	background: #4caf50;
	color: white;
}

.cookie-decline {
	background: transparent;
	color: white;
	border: 1px solid rgba(255, 255, 255, 0.3);
}

.cookie-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.privacy-link {
	color: #64b5f6;
	text-decoration: none;
	transition: color 0.3s ease;
}

.privacy-link:hover {
	color: #42a5f5;
	text-decoration: underline;
}

/* WhatsApp Float Button */
.whatsapp-float {
	position: fixed;
	width: 60px;
	height: 60px;
	bottom: 100px;
	right: 30px;
	background-color: #25d366;
	color: white;
	border-radius: 50px;
	text-align: center;
	font-size: 30px;
	box-shadow: 2px 2px 3px #999;
	z-index: 999;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
	text-decoration: none;
}

.whatsapp-float:hover {
	background-color: #20ba5a;
	transform: scale(1.1);
	box-shadow: 2px 2px 10px #666;
}

.whatsapp-float svg {
	width: 24px;
	height: 24px;
}
