/* 
  Extrator Google Maps Pro
  Replica 2: Aggressive Marketing
*/

:root {
  /* Colors - Aggressive Marketing */
  --bg-dark: #000000; /* Pure black */
  --bg-card: #111111;
  --text-main: #ffffff;
  --text-muted: #aaaaaa;
  
  --primary: #FF512F; /* Aggressive Orange */
  --primary-hover: #ff3300;
  --secondary: #DD2476; /* Pink/Red */
  --secondary-hover: #cc0055;
  
  --border-color: #333333;
  --glass-border: 1px solid #333;
  
  /* Typography */
  --font-body: 'Poppins', sans-serif;
  --font-heading: 'Poppins', sans-serif;
  
  /* Spacing */
  --container-width: 1200px;
  --section-pad: 6rem 1rem;
}

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

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

body {
  font-family: var(--font-body);
  background-color: var(--bg-dark);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  background-image: linear-gradient(180deg, #000 0%, #0a0a0a 100%);
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

ul {
  list-style: none;
}

/* Typography Utilities */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: 1.1;
  font-weight: 800; /* Very bold for marketing */
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: -1px;
}

.highlight {
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  font-weight: 900;
}

.text-center { text-align: center; }
.text-green { color: #00ff00; } /* Pure neon green for checks */

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

.grid {
  display: grid;
  gap: 2rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: 0px; /* Sharp edges */
  font-weight: 800;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 1.1rem;
}

.btn-sm {
  padding: 0.6rem 1.2rem;
  font-size: 0.9rem;
}

.btn-lg {
  padding: 1.5rem 3rem;
  font-size: 1.3rem;
}

.btn-primary {
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  color: #fff;
  box-shadow: 0 10px 30px rgba(255, 81, 47, 0.4);
}

.btn-primary:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 40px rgba(255, 81, 47, 0.6);
}

.btn-outline {
  background: transparent;
  color: #fff;
  border: 3px solid var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
}

.w-100 { width: 100%; }

/* Animations */
.pulse-animation {
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 81, 47, 0.7); }
  50% { transform: scale(1.02); box-shadow: 0 0 0 15px rgba(255, 81, 47, 0); }
  100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 81, 47, 0); }
}

/* Fade in elements */
.fade-in {
  opacity: 0;
  transition: opacity 0.8s ease-out;
}

.fade-in.visible {
  opacity: 1;
}

.slide-up {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.slide-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Header / Navbar --- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1.5rem 0;
  z-index: 1000;
  transition: all 0.3s ease;
  background: transparent;
}

.navbar.scrolled {
  padding: 1rem 0;
  background: #000;
  border-bottom: 2px solid var(--primary);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 900;
  color: #fff;
  text-transform: uppercase;
}

.logo i {
  color: var(--primary);
  font-size: 1.8rem;
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  color: var(--text-main);
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
}

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
}

/* --- Hero Section --- */
.hero {
  padding-top: 180px;
  padding-bottom: 6rem;
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at center, #1a0805 0%, #000000 100%);
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr;
  text-align: center;
  gap: 3rem;
  align-items: center;
  max-width: 900px; /* Center focused hero */
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 81, 47, 0.1);
  color: var(--primary);
  padding: 0.5rem 1.5rem;
  border-radius: 0;
  border-left: 4px solid var(--primary);
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 2rem;
  text-transform: uppercase;
}

.hero h1 {
  font-size: 4rem;
  margin-bottom: 1.5rem;
}

.hero .subtitle {
  font-size: 1.25rem;
  color: #ccc;
  margin: 0 auto 2.5rem;
  max-width: 800px;
}

.hero-cta {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 3rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-social-proof {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  background: #111;
  padding: 1rem 2rem;
  display: inline-flex;
  border: 1px solid #333;
}

.avatars {
  display: flex;
  align-items: center;
}

.avatars img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid #000;
  margin-left: -15px;
}

.avatars img:first-child {
  margin-left: 0;
}

.avatar-count {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 800;
  margin-left: -15px;
  z-index: 1;
}

.proof-text .stars {
  color: #ffcc00;
  margin-bottom: 0.2rem;
}

.proof-text span {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-weight: 600;
}

.hero-image {
  position: relative;
  margin-top: 2rem;
}

.glass-panel {
  background: #000;
  border: 3px solid #333;
  padding: 0.5rem;
  box-shadow: 0 20px 50px rgba(255, 81, 47, 0.2);
  position: relative;
}

.mockup-img {
  width: 100%;
  display: block;
}

.floating-card {
  display: none; /* Hide floating cards for a more direct marketing approach, keep focus on video/hero */
}

/* --- Global Sections --- */
section {
  padding: var(--section-pad);
  border-bottom: 1px solid #111;
}

.section-header {
  margin-bottom: 4rem;
  text-align: center;
}

.section-header h2 {
  font-size: 3rem;
}

.section-header p {
  color: var(--text-muted);
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto;
}

/* --- Benefits --- */
.benefits {
  background: #050505;
}

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

.glass-card {
  background: #111;
  border-left: 4px solid var(--primary);
  padding: 3rem 2rem;
  transition: transform 0.3s ease, background 0.3s ease;
}

