/* =============================================
   Reparación de Impresoras Epson Cancún
   CSS Principal v1.1 (compartido home + blog)
   ============================================= */

:root {
  --blue: #426694;
  --blue-dark: #1a3d6e;
  --blue-light: #5d8bc4;
  --accent: #FF8C5C;
  --accent-dark: #E56F40;
  --accent-soft: #FFEAD9;
  --green-wa: #25D366;
  --green-wa-cta: #0E7F3C;
  --title: #1F2024;
  --text: #555558;
  --meta: #525960;
  --bg: #F4F5F7;
  --white: #FFFFFF;
  --border: rgba(155,155,155,0.15);
  --radius: 8px;
  --shadow: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.12);
  --transition: all 0.25s ease;
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Mulish', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  background: var(--bg);
  font-size: 14px;
  line-height: 1.6;
}
a { color: var(--blue); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--title); }
img { max-width: 100%; height: auto; display: block; }

/* =============================================
   LAYOUT
   ============================================= */
.container { max-width: 970px; margin: 0 auto; padding: 0 20px; }
.section { padding: 60px 0; }
.section-title { text-align: center; margin-bottom: 35px; }
.section-title h2 { font-size: 28px; color: var(--title); font-weight: 700; margin-bottom: 8px; }
.section-title p { color: var(--meta); font-size: 14px; }

/* =============================================
   HEADER
   ============================================= */
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky; top: 0; z-index: 900;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.header-inner {
  display: flex; align-items: center;
  justify-content: space-between;
  padding: 15px 20px; max-width: 970px;
  margin: 0 auto; gap: 20px;
}
.site-logo {
  font-size: 16px; font-weight: 800;
  color: var(--blue); letter-spacing: -0.5px;
  text-transform: uppercase; white-space: nowrap;
}
.site-logo span { color: var(--title); }
.site-nav { display: flex; gap: 25px; align-items: center; }
.site-nav a {
  font-size: 13px; font-weight: 600;
  color: var(--title); text-transform: uppercase;
  letter-spacing: 0.5px; transition: var(--transition);
}
.site-nav a:hover, .site-nav a.active { color: var(--blue); }
.nav-dropdown { position: relative; }
.nav-dropdown-toggle { cursor: pointer; }
.nav-dropdown-menu {
  position: absolute; top: 100%; left: -16px;
  opacity: 0; pointer-events: none;
  transform: translateY(-10px) scale(0.98);
  transform-origin: top left;
  background: rgba(255,255,255,0.92);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255,255,255,0.6);
  border-radius: 14px;
  padding: 8px;
  min-width: 280px;
  box-shadow:
    0 24px 50px -14px rgba(15,23,41,0.22),
    0 10px 20px -6px rgba(15,23,41,0.08),
    0 1px 2px rgba(15,23,41,0.04);
  z-index: 100;
  margin-top: 14px;
  transition: opacity 0.28s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.28s cubic-bezier(0.16, 1, 0.3, 1);
}
.nav-dropdown-menu::before {
  content: ''; position: absolute;
  top: -14px; left: 0; right: 0; height: 14px;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1; pointer-events: auto;
  transform: translateY(0) scale(1);
}
.nav-dropdown-menu a {
  display: block;
  padding: 11px 16px 11px 18px;
  text-transform: none;
  font-size: 13px; font-weight: 500; letter-spacing: 0;
  color: var(--title);
  border-radius: 8px;
  border-bottom: none;
  position: relative;
  transition: background 0.2s ease, color 0.2s ease, padding 0.2s ease;
}
.nav-dropdown-menu a::before {
  content: ''; position: absolute;
  left: 6px; top: 50%; transform: translateY(-50%);
  width: 3px; height: 0;
  background: var(--accent);
  border-radius: 2px;
  transition: height 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}
