/* ==========================================================================
   MOVILIDADES-PICO.COM - DESIGN SYSTEM & STYLESHEET
   Optimizado para conversión, transparencia y estética moderna
   ========================================================================== */

:root {
  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Color Palette */
  --bg-dark: #0a0f1d;
  --bg-card: #131b2e;
  --bg-card-hover: #1a253e;
  --primary: #3b82f6;
  --primary-hover: #2563eb;
  --primary-glow: rgba(59, 130, 246, 0.35);
  --accent: #10b981;
  --accent-glow: rgba(16, 185, 129, 0.25);
  --warning: #f59e0b;
  --danger: #ef4444;

  --text-main: #f3f4f6;
  --text-muted: #9ca3af;
  --text-dim: #6b7280;

  --border-light: rgba(255, 255, 255, 0.08);
  --border-active: rgba(59, 130, 246, 0.4);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;

  --shadow-main: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
  --shadow-glow: 0 0 25px rgba(59, 130, 246, 0.2);
}

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-family: var(--font-body);
  background-color: var(--bg-dark);
  color: var(--text-main);
  line-height: 1.6;
}

body {
  overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.25;
  color: #ffffff;
}

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

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  text-decoration: none;
}

.btn-primary {
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(59, 130, 246, 0.4);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #60a5fa 0%, #2563eb 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(59, 130, 246, 0.6);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-main);
  border: 1px solid var(--border-light);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}

.btn-block {
  width: 100%;
}

/* Top Bar */
.top-bar {
  background: #060913;
  border-bottom: 1px solid var(--border-light);
  padding: 8px 0;
  font-size: 0.85rem;
}

.top-bar-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.top-badge {
  background: rgba(16, 185, 129, 0.15);
  color: #10b981;
  border: 1px solid rgba(16, 185, 129, 0.3);
  padding: 2px 10px;
  border-radius: 20px;
  font-weight: 600;
}

.top-text {
  color: var(--text-muted);
}

/* Header & Nav */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 15, 29, 0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-light);
  padding: 16px 0;
}

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

.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-icon {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  box-shadow: 0 0 15px rgba(59, 130, 246, 0.5);
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: -0.5px;
  color: #ffffff;
}

.brand-domain {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.main-nav ul {
  display: flex;
  list-style: none;
  gap: 24px;
}

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

.main-nav a:hover {
  color: #ffffff;
}

.main-nav a.nav-highlight {
  color: #60a5fa;
  font-weight: 600;
}

/* Static Phone Badge (No redirection, static text for user requirement & Google Ads safety) */
.header-phone-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.3);
  padding: 8px 16px;
  border-radius: 30px;
  color: #60a5fa;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: default; /* strictly static */
  user-select: all;
}

.static-phone-number {
  letter-spacing: 0.5px;
}

/* Hero Section */
.hero-section {
  position: relative;
  padding: 90px 0 80px;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  top: -10%;
  right: -5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, rgba(0,0,0,0) 70%);
  pointer-events: none;
}

.hero-container {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: center;
}

.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-light);
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.dot-online {
  width: 8px;
  height: 8px;
  background-color: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--accent);
}

.hero-content h1 {
  font-size: 2.8rem;
  margin-bottom: 20px;
  letter-spacing: -1px;
  background: linear-gradient(180deg, #ffffff 0%, #cbd5e1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-description {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 32px;
  max-width: 560px;
}

.hero-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 36px;
}

.hero-feat-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #e2e8f0;
  font-weight: 500;
}

.hero-feat-item svg {
  color: var(--accent);
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Glassmorphism Business Card */
.business-card-glass {
  background: rgba(19, 27, 46, 0.7);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-main), var(--shadow-glow);
}

.card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-light);
}

.card-status-badge {
  background: rgba(59, 130, 246, 0.15);
  color: #60a5fa;
  border: 1px solid rgba(59, 130, 246, 0.3);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
}

.card-body {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
}

