/**
 * Game Scout - Public Website Styles
 * Modern, clean and responsive design
 */

/* =========================================
   RESET & BASE STYLES
   ========================================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Primary Colors - Sports Theme */
  --primary-color: #2E7D32;
  --primary-dark: #1B5E20;
  --primary-light: #4CAF50;
  
  /* Secondary Colors */
  --secondary-color: #1976D2;
  --secondary-dark: #0D47A1;
  --secondary-light: #42A5F5;
  
  /* Accent Colors */
  --accent-color: #FFA000;
  --success-color: #4CAF50;
  --danger-color: #F44336;
  --warning-color: #FF9800;
  
  /* Neutral Colors */
  --dark: #1a1a1a;
  --text-dark: #2c3e50;
  --text-light: #6c757d;
  --border-color: #e9ecef;
  --bg-light: #f8f9fa;
  --white: #ffffff;
  
  /* Spacing */
  --container-width: 1200px;
  --section-padding: 100px 0;
  
  /* Typography */
  --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --transition: all 0.3s ease;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

/* =========================================
   UTILITY CLASSES
   ========================================= */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  text-align: center;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(46, 125, 50, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(46, 125, 50, 0.4);
}

.btn-secondary {
  background: var(--white);
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
  background: var(--primary-color);
  color: var(--white);
}

.btn-success {
  background: linear-gradient(135deg, var(--success-color) 0%, #2E7D32 100%);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

.btn-success:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(76, 175, 80, 0.4);
}

.btn-lg {
  padding: 16px 36px;
  font-size: 18px;
}

.btn-block {
  width: 100%;
  justify-content: center;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-title {
  font-size: 42px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 16px;
  line-height: 1.2;
}

.section-subtitle {
  font-size: 18px;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

/* =========================================
   TOP BAR
   ========================================= */
.top-bar {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
  color: var(--white);
  padding: 10px 0;
  font-size: 14px;
  position: relative;
  z-index: 1001;
}

.top-bar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.top-bar-info {
  display: flex;
  align-items: center;
  gap: 8px;
}

.top-bar-info i {
  color: #FFD700;
  font-size: 16px;
}

.top-bar-social {
  display: flex;
  gap: 15px;
}

.top-social-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
  padding: 5px 15px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.15);
}

.top-social-link:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}

.top-social-link i {
  font-size: 18px;
}

/* =========================================
   NAVIGATION
   ========================================= */
.navbar {
  background: var(--white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 16px 0;
}

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

.nav-logo img {
  height: 45px;
  width: auto;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  transition: var(--transition);
}

.nav-link:hover {
  color: var(--primary-color);
}

.nav-social {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  transition: var(--transition);
}

.nav-social:hover {
  color: #E1306C;
  transform: scale(1.15);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  color: var(--text-dark);
  cursor: pointer;
}

/* =========================================
   HERO SECTION
   ========================================= */
.hero {
  background: linear-gradient(135deg, #1B5E20 0%, #2E7D32 50%, #4CAF50 100%);
  color: var(--white);
  padding: 140px 0 120px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
  opacity: 0.3;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 32px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-badge i {
  color: #FFD700;
}

.hero-title {
  font-size: 46px;
  font-weight: 900;
  margin-bottom: 28px;
  line-height: 1.15;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  font-size: 20px;
  margin-bottom: 40px;
  opacity: 0.95;
  line-height: 1.7;
  font-weight: 400;
}

.hero-subtitle strong {
  font-weight: 700;
  color: #FFD700;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.hero-trust {
  margin-bottom: 50px;
}

.trust-text {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 15px;
  opacity: 0.95;
}

.trust-text i {
  color: #4CAF50;
  margin-right: 6px;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
  padding-top: 20px;
}

.stat-item {
  text-align: center;
  min-width: 120px;
}

.stat-number {
  font-size: 44px;
  font-weight: 900;
  margin-bottom: 8px;
  background: linear-gradient(135deg, #FFD700 0%, #FFA000 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 13px;
  opacity: 0.9;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  font-weight: 600;
}

.hero-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.hero-wave svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 120px;
}

.btn-pulse {
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse {
  0%, 100% {
    box-shadow: 0 4px 15px rgba(46, 125, 50, 0.3);
  }
  50% {
    box-shadow: 0 6px 25px rgba(46, 125, 50, 0.6);
  }
}

/* =========================================
   SECTION BADGES
   ========================================= */
.section-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-color) 100%);
  color: var(--white);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

/* =========================================
   DEMO/SCREENSHOTS SECTION
   ========================================= */
.demo-section {
  padding: 120px 0;
  background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
  position: relative;
  overflow: hidden;
}

.demo-showcase {
  display: flex;
  flex-direction: column;
  gap: 120px;
  margin-top: 60px;
  position: relative;
  z-index: 1;
}

.showcase-item {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.showcase-item-reverse {
  grid-template-columns: 1.5fr 1fr;
}

.showcase-item-reverse .showcase-content {
  order: 2;
}

.showcase-item-reverse .showcase-image {
  order: 1;
}

.showcase-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary-color);
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}

.showcase-label i {
  font-size: 18px;
}

.showcase-content h3 {
  font-size: 32px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 20px;
  line-height: 1.3;
}

.showcase-content p {
  font-size: 17px;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 24px;
}

.showcase-features {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.showcase-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: var(--text-dark);
  font-weight: 500;
}

.showcase-features li i {
  color: var(--success-color);
  font-size: 16px;
  flex-shrink: 0;
}

.showcase-image {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  transition: all 0.4s ease;
  background: #fff;
  cursor: zoom-in;
  z-index: 1;
}

.showcase-image:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
  z-index: 2;
}