.nav-dropdown-menu a:hover {
  background: var(--accent-soft);
  color: var(--accent-dark);
  padding-left: 24px;
}
.nav-dropdown-menu a:hover::before { height: 22px; }
.nav-cta {
  background: var(--blue); color: var(--white) !important;
  padding: 9px 18px; border-radius: 4px;
  font-size: 12px !important;
}
.nav-cta:hover { background: var(--blue-dark) !important; color: var(--white) !important; }
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; background: none; border: none; padding: 5px;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--title); border-radius: 2px;
  transition: var(--transition);
}
.mobile-menu {
  display: none; background: var(--white);
  border-top: 1px solid var(--border);
  padding: 15px 20px; flex-direction: column; gap: 12px;
}
.mobile-menu.active { display: flex; }
.mobile-menu a {
  font-size: 14px; font-weight: 600;
  color: var(--title); padding: 8px 0;
  border-bottom: 1px solid var(--border);
}
.mobile-menu .mobile-menu-group { font-weight: 700; color: var(--blue); }
.mobile-menu .mobile-menu-sub {
  font-size: 13px; font-weight: 500; padding-left: 14px;
  border-bottom: 1px solid var(--border);
  text-transform: none;
}

/* =============================================
   HERO
   ============================================= */
.hero {
  background: linear-gradient(135deg, #0f1729 0%, #16213e 50%, #1e3a6e 100%);
  color: var(--white); padding: 95px 0 80px; text-align: center; overflow: hidden;
  position: relative;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 15% 25%, rgba(255,140,92,0.12) 0%, transparent 45%),
              radial-gradient(circle at 85% 75%, rgba(125,179,230,0.15) 0%, transparent 50%),
              radial-gradient(circle at 50% 100%, rgba(255,140,92,0.08) 0%, transparent 60%);
  pointer-events: none;
}
.hero::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 4px;
  background: linear-gradient(90deg, var(--accent) 0%, var(--blue-light) 50%, var(--accent) 100%);
}
.hero .container { position: relative; z-index: 1; }
.hero-badge {
  display: inline-block; background: rgba(255,140,92,0.15);
  color: #FFD7C2; font-size: 13px; font-weight: 600;
  padding: 8px 20px; border-radius: 50px; margin-bottom: 24px;
  border: 1px solid rgba(255,140,92,0.35);
}
.hero h1 {
  font-size: 56px; font-weight: 800; line-height: 1.1;
  margin-bottom: 22px; letter-spacing: -1.5px;
}
.hero h1 span {
  color: var(--accent);
  background: linear-gradient(135deg, #FFA17A 0%, #FF8C5C 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-desc {
  font-size: 17px; color: rgba(255,255,255,0.88);
  line-height: 1.7; max-width: 720px;
  margin: 0 auto 32px;
}
.hero-desc strong { color: var(--white); }
.hero-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 50px; }
.btn { display: inline-flex; align-items: center; gap: 8px; height: 48px; padding: 0 26px; border-radius: 6px; font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; transition: var(--transition); cursor: pointer; border: none; }
.btn-wa { background: var(--green-wa-cta); color: var(--white); box-shadow: 0 4px 15px rgba(14,127,60,0.35); }
.btn-wa:hover { background: #0a6b2c; transform: translateY(-2px); color: var(--white); box-shadow: 0 6px 20px rgba(14,127,60,0.45); }
.btn-outline { background: rgba(255,255,255,0.1); color: var(--white); border: 1px solid rgba(255,255,255,0.25); }
.btn-outline:hover { background: rgba(255,255,255,0.2); transform: translateY(-2px); color: var(--white); }
.hero-stats {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 30px; padding-top: 35px;
  border-top: 1px solid rgba(255,255,255,0.12);
  max-width: 720px; margin: 0 auto;
  min-height: 92px;
}
.stat { padding: 0 10px; min-height: 70px; }
.stat b {
  display: block; font-size: 38px;
  color: var(--accent); font-weight: 800;
  letter-spacing: -1px; line-height: 1.1; margin-bottom: 6px;
  min-height: 42px;
}
.stat span {
  font-size: 11px; color: rgba(255,255,255,0.7);
  text-transform: uppercase; letter-spacing: 1.2px; font-weight: 600;
  display: block; min-height: 26px;
}

/* =============================================
   PROCESO
   ============================================= */
.process { background: var(--white); border-bottom: 1px solid var(--border); }
.process-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 25px; }
.process-step {
  text-align: center; padding: 32px 20px 28px;
  border: 1px solid var(--border); border-radius: var(--radius);
  transition: var(--transition); background: var(--white);
  position: relative;
}
.process-step:hover {
  border-color: transparent; transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.process-step:hover .step-num {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  box-shadow: 0 6px 18px rgba(255,140,92,0.45);
  transform: scale(1.08);
}
.step-num {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, var(--blue-light) 0%, var(--blue) 100%);
  color: var(--white); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; font-weight: 800; margin: 0 auto 20px;
  box-shadow: 0 6px 18px rgba(66,102,148,0.35);
  transition: var(--transition);
}
.process-step h3 { font-size: 15px; color: var(--title); font-weight: 700; margin-bottom: 10px; }
.process-step p { font-size: 13px; line-height: 1.6; }

