/* Vestido Dourado - site público (gerado a partir de home.php) */

/* Estilos críticos para LCP (alinhados ao painel / dashboard) */
body { font-family: 'Inter', sans-serif; line-height: 1.6; color: #0f172a; background: #f2f5fa; margin: 0; padding: 0; }
.hero { background: transparent; padding: 120px 0 80px; position: relative; overflow: hidden; }
.hero-content { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; position: relative; z-index: 2; }
.hero-text h1 { font-family: 'Playfair Display', serif; font-size: 3.5rem; font-weight: 700; line-height: 1.2; margin-bottom: 20px; color: #0f172a; }
.hero-image img { width: 100%; height: 500px; object-fit: cover; border-radius: 16px; }
.container { max-width: 1400px; margin: 0 auto; padding: 0 20px; }
@media (max-width: 768px) { .hero-content { grid-template-columns: 1fr; gap: 40px; } .hero-text h1 { font-size: 2.5rem; } }

:root {
	--primary: #BFA15A;
	--primary-dark: #9B7E3F;
	--secondary: #8B4513;
	--accent: #edf5ff;
	--dark: #0f172a;
	--dark-soft: #334155;
	--light: #ffffff;
	--gray: #64748B;
	--gray-light: #F8F9FB;
	--surface: #ffffff;
	--text-soft: #64748B;
	--bg-soft: #F8F9FB;
	--shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
	--shadow-hover: 0 10px 32px rgba(15, 23, 42, 0.1);
	--transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: 'Inter', sans-serif;
	line-height: 1.6;
	color: var(--dark);
	background: var(--light);
	overflow-x: hidden;
}

/* Screen reader only class */
.sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.container {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 20px;
}

/* Header */
.header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(20px);
	z-index: 1000;
	border-bottom: 1px solid #e5eaf1;
	transition: var(--transition);
}

.header.scrolled {
	background: rgba(255, 255, 255, 0.98);
	box-shadow: var(--shadow);
}

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

.brand {
	display: flex;
	align-items: center;
	gap: 15px;
	text-decoration: none;
	color: var(--dark);
}

.brand-logo {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	transition: var(--transition);
}

.brand:hover .brand-logo {
	transform: scale(1.05);
	box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.brand-title {
	font-family: 'Playfair Display', serif;
	font-size: 24px;
	font-weight: 600;
	color: var(--primary);
	letter-spacing: 1px;
}

.back-btn {
	background: var(--primary);
	color: white;
	padding: 12px 24px;
	border-radius: 50px;
	text-decoration: none;
	font-weight: 600;
	transition: var(--transition);
}

.back-btn:hover {
	background: var(--primary-dark);
	transform: translateY(-2px);
}

.nav-menu {
	display: flex;
	gap: 30px;
	align-items: center;
}

.nav-menu a {
	text-decoration: none;
	color: var(--dark);
	font-weight: 500;
	position: relative;
	padding: 8px 0;
	transition: var(--transition);
	font-size: 15px;
}

.nav-menu a::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 2px;
	background: var(--primary);
	transition: var(--transition);
}

.nav-menu a:hover::after {
	width: 100%;
}

.nav-menu a:hover {
	color: var(--primary);
}

.cta-button {
	background: linear-gradient(135deg, var(--primary), var(--primary-dark));
	color: white;
	padding: 12px 24px;
	border-radius: 50px;
	text-decoration: none;
	font-weight: 600;
	transition: var(--transition);
	box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.cta-button:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

/* Mobile Menu */
.mobile-menu-toggle {
	display: none;
	flex-direction: column;
	cursor: pointer;
	padding: 8px;
	background: none;
	border: none;
}

.mobile-menu-toggle span {
	width: 25px;
	height: 3px;
	background: var(--dark);
	margin: 3px 0;
	transition: var(--transition);
	border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
	transform: rotate(-45deg) translate(-5px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
	opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
	transform: rotate(45deg) translate(-5px, -6px);
}

.mobile-menu {
	position: fixed;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100vh;
	background: rgba(255, 255, 255, 0.98);
	backdrop-filter: blur(20px);
	z-index: 9999;
	transition: var(--transition);
	padding-top: 80px;
}

.mobile-menu.active {
	left: 0;
}

.mobile-menu-content {
	padding: 20px;
}

.mobile-menu-content a {
	display: block;
	padding: 15px 0;
	text-decoration: none;
	color: var(--dark);
	font-weight: 500;
	font-size: 1.1rem;
	border-bottom: 1px solid rgba(212, 175, 55, 0.1);
	transition: var(--transition);
}

.mobile-menu-content a:hover {
	color: var(--primary);
	padding-left: 10px;
}

.mobile-menu-content .cta-button {
	margin-top: 20px;
	text-align: center;
	display: block;
}

/* Hero Section */
.hero {
	background: linear-gradient(135deg, #f8f6f0 0%, #e8e0d0 100%);
	padding: 120px 0 80px;
	position: relative;
	overflow: hidden;
}

.hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23D4AF37" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%23D4AF37" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="%23D4AF37" opacity="0.05"/><circle cx="10" cy="60" r="0.5" fill="%23D4AF37" opacity="0.05"/><circle cx="90" cy="40" r="0.5" fill="%23D4AF37" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
	opacity: 0.3;
}

.hero-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
	position: relative;
	z-index: 2;
}

.hero-text h1 {
	font-family: 'Playfair Display', serif;
	font-size: 3.5rem;
	font-weight: 700;
	line-height: 1.2;
	margin-bottom: 20px;
	color: var(--dark);
}

.hero-text .subtitle {
	font-size: 1.2rem;
	color: var(--gray);
	margin-bottom: 30px;
	line-height: 1.6;
}

.hero-buttons {
	display: flex;
	gap: 20px;
	flex-wrap: wrap;
}

.btn-primary {
	background: linear-gradient(135deg, var(--primary), var(--primary-dark));
	color: white;
	padding: 16px 32px;
	border-radius: 50px;
	text-decoration: none;
	font-weight: 600;
	transition: var(--transition);
	box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
	display: inline-flex;
	align-items: center;
	gap: 10px;
}

.btn-primary:hover {
	transform: translateY(-3px);
	box-shadow: 0 15px 35px rgba(212, 175, 55, 0.4);
}

.btn-secondary {
	background: transparent;
	color: var(--dark);
	padding: 16px 32px;
	border: 2px solid var(--primary);
	border-radius: 50px;
	text-decoration: none;
	font-weight: 600;
	transition: var(--transition);
}

.btn-secondary:hover {
	background: var(--primary);
	color: white;
	transform: translateY(-2px);
}

.hero-image {
	position: relative;
}

.hero-image img {
	width: 100%;
	height: 500px;
	object-fit: cover;
	border-radius: 20px;
	box-shadow: var(--shadow-hover);
	transition: var(--transition);
}

.hero-image:hover img {
	transform: scale(1.02);
}

/* Categories Section */
.categories {
	padding: 80px 0;
	background: var(--light);
}

.section-header {
	text-align: center;
	margin-bottom: 60px;
}

.section-title {
	font-family: 'Playfair Display', serif;
	font-size: 2.5rem;
	font-weight: 600;
	color: var(--dark);
	margin-bottom: 15px;
}

.section-subtitle {
	font-size: 1.1rem;
	color: var(--gray);
	max-width: 600px;
	margin: 0 auto;
}

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

.category-card {
	background: white;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: var(--shadow);
	transition: var(--transition);
	position: relative;
}

.category-card:hover {
	transform: translateY(-10px);
	box-shadow: var(--shadow-hover);
}

.category-image {
	height: 250px;
	background: linear-gradient(135deg, var(--accent), #f0e6d2);
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	overflow: hidden;
}

.category-image::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(45deg, transparent 30%, rgba(212, 175, 55, 0.1) 50%, transparent 70%);
	animation: shimmer 3s infinite;
}

@keyframes shimmer {
	0% { transform: translateX(-100%); }
	100% { transform: translateX(100%); }
}

.category-content {
	padding: 30px;
	text-align: center;
}

.category-title {
	font-family: 'Playfair Display', serif;
	font-size: 1.5rem;
	font-weight: 600;
	color: var(--dark);
	margin-bottom: 10px;
}

.category-description {
	color: var(--gray);
	margin-bottom: 20px;
}

.category-link {
	color: var(--primary);
	text-decoration: none;
	font-weight: 600;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	transition: var(--transition);
}

.category-link:hover {
	gap: 12px;
}

/* Products Section */
.products {
	padding: 80px 0;
	background: var(--light);
}

.products-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	gap: 30px;
}

.product-card {
	background: white;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: var(--shadow);
	transition: var(--transition);
	position: relative;
	group: hover;
	display: flex;
	flex-direction: column;
	height: 100%;
}

.product-card:hover {
	transform: translateY(-8px);
	box-shadow: var(--shadow-hover);
}

.product-image {
	height: 350px;
	position: relative;
	overflow: hidden;
}

.product-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: var(--transition);
}