.showcase-image:hover::after {
  content: '🔍 Clique para ampliar';
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(46, 125, 50, 0.95);
  color: white;
  padding: 10px 20px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  z-index: 10;
}

.showcase-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

/* =========================================
   BENEFITS SECTION
   ========================================= */
.benefits {
  padding: 100px 0;
  background: var(--white);
}

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

.benefit-item {
  display: flex;
  gap: 24px;
  padding: 30px;
  background: var(--bg-light);
  border-radius: 12px;
  transition: var(--transition);
  border: 2px solid transparent;
}

.benefit-item:hover {
  border-color: var(--primary-color);
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  background: var(--white);
}

.benefit-number {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 800;
}

.benefit-content h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.benefit-content p {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.6;
  margin: 0;
}

/* =========================================
   PRICING FAQ
   ========================================= */
.pricing-faq {
  margin-top: 80px;
  padding-top: 60px;
  border-top: 2px solid var(--border-color);
  text-align: center;
}

.pricing-faq h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 40px;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  text-align: left;
}

.faq-item {
  background: var(--bg-light);
  padding: 30px;
  border-radius: 12px;
  border: 2px solid var(--border-color);
  transition: var(--transition);
}

.faq-item:hover {
  border-color: var(--primary-color);
  transform: translateY(-3px);
}

.faq-item h4 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.faq-item h4 i {
  color: var(--primary-color);
  font-size: 18px;
}

.faq-item p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.6;
  margin: 0;
}

/* =========================================
   FEATURES SECTION
   ========================================= */
.features {
  padding: var(--section-padding);
  background: var(--white);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.feature-card {
  background: var(--white);
  padding: 40px 30px;
  border-radius: 12px;
  border: 2px solid var(--border-color);
  transition: var(--transition);
  text-align: center;
}

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

.feature-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 24px;
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-color) 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 32px;
}

.feature-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-dark);
}

.feature-description {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.6;
}

/* =========================================
   TESTIMONIALS SECTION
   ========================================= */
.testimonials {
  padding: var(--section-padding);
  background: var(--bg-light);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.testimonial-card {
  background: var(--white);
  padding: 35px;
  border-radius: 16px;
  border: 2px solid var(--border-color);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
}

.testimonial-card:hover {
  border-color: var(--primary-color);
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 80px;
  color: var(--primary-light);
  opacity: 0.2;
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-stars {
  display: flex;
  gap: 5px;
  color: var(--accent-color);
  font-size: 18px;
}

.testimonial-badge {
  position: absolute;
  top: -20px;
  right: 30px;
  z-index: 10;
}

.team-badge {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-color) 0%, #1B5E20 100%);
  border: 4px solid var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: var(--transition);
}

.testimonial-card:hover .team-badge {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 6px 20px rgba(46, 125, 50, 0.4);
}

.testimonial-text {
  font-size: 16px;
  color: var(--text-dark);
  line-height: 1.8;
  font-style: italic;
  margin: 0;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid var(--border-color);
}

.author-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-color) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 24px;
  flex-shrink: 0;
}