/* =============================================
   SERVICIOS
   ============================================= */
.services { background: var(--bg); }
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.service-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 32px 22px 26px;
  text-align: center; transition: var(--transition);
  display: block; text-decoration: none; color: inherit;
  position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 4px; background: var(--accent);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s ease;
}
.service-card:hover {
  border-color: transparent; box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover .service-icon {
  background: var(--accent-soft); color: var(--accent-dark);
  transform: rotate(-6deg) scale(1.08);
}
.service-icon {
  width: 64px; height: 64px;
  background: rgba(66,102,148,0.1); color: var(--blue);
  border-radius: 14px; display: flex; align-items: center;
  justify-content: center; margin: 0 auto 18px;
  transition: var(--transition);
}
.service-icon svg { width: 30px; height: 30px; }
.service-card h3 { font-size: 16px; color: var(--title); font-weight: 700; margin-bottom: 10px; }
.service-card p { font-size: 13px; line-height: 1.6; margin-bottom: 16px; }
.service-link {
  display: inline-block; font-size: 12px; font-weight: 700;
  color: var(--blue); text-transform: uppercase; letter-spacing: 0.5px;
  transition: var(--transition);
}
.service-card:hover .service-link { color: var(--accent-dark); }

/* Inline hero image for service pages */
.post-hero-img {
  width: 100%; height: auto;
  border-radius: 8px;
  margin: 0 0 24px;
  display: block;
  background: var(--bg);
}

/* =============================================
   MODELOS
   ============================================= */
.models { background: var(--white); border-bottom: 1px solid var(--border); }
.models-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 15px; margin-bottom: 20px; }
.model-item {
  background: var(--bg); border: 1px solid var(--border);
  border-radius: 6px; padding: 20px 22px; transition: var(--transition);
  display: block; text-decoration: none; color: inherit;
}
.model-item:hover { border-color: var(--blue); transform: translateX(4px); background: var(--white); color: inherit; }
.model-item strong { display: block; font-size: 15px; color: var(--title); margin-bottom: 4px; }
.model-item span { font-size: 12px; line-height: 1.5; color: var(--text); }
a.model-item:hover strong { color: var(--blue); }
.models-note { text-align: center; font-size: 14px; font-style: italic; }

/* =============================================
   POR QUÉ ELEGIRNOS
   ============================================= */
