@charset "UTF-8";
:root {
  /* Colores base */
  --color-bg: #F7F6F2;
  --color-surface: #FFFFFF;
  --color-border: #E2E0D8;
  --color-text: #1A1916;
  --color-muted: #7A7870;
  /* Acento principal */
  --color-accent: #2D6A4F;
  --color-accent-lt: #D8EDE4;
  --color-accent-hover:#235840;
  /* CTA / botón oscuro */
  --color-cta: #1A1916;
  --color-cta-text: #F7F6F2;
  /* Tipografía */
  --font-display: 'DM Serif Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --text-xs: 0.72rem;
  --text-sm: 0.85rem;
  --text-base: 1rem;
  --text-lg: 1.1rem;
  --text-xl: 1.3rem;
  --text-2xl: 1.6rem;
  --text-3xl: 2.2rem;
  --text-4xl: 3rem;
  /* Espaciado */
  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 24px;
  --space-lg: 40px;
  --space-xl: 64px;
  --space-2xl: 100px;
  /* Bordes y sombras */
  --radius: 10px;
  --radius-lg: 18px;
  --shadow-sm: 0 1px 4px rgba(26,25,22,0.05);
  --shadow: 0 2px 16px rgba(26,25,22,0.08);
  --shadow-lg: 0 8px 32px rgba(26,25,22,0.12);
  /* Layout */
  --max-w: 1140px;
  --nav-h: 68px;
  /* Animaciones */
  --transition: 0.22s ease;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--color-bg);
  color: var(--color-text);
  font-size: var(--text-base);
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

.label-tag {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent);
  background: var(--color-accent-lt);
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: var(--space-md);
}

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
}

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-h);
  background: rgba(247, 246, 242, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-border);
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: var(--font-display);
  font-size: 1.45rem;
  color: var(--color-text);
  text-decoration: none;
  letter-spacing: -0.02em;
}

.logo span {
  color: var(--color-accent);
}

.nav-links {
  display: flex;
  gap: 4px;
  list-style: none;
}

.nav-links a {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-muted);
  text-decoration: none;
  padding: 6px 14px;
  border-radius: 6px;
  transition: color var(--transition), background var(--transition);
}

.nav-links a:hover,
.nav-links a[aria-current=page] {
  color: var(--color-text);
  background: var(--color-border);
}

.nav-links .nav-cta {
  background: var(--color-cta);
  color: var(--color-cta-text);
}

.nav-links .nav-cta:hover {
  background: #333;
  color: var(--color-cta-text);
}

footer {
  background: var(--color-text);
  color: var(--color-cta-text);
  padding: 48px 32px 32px;
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(247, 246, 242, 0.12);
  margin-bottom: var(--space-md);
  flex-wrap: wrap;
  gap: var(--space-md);
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.3rem;
}

.footer-logo span {
  color: var(--color-accent-lt);
}

.footer-links {
  display: flex;
  gap: var(--space-md);
  list-style: none;
  flex-wrap: wrap;
}

.footer-links a {
  color: rgba(247, 246, 242, 0.55);
  text-decoration: none;
  font-size: var(--text-sm);
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--color-cta-text);
}

.footer-bottom {
  font-size: var(--text-xs);
  color: rgba(247, 246, 242, 0.35);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  padding: 13px 28px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  border: none;
  transition: all var(--transition);
  line-height: 1;
}

.btn-primary {
  background: var(--color-cta);
  color: var(--color-cta-text);
}

.btn-primary:hover {
  opacity: 0.85;
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--color-text);
  border: 1.5px solid var(--color-border);
}

.btn-outline:hover {
  border-color: var(--color-text);
  background: var(--color-surface);
}

.btn-light {
  background: var(--color-bg);
  color: var(--color-text);
}

.btn-light:hover {
  background: #fff;
  transform: translateY(-1px);
}

.btn-sm {
  padding: 8px 16px;
  font-size: var(--text-sm);
  border-radius: 7px;
}

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

.page-hero {
  padding: var(--space-2xl) 32px 80px;
  max-width: var(--max-w);
  margin: 0 auto;
  border-bottom: 1px solid var(--color-border);
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: var(--space-sm);
  max-width: 620px;
}

.page-hero p {
  color: var(--color-muted);
  font-size: var(--text-lg);
  max-width: 520px;
  line-height: 1.7;
}

.features {
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  background: var(--color-surface);
  padding: 48px 32px;
}