.glass-card:hover {
  transform: translateY(-10px);
  background: #1a1a1a;
}

.card-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  border-radius: 0;
}

.glass-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.glass-card p {
  color: var(--text-muted);
  font-size: 1rem;
}

/* --- How it Works --- */
.how-it-works {
  background: #000;
}

.steps-container {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
}

.step {
  text-align: center;
  flex: 1;
  position: relative;
  z-index: 2;
  padding: 0 1rem;
}

.step-number {
  width: 80px;
  height: 80px;
  background: #111;
  border: 4px solid var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--primary);
  margin: 0 auto 2rem;
  transform: rotate(-5deg);
}

.step-content h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.step-content p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.step-line {
  display: none; /* Removed for aggressive look */
}

/* --- Video Demo --- */
.video-section {
  background: #050505;
}

.video-wrapper {
  max-width: 900px;
  margin: 0 auto;
  border: 4px solid var(--primary);
  padding: 0;
  box-shadow: 0 0 50px rgba(255, 81, 47, 0.3);
}

/* --- Testimonials --- */
.testimonials {
  background: #000;
}

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

.testimonial-card {
  background: #111;
  border-top: 4px solid var(--secondary);
  padding: 2.5rem;
}

.testimonial-card .stars {
  color: #ffcc00;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}

.testimonial-card .quote {
  font-style: italic;
  font-weight: 600;
  margin-bottom: 2rem;
  color: #fff;
  font-size: 1.1rem;
}

.testimonial-card .author {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.author img {
  width: 60px;
  height: 60px;
  border-radius: 0;
}

.author strong {
  display: block;
  font-size: 1.1rem;
  color: var(--primary);
}

.author span {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* --- Pricing --- */
.pricing {
  background: #050505;
  padding-bottom: 8rem;
}

.pricing-card {
  max-width: 700px;
  margin: 0 auto;
  background: #000;
  border: 2px solid #333;
  padding: 4rem;
  position: relative;
}

.pricing-card::before {
  content: 'OFERTA LIMITADA';
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: #fff;
  padding: 0.5rem 2rem;
  font-weight: 900;
  font-size: 1.2rem;
  letter-spacing: 2px;
}

.pricing-header h2 {
  font-size: 2rem;
}

.price {
  margin: 2rem 0;
}

.currency {
  font-size: 2rem;
  color: var(--primary);
}

.amount {
  font-size: 6rem;
  color: #fff;
}

.period {
  font-size: 1.5rem;
  color: var(--text-muted);
}

.no-monthly {
  color: #00ff00;
  font-size: 1.3rem;
  text-transform: uppercase;
  margin-bottom: 3rem;
}

.pricing-features ul {
  margin-bottom: 3rem;
}

.pricing-features li {
  font-size: 1.2rem;
  font-weight: 600;
  padding: 1rem 0;
  border-bottom: 1px solid #222;
}

.timer-box {
  background: #1a0805;
  border: 1px solid var(--primary);
  padding: 2rem;
  margin-bottom: 3rem;
}

.timer-box p {
  color: var(--primary);
  font-size: 1.2rem;
  text-transform: uppercase;
}

.countdown {
  font-size: 3rem;
  color: #fff;
}

.time-block {
  background: transparent;
  border: none;
}

.time-block small {
  color: var(--primary);
}

.guarantee {
  margin-top: 2rem;
  font-size: 1rem;
  color: #aaa;
}

.guarantee i {
  color: #00ff00;
  font-size: 1.5rem;
}

/* --- FAQ --- */
.faq {
  background: #000;
}

.accordion-item {
  border: 1px solid #333;
  margin-bottom: 1rem;
  background: #111;
}

.accordion-header {
  padding: 1.5rem 2rem;
  font-size: 1.2rem;
  text-transform: none;
}

.accordion-header:hover {
  background: #1a1a1a;
}

.accordion-content p {
  padding: 0 2rem 1.5rem;
  color: #ccc;
}

/* --- Footer --- */
.footer {
  background: #050505;
  border-top: 4px solid var(--primary);
}

.footer-container {
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
}

.footer-col h4 {
  color: #fff;
}

.contact-info i {
  color: var(--primary);
}

/* --- Floating WhatsApp Button --- */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 70px;
  height: 70px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  box-shadow: 0 0 20px rgba(37, 211, 102, 0.6);
  z-index: 1000;
  animation: bounce 2s infinite;
}

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

/* --- Responsive Media Queries --- */
@media (max-width: 992px) {
  .hero h1 { font-size: 3rem; }
  .steps-container {
    flex-direction: column;
    gap: 3rem;
  }
  .pricing-card {
    padding: 3rem 1.5rem;
  }
  .footer-container {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links, .nav-actions .btn {
    display: none;
  }
  .menu-toggle {
    display: block;
  }
  .nav-links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #111;
    padding: 2rem;
    border-bottom: 2px solid var(--primary);
  }
  .hero h1 { font-size: 2.5rem; }
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .contact-info li, .contact-info a {
    justify-content: center;
  }
  .whatsapp-float {
    width: 60px;
    height: 60px;
    font-size: 2rem;
  }
}