.why { background: var(--bg); }
.why-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.why-item {
  text-align: center; padding: 28px 18px 22px;
  background: var(--white); border-radius: var(--radius);
  border: 1px solid var(--border); transition: var(--transition);
}
.why-item:hover {
  border-color: transparent; box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.why-item:hover .why-icon {
  background: var(--accent-soft); color: var(--accent-dark);
  transform: scale(1.1);
}
.why-icon {
  width: 56px; height: 56px;
  background: rgba(66,102,148,0.1); color: var(--blue);
  border-radius: 50%; display: flex; align-items: center;
  justify-content: center; margin: 0 auto 16px;
  transition: var(--transition);
}
.why-icon svg { width: 26px; height: 26px; }
.why-item h3 { font-size: 14px; color: var(--title); font-weight: 700; margin-bottom: 8px; }
.why-item p { font-size: 12px; line-height: 1.55; }

/* =============================================
   TESTIMONIOS
   ============================================= */
.testimonials { background: var(--white); border-bottom: 1px solid var(--border); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-bottom: 25px; }
.testimonial-card {
  background: var(--bg); border: 1px solid var(--border);
  border-radius: 10px; padding: 28px 25px; transition: var(--transition);
}
.testimonial-card:hover { border-color: var(--blue); box-shadow: var(--shadow); transform: translateY(-3px); }
.stars { color: #FFB800; font-size: 18px; letter-spacing: 2px; margin-bottom: 14px; }
.testimonial-text {
  font-size: 14px; color: var(--title); line-height: 1.7;
  font-style: italic; margin-bottom: 18px; min-height: 120px;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; padding-top: 14px; border-top: 1px solid var(--border); }
.avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  color: var(--white); display: flex; align-items: center;
  justify-content: center; font-size: 16px; font-weight: 700; flex-shrink: 0;
}
.testimonial-author strong { display: block; font-size: 13px; color: var(--title); }
.testimonial-author span { font-size: 11px; color: var(--meta); }
.google-btn {
  display: inline-flex; align-items: center; gap: 8px;
  height: 42px; padding: 0 26px; background: var(--white);
  color: #4285F4; border: 2px solid #4285F4; border-radius: 6px;
  font-size: 14px; font-weight: 600; margin: 0 auto; transition: var(--transition);
}
.google-btn:hover { background: #4285F4; color: var(--white); transform: translateY(-2px); }
.testimonials-cta { text-align: center; }

/* =============================================
   FAQ
   ============================================= */
.faq { background: var(--bg); }
.faq .container { max-width: 800px; }
.faq-item {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); margin-bottom: 12px; overflow: hidden; transition: var(--transition);
}
.faq-item:hover, .faq-item[open] { border-color: var(--blue); }
.faq-item[open] { box-shadow: 0 4px 15px rgba(0,0,0,0.05); }
.faq-item summary {
  padding: 20px 24px; font-size: 15px; font-weight: 600;
  color: var(--title); cursor: pointer; list-style: none;
  position: relative; padding-right: 55px; line-height: 1.4;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+'; position: absolute; right: 24px; top: 50%;
  transform: translateY(-50%); font-size: 26px; color: var(--blue);
  font-weight: 300; transition: transform 0.25s ease;
}
.faq-item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-item summary:hover { color: var(--blue); }
.faq-answer { padding: 0 24px 20px; font-size: 14px; line-height: 1.7; }

/* =============================================
   UBICACIÓN
   ============================================= */
.location { background: var(--white); border-bottom: 1px solid var(--border); }
.location-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 30px; align-items: start; }
.location-info { display: flex; flex-direction: column; gap: 18px; }
.location-item {
  padding: 22px; background: var(--bg);
  border: 1px solid var(--border); border-radius: var(--radius);
}
.location-item strong { display: block; font-size: 14px; color: var(--blue); margin-bottom: 10px; font-weight: 700; }
.location-item p { font-size: 14px; color: var(--title); line-height: 1.6; }
.location-item a { color: var(--blue); font-weight: 600; }
.location-item a:hover { text-decoration: underline; }
.location-map { border-radius: 10px; overflow: hidden; border: 1px solid var(--border); }
.location-map iframe { display: block; width: 100%; height: 380px; border: 0; }

/* =============================================
   BLOG
   ============================================= */
.blog { background: var(--bg); }
.blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.blog-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden; transition: var(--transition);
  display: flex; flex-direction: column;
}
.blog-card:hover { border-color: var(--blue); box-shadow: var(--shadow); transform: translateY(-3px); }
.blog-card-img { width: 100%; height: 180px; object-fit: cover; background: var(--bg); }
.blog-card-img-placeholder {
  width: 100%; height: 180px;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-light) 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: 48px; color: var(--white);
}
.blog-card-body { padding: 20px; display: flex; flex-direction: column; flex-grow: 1; }
.blog-card-meta { font-size: 11px; color: var(--meta); margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.5px; }
.blog-card-body h3 { font-size: 15px; color: var(--title); font-weight: 700; margin-bottom: 8px; line-height: 1.4; }
.blog-card-body h3 a { color: inherit; }
.blog-card-body h3 a:hover { color: var(--blue); }
.blog-card-body p { font-size: 13px; line-height: 1.6; margin-bottom: 15px; flex-grow: 1; }
.read-more { font-size: 13px; font-weight: 700; color: var(--blue); align-self: flex-start; }
.read-more:hover { color: var(--blue-dark); }