.author-info {
  flex: 1;
}

.author-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0 0 4px 0;
}

.author-role {
  font-size: 14px;
  color: var(--text-light);
  margin: 0;
}

/* =========================================
   PRICING SECTION
   ========================================= */
.pricing {
  padding: var(--section-padding);
  background: var(--white);
}

.pricing-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
}

.pricing-wrapper-single {
  max-width: 500px;
  grid-template-columns: 1fr;
}

.pricing-card {
  background: var(--white);
  border-radius: 16px;
  padding: 50px 40px;
  position: relative;
  border: 2px solid var(--border-color);
  transition: var(--transition);
  text-align: center;
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  border-color: var(--primary-color);
}

.pricing-card-annual {
  border-color: var(--success-color);
  border-width: 3px;
}

.pricing-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  color: var(--white);
  padding: 8px 24px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.pricing-badge-green {
  background: linear-gradient(135deg, var(--success-color) 0%, #2E7D32 100%);
}

.pricing-plan {
  font-size: 24px;
  font-weight: 700;
  margin: 20px 0;
  color: var(--text-dark);
}

.pricing-price {
  margin: 30px 0;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 4px;
}

.pricing-price .currency {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-light);
  margin-top: 12px;
}

.pricing-price .amount {
  font-size: 64px;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.pricing-price .period {
  font-size: 18px;
  color: var(--text-light);
  margin-top: 40px;
}

.pricing-description {
  font-size: 16px;
  color: var(--text-light);
  margin-bottom: 30px;
}

.pricing-features {
  list-style: none;
  margin: 30px 0;
  text-align: left;
}

.pricing-features li {
  padding: 12px 0;
  font-size: 15px;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: 12px;
}

.pricing-features li i {
  color: var(--success-color);
  font-size: 18px;
}

.pricing-note {
  margin-top: 20px;
  font-size: 13px;
  color: var(--text-light);
}

/* =========================================
   CTA SECTION
   ========================================= */
.cta {
  padding: 120px 0;
  background: linear-gradient(135deg, #1B5E20 0%, #2E7D32 50%, #4CAF50 100%);
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
  opacity: 0.2;
}

.cta-content {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.cta-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 30px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid rgba(255, 255, 255, 0.3);
}

.cta-icon i {
  font-size: 50px;
  color: #FFD700;
}

.cta-title {
  font-size: 48px;
  font-weight: 900;
  margin-bottom: 24px;
  line-height: 1.2;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.cta-subtitle {
  font-size: 20px;
  margin-bottom: 40px;
  opacity: 0.95;
  line-height: 1.7;
}

.cta-subtitle strong {
  font-weight: 700;
  color: #FFD700;
}

.cta-note {
  margin-top: 24px;
  font-size: 15px;
  opacity: 0.9;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.cta-note i {
  color: #4CAF50;
  margin-right: 6px;
}

.cta-trust-badges {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 50px;
  flex-wrap: wrap;
}

.trust-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  min-width: 120px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.trust-badge i {
  font-size: 32px;
  color: #FFD700;
}

.trust-badge span {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* =========================================
   IMAGE ZOOM MODAL
   ========================================= */
.image-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.95);
  animation: fadeIn 0.3s ease;
}

.image-modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

.image-modal-content {
  max-width: 95%;
  max-height: 95%;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
  animation: zoomIn 0.3s ease;
}

.image-modal-close {
  position: absolute;
  top: 30px;
  right: 40px;
  color: white;
  font-size: 50px;
  font-weight: 300;
  cursor: pointer;
  transition: transform 0.3s ease;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  backdrop-filter: blur(10px);
}

.image-modal-close:hover {
  transform: rotate(90deg) scale(1.1);
  background: rgba(255, 255, 255, 0.2);
}

.image-modal-caption {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  font-size: 18px;
  font-weight: 600;
  text-align: center;
  background: rgba(46, 125, 50, 0.9);
  padding: 15px 30px;
  border-radius: 25px;
  backdrop-filter: blur(10px);
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes zoomIn {
  from {
    transform: scale(0.5);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

/* =========================================
   WHATSAPP FLOATING BUTTON
   ========================================= */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 30px;
  right: 30px;
  background-color: #25d366;
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  font-size: 32px;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 9998;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  animation: pulse-whatsapp 2s infinite;
}

.whatsapp-float:hover {
  background-color: #20ba5a;
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-float i {
  line-height: 60px;
}

@keyframes pulse-whatsapp {
  0% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  }
  50% {
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.7);
  }
  100% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  }
}

/* =========================================
   FOOTER
   ========================================= */
.footer {
  background: var(--dark);
  color: var(--white);
  padding: 60px 0 30px;
}

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

.footer-logo img {
  height: 40px;
  width: auto;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
}

.footer-description {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

.footer-title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 14px;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--white);
  padding-left: 5px;
}

.footer-links a i {
  margin-right: 8px;
  font-size: 18px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
  text-align: center;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-bottom p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

.footer-social {
  display: flex;
  gap: 15px;
}

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 20px;
  transition: var(--transition);
  text-decoration: none;
}

.social-icon:hover {
  background: linear-gradient(135deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
  transform: translateY(-3px);
}

/* =========================================
   RESPONSIVE DESIGN
   ========================================= */
@media (max-width: 992px) {
  .top-bar-content {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .top-bar-info,
  .top-bar-social {
    justify-content: center;
  }

  .nav-menu {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background: var(--white);
    flex-direction: column;
    justify-content: flex-start;
    padding: 40px 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-toggle {
    display: block;
  }

  .hero-title {
    font-size: 44px;
  }

  .section-title {
    font-size: 36px;
  }

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

  .showcase-item,
  .showcase-item-reverse {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .showcase-item-reverse .showcase-content {
    order: 1;
  }

  .showcase-item-reverse .showcase-image {
    order: 2;
  }

  .showcase-features {
    grid-template-columns: 1fr;
  }

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

  .pricing-wrapper {
    grid-template-columns: 1fr;
    max-width: 500px;
  }
}

@media (max-width: 768px) {
  .top-bar {
    font-size: 12px;
    padding: 8px 0;
  }

  .top-bar-info span {
    font-size: 12px;
  }

  .top-social-link {
    font-size: 13px;
    padding: 4px 12px;
  }

  .hero {
    padding: 100px 0 80px;
  }

  .hero-title {
    font-size: 38px;
  }

  .hero-subtitle {
    font-size: 18px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .hero-buttons .btn {
    width: 100%;
    max-width: 320px;
  }

  .hero-stats {
    gap: 30px;
  }

  .stat-number {
    font-size: 36px;
  }

  .trust-text {
    flex-direction: column;
    gap: 12px;
  }

  .section-title {
    font-size: 32px;
  }

  .section-subtitle {
    font-size: 16px;
  }

  .showcase-content h3 {
    font-size: 26px;
  }

  .showcase-content p {
    font-size: 16px;
  }

  .cta-title {
    font-size: 36px;
  }

  .cta-subtitle {
    font-size: 18px;
  }

  .cta-note {
    flex-direction: column;
    gap: 12px;
  }

  .cta-trust-badges {
    gap: 20px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-logo img {
    margin: 0 auto 16px;
    display: block;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-social {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 32px;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .hero-badge {
    font-size: 12px;
    padding: 8px 16px;
  }

  .stat-number {
    font-size: 32px;
  }

  .stat-label {
    font-size: 11px;
  }

  .section-title {
    font-size: 28px;
  }

  .showcase-content h3 {
    font-size: 24px;
  }

  .btn-lg {
    padding: 14px 28px;
    font-size: 16px;
  }

  .pricing-card {
    padding: 40px 24px;
  }

  .pricing-price .amount {
    font-size: 52px;
  }

  .cta-title {
    font-size: 28px;
  }

  .cta-icon {
    width: 80px;
    height: 80px;
  }

  .cta-icon i {
    font-size: 40px;
  }

  .trust-badge {
    min-width: 100px;
    padding: 16px;
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }

  .image-modal-close {
    top: 15px;
    right: 15px;
    font-size: 35px;
    width: 45px;
    height: 45px;
  }

  .image-modal-caption {
    font-size: 14px;
    padding: 10px 20px;
    bottom: 15px;
  }

  .image-modal-content {
    max-width: 98%;
    max-height: 90%;
  }

  .whatsapp-float {
    width: 50px;
    height: 50px;
    bottom: 20px;
    right: 20px;
    font-size: 26px;
  }

  .whatsapp-float i {
    line-height: 50px;
  }
}