.product-card:hover .product-image img {
	transform: scale(1.1);
}

.product-badge {
	position: absolute;
	top: 15px;
	left: 15px;
	background: var(--primary);
	color: white;
	padding: 6px 12px;
	border-radius: 20px;
	font-size: 0.8rem;
	font-weight: 600;
}

.product-new-badge {
	position: absolute;
	top: 15px;
	right: 15px;
	background: #e74c3c;
	color: white;
	padding: 6px 12px;
	border-radius: 20px;
	font-size: 0.8rem;
	font-weight: 600;
	animation: pulse 2s infinite;
}

@keyframes pulse {
	0% { transform: scale(1); }
	50% { transform: scale(1.05); }
	100% { transform: scale(1); }
}

.product-content {
	padding: 25px;
	display: flex;
	flex-direction: column;
	flex-grow: 1;
}

.product-title {
	font-family: 'Playfair Display', serif;
	font-size: 1.3rem;
	font-weight: 600;
	color: var(--dark);
	margin-bottom: 8px;
	line-height: 1.3;
}

.product-info {
	flex-grow: 1;
	display: flex;
	flex-direction: column;
}

.product-metrics {
	display: flex;
	gap: 15px;
	margin-bottom: 15px;
	font-size: 0.9rem;
	margin-top: auto;
}

