/*
Theme Name: Expo Smart Fashion
Theme URI: https://www.exposmartfashion.com.br/
Author: Gemini AI
Author URI: https://gemini.google.com/
Description: A custom theme developed for Expo Smart Fashion, based on the provided layout. All content is manageable through the WordPress admin panel.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: custom-theme, tailwind-css, responsive
Text Domain: expo-smart-fashion
*/

html {
	scroll-behavior: smooth;
}

body {
	background-color: #0b0b0b;
}

::selection {
	background: #ff2d96;
	color: #0b0b0b;
}

.bg-noise {
	background-image: radial-gradient(circle at 0 0, rgba(255, 45, 150, 0.18) 0, transparent 48%),
		radial-gradient(circle at 100% 0, rgba(0, 209, 255, 0.16) 0, transparent 50%),
		repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.04) 0, rgba(255, 255, 255, 0.04) 1px, transparent 1px, transparent 6px);
	background-size: cover;
}

.main-nav a {
	color: #f3f4f6;
	text-decoration: none;
	transition: color 0.3s ease;
}

.main-nav a:hover {
	color: #ff2d96;
}

.main-nav a:focus-visible {
	outline: 2px solid #ff2d96;
	outline-offset: 4px;
}

.main-nav li.current-menu-item > a,
.main-nav li.current-menu-ancestor > a {
	color: #ff2d96;
}

.section-chip {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.75rem 3.25rem;
	border-radius: 12px;
	background-color: #ff449b;
	color: #ffffff;
	font-weight: 700;
	text-transform: none;
	letter-spacing: 0;
	font-size: 1.35rem;
	line-height: 1.1;
}

.expo-logolist {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
	gap: 2.5rem;
	align-items: center;
}

.expo-logo-item {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 160px;
}

.expo-logo-item img {
	max-height: 140px;
	width: auto;
}

.expo-logo-item span {
	color: #6b7280;
	font-size: 0.85rem;
}

.expo-logolist[data-mobile-slider="true"] .expo-logo-item {
	display: none;
}

.expo-logolist[data-mobile-slider="true"] .expo-logo-item.is-active {
	display: flex;
}

@media (max-width: 768px) {
	.expo-logolist[data-mobile-slider="true"] {
		display: flex;
		justify-content: center;
		align-items: center;
		min-height: 140px;
		position: relative;
	}
	.expo-logolist {
		gap: 1.5rem;
	}
}

.essence-section {
	background-color: #e3e3e3;
}

.essence-card {
	background: #111111;
	border-radius: 28px;
	padding: 3rem 3.5rem;
	display: flex;
	gap: 2.75rem;
	justify-content: space-between;
	box-shadow: 0 35px 70px rgba(0, 0, 0, 0.35);
}

.essence-item {
	flex: 1 1 0;
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
	color: #f4f4f4;
}

.essence-item + .essence-item {
	position: relative;
}

.essence-item + .essence-item::before {
	content: '';
	position: absolute;
	left: -1.4rem;
	top: 0;
	bottom: 0;
	width: 1px;
	background: rgba(255, 255, 255, 0.1);
}

.essence-icon {
	width: 72px;
	height: 72px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 18px;
	background: #ff449b;
	color: #111111;
	font-size: 2.3rem;
}

.essence-item h3 {
	font-size: 1.35rem;
	font-weight: 700;
	color: #ff449b;
}

.essence-item p {
	font-size: 0.95rem;
	line-height: 1.7;
	color: rgba(244, 244, 244, 0.8);
}

.essence-cta {
	background: #ff449b;
	color: #111111;
	font-weight: 700;
	letter-spacing: 0.2em;
	border-radius: 16px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.75rem;
	padding: 0.95rem 3.5rem;
	text-transform: uppercase;
}

.essence-cta:hover {
	background: #ff5bb1;
}

@media (max-width: 1024px) {
	.essence-card {
		flex-direction: column;
		gap: 2rem;
		padding: 2.5rem;
	}
	.essence-item + .essence-item::before {
		display: none;
	}
}

@media (max-width: 640px) {
	.essence-card {
		padding: 2rem;
	}
	.essence-item h3 {
		font-size: 1.2rem;
	}
	.essence-item p {
		font-size: 0.9rem;
	}
}

.hero-glow {
	position: absolute;
	width: 380px;
	height: 380px;
	border-radius: 9999px;
	background: radial-gradient(circle, rgba(255, 45, 150, 0.45), transparent 65%);
	filter: blur(60px);
	opacity: 0.75;
}

.card-outline {
	border: 1px solid rgba(255, 255, 255, 0.08);
	background: rgba(14, 14, 14, 0.75);
	backdrop-filter: blur(6px);
}

.tabstrip {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
	gap: 16px;
}

.tabstrip__item {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	padding: 18px 20px;
	border-radius: 16px;
	background-color: rgba(14, 14, 14, 0.9);
	border: 1px solid rgba(255, 255, 255, 0.08);
	transition: transform 0.3s ease, border-color 0.3s ease;
}

.tabstrip__item:hover {
	transform: translateY(-4px);
	border-color: rgba(255, 45, 150, 0.6);
}

.faq-accordion .accordion-content {
	transition: max-height 0.4s ease;
}

.faq-accordion .accordion-arrow {
	transition: transform 0.3s ease;
}

.floating-whatsapp {
	position: fixed;
	bottom: 24px;
	right: 24px;
	z-index: 60;
	width: 58px;
	height: 58px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 9999px;
	background: linear-gradient(135deg, #00e58f, #00d1ff);
	color: #0b0b0b;
	font-weight: 700;
	box-shadow: 0 20px 35px rgba(0, 209, 255, 0.25);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.floating-whatsapp:hover {
	transform: scale(1.05);
	box-shadow: 0 25px 40px rgba(0, 209, 255, 0.32);
}

.floating-whatsapp span {
	font-size: 28px;
}

@media (max-width: 640px) {
	.floating-whatsapp {
		bottom: 18px;
		right: 18px;
		width: 52px;
		height: 52px;
	}
}
