/* 
  Extrator Google Maps Pro
  Replica 3: Modern Minimalist
*/

:root {
  /* Colors - Monochrome Minimalist */
  --bg-dark: #fafafa; /* Off-white */
  --bg-card: #ffffff;
  --text-main: #111111;
  --text-muted: #888888;
  
  --primary: #000000; /* Pure black */
  --primary-hover: #333333;
  --secondary: #00e074; /* Minimal green for accents */
  --secondary-hover: #00b35c;
  
  --border-color: #e5e5e5;
  --glass-border: 1px solid #000000; /* Sharp black borders instead of glass */
  
  /* Typography */
  --font-body: 'Inter', sans-serif;
  --font-heading: 'Space Grotesk', sans-serif;
  
  /* Spacing */
  --container-width: 1200px;
  --section-pad: 8rem 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;
}

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: 700;
  margin-bottom: 1rem;
  letter-spacing: -0.03em;
}

.highlight {
  color: var(--text-main);
  position: relative;
  display: inline-block;
  z-index: 1;
}

.highlight::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 10px;
  background-color: var(--secondary);
  z-index: -1;
}

.text-center { text-align: center; }
.text-green { color: var(--secondary); }

/* 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: 100px; /* Pill shaped buttons */
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid var(--primary);
  font-family: var(--font-body);
  font-size: 1rem;
}

.btn-sm {
  padding: 0.6rem 1.5rem;
  font-size: 0.875rem;
}

.btn-lg {
  padding: 1.2rem 2.5rem;
  font-size: 1.1rem;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
}

.btn-primary:hover {
  background: #fff;
  color: var(--primary);
}

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

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

.w-100 { width: 100%; }

/* Animations */
.pulse-animation {
  /* Minimalist approach doesn't use heavy pulsing */
}

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

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

.slide-up {
  opacity: 0;
  transform: translateY(20px);
  transition: all 1s ease-out;
}

.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: rgba(250, 250, 250, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-color);
}

.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: 700;
  color: var(--primary);
  letter-spacing: -1px;
}

.logo i {
  display: none; /* Removed icon for minimalist look */
}

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

.nav-links a {
  color: var(--text-muted);
  font-weight: 400;
  font-size: 0.95rem;
}

.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: var(--primary);
  font-size: 1.5rem;
  cursor: pointer;
}

/* --- Hero Section --- */
.hero {
  padding-top: 200px;
  padding-bottom: 5rem;
  min-height: 90vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

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

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #fff;
  color: var(--text-muted);
  padding: 0.4rem 1rem;
  border-radius: 100px;
  font-size: 0.8rem;
  border: 1px solid var(--border-color);
  margin-bottom: 2rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

.hero .subtitle {
  font-size: 1.25rem;
  color: var(--text-muted);
  margin: 0 auto 3rem;
  max-width: 700px;
  font-weight: 300;
}

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

.hero-social-proof {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  padding-top: 3rem;
  border-top: 1px solid var(--border-color);
}

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

.avatars img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid #fafafa;
  margin-left: -15px;
  filter: grayscale(100%);
}

.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;
  margin-left: -15px;
  z-index: 1;
}

.proof-text .stars {
  color: var(--primary);
  margin-bottom: 0.2rem;
}

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

.hero-image {
  display: none; /* Hide hero image to keep pure minimal typography focus, or show it minimal */
}

/* --- Global Sections --- */
section {
  padding: var(--section-pad);
}

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

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

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