.card-row {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.card-label {
  font-size: 0.8rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
}

.card-value {
  font-size: 1rem;
  color: #ffffff;
  font-weight: 600;
}

.card-value.highlight {
  color: #60a5fa;
  font-size: 1.1rem;

}

.card-value.static-phone {
  letter-spacing: 0.5px;
  color: var(--accent);
}

.card-footer {
  padding-top: 16px;
  border-top: 1px solid var(--border-light);
}

.guarantee-text {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* Sections General */
.section {
  padding: 90px 0;
}

.section-title {
  margin-bottom: 56px;
}

.section-title.text-center {
  text-align: center;
}

.section-title .subtitle {
  color: var(--primary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.85rem;
  display: block;
  margin-bottom: 8px;
}

.section-title .subtitle-badge {
  background: rgba(16, 185, 129, 0.15);
  color: #10b981;
  border: 1px solid rgba(16, 185, 129, 0.3);
  font-weight: 600;
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 0.85rem;
  display: inline-block;
  margin-bottom: 12px;
}

.section-title h2 {
  font-size: 2.2rem;
  margin-bottom: 12px;
}

.section-title p {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 650px;
  margin: 0 auto;
}

/* Services Grid */
.services-section {
  background-color: #0c1222;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 24px;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 32px;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-active);
  transform: translateY(-4px);
  box-shadow: var(--shadow-main);
}

.service-icon {
  width: 54px;
  height: 54px;
  background: rgba(59, 130, 246, 0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  margin-bottom: 20px;
}

.service-card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.service-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 20px;
  flex-grow: 1;
}

.service-price {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--accent);
  font-size: 1rem;
  padding-top: 16px;
  border-top: 1px dashed var(--border-light);
}

/* Pico y Placa Bogotá Section */
.pico-section {
  position: relative;
  background: radial-gradient(circle at center, #111a30 0%, #0a0f1d 100%);
}

.pico-calculator-card {
  background: rgba(19, 27, 46, 0.85);
  border: 1px solid var(--border-active);
  border-radius: var(--radius-lg);
  padding: 36px;
  margin-bottom: 40px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

.calc-header {
  margin-bottom: 24px;
}

.calc-header h3 {
  font-size: 1.4rem;
  margin-bottom: 6px;
}

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

.calc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  align-items: flex-end;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 0.9rem;
  font-weight: 600;
  color: #e2e8f0;
}

.form-control {
  background: #0a0f1d;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  color: #ffffff;
  font-family: var(--font-body);
  font-size: 1rem;
  outline: none;
  transition: border-color 0.2s ease;
}

.form-control:focus {
  border-color: var(--primary);
}

/* Pico Result Box */
.pico-result-box {
  margin-top: 28px;
  padding: 24px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 20px;
  animation: fadeIn 0.3s ease;
}

.pico-result-box.hidden {
  display: none;
}

.pico-result-box.allowed {
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.4);
}

.pico-result-box.restricted {
  background: rgba(239, 68, 68, 0.12);
  border: 1px solid rgba(239, 68, 68, 0.4);
}

.status-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
}

.pico-result-box.allowed .status-icon {
  background: rgba(16, 185, 129, 0.2);
  color: #10b981;
}

.pico-result-box.restricted .status-icon {
  background: rgba(239, 68, 68, 0.2);
  color: #ef4444;
}

.result-content h4 {
  font-size: 1.2rem;
  margin-bottom: 4px;
}

.result-content p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 8px;
}

.hours-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.08);
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 0.8rem;
  color: #cbd5e1;
}

/* Pico Rules Grid */
.pico-rules-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 36px;
}

.rule-box {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  padding: 28px;
  border: 1px solid var(--border-light);
  position: relative;
}

.rule-tag {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.8rem;
  padding: 4px 12px;
  border-radius: 4px;
  margin-bottom: 16px;
}

.rule-even .rule-tag {
  background: rgba(59, 130, 246, 0.2);
  color: #60a5fa;
}

.rule-odd .rule-tag {
  background: rgba(16, 185, 129, 0.2);
  color: #34d399;
}

.plate-numbers {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: 2px;
  margin: 12px 0;
}

.pico-info-box {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 32px;
}