.features-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
}

.feature {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.feature-icon {
  width: 44px;
  height: 44px;
  background: var(--color-accent-lt);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.feature h2 {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-text);
}

.feature p {
  font-size: var(--text-sm);
  color: var(--color-muted);
  line-height: 1.55;
}

.section {
  padding: 80px 32px;
  max-width: var(--max-w);
  margin: 0 auto;
}

.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: var(--space-lg);
}

.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.section-header a {
  font-size: var(--text-sm);
  color: var(--color-accent);
  text-decoration: none;
  font-weight: 500;
  white-space: nowrap;
}

.section-header a:hover {
  text-decoration: underline;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.product-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition);
}

.product-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.product-thumb {
  background: var(--color-bg);
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  border-bottom: 1px solid var(--color-border);
}

.product-info {
  padding: var(--space-md);
}

.product-tag {
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 6px;
}

.product-info h3 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  margin-bottom: 6px;
  font-weight: 400;
}

.product-desc {
  font-size: var(--text-sm);
  color: var(--color-muted);
  margin-bottom: var(--space-sm);
  line-height: 1.5;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.product-price {
  font-size: var(--text-xl);
  font-weight: 500;
}

.product-price small {
  font-size: var(--text-sm);
  color: var(--color-muted);
  font-weight: 400;
}

.cta-banner {
  max-width: var(--max-w);
  margin: 0 auto var(--space-xl);
  background: var(--color-text);
  border-radius: var(--radius-lg);
  padding: 60px 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-lg);
}

.cta-banner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--color-cta-text);
  letter-spacing: -0.02em;
  line-height: 1.2;
  font-weight: 400;
}

.cta-banner h2 em {
  color: var(--color-accent-lt);
  font-style: italic;
}

.hero {
  padding: var(--space-2xl) 32px 80px;
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5vw, 3.8rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: var(--space-md);
}

.hero h1 em {
  font-style: italic;
  color: var(--color-accent);
}

.hero p {
  color: var(--color-muted);
  font-size: var(--text-lg);
  line-height: 1.7;
  margin-bottom: var(--space-lg);
  max-width: 420px;
}

.btn-group {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  width: 100%;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.hero-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 180px;
  height: 180px;
  background: var(--color-accent-lt);
  border-radius: 50%;
  transform: translate(60px, -60px);
  pointer-events: none;
}

.scooter-emoji {
  font-size: 7rem;
  display: block;
  text-align: center;
  margin-bottom: var(--space-md);
  position: relative;
  z-index: 1;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  position: relative;
  z-index: 1;
}

.stat {
  background: var(--color-bg);
  border-radius: var(--radius);
  padding: 14px 12px;
  text-align: center;
}

.stat strong {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  color: var(--color-text);
  display: block;
  font-weight: 400;
}

.stat span {
  font-size: var(--text-xs);
  color: var(--color-muted);
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.services-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: var(--space-xl) 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

.service-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 36px;
  transition: box-shadow var(--transition);
}

.service-card:hover {
  box-shadow: var(--shadow);
}

.service-card.featured {
  background: var(--color-text);
  border-color: var(--color-text);
  grid-column: span 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.service-icon {
  font-size: 2.2rem;
  margin-bottom: var(--space-md);
  display: block;
}

.service-card h2 {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  margin-bottom: 10px;
  letter-spacing: -0.02em;
  font-weight: 400;
}

.service-card.featured h2 {
  color: var(--color-cta-text);
  font-size: var(--text-3xl);
}

.service-card p {
  font-size: var(--text-sm);
  color: var(--color-muted);
  line-height: 1.65;
  margin-bottom: var(--space-md);
}

.service-card.featured p {
  color: rgba(247, 246, 242, 0.65);
}

.service-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.service-list li {
  font-size: var(--text-sm);
  color: var(--color-muted);
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.service-list li::before {
  content: "—";
  color: var(--color-accent);
  flex-shrink: 0;
}

.service-card.featured .service-list li {
  color: rgba(247, 246, 242, 0.7);
}

.service-card.featured .service-list li::before {
  color: var(--color-accent-lt);
}

.price-badge {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 500;
  color: var(--color-accent);
  background: var(--color-accent-lt);
  padding: 3px 10px;
  border-radius: 20px;
  margin-top: 12px;
}

.service-card.featured .price-badge {
  background: rgba(216, 237, 228, 0.2);
  color: var(--color-accent-lt);
}

.about-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: var(--space-xl) 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.about-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  letter-spacing: -0.03em;
  margin-bottom: var(--space-md);
  line-height: 1.15;
  font-weight: 400;
}

.about-text p {
  color: var(--color-muted);
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: var(--space-sm);
}

.about-values {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  margin-top: 36px;
}

.value-item {
  display: flex;
  gap: var(--space-sm);
  align-items: flex-start;
  padding: var(--space-md);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
}

.value-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.value-item h3 {
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 4px;
}

.value-item p {
  font-size: var(--text-sm);
  color: var(--color-muted);
  line-height: 1.5;
  margin: 0;
}

.about-visual {
  position: sticky;
  top: 96px;
}

.about-card-big {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 48px var(--space-lg);
  text-align: center;
  box-shadow: var(--shadow);
  margin-bottom: var(--space-md);
}

.about-card-big .big-emoji {
  font-size: 5rem;
  display: block;
  margin-bottom: var(--space-md);
}

.about-card-big h3 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  margin-bottom: 8px;
  font-weight: 400;
}