/* --- Benefits --- */
.benefits {
  background: #fff;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

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

.glass-card {
  background: transparent;
  border: none;
  padding: 0;
}

.card-icon {
  width: 50px;
  height: 50px;
  border: 1px solid var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

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

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

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

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

.step {
  text-align: left;
  flex: 1;
  padding-right: 2rem;
}

.step-number {
  font-family: var(--font-heading);
  font-size: 3rem;
  color: #e5e5e5;
  margin-bottom: 1rem;
  line-height: 1;
}

.step-content h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

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

.step-line {
  display: none;
}

/* --- Video Demo --- */
.video-section {
  background: #fff;
  border-top: 1px solid var(--border-color);
}

.video-wrapper {
  max-width: 900px;
  margin: 0 auto;
  padding: 1rem;
  background: #fafafa;
  border: 1px solid var(--border-color);
}

/* --- Testimonials --- */
.testimonials {
  background: #fafafa;
  border-top: 1px solid var(--border-color);
}

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

.testimonial-card {
  background: #fff;
  border: 1px solid var(--border-color);
  padding: 3rem 2rem;
}

.testimonial-card .stars {
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.testimonial-card .quote {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: var(--text-main);
  line-height: 1.8;
}

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

.author img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  filter: grayscale(100%);
}

.author strong {
  display: block;
  font-size: 0.9rem;
}

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

/* --- Pricing --- */
.pricing {
  background: #000;
  color: #fff;
}

.pricing .section-header h2, .pricing .section-header p {
  color: #fff;
}

.pricing .highlight::after {
  background-color: #333;
}

.pricing-card {
  max-width: 600px;
  margin: 0 auto;
  background: #000;
  border: 1px solid #333;
  padding: 4rem 3rem;
}

.pricing-header {
  margin-bottom: 3rem;
  text-align: center;
}

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

.price {
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.currency {
  font-size: 1.5rem;
  margin-top: 0.5rem;
}

.amount {
  font-size: 5rem;
  line-height: 1;
}

.period {
  font-size: 1rem;
  color: #888;
  align-self: flex-end;
  margin-bottom: 1rem;
}

.no-monthly {
  color: var(--secondary);
  font-size: 1rem;
  margin-top: 1rem;
}

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

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: 1rem;
  color: #ccc;
}

.pricing-features li i {
  color: #fff;
}

.timer-box {
  border-top: 1px solid #333;
  border-bottom: 1px solid #333;
  padding: 2rem 0;
  margin-bottom: 3rem;
  text-align: center;
}

.timer-box p {
  color: #888;
  font-size: 0.9rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.countdown {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  font-family: var(--font-heading);
  font-size: 2rem;
  color: #fff;
}

.time-block {
  display: flex;
  flex-direction: column;
}

.time-block small {
  font-size: 0.7rem;
  font-family: var(--font-body);
  color: #888;
}

.pricing .btn-primary {
  background: #fff;
  color: #000;
  border: 1px solid #fff;
}

.pricing .btn-primary:hover {
  background: #000;
  color: #fff;
}

.guarantee {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
  font-size: 0.85rem;
  color: #666;
}

.guarantee i {
  color: #888;
}

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

.accordion-item {
  border-bottom: 1px solid var(--border-color);
}

.accordion-header {
  width: 100%;
  background: none;
  border: none;
  color: var(--text-main);
  text-align: left;
  padding: 2rem 0;
  font-size: 1.2rem;
  font-family: var(--font-heading);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.accordion-content p {
  padding-bottom: 2rem;
  color: var(--text-muted);
}

/* --- Footer --- */
.footer {
  background: #fafafa;
  border-top: 1px solid var(--border-color);
  padding-top: 5rem;
}

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

.footer-col h4 {
  font-size: 1rem;
  margin-bottom: 1.5rem;
  color: var(--text-main);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-col a {
  color: var(--text-muted);
}

.footer-col a:hover {
  color: var(--text-main);
}

.contact-info li, .contact-info a {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--text-muted) !important;
}

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

.footer-bottom {
  border-top: 1px solid var(--border-color);
  padding: 2rem 0;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* --- Floating WhatsApp Button --- */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: #000; /* Minimalist black */
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  z-index: 1000;
  transition: transform 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

/* --- Responsive Media Queries --- */
@media (max-width: 992px) {
  .hero h1 { font-size: 3.5rem; }
  .steps-container {
    flex-direction: column;
    gap: 3rem;
  }
  .step {
    padding-right: 0;
  }
  .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: #fff;
    padding: 2rem;
    border-bottom: 1px solid var(--border-color);
  }
  .hero h1 { font-size: 2.8rem; }
  .pricing-card {
    padding: 3rem 1.5rem;
  }
  .footer-container {
    grid-template-columns: 1fr;
    text-align: left;
  }
}