.metric-item {
	display: flex;
	align-items: center;
	gap: 5px;
	color: var(--gray);
}

.metric-icon {
	font-size: 1rem;
}

.metric-value {
	font-weight: 600;
	color: var(--dark);
}

.metric-views { color: #3498db; }
.metric-clicks { color: #e74c3c; }
.metric-favorites { color: #e91e63; }

/* Ver Todos Button */
.btn-ver-todos {
	background: var(--primary);
	color: white;
	padding: 12px 24px;
	border-radius: 25px;
	text-decoration: none;
	font-weight: 600;
	transition: var(--transition);
	display: inline-flex;
	align-items: center;
	gap: 8px;
	box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-ver-todos:hover {
	background: var(--primary-dark);
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
	color: white;
}

.btn-ver-todos span {
	font-size: 1.2rem;
	transition: var(--transition);
}

.btn-ver-todos:hover span {
	transform: translateX(3px);
}

.product-actions {
	display: flex;
	gap: 10px;
}

.btn-view {
	flex: 1;
	background: var(--primary);
	color: white;
	padding: 12px 20px;
	border-radius: 25px;
	text-decoration: none;
	text-align: center;
	font-weight: 600;
	transition: var(--transition);
}

.btn-view:hover {
	background: var(--primary-dark);
	transform: translateY(-2px);
}

.btn-favorite {
	width: 45px;
	height: 45px;
	background: white;
	border: 2px solid var(--primary);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--primary);
	transition: var(--transition);
	cursor: pointer;
	font-size: 18px;
}

.btn-favorite:hover {
	background: var(--primary);
	color: white;
}

.btn-favorite:focus {
	outline: 2px solid var(--primary);
	outline-offset: 2px;
}

/* Footer */
.footer {
	background: var(--dark);
	color: white;
	padding: 60px 0 30px;
}

.footer-content {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 40px;
	margin-bottom: 40px;
}

.footer-section h3 {
	font-family: 'Playfair Display', serif;
	font-size: 1.3rem;
	margin-bottom: 20px;
	color: var(--primary);
}

.footer-section p,
.footer-section a {
	color: #ccc;
	text-decoration: none;
	line-height: 1.8;
	transition: var(--transition);
}

.footer-section a:hover {
	color: var(--primary);
}

.social-links {
	display: flex;
	gap: 15px;
	margin-top: 20px;
}
        .social-links a{
            color: white;
        }

.social-link {
	width: 45px;
	height: 45px;
	background: var(--primary);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	text-decoration: none;
	transition: var(--transition);
}

.social-link:hover {
	background: var(--primary-dark);
	transform: translateY(-3px);
}

.social-icon {
	width: 20px;
	height: 20px;
	fill: currentColor;
}

.footer-bottom {
	border-top: 1px solid #333;
	padding-top: 30px;
	text-align: center;
	color: #999;
}

        .copyright-link{
            color: #999;
            text-decoration: none;
            margin-top: 20px !important;
            display: table;
            margin: 0 auto;
        }
        .copyright-link:hover{
            color: var(--primary);
        }
/* Responsive */
@media (max-width: 768px) {
	.nav-menu {
		display: none;
	}
	
	.mobile-menu-toggle {
		display: flex;
	}
	
	.hero-content {
		grid-template-columns: 1fr;
		gap: 40px;
	}
	
	.hero-text h1 {
		font-size: 2.5rem;
	}
	
	.categories-grid {
		grid-template-columns: 1fr;
	}
	
	.products-grid {
		grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
	}
	
	/* Ver Todos Button - Mobile */
	.btn-ver-todos {
		padding: 10px 20px;
		font-size: 0.9rem;
	}
}

@media (max-width: 480px) {
	.hero-text h1 {
		font-size: 2rem;
	}
	
	.hero-buttons {
		flex-direction: column;
	}
	
	.products-grid {
		grid-template-columns: 1fr;
	}
	
	/* Ver Todos Button - Small Mobile */
	.btn-ver-todos {
		padding: 8px 16px;
		font-size: 0.8rem;
	}
}


/* === Página contato === */
/* Main Content */
body.page-contato .main-content {
    padding: 120px 0 80px;
}

body.page-contato .page-title {
    text-align: center;
    margin-bottom: 60px;
}

body.page-contato .page-title h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 15px;
}

body.page-contato .page-title p {
    color: var(--gray);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Contact Info */
body.page-contato .contact-info {
    background: var(--gray-light);
    padding: 40px;
    border-radius: 20px;
    margin-bottom: 60px;
}

body.page-contato .contact-info h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 30px;
    color: var(--dark);
}

body.page-contato .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
    padding: 20px;
    background: white;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

body.page-contato .contact-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

body.page-contato .contact-icon {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transition: var(--transition);
}

body.page-contato .contact-item:hover .contact-icon {
    transform: scale(1.1);
}

body.page-contato .contact-icon svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

body.page-contato .contact-icon.whatsapp svg {
    width: 26px;
    height: 26px;
}

body.page-contato .contact-icon.whatsapp { 
    background: linear-gradient(135deg, #25D366, #128C7E);
}
body.page-contato .contact-icon.phone { 
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
}
body.page-contato .contact-icon.email { 
    background: linear-gradient(135deg, #e74c3c, #c0392b);
}
body.page-contato .contact-icon.address { 
    background: linear-gradient(135deg, #8B4513, #654321);
}

body.page-contato .contact-details h3 {
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 8px;
    font-size: 1.2rem;
}

body.page-contato .contact-details p {
    color: var(--gray);
    margin-bottom: 5px;
}

body.page-contato .contact-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

body.page-contato .contact-link:hover {
    text-decoration: underline;
}

/* Map Section */
body.page-contato .map-section {
    background: var(--gray-light);
    padding: 40px;
    border-radius: 20px;
    margin-bottom: 60px;
}

body.page-contato .map-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 30px;
    color: var(--dark);
    text-align: center;
}

body.page-contato .map-container {
    position: relative;
    width: 100%;
    height: 450px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

body.page-contato .map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Social Media Section */
body.page-contato .social-section {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 2px solid rgba(212, 175, 55, 0.2);
}

body.page-contato .social-section h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--dark);
    text-align: center;
}

body.page-contato .social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

body.page-contato .social-link {
    width: 60px;
    height: 60px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

body.page-contato .social-link:hover {
    background: var(--primary-dark);
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

body.page-contato .social-icon {
    width: 28px;
    height: 28px;
    fill: currentColor;
}

/* Responsive */
@media (max-width: 768px) {
    body.page-contato .page-title h1 {
        font-size: 2rem;
    }
    
    body.page-contato .contact-info {
        padding: 30px 20px;
    }
    
    body.page-contato .contact-item {
        padding: 15px;
        gap: 15px;
    }
    
    body.page-contato .contact-icon {
        width: 50px;
        height: 50px;
    }
    
    body.page-contato .contact-icon svg {
        width: 20px;
        height: 20px;
    }
    
    body.page-contato .map-section {
        padding: 30px 20px;
    }
    
    body.page-contato .map-container {
        height: 300px;
    }
    
    body.page-contato .social-section {
        padding: 30px 20px;
    }
    
    body.page-contato .social-links {
        gap: 15px;
    }
    
    body.page-contato .social-link {
        width: 50px;
        height: 50px;
    }
    
    body.page-contato .social-icon {
        width: 24px;
        height: 24px;
    }
}

/* === Página avaliação (pesquisa pública) === */
body.page-avaliacao .main-content {
	padding: 120px 0 80px;
}

body.page-avaliacao .avaliacao-wrap {
	max-width: 640px;
	margin: 0 auto;
}

body.page-avaliacao .page-title {
	text-align: center;
	margin-bottom: 40px;
}

body.page-avaliacao .page-title h1 {
	font-family: 'Playfair Display', serif;
	font-size: 2.75rem;
	font-weight: 600;
	color: var(--dark);
	margin-bottom: 12px;
	line-height: 1.2;
}

body.page-avaliacao .page-title p {
	color: var(--gray);
	font-size: 1.1rem;
	max-width: 520px;
	margin: 0 auto;
	line-height: 1.65;
}

body.page-avaliacao .avaliacao-intro {
	text-align: center;
	margin-bottom: 28px;
}

body.page-avaliacao .avaliacao-greeting {
	font-size: 1.15rem;
	color: var(--dark);
	margin-bottom: 8px;
}

body.page-avaliacao .avaliacao-meta {
	color: var(--gray);
	font-size: 0.95rem;
	margin: 0;
}

body.page-avaliacao .avaliacao-meta-num {
	font-weight: 600;
	color: var(--primary-dark);
}

body.page-avaliacao .avaliacao-card {
	background: var(--surface);
	border-radius: 20px;
	box-shadow: var(--shadow);
	padding: 36px 40px 40px;
	margin-bottom: 24px;
	border: 1px solid rgba(15, 23, 42, 0.06);
}

body.page-avaliacao .avaliacao-card--solo {
	margin-bottom: 0;
}

body.page-avaliacao .avaliacao-field {
	margin-bottom: 24px;
}

body.page-avaliacao .avaliacao-field:last-of-type {
	margin-bottom: 0;
}

body.page-avaliacao .avaliacao-label {
	display: block;
	font-weight: 600;
	color: var(--dark);
	margin-bottom: 10px;
	font-size: 0.95rem;
	line-height: 1.45;
}

body.page-avaliacao .avaliacao-req {
	color: #c2410c;
	text-decoration: none;
	font-weight: 700;
	border: 0;
}

body.page-avaliacao .avaliacao-select,
body.page-avaliacao .avaliacao-textarea {
	width: 100%;
	font-family: 'Inter', sans-serif;
	font-size: 1rem;
	padding: 14px 16px;
	border: 2px solid #e2e8f0;
	border-radius: 14px;
	background: var(--light);
	color: var(--dark);
	transition: var(--transition);
	appearance: none;
}

body.page-avaliacao .avaliacao-select {
	cursor: pointer;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%2364748b' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 14px center;
	padding-right: 44px;
}

body.page-avaliacao .avaliacao-select:focus,
body.page-avaliacao .avaliacao-textarea:focus {
	outline: none;
	border-color: var(--primary);
	box-shadow: 0 0 0 4px rgba(191, 161, 90, 0.2);
}

body.page-avaliacao .avaliacao-textarea {
	resize: vertical;
	min-height: 110px;
	line-height: 1.55;
}

body.page-avaliacao .avaliacao-textarea::placeholder {
	color: var(--gray);
	opacity: 0.85;
}

body.page-avaliacao .avaliacao-actions {
	margin-top: 8px;
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	justify-content: center;
}

body.page-avaliacao .avaliacao-actions--submit {
	margin-top: 32px;
	padding-top: 8px;
	border-top: 1px solid #e2e8f0;
	justify-content: stretch;
}

body.page-avaliacao .avaliacao-btn-submit {
	width: 100%;
	justify-content: center;
	border: none;
	cursor: pointer;
	font-size: 1.05rem;
	padding: 16px 28px;
	border-radius: 50px;
	font-weight: 600;
	font-family: 'Inter', sans-serif;
	background: linear-gradient(135deg, var(--primary), var(--primary-dark));
	color: #fff;
	box-shadow: 0 8px 25px rgba(191, 161, 90, 0.35);
	transition: var(--transition);
}

body.page-avaliacao .avaliacao-btn-submit:hover {
	transform: translateY(-2px);
	box-shadow: 0 12px 32px rgba(191, 161, 90, 0.45);
}

body.page-avaliacao .avaliacao-btn-site {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	font-size: 1.05rem;
	padding: 16px 32px;
	border-radius: 50px;
	font-weight: 600;
	background: linear-gradient(135deg, var(--primary), var(--primary-dark));
	color: #fff;
	box-shadow: 0 8px 25px rgba(191, 161, 90, 0.35);
	transition: var(--transition);
}

body.page-avaliacao .avaliacao-btn-site:hover {
	transform: translateY(-2px);
	box-shadow: 0 12px 32px rgba(191, 161, 90, 0.45);
	color: #fff;
}

body.page-avaliacao .avaliacao-alert {
	border-radius: 16px;
	padding: 20px 22px;
	margin-bottom: 20px;
	line-height: 1.55;
}

body.page-avaliacao .avaliacao-alert:last-child {
	margin-bottom: 0;
}

body.page-avaliacao .avaliacao-alert strong {
	display: block;
	font-size: 1.1rem;
	margin-bottom: 8px;
}

body.page-avaliacao .avaliacao-alert p {
	margin: 0;
	font-size: 0.98rem;
}

body.page-avaliacao .avaliacao-alert--success {
	background: linear-gradient(135deg, #ecfdf5 0%, #f0fdf4 100%);
	border: 1px solid #86efac;
	color: #14532d;
}

body.page-avaliacao .avaliacao-alert--warning {
	background: linear-gradient(135deg, #fffbeb 0%, #fef9c3 100%);
	border: 1px solid #fcd34d;
	color: #713f12;
}

body.page-avaliacao .avaliacao-alert--danger {
	background: linear-gradient(135deg, #fef2f2 0%, #fff1f2 100%);
	border: 1px solid #fca5a5;
	color: #7f1d1d;
}

body.page-avaliacao .avaliacao-card .avaliacao-alert {
	margin-bottom: 0;
}

body.page-avaliacao .avaliacao-follow {
	text-align: center;
	margin: 24px 0 8px;
	color: var(--dark-soft);
	font-size: 1.02rem;
}

body.page-avaliacao .avaliacao-muted {
	text-align: center;
	margin: 16px 0 0;
	color: var(--gray);
	font-size: 0.95rem;
}

@media (max-width: 768px) {
	body.page-avaliacao .page-title h1 {
		font-size: 2rem;
	}

	body.page-avaliacao .avaliacao-card {
		padding: 24px 20px 28px;
		border-radius: 16px;
	}
}

/* === Página produtos === */
    /* Main Content */
    body.page-produtos .main-content {
        padding: 120px 0 80px;
    }
    
    body.page-produtos .page-title {
        text-align: center;
        margin-bottom: 50px;
    }
    
    body.page-produtos .page-title h1 {
        font-family: 'Playfair Display', serif;
        font-size: 3rem;
        font-weight: 600;
        color: var(--dark);
        margin-bottom: 15px;
    }
    
    body.page-produtos .page-title p {
        color: var(--gray);
        font-size: 1.1rem;
    }
    
    /* Filters */
    body.page-produtos .filters-section {
        background: var(--gray-light);
        padding: 40px;
        border-radius: 20px;
        margin-bottom: 50px;
    }
    
    body.page-produtos .filters-title {
        font-family: 'Playfair Display', serif;
        font-size: 1.8rem;
        margin-bottom: 30px;
        color: var(--dark);
        text-align: center;
    }
    
    body.page-produtos .filters-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
        margin-bottom: 30px;
    }
    
    body.page-produtos .filter-group {
        display: flex;
        flex-direction: column;
    }
    
    body.page-produtos .filter-group label {
        font-weight: 600;
        color: var(--dark);
        margin-bottom: 8px;
    }
    
    body.page-produtos .filter-group input,
    body.page-produtos .filter-group select {
        padding: 12px 16px;
        border: 2px solid #e0e0e0;
        border-radius: 10px;
        font-size: 16px;
        transition: var(--transition);
    }
    
    body.page-produtos .filter-group input:focus,
    body.page-produtos .filter-group select:focus {
        outline: none;
        border-color: var(--primary);
        box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
    }
    
    body.page-produtos .filter-actions {
        display: flex;
        gap: 15px;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    body.page-produtos .btn-filter {
        background: var(--primary);
        color: white;
        padding: 12px 30px;
        border: none;
        border-radius: 50px;
        font-weight: 600;
        cursor: pointer;
        transition: var(--transition);
    }
    
    body.page-produtos .btn-filter:hover {
        background: var(--primary-dark);
        transform: translateY(-2px);
    }
    
    body.page-produtos .btn-clear {
        background: transparent;
        color: var(--gray);
        padding: 12px 30px;
        border: 2px solid var(--gray);
        border-radius: 50px;
        font-weight: 600;
        cursor: pointer;
        transition: var(--transition);
    }
    
    body.page-produtos .btn-clear:hover {
        background: var(--gray);
        color: white;
    }
    
    /* Results */
    body.page-produtos .results-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 30px;
        flex-wrap: wrap;
        gap: 15px;
    }
    
    body.page-produtos .results-count {
        color: var(--gray);
        font-size: 1.1rem;
    }
    
    body.page-produtos .results-count strong {
        color: var(--primary);
    }
    
    /* Products Grid */
    body.page-produtos .products-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 30px;
        margin-bottom: 50px;
    }
    
    body.page-produtos .product-card {
        background: white;
        border-radius: 20px;
        overflow: hidden;
        box-shadow: var(--shadow);
        transition: var(--transition);
        display: flex;
        flex-direction: column;
    }
    
    body.page-produtos .product-card:hover {
        transform: translateY(-10px);
        box-shadow: var(--shadow-hover);
    }
    
    body.page-produtos .product-image {
        width: 100%;
        height: 300px;
        object-fit: cover;
        cursor: pointer;
    }
    
    body.page-produtos .product-info {
        padding: 25px;
        flex: 1;
        display: flex;
        flex-direction: column;
    }
    
    body.page-produtos .product-category {
        color: var(--primary);
        font-weight: 600;
        font-size: 0.9rem;
        text-transform: uppercase;
        letter-spacing: 1px;
        margin-bottom: 10px;
    }
    
    body.page-produtos .product-title {
        font-family: 'Playfair Display', serif;
        font-size: 1.3rem;
        font-weight: 600;
        color: var(--dark);
        margin-bottom: 8px;
        line-height: 1.3;
    }
    
    body.page-produtos .product-details {
        color: var(--gray);
        font-size: 0.9rem;
        margin-bottom: 20px;
    }
    
    body.page-produtos .product-metrics {
        display: flex;
        gap: 15px;
        margin-bottom: 20px;
        padding: 15px;
        background: var(--gray-light);
        border-radius: 10px;
    }
    
    body.page-produtos .metric-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 5px;
        flex: 1;
    }
    
    body.page-produtos .metric-icon {
        font-size: 1.2rem;
    }
    
    body.page-produtos .metric-value {
        font-size: 1rem;
        font-weight: 700;
        color: var(--dark);
    }
    
    body.page-produtos .metric-label {
        font-size: 0.7rem;
        color: var(--gray);
        text-transform: uppercase;
        letter-spacing: 1px;
    }
    
    body.page-produtos .metric-views { color: #3498db; }
    body.page-produtos .metric-clicks { color: #e74c3c; }
    body.page-produtos .metric-favorites { color: #e91e63; }
    
    body.page-produtos .product-actions {
        margin-top: auto;
        display: flex;
        gap: 10px;
    }
    
    body.page-produtos .btn-view {
        background: var(--primary);
        color: white;
        padding: 12px 20px;
        border-radius: 25px;
        text-decoration: none;
        font-weight: 600;
        text-align: center;
        flex: 1;
        transition: var(--transition);
    }
    
    body.page-produtos .btn-view:hover {
        background: var(--primary-dark);
        transform: translateY(-2px);
    }
    
    body.page-produtos .btn-view.viewed {
        background: #27ae60;
        cursor: default;
    }
    
    body.page-produtos .btn-favorite {
        width: 50px;
        height: 50px;
        background: white;
        border: 2px solid var(--primary);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--primary);
        transition: var(--transition);
        font-size: 20px;
        cursor: pointer;
    }
    
    body.page-produtos .btn-favorite:hover {
        background: var(--primary);
        color: white;
        transform: scale(1.1);
    }
    
    body.page-produtos .btn-favorite:focus {
        outline: 2px solid var(--primary);
        outline-offset: 2px;
    }
    
    body.page-produtos .btn-favorite.active {
        background: var(--primary);
        color: red;
    }
    
    /* Pagination */
    body.page-produtos .pagination {
        display: flex;
        justify-content: center;
        gap: 10px;
        margin-top: 50px;
    }
    
    body.page-produtos .pagination a,
    body.page-produtos .pagination span {
        padding: 12px 18px;
        border-radius: 10px;
        text-decoration: none;
        font-weight: 600;
        transition: var(--transition);
    }
    
    body.page-produtos .pagination a {
        background: white;
        color: var(--primary);
        border: 2px solid var(--primary);
    }
    
    body.page-produtos .pagination a:hover {
        background: var(--primary);
        color: white;
    }
    
    body.page-produtos .pagination .current {
        background: var(--primary);
        color: white;
        border: 2px solid var(--primary);
    }
    
    body.page-produtos .pagination .disabled {
        background: #f0f0f0;
        color: #ccc;
        border: 2px solid #f0f0f0;
        cursor: not-allowed;
    }
    
    /* No Results */
    body.page-produtos .no-results {
        text-align: center;
        padding: 60px 20px;
        color: var(--gray);
    }
    
    body.page-produtos .no-results h3 {
        font-family: 'Playfair Display', serif;
        font-size: 2rem;
        margin-bottom: 15px;
        color: var(--dark);
    }
    
    body.page-produtos .no-results p {
        font-size: 1.1rem;
        margin-bottom: 30px;
    }
    
    body.page-produtos .btn-back-search {
        background: var(--primary);
        color: white;
        padding: 15px 30px;
        border-radius: 50px;
        text-decoration: none;
        font-weight: 600;
        transition: var(--transition);
    }
    
    body.page-produtos .btn-back-search:hover {
        background: var(--primary-dark);
        transform: translateY(-2px);
    }
    
    /* Responsive */
    @media (max-width: 768px) {
        body.page-produtos .page-title h1 {
            font-size: 2rem;
        }
        
        body.page-produtos .filters-section {
            padding: 30px 20px;
        }
        
        body.page-produtos .filters-grid {
            grid-template-columns: 1fr;
        }
        
        body.page-produtos .filter-actions {
            flex-direction: column;
        }
        
        body.page-produtos .results-header {
            flex-direction: column;
            text-align: center;
        }
        
        body.page-produtos .products-grid {
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
        }
        
        body.page-produtos .product-metrics {
            flex-direction: column;
            gap: 10px;
        }
        
        body.page-produtos .metric-item {
            flex-direction: row;
            justify-content: space-between;
        }
    }

/* === Página todas as empresas === */
/* Main Content */
body.page-todas-empresas .main-content {
    padding: 120px 0 80px;
}

body.page-todas-empresas .page-title {
    text-align: center;
    margin-bottom: 60px;
}

body.page-todas-empresas .page-title h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 15px;
}

body.page-todas-empresas .page-title p {
    color: var(--gray);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Companies Grid */
body.page-todas-empresas .companies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

body.page-todas-empresas .company-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
}

body.page-todas-empresas .company-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary);
}

body.page-todas-empresas .company-logo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 20px;
    transition: var(--transition);
}

body.page-todas-empresas .company-card:hover .company-logo {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.3);
}

body.page-todas-empresas .company-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 10px;
    line-height: 1.3;
}

body.page-todas-empresas .company-title {
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

body.page-todas-empresas .company-unit {
    font-size: 0.8rem;
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 8px;
}

body.page-todas-empresas .company-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

body.page-todas-empresas .company-link:hover {
    gap: 12px;
}

body.page-todas-empresas .company-link::after {
    content: '→';
    transition: var(--transition);
}

body.page-todas-empresas .company-card:hover .company-link::after {
    transform: translateX(5px);
}

/* No Companies */
body.page-todas-empresas .no-companies {
    text-align: center;
    padding: 80px 20px;
    color: var(--gray);
}

body.page-todas-empresas .no-companies h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--dark);
}

