/*
Theme Name: Pagamento Aprovado - Cartão Avenida
Theme URI: https://pagamentoaprovado.site/
Author: Pagamento Aprovado
Author URI: https://pagamentoaprovado.site/
Description: Tema WordPress profissional para emissão de boletos Cartão Avenida via WhatsApp. Otimizado para Yoast SEO e conversão máxima.
Version: 1.0.0
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: pagamento-aprovado
Domain Path: /languages
Requires at least: 6.0
Requires PHP: 7.4
*/

/* Fintech Premium Minimalista - Avenida Brand Colors */
:root {
  --primary: #FFD700;
  --primary-foreground: #1a3a52;
  --secondary: #F5F5F5;
  --secondary-foreground: #1a3a52;
  --accent: #2ECC71;
  --background: #FFFFFF;
  --foreground: #333333;
  --border: #E0E0E0;
  --muted: #E8E8E8;
  --muted-foreground: #666666;
}

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

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

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

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

h1 {
  font-size: 3rem;
}

h2 {
  font-size: 2.25rem;
  margin: 1.5rem 0 1rem;
}

h3 {
  font-size: 1.75rem;
  margin: 1rem 0 0.75rem;
}

p {
  margin-bottom: 1rem;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: all 0.3s ease-out;
}

a:hover {
  color: var(--primary-foreground);
}

button, .button {
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 0.5rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease-out;
  font-family: 'Inter', sans-serif;
}

.button-primary {
  background-color: var(--primary);
  color: var(--primary-foreground);
}

.button-primary:hover {
  background-color: #E6C200;
  box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
}

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

.button-secondary:hover {
  background-color: var(--muted);
  border-color: var(--primary);
}

.button-whatsapp {
  background-color: #25D366;
  color: white;
}

.button-whatsapp:hover {
  background-color: #20BA5A;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

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

@media (min-width: 640px) {
  .container {
    padding: 0 1.5rem;
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 2rem;
  }
}

/* Navigation */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background-color: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 1rem 0;
}

.site-header nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.site-logo {
  height: 40px;
  width: auto;
}

/* Hero Section */
.hero {
  padding: 3rem 0;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-text h1 {
  margin-bottom: 1.5rem;
  color: var(--foreground);
}

.hero-text .highlight {
  color: var(--primary);
}

.hero-text p {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  margin-bottom: 2rem;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.hero-image {
  position: relative;
}

.hero-image img {
  width: 100%;
  border-radius: 1rem;
  box-shadow: 0 20px 25px rgba(0, 0, 0, 0.1);
}

.hero-badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background-color: var(--primary);
  color: var(--primary-foreground);
  padding: 1.5rem;
  border-radius: 0.75rem;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
  font-weight: 600;
}

/* Benefits Section */
.benefits {
  padding: 4rem 0;
  background-color: var(--background);
}

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

.benefit-card {
  padding: 2rem;
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  transition: all 0.3s ease-out;
}

.benefit-card:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
  border-color: var(--primary);
}

.benefit-icon {
  width: 64px;
  height: 64px;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.75rem;
}

.benefit-card h3 {
  margin-bottom: 0.75rem;
}

.benefit-card p {
  color: var(--muted-foreground);
  margin-bottom: 0;
}

/* How It Works */
.how-it-works {
  padding: 4rem 0;
  background: linear-gradient(to bottom, #f8f9fa, #ffffff);
}

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

.step {
  text-align: center;
}

.step-number {
  width: 64px;
  height: 64px;
  background-color: var(--primary);
  color: var(--primary-foreground);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 1.5rem;
  box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
}

.step h3 {
  margin-bottom: 0.75rem;
}

.step p {
  color: var(--muted-foreground);
}

/* CTA Section */
.cta-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, #1a3a52 0%, #2a5a7a 100%);
  color: white;
  text-align: center;
}

.cta-section h2 {
  color: white;
  margin-bottom: 1rem;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
  font-size: 1.125rem;
}

/* Footer */
.site-footer {
  background-color: #1a1f2e;
  color: #999;
  padding: 3rem 0 1rem;
  border-top: 1px solid var(--border);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-content h4 {
  color: white;
  margin-bottom: 1rem;
  font-family: 'Poppins', sans-serif;
}

.footer-content ul {
  list-style: none;
}

.footer-content li {
  margin-bottom: 0.5rem;
}

.footer-content a {
  color: #999;
}

.footer-content a:hover {
  color: var(--primary);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
  color: #666;
}

/* Responsive */
@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-badge {
    position: static;
    margin-top: 1rem;
  }

  .benefits-grid,
  .steps-grid {
    grid-template-columns: 1fr;
  }
}

/* Print Styles */
@media print {
  .site-header,
  .site-footer,
  .hero-buttons,
  .button {
    display: none;
  }
}