.about-card-big p {
  font-size: var(--text-sm);
  color: var(--color-muted);
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.stat-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 20px var(--space-sm);
  text-align: center;
}

.stat-card strong {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--color-text);
  display: block;
  font-weight: 400;
}

.stat-card span {
  font-size: var(--text-xs);
  color: var(--color-muted);
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.contact-layout {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: var(--space-xl) 32px;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: var(--space-xl);
  align-items: start;
}

.contact-info {
  position: sticky;
  top: 96px;
}

.contact-info h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.2rem);
  letter-spacing: -0.03em;
  margin-bottom: 12px;
  font-weight: 400;
}

.contact-info > p {
  color: var(--color-muted);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 36px;
}

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

.contact-item {
  display: flex;
  gap: var(--space-sm);
  align-items: flex-start;
  padding: 18px var(--space-md);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
}

.contact-item-icon {
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-item h3 {
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--color-muted);
  font-weight: 500;
  margin-bottom: 2px;
}

.contact-item p {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-text);
}

.hours-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: var(--space-md);
}

.hours-card h3 {
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-accent);
  font-weight: 500;
  margin-bottom: 14px;
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
  font-size: var(--text-sm);
}

.hours-table td {
  padding: 8px 0;
  border-bottom: 1px solid var(--color-border);
  color: var(--color-muted);
}

.hours-table td:last-child {
  text-align: right;
  color: var(--color-text);
  font-weight: 500;
}

.hours-table tr:last-child td {
  border-bottom: none;
}

.map-wrap {
  margin-top: var(--space-lg);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border);
  height: 240px;
  background: var(--color-surface);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
  color: var(--color-muted);
  font-size: var(--text-sm);
}

.map-wrap .map-icon {
  font-size: 2.5rem;
}

.contact-form-wrap {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
}

.contact-form-wrap h2 {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  margin-bottom: 28px;
  font-weight: 400;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-sm);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: var(--space-sm);
}

.form-group label {
  font-size: var(--text-xs);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--color-muted);
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--color-text);
  background: var(--color-bg);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius);
  padding: 11px 14px;
  outline: none;
  transition: border-color var(--transition);
  width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--color-accent);
}

.form-group textarea {
  resize: vertical;
  min-height: 110px;
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
  }
  .hero-visual {
    display: none;
  }
  .features-inner {
    grid-template-columns: 1fr 1fr;
  }
  .products-grid {
    grid-template-columns: 1fr 1fr;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .service-card.featured {
    grid-column: span 1;
    grid-template-columns: 1fr;
  }
  .cta-banner {
    flex-direction: column;
    text-align: center;
    padding: var(--space-lg);
  }
  .about-grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
  .about-visual {
    position: static;
  }
  .contact-layout {
    grid-template-columns: 1fr;
  }
  .contact-info {
    position: static;
  }
}
@media (max-width: 560px) {
  .container, .hero, .features, .section, .page-hero,
  .services-grid, .about-grid, .contact-layout {
    padding-left: 20px;
    padding-right: 20px;
  }
  .features-inner {
    grid-template-columns: 1fr;
  }
  .products-grid {
    grid-template-columns: 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .nav-links {
    display: none;
  }
  .cta-banner {
    margin-left: 20px;
    margin-right: 20px;
  }
}

/*# sourceMappingURL=styles.css.map */