.pico-info-box h4 {
  font-size: 1.15rem;
  margin-bottom: 16px;
}

.pico-info-box ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.pico-info-box li {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.disclaimer-alert {
  background: rgba(245, 158, 11, 0.1);
  border-left: 4px solid var(--warning);
  padding: 16px 20px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 0.85rem;
  color: #fef3c7;
  line-height: 1.5;
}

/* Transparency & Verification Section */
.transparency-section {
  background-color: #0c1222;
}

.transparency-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: center;
}

.verif-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 28px;
}

.verif-item {
  display: flex;
  gap: 16px;
}

.verif-icon {
  width: 28px;
  height: 28px;
  background: rgba(16, 185, 129, 0.2);
  color: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: bold;
  flex-shrink: 0;
}

.verif-item strong {
  color: #ffffff;
  font-size: 0.95rem;
}

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

.transparency-box {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 40px;
  text-align: center;
}

.shield-icon {
  width: 72px;
  height: 72px;
  background: rgba(59, 130, 246, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  margin: 0 auto 20px;
}

.transparency-box h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
}

.transparency-box p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 24px;
}

.policies-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.link-btn {
  background: none;
  border: none;
  color: var(--primary);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  text-decoration: underline;
}

.link-btn:hover {
  color: #60a5fa;
}

/* Contact Section */
.contact-section {
  background-color: var(--bg-dark);
}

.contact-card {
  background: linear-gradient(135deg, #131b2e 0%, #1a253e 100%);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 48px;
}

.contact-info h2 {
  font-size: 2rem;
  margin-bottom: 12px;
}

.contact-info p {
  color: var(--text-muted);
  margin-bottom: 28px;
}

.contact-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.c-detail {
  background: rgba(0, 0, 0, 0.2);
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-light);
  font-size: 0.95rem;
  color: #e2e8f0;
}

.static-phone-highlight {
  color: var(--accent);
  font-weight: 700;

  letter-spacing: 0.5px;
}

/* Footer */
.site-footer {
  background-color: #050810;
  border-top: 1px solid var(--border-light);
  padding: 60px 0 30px;
}

.footer-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}

.footer-logo {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.3rem;
  color: #ffffff;
  margin-bottom: 12px;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.9rem;
  max-width: 320px;
}

.footer-nav h4, .footer-legal h4 {
  font-size: 1rem;
  margin-bottom: 16px;
  color: #ffffff;
}

.footer-nav ul, .footer-legal ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-nav a, .footer-legal a {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.footer-nav a:hover, .footer-legal a:hover {
  color: #ffffff;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 24px;
  font-size: 0.85rem;
  color: var(--text-dim);
}

.footer-subtext {
  font-size: 0.8rem;
  margin-top: 4px;
}

/* Modals */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
}

.modal-content {
  background-color: var(--bg-card);
  border: 1px solid var(--border-active);
  margin: 5% auto;
  padding: 36px;
  width: 90%;
  max-width: 650px;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
  position: relative;
  max-height: 85vh;
  overflow-y: auto;
}

.close-modal {
  color: var(--text-muted);
  position: absolute;
  right: 24px;
  top: 20px;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}

.close-modal:hover {
  color: #ffffff;
}

.modal-content h2 {
  font-size: 1.5rem;
  margin-bottom: 16px;
}

.modal-content h3 {
  font-size: 1.1rem;
  margin: 16px 0 8px;
  color: #60a5fa;
}

.modal-content p, .modal-content li {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 12px;
}

.modal-content ul {
  padding-left: 20px;
  margin-bottom: 20px;
}

.modal-content .btn {
  margin-top: 20px;
}

/* Keyframes */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Responsive Media Queries */
@media (max-width: 992px) {
  .hero-container, .transparency-grid {
    grid-template-columns: 1fr;
  }

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

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

  .contact-details {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .main-nav {
    display: none; /* Simplificado para vista móvil */
  }

  .hero-content h1 {
    font-size: 2.1rem;
  }

  .pico-rules-grid {
    grid-template-columns: 1fr;
  }
}
