@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Raleway:ital,wght@0,100..900;1,100..900&display=swap");
:root {
	--default-font: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji",
		"Segoe UI Symbol", "Noto Color Emoji";
	--heading-font: "Raleway", sans-serif;
	--nav-font: "Inter", sans-serif;
    --bg: #0f0f0f;
    --bg-soft: #151515;
    --text: #ffffff;
    --muted: #cfcfcf;
    --accent: #ff6e00;
}

html[data-theme="light"] {
    --bg: #f4f4f4;
    --bg-soft: #ffffff;
    --text: #111;
    --muted: #444;
    --dark: white;
}

* {
    box-sizing: border-box;
}

.card .icon {
    /* position: absolute; */
    color: #ff6e29;
    /* stroke: #ff6e29; */
    scale: 2;
    z-index: 0;
}
body {
	margin: 0;
	font-family: var(--default-font);
	background: #0f0f0f;
	color: #fff;
	line-height: 1.6;
    background: var(--bg);
    color: var(--text);
}
section {
	padding: 10px 10%;
}
.logo {
	height: 60vh;

	width: 100%;

	background-repeat: no-repeat;
    background-image: url(/icons/1024_b.png);

	background-position: center center;
	background-size: contain;
}
html[data-theme="dark"] .logo {
    background-image: url(/icons/1024_b.png);
}
html[data-theme="light"] .logo {
    background-image: url(/icons/1024.png);
}
h1,
h2,
h3 {
	font-weight: 600;
	letter-spacing: -0.5px;
	line-height: 1em;
	color: currentColor;
}
h1 {
	font-size: 3rem;
}
h2 {
	font-size: 2.2rem;
	margin-bottom: 20px;
}
p {
	max-width: 800px;
	color: #d0d0d0;
}
.hero {
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	justify-content: center;
	background: linear-gradient(135deg, #111, #1a1a1a);
}
.hero span {
	color: #ff6e00;
}
.btn {
	display: inline-block;
	margin-top: 30px;
	padding: 15px 30px;
	background: #ff6e00;
    background: var(--accent);
	color: #000;
	text-decoration: none;
	font-weight: 600;
	border-radius: 8px;
}
.grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 40px;
	margin-top: 40px;
}
.card {
	padding: 30px;
	border-radius: 14px;
	position: relative;
}
.card h3 {
	margin-top: 0;
	color: #ff6e00;
	margin-left: 60px;
}
.dark {
	background: var(--dark);
}
footer {
	background: var(--dark);
	padding: 40px 10%;
	text-align: center;
	color: #777;
}

.parallax {
    background-image: radial-gradient(circle at top, rgba(255,255,255,.04), transparent);
    background-attachment: fixed;
}

.parallax.soft {
    background-image: linear-gradient(180deg, var(--bg), var(--bg-soft));
}

/* TYPO */
h3 { color: var(--accent); }

p {
    color: var(--muted);
}
.card{
    background: var(--bg-soft);
    box-shadow: 0px 5px 10px -5px rgba(0,0,0,0.2);
}

.card .holder {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: normal;
}


/* WHATSAPP */
#whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
}

#whatsapp-float img {
    width: 28px;
}

/* THEME TOGGLE */
#theme-toggle {
    position: fixed;
    top: 20px;
    right: 20px;
    cursor: pointer;
    z-index: 999;
    font-size: 20px;
}