/*
Theme Name: Landing Page Médicos Premium
Description: Tema WordPress premium para médicos baseado na landing page de alta conversão
Version: 1.0
Author: Seu Nome
*/

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

/* Importar Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');

/* Variáveis CSS */
:root {
  /* Cores principais */
  --primary: 258 100% 34%;
  --primary-foreground: 0 0% 98%;
  --primary-hover: 258 100% 28%;
  
  /* Cores de apoio */
  --secondary: 210 40% 98%;
  --secondary-foreground: 222.2 84% 4.9%;
  --background: 0 0% 100%;
  --foreground: 222.2 84% 4.9%;
  --muted: 210 40% 96%;
  --muted-foreground: 215.4 16.3% 46.9%;
  --accent: 210 40% 94%;
  --accent-foreground: 222.2 84% 4.9%;
  --border: 214.3 31.8% 91.4%;
  --card: 0 0% 100%;
  --card-foreground: 222.2 84% 4.9%;
  
  /* Cores médicas */
  --medical-trust: 180 100% 25%;
  --medical-trust-foreground: 0 0% 98%;
  --success: 142 76% 36%;
  --success-foreground: 355.7 100% 97.3%;
  
  /* Gradientes */
  --gradient-medical: linear-gradient(135deg, hsl(258 100% 34%), hsl(258 100% 28%));
  --gradient-trust: linear-gradient(135deg, hsl(180 100% 25%), hsl(180 100% 20%));
  --gradient-subtle: linear-gradient(180deg, hsl(0 0% 100%), hsl(210 40% 98%));
  
  /* Sombras */
  --shadow-medical: 0 10px 30px -10px hsl(258 100% 34% / 0.3);
  --shadow-premium: 0 20px 40px -10px hsl(258 100% 34% / 0.4);
  --shadow-card: 0 2px 8px hsl(0 0% 0% / 0.1);
  
  /* Layout */
  --container-max: 1200px;
  --radius: 0.5rem;
  --radius-lg: 0.75rem;
}

/* Base styles */
body {
  font-family: 'Poppins', sans-serif;
  background-color: hsl(var(--background));
  color: hsl(var(--foreground));
  line-height: 1.6;
}

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.container-premium {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 2rem;
}

.section-padding {
  padding: 5rem 0;
}

/* Typography */
.text-hero {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
}

.text-section {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
}

.text-premium {
  color: hsl(var(--primary));
  font-weight: 600;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: hsl(var(--background) / 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid hsl(var(--border));
}

.nav-menu {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-menu a {
  color: hsl(var(--foreground));
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-menu a:hover {
  color: hsl(var(--primary));
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  white-space: nowrap;
  border-radius: var(--radius-lg);
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 0.3s ease;
  cursor: pointer;
  text-decoration: none;
  border: none;
}

.btn-primary {
  background: var(--gradient-medical);
  color: hsl(var(--primary-foreground));
  box-shadow: var(--shadow-medical);
  height: 3rem;
  padding: 0 1.5rem;
  font-weight: 600;
}

.btn-primary:hover {
  box-shadow: var(--shadow-premium);
  transform: scale(1.05);
}

.btn-lg {
  height: 3.5rem;
  padding: 0 2rem;
  font-size: 1rem;
}

.btn-xl {
  height: 4rem;
  padding: 0 2.5rem;
  font-size: 1.125rem;
  font-weight: 600;
}

.btn-trust {
  background: var(--gradient-trust);
  color: hsl(var(--medical-trust-foreground));
}

/* Cards */
.card {
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  transition: all 0.3s ease;
}

.card:hover {
  box-shadow: var(--shadow-premium);
}

/* Badges */
.badge {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 9999px;
  background: hsl(var(--success));
  color: hsl(var(--success-foreground));
}

/* Price */
.price-strikethrough {
  text-decoration: line-through;
  opacity: 0.7;
}

/* Animations */
@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-up {
  animation: fade-up 0.6s ease-out forwards;
}

/* Responsive */
@media (max-width: 768px) {
  .container-premium {
    padding: 0 1rem;
  }
  
  .section-padding {
    padding: 3rem 0;
  }
  
  .nav-menu {
    display: none;
  }
}

/* WordPress specific */
.wp-block-group {
  max-width: none;
}

.alignwide {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
}

.alignfull {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
}