/* Post individual */
.post-header { background: linear-gradient(135deg, #1a1a2e, var(--blue)); color: var(--white); padding: 50px 0 40px; }
.post-header .breadcrumbs { font-size: 12px; color: rgba(255,255,255,0.75); margin-bottom: 14px; text-transform: uppercase; letter-spacing: 0.5px; }
.post-header .breadcrumbs a { color: rgba(255,255,255,0.85); }
.post-header .breadcrumbs a:hover { color: var(--white); }
.post-header h1 { font-size: 32px; font-weight: 800; line-height: 1.2; margin-bottom: 15px; max-width: 820px; }
.post-meta { font-size: 13px; color: rgba(255,255,255,0.7); }
.post-meta a { color: rgba(255,255,255,0.85); }
.post-meta a:hover { color: var(--white); }
.post-body { background: var(--white); }
.post-content { max-width: 760px; margin: 0 auto; padding: 40px 20px; }
.post-content h2 { font-size: 22px; color: var(--title); font-weight: 700; margin: 30px 0 15px; }
.post-content h3 { font-size: 18px; color: var(--title); font-weight: 700; margin: 25px 0 12px; }
.post-content p { font-size: 15px; line-height: 1.8; margin-bottom: 18px; color: var(--title); }
.post-content ul, .post-content ol { margin: 0 0 18px 20px; }
.post-content li { font-size: 15px; line-height: 1.8; margin-bottom: 6px; color: var(--title); }
.post-content strong { color: var(--title); }
.post-content img { border-radius: var(--radius); margin: 20px 0; }
.post-content blockquote {
  border-left: 4px solid var(--blue); padding: 16px 22px;
  background: var(--bg); margin: 22px 0; border-radius: 6px;
  font-style: italic; color: var(--title);
}
.post-content .callout {
  background: rgba(66,102,148,0.07); border: 1px solid rgba(66,102,148,0.2);
  padding: 18px 22px; border-radius: var(--radius); margin: 22px 0;
}
.post-content .callout p { margin: 0; font-size: 14px; }
.post-content .callout strong { color: var(--blue); }
.post-tags { margin-top: 35px; padding-top: 25px; border-top: 1px solid var(--border); display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.post-tags span:first-child { font-size: 12px; color: var(--meta); text-transform: uppercase; letter-spacing: 0.5px; margin-right: 4px; }
.post-tag { background: var(--bg); color: var(--title); padding: 5px 12px; border-radius: 50px; font-size: 12px; font-weight: 600; }

.related-section { background: var(--bg); padding: 50px 0; }
.related-section h3 { text-align: center; font-size: 22px; color: var(--title); font-weight: 700; margin-bottom: 25px; }

/* =============================================
   CTA FINAL
   ============================================= */
.cta-section {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  text-align: center; padding: 65px 20px; color: var(--white);
}
.cta-section h2 { font-size: 30px; font-weight: 800; margin-bottom: 12px; letter-spacing: -0.5px; }
.cta-section p { font-size: 16px; color: rgba(255,255,255,0.9); margin-bottom: 28px; max-width: 580px; margin-left: auto; margin-right: auto; }
.btn-cta-large {
  display: inline-flex; align-items: center; gap: 8px;
  height: 54px; background: var(--green-wa-cta); color: var(--white);
  font-size: 16px; font-weight: 700; padding: 0 36px;
  border-radius: 6px; transition: var(--transition);
  box-shadow: 0 6px 20px rgba(14,127,60,0.4);
  text-transform: uppercase; letter-spacing: 0.5px;
}
.btn-cta-large:hover { background: #0a6b2c; transform: translateY(-3px); color: var(--white); box-shadow: 0 10px 30px rgba(14,127,60,0.5); }
.cta-secondary { font-size: 13px; color: rgba(255,255,255,0.75); margin-top: 18px; }
.cta-secondary a { color: var(--white); font-weight: 600; text-decoration: underline; }

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
  background: linear-gradient(180deg, #1F2024 0%, #15161A 100%);
  color: rgba(255,255,255,0.6);
  padding: 0; position: relative;
}
.footer-accent {
  height: 3px;
  background: linear-gradient(90deg, var(--accent) 0%, var(--blue-light) 50%, var(--accent) 100%);
}
.site-footer > .container { padding-top: 55px; padding-bottom: 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1.4fr;
  gap: 45px; margin-bottom: 40px;
}
.footer-logo {
  font-size: 18px; font-weight: 800; color: var(--white);
  text-transform: uppercase; letter-spacing: -0.3px; margin-bottom: 14px;
}
.footer-logo span { color: var(--accent); }
.footer-desc { font-size: 13px; line-height: 1.7; margin-bottom: 18px; }
.footer-rating {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  padding: 9px 14px; border-radius: 10px; margin-bottom: 20px;
}
.rating-stars { color: #FFB951; font-size: 14px; letter-spacing: 1.5px; line-height: 1; }
.rating-text { font-size: 12px; color: rgba(255,255,255,0.75); }
.rating-text strong { color: var(--white); font-weight: 800; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px; transition: var(--transition);
}
.footer-social a:hover {
  background: var(--accent); border-color: var(--accent);
  transform: translateY(-2px);
}
.footer-social svg {
  width: 16px; height: 16px;
  fill: rgba(255,255,255,0.75); transition: var(--transition);
}
.footer-social a:hover svg { fill: var(--white); }
.footer-col h3 {
  font-size: 12px; font-weight: 800; color: var(--white);
  text-transform: uppercase; letter-spacing: 1.2px;
  margin-bottom: 18px; position: relative; padding-bottom: 10px;
}
.footer-col h3::after {
  content: ''; position: absolute; left: 0; bottom: 0;
  width: 26px; height: 2px;
  background: var(--accent); border-radius: 1px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a {
  font-size: 13px; color: rgba(255,255,255,0.65);
  transition: var(--transition); display: inline-block;
}
.footer-col a:hover { color: var(--accent); transform: translateX(3px); }
.footer-contact ul li {
  display: flex; gap: 11px; align-items: flex-start;
  margin-bottom: 14px; font-size: 13px;
  color: rgba(255,255,255,0.7); line-height: 1.55;
}
.footer-contact ul li svg.footer-icon {
  flex-shrink: 0; width: 16px; height: 16px;
  margin-top: 2px; fill: var(--accent);
}
.footer-contact a {
  color: rgba(255,255,255,0.85); text-decoration: none;
}
.footer-contact a:hover { color: var(--accent); transform: none; }
.footer-wa-btn {
  display: inline-flex !important; align-items: center; gap: 8px;
  padding: 10px 16px !important;
  background: var(--green-wa-cta); color: var(--white) !important;
  border-radius: 8px; font-weight: 700;
  font-size: 13px !important; margin-top: 4px;
  transition: var(--transition);
  box-shadow: 0 4px 12px rgba(14,127,60,0.3);
}
.footer-wa-btn:hover {
  background: #0a6b2c; transform: translateY(-2px) !important;
  box-shadow: 0 6px 18px rgba(14,127,60,0.45);
  color: var(--white) !important;
}
.footer-wa-btn svg { width: 14px; height: 14px; fill: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 22px 0 26px;
  display: grid; grid-template-columns: 1fr 1.4fr;
  gap: 24px; font-size: 12px; color: rgba(255,255,255,0.55);
  align-items: start;
}
.footer-bottom-left {
  display: flex; flex-direction: column; gap: 6px;
}
.footer-bottom-left a {
  color: rgba(255,255,255,0.7); font-weight: 600;
  text-decoration: underline; text-underline-offset: 3px;
  transition: color 0.2s ease;
}
.footer-bottom-left a:hover { color: var(--accent); }
.footer-bottom-right {
  font-size: 11.5px; color: rgba(255,255,255,0.55);
  line-height: 1.6; padding-left: 16px;
  border-left: 1px solid rgba(255,255,255,0.08);
}
.footer-bottom-right strong {
  color: rgba(255,255,255,0.85); font-weight: 700;
}

/* =============================================
   BADGE TIEMPO DE RESPUESTA
   ============================================= */
.response-badge {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 18px; padding: 7px 16px;
  background: rgba(255, 140, 92, 0.15);
  color: var(--accent); font-size: 13px; font-weight: 700;
  border-radius: 999px;
  border: 1px solid rgba(255, 140, 92, 0.4);
  letter-spacing: 0.2px;
}
.response-badge::before { content: "⚡"; font-size: 14px; }

.wa-tooltip {
  position: fixed; bottom: 100px; left: 30px;
  background: var(--accent); color: var(--white);
  padding: 7px 13px; border-radius: 8px;
  font-size: 12px; font-weight: 700; white-space: nowrap;
  box-shadow: 0 4px 14px rgba(0,0,0,0.25);
  z-index: 9001; pointer-events: none;
  animation: tooltip-bob 2.6s ease-in-out infinite;
  will-change: transform;
}
.wa-tooltip::after {
  content: ""; position: absolute;
  bottom: -6px; left: 22px;
  border: 6px solid transparent;
  border-top-color: var(--accent);
  border-bottom: 0;
}
@keyframes tooltip-bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}
@media (max-width: 600px) { .wa-tooltip { display: none; } }

/* =============================================
   BOTONES FLOTANTES
   ============================================= */
#btn-whatsapp {
  position: fixed; bottom: 30px; left: 30px;
  width: 62px; height: 62px; background: var(--green-wa);
  border-radius: 50%; display: flex; align-items: center;
  justify-content: center; box-shadow: 0 4px 16px rgba(37,211,102,0.4);
  z-index: 9000; transition: var(--transition);
}
#btn-whatsapp::before {
  content: ''; position: absolute; inset: 0;
  border-radius: 50%; background: var(--green-wa);
  z-index: -1; animation: pulse-wa 2s infinite;
  will-change: transform, opacity;
}
#btn-whatsapp::after {
  content: ''; position: absolute;
  top: 2px; right: 2px;
  width: 14px; height: 14px;
  background: #FF3B30;
  border: 2px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(255,59,48,0.5);
  animation: badge-pulse 1.6s ease-in-out infinite;
  z-index: 1;
}
#btn-whatsapp:hover { background: #20bd5a; transform: scale(1.08); }
#btn-whatsapp:hover svg, #btn-whatsapp:hover::after { animation-play-state: paused; }
#btn-whatsapp svg {
  width: 32px; height: 32px; fill: white;
  transform-origin: center;
  animation: wiggle-wa 5s ease-in-out infinite;
}

#btn-call {
  position: fixed; bottom: 30px; right: 30px;
  width: 62px; height: 62px; background: var(--white);
  border-radius: 50%; display: flex; align-items: center;
  justify-content: center; box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  z-index: 9000; transition: var(--transition);
  border: 2px solid var(--blue);
}
#btn-call::before {
  content: ''; position: absolute; inset: 0;
  border-radius: 50%; background: var(--blue);
  z-index: -1; animation: pulse-call 2s infinite;
  will-change: transform, opacity;
}
#btn-call:hover { background: var(--blue); transform: scale(1.08); }
#btn-call:hover svg { fill: white; animation-play-state: paused; }
#btn-call svg {
  width: 28px; height: 28px; fill: var(--blue);
  transition: fill 0.25s ease;
  transform-origin: center;
  animation: vibrate-call 5s ease-in-out infinite;
  will-change: transform;
}

