/*
Theme Name: Leandro Tech
Description: Tema moderno para assistência técnica de celulares - Leandro Tech
Version: 1.0
Author: Leandro Tech
*/

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Colors */
  --primary: 210 100% 60%;
  --primary-foreground: 210 40% 95%;
  --primary-glow: 220 100% 75%;
  --secondary: 210 20% 25%;
  --secondary-foreground: 210 40% 95%;
  --accent: 280 100% 70%;
  --accent-foreground: 280 10% 95%;
  --background: 210 30% 8%;
  --foreground: 210 40% 95%;
  --card: 210 25% 12%;
  --card-foreground: 210 40% 95%;
  --muted: 210 20% 20%;
  --muted-foreground: 210 20% 65%;
  --border: 210 20% 20%;
  --input: 210 20% 20%;
  --ring: 210 100% 60%;
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, hsl(210 100% 60%), hsl(280 100% 70%));
  --gradient-hero: linear-gradient(135deg, hsl(210 30% 8%) 0%, hsl(210 25% 12%) 50%, hsl(280 30% 15%) 100%);
  --gradient-card: linear-gradient(135deg, hsl(210 25% 12% / 0.8), hsl(280 25% 15% / 0.8));
  
  /* Shadows */
  --shadow-tech: 0 4px 20px hsl(210 100% 60% / 0.3);
  --shadow-glow: 0 0 40px hsl(220 100% 75% / 0.4);
}

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

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn-primary {
  background: var(--gradient-primary);
  color: hsl(var(--primary-foreground));
  box-shadow: var(--shadow-tech);
}

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

.btn-outline {
  background: hsl(var(--background) / 0.8);
  color: hsl(var(--foreground));
  border: 1px solid hsl(var(--border));
  backdrop-filter: blur(10px);
}

.btn-outline:hover {
  background: hsl(var(--primary) / 0.1);
  border-color: hsl(var(--primary) / 0.5);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--gradient-hero);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 25%;
  left: 25%;
  width: 16rem;
  height: 16rem;
  background: hsl(var(--primary) / 0.1);
  border-radius: 50%;
  filter: blur(3rem);
  animation: pulse 4s ease-in-out infinite;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 25%;
  right: 25%;
  width: 24rem;
  height: 24rem;
  background: hsl(var(--accent) / 0.1);
  border-radius: 50%;
  filter: blur(3rem);
  animation: pulse 4s ease-in-out infinite 1s;
}

@keyframes pulse {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 0.8; transform: scale(1.1); }
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

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

/* Services Section */
.services {
  padding: 5rem 0;
  background: hsl(var(--card));
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.service-card {
  background: hsl(var(--background) / 0.5);
  border: 1px solid hsl(var(--border));
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-tech);
  border-color: hsl(var(--primary) / 0.5);
}

.service-icon {
  width: 4rem;
  height: 4rem;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.5rem;
}

/* Location Section */
.location {
  padding: 5rem 0;
  background: var(--gradient-hero);
}

/* Footer */
.footer {
  background: hsl(var(--background));
  border-top: 1px solid hsl(var(--border));
  padding: 3rem 0 2rem;
  text-align: center;
}

/* Responsive */
@media (max-width: 768px) {
  .hero h1 { font-size: 2rem; }
  .hero-content { padding: 2rem 0; }
  .services-grid { grid-template-columns: 1fr; }
}

/* WordPress Specific */
.wp-block-group {
  margin: 2rem 0;
}

.alignwide {
  max-width: 1200px;
  margin: 0 auto;
}

.alignfull {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}