body.page-todas-empresas .no-companies p {
    font-size: 1.1rem;
    margin-bottom: 30px;
}

body.page-todas-empresas .btn-home {
    background: var(--primary);
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    display: inline-block;
}

body.page-todas-empresas .btn-home:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

/* Loading Animation */
body.page-todas-empresas .loading {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 60px 20px;
}

body.page-todas-empresas .spinner {
    width: 40px;
    height: 40px;
    border: 4px solid var(--gray-light);
    border-top: 4px solid var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Responsive */
@media (max-width: 768px) {
    body.page-todas-empresas .page-title h1 {
        font-size: 2rem;
    }
    
    body.page-todas-empresas .companies-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 20px;
    }
    
    body.page-todas-empresas .company-card {
        padding: 30px 20px;
    }
    
    body.page-todas-empresas .company-logo {
        width: 100px;
        height: 100px;
    }
    
    body.page-todas-empresas .company-name {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    body.page-todas-empresas .companies-grid {
        grid-template-columns: 1fr;
    }
    
    body.page-todas-empresas .company-card {
        padding: 25px 15px;
    }
}

body.page-todas-empresas .brand-logo {
    object-fit: cover;
    border: 3px solid var(--primary);
}

/* =============================================================================
   Home pública — alinhada ao painel (app/templates/dashboard_template.php)
   ============================================================================= */
body.page-home {
	min-height: 100vh;
	background: linear-gradient(180deg, #f2f5fa 0%, #eef3f8 100%);
	color: var(--dark);
}

body.page-home .header {
	background: var(--surface);
	backdrop-filter: none;
	border-bottom: 1px solid #e5eaf1;
	box-shadow: 0 10px 32px rgba(15, 23, 42, 0.08);
}

body.page-home .header.scrolled {
	background: var(--surface);
	box-shadow: 0 10px 32px rgba(15, 23, 42, 0.1);
}

body.page-home .nav {
	padding: 1rem 0;
}

body.page-home .brand-title {
	color: var(--primary-dark);
	font-weight: 700;
	letter-spacing: -0.01em;
}

body.page-home .nav-menu a {
	color: #334155;
	font-weight: 600;
	font-size: 0.88rem;
	text-transform: uppercase;
	letter-spacing: 0.06em;
}

body.page-home .nav-menu a:hover {
	color: var(--primary-dark);
}

body.page-home .hero {
	background: transparent;
	padding: 132px 0 40px;
}

body.page-home .hero::before {
	opacity: 0;
}

body.page-home .dashboard-hero-panel {
	background: var(--surface);
	border: 1px solid #e5eaf1;
	border-radius: 18px;
	box-shadow: 0 10px 32px rgba(15, 23, 42, 0.08);
	padding: clamp(1.5rem, 4vw, 2.5rem);
	gap: clamp(24px, 5vw, 48px);
}

body.page-home .hero-text h1 {
	letter-spacing: -0.02em;
	color: #0f172a;
}

body.page-home .hero-text .subtitle {
	color: var(--text-soft);
	font-size: 1.05rem;
}

body.page-home .btn-primary {
	background: var(--primary);
	border: 1px solid var(--primary);
	border-radius: 12px;
	box-shadow: 0 6px 18px rgba(191, 161, 90, 0.35);
	padding: 14px 28px;
}

body.page-home .btn-primary:hover {
	background: var(--primary-dark);
	border-color: var(--primary-dark);
	box-shadow: 0 8px 22px rgba(155, 126, 63, 0.4);
}

body.page-home .btn-secondary {
	border-radius: 12px;
	border-width: 1px;
}

body.page-home .hero-image img {
	border-radius: 16px;
	box-shadow: 0 8px 24px rgba(15, 23, 42, 0.1);
}

body.page-home .categories {
	background: transparent;
	padding: 40px 0 28px;
}

body.page-home .section-title {
	font-size: clamp(1.75rem, 3vw, 2.25rem);
	letter-spacing: -0.02em;
}

body.page-home .section-subtitle {
	color: var(--text-soft);
}

body.page-home .category-card {
	border: 1px solid #e5eaf1;
	border-radius: 16px;
	box-shadow: var(--shadow);
}

body.page-home .category-image {
	background: linear-gradient(180deg, #f8fbff 0%, #edf5ff 100%);
}

body.page-home .category-image::before {
	background: linear-gradient(45deg, transparent 30%, rgba(191, 161, 90, 0.1) 50%, transparent 70%);
}

body.page-home .products {
	background: transparent;
}

body.page-home .product-card {
	border: 1px solid #e5eaf1;
	border-radius: 16px;
	box-shadow: var(--shadow);
}

body.page-home .product-metrics {
	background: #f8fbff;
	border: 1px solid #d8e9ff;
	border-radius: 14px;
	padding: 12px 14px;
}

body.page-home .btn-ver-todos {
	border-radius: 12px;
	border: 1px solid var(--primary);
}

body.page-home .cta-button {
	border-radius: 12px;
	border: 1px solid transparent;
	box-shadow: 0 6px 18px rgba(191, 161, 90, 0.3);
}

.search-filter--dashboard {
	padding: 40px 0 48px;
	background: transparent;
}

body.page-home .search-filter__box {
	max-width: 880px;
	margin: 0 auto;
	background: var(--surface);
	border: 1px solid #e5eaf1;
	border-radius: 18px;
	box-shadow: 0 10px 32px rgba(15, 23, 42, 0.06);
	padding: 1.35rem 1.5rem;
}

body.page-home .search-filter__form {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
	align-items: stretch;
}

body.page-home .search-filter__field--grow {
	flex: 1;
	min-width: 200px;
}

body.page-home .search-filter__field--select {
	min-width: 160px;
}

body.page-home .search-filter__input,
body.page-home .search-filter__select {
	width: 100%;
	padding: 14px 18px;
	border: 1px solid #e2e8f0;
	border-radius: 12px;
	font-size: 15px;
	outline: none;
	transition: var(--transition);
	background: #fff;
	color: var(--dark);
}

body.page-home .search-filter__input:focus,
body.page-home .search-filter__select:focus {
	border-color: var(--primary);
	box-shadow: 0 0 0 3px rgba(191, 161, 90, 0.22);
}

body.page-home .search-filter__submit {
	padding: 14px 26px;
	background: var(--primary);
	color: #fff;
	border: 1px solid var(--primary);
	border-radius: 12px;
	font-size: 15px;
	font-weight: 600;
	cursor: pointer;
	transition: var(--transition);
}

body.page-home .search-filter__submit:hover {
	background: var(--primary-dark);
	border-color: var(--primary-dark);
}

body.page-home .search-filter__tags {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
	justify-content: center;
	margin-top: 1rem;
}

@media (max-width: 768px) {
	body.page-home .dashboard-hero-panel {
		padding: 1.25rem;
	}
	body.page-home .search-filter__form {
		flex-direction: column;
	}
	body.page-home .search-filter__submit {
		width: 100%;
	}
}
