/*
Theme Name: Real Vision
Description: Tema profissional para Real Vision - Tours Virtuais 360° e Soluções Digitais
Version: 1.0
Author: Real Vision
*/

:root {
  --primary: 26 33% 8%;
  --primary-foreground: 210 40% 98%;
  --secondary: 210 40% 96%;
  --secondary-foreground: 222.2 84% 4.9%;
  --muted: 210 40% 96%;
  --muted-foreground: 215.4 16.3% 46.9%;
  --accent: 210 40% 96%;
  --accent-foreground: 222.2 84% 4.9%;
  --destructive: 0 62.8% 30.6%;
  --destructive-foreground: 210 40% 98%;
  --border: 214.3 31.8% 91.4%;
  --input: 214.3 31.8% 91.4%;
  --ring: 222.2 84% 4.9%;
  --chart-1: 12 76% 61%;
  --chart-2: 173 58% 39%;
  --chart-3: 197 37% 24%;
  --chart-4: 43 74% 66%;
  --chart-5: 27 87% 67%;
  --radius: 0.5rem;
  --background: 0 0% 100%;
  --foreground: 222.2 84% 4.9%;

  /* Brand Colors */
  --brand-orange: 30 100% 52%;
  --brand-orange-light: 30 100% 60%;
  --brand-orange-dark: 30 100% 45%;

  /* Tech Colors */
  --tech-black: 0 0% 8%;
  --tech-dark: 0 0% 12%;
  --tech-gray: 0 0% 20%;

  /* Gradients */
  --gradient-brand: linear-gradient(135deg, hsl(var(--brand-orange)), hsl(var(--brand-orange-light)));
  --gradient-tech: linear-gradient(135deg, hsl(var(--tech-black)), hsl(var(--tech-dark)));
  --gradient-hero: linear-gradient(135deg, hsl(var(--tech-black)) 0%, hsl(var(--tech-dark)) 50%, hsl(var(--brand-orange)) 100%);

  /* Shadows */
  --shadow-elegant: 0 10px 30px -10px hsl(var(--brand-orange) / 0.3);
  --shadow-glow: 0 0 40px hsl(var(--brand-orange) / 0.4);

  /* Typography */
  --font-tech-hero: clamp(2.5rem, 8vw, 4.5rem);
  --font-tech-title: clamp(1.5rem, 4vw, 2.5rem);

  /* Animations */
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background: hsl(var(--background));
  color: hsl(var(--foreground));
  line-height: 1.6;
}

/* Utility Classes */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.text-gradient {
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.btn-hero {
  background: var(--gradient-brand);
  color: white;
  padding: 0.75rem 2rem;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: var(--transition-smooth);
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-hero:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

.btn-outline-tech {
  border: 2px solid hsl(var(--brand-orange));
  color: hsl(var(--brand-orange));
  background: transparent;
  padding: 0.75rem 2rem;
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition-smooth);
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-outline-tech:hover {
  background: hsl(var(--brand-orange));
  color: white;
}

.section-hero {
  background: var(--gradient-tech);
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
}

.tech-hero-text {
  font-size: var(--font-tech-hero);
  font-weight: 900;
  line-height: 1.1;
}

.tech-title {
  font-size: var(--font-tech-title);
  font-weight: 700;
}

/* WordPress specific styles */
.wp-post {
  margin-bottom: 2rem;
}

.wp-post-title {
  margin-bottom: 1rem;
}

.wp-post-meta {
  color: hsl(var(--muted-foreground));
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.wp-post-content {
  line-height: 1.8;
}

.wp-post-content p {
  margin-bottom: 1rem;
}

.wp-post-content h2,
.wp-post-content h3,
.wp-post-content h4 {
  margin: 2rem 0 1rem 0;
  color: hsl(var(--brand-orange));
}

/* Navigation */
.main-navigation {
  background: hsl(var(--tech-black));
  padding: 1rem 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
}

.main-navigation ul {
  list-style: none;
  display: flex;
  gap: 2rem;
  align-items: center;
}

.main-navigation a {
  color: white;
  text-decoration: none;
  transition: var(--transition-smooth);
}

.main-navigation a:hover {
  color: hsl(var(--brand-orange));
}

/* Footer */
.site-footer {
  background: var(--gradient-tech);
  color: white;
  padding: 4rem 0 2rem 0;
}

/* Responsive */
@media (max-width: 768px) {
  .container {
    padding: 0 1rem;
  }
  
  .main-navigation ul {
    flex-direction: column;
    gap: 1rem;
  }
}