@keyframes pulse-wa {
  0% { transform: scale(1); opacity: 0.7; }
  70% { transform: scale(1.4); opacity: 0; }
  100% { transform: scale(1.4); opacity: 0; }
}
@keyframes pulse-call {
  0% { transform: scale(1); opacity: 0.5; }
  70% { transform: scale(1.35); opacity: 0; }
  100% { transform: scale(1.35); opacity: 0; }
}
@keyframes wiggle-wa {
  0%, 88%, 100% { transform: rotate(0); }
  90% { transform: rotate(-14deg); }
  92% { transform: rotate(12deg); }
  94% { transform: rotate(-10deg); }
  96% { transform: rotate(8deg); }
  98% { transform: rotate(0); }
}
@keyframes vibrate-call {
  0%, 84%, 100% { transform: translate(0, 0) rotate(0); }
  85% { transform: translate(-0.6px, 0.6px) rotate(-2.5deg); }
  86% { transform: translate(0.6px, -0.6px) rotate(2.5deg); }
  87% { transform: translate(-0.6px, 0.6px) rotate(-2.5deg); }
  88% { transform: translate(0.6px, -0.6px) rotate(2.5deg); }
  89% { transform: translate(-0.6px, 0.6px) rotate(-2.5deg); }
  90% { transform: translate(0.6px, -0.6px) rotate(2.5deg); }
  91% { transform: translate(-0.6px, 0.6px) rotate(-2.5deg); }
  92% { transform: translate(0.6px, -0.6px) rotate(2.5deg); }
  93% { transform: translate(-0.6px, 0.6px) rotate(-2.5deg); }
  94% { transform: translate(0.6px, -0.6px) rotate(2.5deg); }
  95% { transform: translate(0, 0) rotate(0); }
}
@keyframes badge-pulse {
  0%, 100% { transform: scale(1); box-shadow: 0 2px 6px rgba(255,59,48,0.5); }
  50% { transform: scale(1.18); box-shadow: 0 2px 12px rgba(255,59,48,0.7); }
}

