/*
Theme Name: MRM Growth Lab
Theme URI: https://example.com
Author: MRM Growth Lab
Author URI: https://example.com
Description: Tema MRM Growth Lab com landing page de alta conversão.
Version: 0.1.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: mrm-growth-lab
*/

/* Estilos globais mínimos — serão expandidos conforme o design */

:root {
	--mrm-bg: #0a0a0a;
	--mrm-purple: #3e0041;
	--mrm-orange: #ff5f1f;
	--mrm-text: #f4f4f5;
	--mrm-muted: #a1a1aa;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

body {
	margin: 0;
	font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
	background: var(--mrm-bg);
	color: var(--mrm-text);
	line-height: 1.6;
}

.mrm-landing a {
	color: inherit;
}

a {
	color: var(--mrm-orange);
	text-decoration: none;
}

body:not(.mrm-landing) a:hover {
	text-decoration: underline;
}

.site-main {
	min-height: 50vh;
	padding: 2rem 1.25rem;
	max-width: 72rem;
	margin-inline: auto;
}

.mrm-landing .site-main,
.mrm-landing .landing {
	padding: 0;
	max-width: none;
}

/* Cabeçalho — logo + redes (todas as páginas) */
.site-header {
	background: rgba(6, 6, 6, 0.92);
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.site-header__inner {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 0.75rem 1rem;
	max-width: 72rem;
	margin: 0 auto;
	padding: 0.85rem 1.25rem;
}

.site-header__start {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	flex: 1 1 auto;
	min-width: 0;
	max-width: min(100%, 42rem);
}

.site-brand {
	margin: 0;
	line-height: 0;
}

.site-brand__link {
	display: inline-flex;
	align-items: center;
	text-decoration: none;
	line-height: 0;
	transition: opacity 0.2s ease;
}

.site-brand__link:hover {
	opacity: 0.92;
	text-decoration: none;
}

.site-brand__logo {
	display: block;
	height: clamp(2.85rem, 8vw, 3.6rem);
	width: auto;
	max-width: min(20rem, 72vw);
	object-fit: contain;
}

@media (min-width: 480px) {
	.site-brand__logo {
		max-width: min(24rem, 65vw);
	}
}

@media (min-width: 768px) {
	.site-brand__logo {
		height: clamp(3.5rem, 5.2vw, 4.5rem);
		max-width: min(28rem, 52vw);
	}
}

.site-brand__text {
	font-size: 1rem;
	font-weight: 700;
	letter-spacing: -0.02em;
	color: var(--mrm-text);
}

.site-header__social {
	display: flex;
	align-items: center;
	gap: 0.35rem;
	list-style: none;
	margin: 0;
	padding: 0;
	flex-shrink: 0;
}

.site-header__social-link {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 2.35rem;
	height: 2.35rem;
	border-radius: 0.5rem;
	border: 1px solid rgba(255, 255, 255, 0.1);
	color: var(--mrm-muted);
	transition: color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
	text-decoration: none;
}

.site-header__social-link:hover {
	color: var(--mrm-orange);
	border-color: rgba(255, 95, 31, 0.45);
	box-shadow: 0 0 0 1px rgba(255, 95, 31, 0.12);
	text-decoration: none;
}

.site-header__icon-svg {
	display: block;
	width: 1.15rem;
	height: 1.15rem;
}

.site-header .site-nav:not(.site-nav--landing) ul {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.35rem 0.75rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

.site-header .site-nav:not(.site-nav--landing) a {
	color: var(--mrm-text);
	font-size: 0.9rem;
	font-weight: 500;
	padding: 0.4rem 0.6rem;
	text-decoration: none;
	border-radius: 0.35rem;
}

.site-header .site-nav:not(.site-nav--landing) a:hover {
	color: var(--mrm-orange);
	text-decoration: none;
	background: rgba(255, 95, 31, 0.08);
}
