/*
Theme Name: Gestor de Tráfego Pago
Theme URI: https://seusite.com
Author: Seu Nome
Author URI: https://seusite.com
Description: Tema profissional para landing page de gestor de tráfego pago focado em negócios locais
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: gestor-trafego
Tags: landing-page, business, conversion, marketing
*/

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

:root {
  /* Cores Principais */
  --primary: 210 100% 11%;
  --primary-dark: 210 100% 8%;
  --primary-glow: 210 100% 20%;
  --accent: 201 96% 32%;
  --accent-light: 201 96% 45%;
  
  /* Cores de Fundo */
  --background: 0 0% 0%;
  --background-secondary: 210 100% 5%;
  --foreground: 0 0% 98%;
  
  /* Cores de UI */
  --card: 210 50% 7%;
  --card-foreground: 0 0% 98%;
  --muted: 210 30% 15%;
  --muted-foreground: 210 10% 70%;
  --border: 210 30% 18%;
  --input: 210 30% 18%;
  --ring: 210 100% 50%;
  
  /* Gradientes */
  --gradient-primary: linear-gradient(135deg, hsl(210 100% 11%), hsl(210 100% 20%));
  --gradient-hero: linear-gradient(180deg, hsl(0 0% 0%) 0%, hsl(210 100% 5%) 100%);
  --gradient-accent: linear-gradient(135deg, hsl(201 96% 32%), hsl(201 96% 45%));
  
  /* Sombras */
  --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.3);
  --shadow-elegant: 0 10px 30px -10px rgba(14, 116, 144, 0.3);
  --shadow-glow: 0 0 40px rgba(14, 165, 233, 0.2);
  
  /* Transições */
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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;
  overflow-x: hidden;
}

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

/* Seções */
section {
  padding: 5rem 0;
}

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

h1 {
  font-size: 3.5rem;
}

h2 {
  font-size: 2.5rem;
}

h3 {
  font-size: 1.75rem;
}

/* Botões */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 0.5rem;
  text-decoration: none;
  transition: var(--transition-smooth);
  cursor: pointer;
  border: none;
  gap: 0.5rem;
}

.btn-primary {
  background: var(--gradient-accent);
  color: white;
  box-shadow: var(--shadow-elegant);
}

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

.btn-secondary {
  background: transparent;
  color: hsl(var(--foreground));
  border: 2px solid hsl(var(--border));
}

.btn-secondary:hover {
  background: hsl(var(--muted));
}

/* Cards */
.card {
  background: hsl(var(--card));
  border-radius: 1rem;
  padding: 2rem;
  border: 1px solid hsl(var(--border));
  transition: var(--transition-smooth);
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-elegant);
}

/* Grid */
.grid {
  display: grid;
  gap: 2rem;
}

.grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

/* Hero Section */
.hero {
  background: var(--gradient-hero);
  padding: 8rem 0 6rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at top right, rgba(14, 165, 233, 0.1), transparent);
  pointer-events: none;
}

/* Animações */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

/* WhatsApp Flutuante */
.floating-whatsapp {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 1000;
  background: #25D366;
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
  transition: var(--transition-smooth);
}

.floating-whatsapp:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

/* Responsivo */
@media (max-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  section {
    padding: 3rem 0;
  }
  
  .hero {
    padding: 6rem 0 4rem;
  }
}