@media (prefers-reduced-motion: reduce) {
  #btn-whatsapp svg,
  #btn-whatsapp::after,
  #btn-whatsapp::before,
  #btn-call svg,
  #btn-call::before {
    animation: none;
  }
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 880px) {
  .hero { padding: 70px 0 60px; }
  .hero h1 { font-size: 38px; letter-spacing: -1px; }
  .stat b { font-size: 32px; }
  .process-grid { grid-template-columns: repeat(2,1fr); }
  .services-grid { grid-template-columns: repeat(2,1fr); }
  .why-grid { grid-template-columns: repeat(2,1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .testimonial-text { min-height: auto; }
  .location-grid { grid-template-columns: 1fr; }
  .models-grid { grid-template-columns: repeat(2,1fr); }
  .blog-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 35px; }
  .footer-grid > div:first-child { grid-column: span 2; }
  .hero-stats { grid-template-columns: repeat(3,1fr); gap: 18px; padding-top: 28px; min-height: 100px; }
  .stat { padding: 0 4px; min-height: 60px; }
  .post-header h1 { font-size: 26px; }
}

@media (max-width: 580px) {
  .hero { padding: 50px 0 40px; }
  .hero h1 { font-size: 30px; letter-spacing: -0.5px; }
  .hero-desc { font-size: 14px; }
  .hero-stats { grid-template-columns: 1fr; gap: 14px; min-height: 320px; }
  .stat { padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.1); min-height: 84px; }
  .stat:last-child { border: 0; }
  .stat b { font-size: 28px; min-height: 32px; }
  .section { padding: 40px 0; }
  .section-title h2 { font-size: 22px; }
  .process-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .models-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-grid > div:first-child { grid-column: auto; }
  .footer-bottom { grid-template-columns: 1fr; gap: 18px; text-align: left; }
  .footer-bottom-right { padding-left: 0; border-left: 0; padding-top: 16px; border-top: 1px solid rgba(255,255,255,0.08); }
  .site-nav { display: none; }
  .hamburger { display: flex; }
  .site-logo { font-size: 13px; letter-spacing: -0.3px; }
  #btn-whatsapp { width: 52px; height: 52px; bottom: 15px; left: 15px; }
  #btn-whatsapp svg { width: 26px; height: 26px; }
  #btn-call { width: 52px; height: 52px; bottom: 15px; right: 15px; }
  #btn-call svg { width: 24px; height: 24px; }
  .cta-section h2 { font-size: 22px; }
  .btn-cta-large { font-size: 14px; padding: 0 28px; height: 48px; }
  .post-header h1 { font-size: 22px; }
  .post-content h2 { font-size: 19px; }
  .post-content p, .post-content li { font-size: 14px; }
}
