/*
Theme Name: WayImport Template
Author: C.C. Soft++
Author URI: https://funnystorm.wordpres.com
Description: tema criado para a WayImport
Version: 1.0
Text Domain: wayimport
*/

/* CONFIGURAÇÕES GERAIS */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
	background-color: #f4f6f9;
	color: #333;
	line-height: 1.6;
}

a {
	text-decoration: none;
	color: inherit;
}

.container {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
}

/* CABEÇALHO E NAV */
header {
	background-color: #ffffff;
	box-shadow: 0 2px 10px rgba(0,0,0,0.1);
	position: sticky;
	top: 0;
	z-index: 1000;
}

.header-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 15px 0;
}

.logo {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 24px;
	font-weight: bold;
	/*color: #1a365d;*/
}

.logo-img {
	width: 100px;
	height: 51px;
	/*background: linear-gradient(135deg, #2b6cb0, #319795);*/
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-size: 20px;
}

.nav-and-social {
	display: flex;
	align-items: center;
	gap: 40px;
}

nav ul {
	display: flex;
	list-style: none;
	gap: 25px;
}

nav a {
	font-weight: 600;
	color: #4a5568;
	transition: color 0.3s;
}

nav a:hover {
	color: #2b6cb0;
}

/* REDES SOCIAIS NO TOPO */
.header-socials {
	display: flex;
	gap: 12px;
	border-left: 2px solid #e2e8f0;
	padding-left: 20px;
}

.header-social-btn {
	font-size: 13px;
	font-weight: bold;
	padding: 6px 12px;
	border-radius: 20px;
	color: white;
	transition: transform 0.2s, opacity 0.2s;
}

.header-social-btn:hover {
	transform: scale(1.05);
	opacity: 0.9;
}

.bg-ig { background-color: #e1306c; }
.bg-fb { background-color: #1877f2; }
.bg-yt { background-color: #ff0000; }

/* BANNER ROTATIVO (CARROSSEL CSS) */
.carousel-container {
	position: relative;
	width: 100%;
	height: 450px;
	overflow: hidden;
	background-color: #000;
}

.slider {
	display: flex;
	width: 300%;
	height: 100%;
	animation: rotateSlider 15s infinite ease-in-out;
}

.slide {
	width: 33.333%;
	height: 100%;
	position: relative;
}

.slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0.6;
}

.slide-content {
	position: absolute;
	top: 50%;
	left: 10%;
	transform: translateY(-50%);
	color: white;
	text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
}

.slide-content h2 {
	font-size: 42px;
	margin-bottom: 10px;
}

.slide-content p {
	font-size: 18px;
}

@keyframes rotateSlider {
	0%, 30% { transform: translateX(0); }
	33%, 63% { transform: translateX(-33.333%); }
	66%, 96% { transform: translateX(-66.666%); }
	100% { transform: translateX(0); }
}


		
/* SEÇÃO DESTAQUES */
.categories-section {
	padding: 60px 0; /* era 60px */
	text-align: center;
	
}

.categories-section h2 {
	font-size: 32px;
	color: #1a365d;
	margin-bottom: 40px;
	position: relative;
}

.categories-section h2::after {
	content: '';
	display: block;
	width: 60px;
	height: 4px;
	background-color: #2b6cb0;
	margin: 10px auto 0 auto;
	border-radius: 2px;
}

.grid-categories {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 30px;
}

.category-card {
	background: white;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 4px 6px rgba(0,0,0,0.05);
	transition: transform 0.3s, box-shadow 0.3s;
	
}

.category-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.category-card img {
	width: 100%;
	height: 250px;
	object-fit: cover;
}

.category-info {
	padding: 25px;
}

.category-info h3 {
	font-size: 22px;
	color: #2d3748;
	margin-bottom: 10px;
}

.category-info p {
	color: #718096;
	font-size: 15px;
}

/* CONTATO RÁPIDO (SEM FORMULÁRIO) */
.contact-section {
	background-color: #1a365d;
	color: white;
	padding: 60px 0;
	text-align: center;
}

.contact-section h2 {
	font-size: 32px;
	margin-bottom: 20px;
}

.contact-info-box {
	display: flex;
	justify-content: center;
	gap: 40px;
	margin-top: 30px;
	flex-wrap: wrap;
}

.info-item {
	background-color: rgba(255,255,255,0.1);
	padding: 20px 40px;
	border-radius: 8px;
	min-width: 250px;
}

.info-item h4 {
	font-size: 18px;
	margin-bottom: 5px;
	color: #90cdf4;
}

/* RODAPÉ */
footer {
	background-color: #0f172a;
	color: #94a3b8;
	padding: 40px 0;
	text-align: center;
	border-top: 1px solid #1e293b;
}

.footer-socials {
	display: flex;
	justify-content: center;
	gap: 20px;
	margin-bottom: 25px;
}

.social-btn {
	background-color: #1e293b;
	color: white;
	padding: 10px 20px;
	border-radius: 30px;
	font-weight: 600;
	transition: background-color 0.3s, transform 0.3s;
}

.social-btn.ig:hover { background-color: #e1306c; transform: scale(1.05); }
.social-btn.fb:hover { background-color: #1877f2; transform: scale(1.05); }
.social-btn.yt:hover { background-color: #ff0000; transform: scale(1.05); }

footer p {
	font-size: 14px;
}

/* RESPONSIVIDADE */
@media (max-width: 992px) {
	.header-container {
		flex-direction: column;
		gap: 15px;
	}
	.nav-and-social {
		flex-direction: column;
		gap: 15px;
	}
	.header-socials {
		border-left: none;
		padding-left: 0;
	}
}

@media (max-width: 768px) {
	.carousel-container {
		height: 300px;
	}
	.slide-content h2 {
		font-size: 28px;
	}
	.slide-content p {
		font-size: 14px;
	}
}
