/*
Theme Name: ConektC GoMake
Theme URI: https://conektc.com.br
Description: Tema premium de alta performance inspirado na identidade visual dark/neon da GoMake para ConektC.
Version: 1.0.0
Author: ConektC Dev
Author URI: https://conektc.com.br
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: conektc-gomake
*/

:root {
  /* Fonts */
  --font-display: 'DM Sans', sans-serif;
  --font-body: 'Arimo', sans-serif;
  
  /* Brand Colors from Geometric Logo */
  --color-bg-main: #0E0E0E;
  --color-bg-card: #161618;
  --color-logo-blue: #0247BB;
  --color-logo-blue: #004A7F;  /* Main Accent */
  --color-logo-green: #006400;
  --color-logo-orange: #FB8B03;
  --color-logo-cyan: #00FFFF;   /* Secondary/Glow Accent */
  --color-logo-purple: #0900CC;
  --color-logo-red: #7E0001;	
  
  /* Mapped Legacy Variables for Compatibility */
  --bg-dark: var(--color-bg-main);
  --bg-black: #000000;
  --bg-card: var(--color-bg-card);
  --bg-card-hover: #1c1c1e;
  
  --color-primary: #00FFFF;
  --color-primary-rgb: 0, 255, 255;
  --color-primary-hover: #00cccc;
  
  --color-text-main: #ffffff;
  --color-text-muted: #8e8e93;
  
  --color-btn-gray: #303032;
  --color-btn-gray-hover: #28282b;
  
  /* Layout & Animation */
  --border-radius: 16px;
  --border-radius-sm: 8px;
  --transition-smooth: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
  --container-width: 1200px;
}

/* Reset and Global Styles */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--bg-dark);
  color: var(--color-text-main);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-smooth);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button, input, textarea {
  font-family: inherit;
  color: inherit;
  background: none;
  border: none;
}
