/*
Theme Name: Achados & Barato
Description: Tema moderno e responsivo para grupo de promoções e cupons
Author: Seu Nome
Version: 1.0
*/

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

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

body {
  font-family: 'Poppins', sans-serif;
  background-color: #000000;
  color: #fafafa;
  line-height: 1.6;
}

/* Variáveis CSS */
:root {
  --brand-black: #000000;
  --brand-green: #00ff7f;
  --brand-yellow: #ffd700;
  --brand-orange: #ff8c00;
  --white: #ffffff;
  --gray-light: #f5f5f5;
  --gray-dark: #333333;
  
  --gradient-hero: radial-gradient(ellipse at center, rgba(0, 255, 127, 0.3) 0%, rgba(255, 215, 0, 0.2) 35%, rgba(255, 140, 0, 0.1) 70%, transparent 100%);
  --gradient-cta: linear-gradient(135deg, #00ff7f, #ffd700, #ff8c00);
  --gradient-text: linear-gradient(135deg, #00ff7f, #ffd700, #ff8c00);
  
  --shadow-glow: 0 0 40px rgba(0, 255, 127, 0.3);
  --shadow-cta: 0 10px 30px rgba(0, 255, 127, 0.4);
}

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

/* Header */
.site-header {
  background: rgba(0, 0, 0, 0.95);
  padding: 1rem 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
}

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

.site-title {
  font-size: 1.5rem;
  font-weight: 700;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-decoration: none;
}

/* Navigation */
.main-navigation ul {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.main-navigation a {
  color: var(--white);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

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

/* Hero Section */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-hero);
  text-align: center;
  padding: 80px 0 0;
}

.hero-content h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  margin-bottom: 1.5rem;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-content p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  color: #cccccc;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* CTA Button */
.cta-button {
  display: inline-block;
  background: var(--gradient-cta);
  color: var(--brand-black);
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.125rem;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-cta);
  animation: pulse-glow 6s ease-in-out infinite;
}

.cta-button:hover {
  transform: scale(1.05);
  animation-play-state: paused;
  box-shadow: 0 15px 40px rgba(0, 255, 127, 0.6);
}

/* About Section */
.about-section {
  padding: 5rem 0;
  background: var(--brand-black);
}

.about-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.about-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: var(--white);
}

.about-content p {
  font-size: 1.125rem;
  margin-bottom: 3rem;
  color: #cccccc;
  line-height: 1.8;
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.feature-card {
  background: rgba(255, 255, 255, 0.05);
  padding: 2rem;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

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

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.feature-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--white);
}

.feature-card p {
  color: #cccccc;
  line-height: 1.6;
}

/* Floating Button */
.floating-button {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: var(--gradient-cta);
  color: var(--brand-black);
  padding: 1rem 1.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  animation: bounce 2s infinite;
  z-index: 999;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.floating-button:hover {
  transform: scale(1.1);
  animation-play-state: paused;
}

/* Content Areas */
.content-area {
  padding: 5rem 0;
}

.post-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
}

.post-content h1, .post-content h2, .post-content h3 {
  color: var(--white);
  margin-bottom: 1rem;
}

.post-content p {
  margin-bottom: 1.5rem;
  color: #cccccc;
}

/* Footer */
.site-footer {
  background: rgba(0, 0, 0, 0.95);
  padding: 3rem 0 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
  text-align: center;
  color: #cccccc;
}

/* Animations */
@keyframes pulse-glow {
  0%, 100% {
    transform: scale(1);
    box-shadow: var(--shadow-cta);
  }
  50% {
    transform: scale(1.08);
    box-shadow: 0 20px 50px rgba(0, 255, 127, 0.6);
  }
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .floating-button {
    bottom: 1rem;
    right: 1rem;
    padding: 0.75rem 1.25rem;
    font-size: 0.9rem;
  }
  
  .main-navigation ul {
    flex-direction: column;
    gap: 1rem;
  }
}