/* ==========================================================================
   Estilos Locales: Equipos de Oficina (Futunet SRL)
   Hoja de estilos premium con colores corporativos azul, plata y grafito.
   ========================================================================== */

:root {
  --brand-office: #0A70A2;
  --brand-office-dark: #065176;
  --brand-office-light: #22a4e0;
  --brand-office-glow: rgba(10, 112, 162, 0.15);
  --brand-office-pale: rgba(10, 112, 162, 0.05);
  --accent-amber: #F59E0B;
  --bg-hud: #0b1522;
}

/* 1. BARRA DE NAVEGACIÓN SECUNDARIA (Sticky Subnav) */
.service-subnav {
  background-color: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(15, 25, 35, 0.05);
  padding: 0 5%;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 99;
  box-shadow: 0 8px 30px rgba(15, 25, 35, 0.02);
}

.service-subnav.sticky {
  position: fixed;
  top: 68px; /* Altura scrolled de index.html navbar */
  left: 0;
  width: 100%;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), top 0.3s ease;
  transform: translateY(0);
}

@media (max-width: 1023px) {
  .service-subnav.sticky {
    top: 64px;
  }
}

.service-subnav.sticky.nav-hidden {
  transform: translateY(-140px);
}

.subnav-container {
  max-width: 1200px;
  margin: 0 auto;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.subnav-container::-webkit-scrollbar {
  display: none;
}

.subnav-links {
  display: flex;
  justify-content: center;
  align-items: center;
  list-style: none;
  gap: 10px;
  padding: 10px 0;
  margin: 0;
  white-space: nowrap;
}

@media (max-width: 768px) {
  .subnav-links {
    justify-content: flex-start;
    padding: 12px 0;
  }
}

.subnav-links a {
  text-decoration: none;
  color: #64748b;
  font-weight: 600;
  font-size: 0.88rem;
  padding: 8px 16px;
  border-radius: 50px;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-flex;
  align-items: center;
  border: 1px solid transparent;
}

.subnav-links a:hover {
  color: var(--brand-office);
  background: var(--brand-office-pale);
}

.subnav-links a.active {
  color: var(--brand-office) !important;
  background: rgba(10, 112, 162, 0.1) !important;
  border-color: rgba(10, 112, 162, 0.15) !important;
  font-weight: 700;
}

.subnav-links a.highlight-link {
  color: #ffffff !important;
  background: linear-gradient(135deg, var(--brand-office) 0%, var(--brand-office-light) 100%) !important;
  font-weight: 700;
  border: none;
  box-shadow: 0 4px 12px rgba(10, 112, 162, 0.22);
}

.subnav-links a.highlight-link:hover {
  opacity: 0.95;
  box-shadow: 0 6px 16px rgba(10, 112, 162, 0.35);
  transform: translateY(-1px);
}

/* 2. GLASS CARDS FOR HERO CONTENT */
#inicio .hb-body {
  background: rgba(11, 22, 34, 0.82); /* Tonalidad azul marino profundo inmersivo */
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(10, 112, 162, 0.25);
  padding: 55px 45px !important;
  border-radius: 24px;
  max-width: 760px !important;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.55), 0 0 35px rgba(10, 112, 162, 0.18);
  position: relative;
  overflow: hidden;
  margin: 80px 0;
}

#inicio .hb-body::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(to right, var(--brand-office), var(--brand-office-light));
  z-index: 10;
}

/* Esquinas HUD decorativas */
.hb-body .tech-corner {
  position: absolute;
  width: 12px;
  height: 12px;
  border: 2px solid var(--brand-office-light);
  z-index: 15;
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.hb-body .tech-corner.tl { top: 14px; left: 14px; border-right: none; border-bottom: none; }
.hb-body .tech-corner.tr { top: 14px; right: 14px; border-left: none; border-bottom: none; }
.hb-body .tech-corner.bl { bottom: 14px; left: 14px; border-right: none; border-top: none; }
.hb-body .tech-corner.br { bottom: 14px; right: 14px; border-left: none; border-top: none; }

#inicio .hb-body:hover .tech-corner {
  border-color: var(--brand-office);
  width: 16px;
  height: 16px;
}

#inicio .hb-actions .btn {
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

#inicio .hb-actions .btn:hover {
  transform: translateY(-3px);
}

#inicio .hb-actions .btn-primary {
  background: linear-gradient(135deg, var(--brand-office) 0%, var(--brand-office-dark) 100%) !important;
  border: none;
}

#inicio .hb-actions .btn-primary:hover {
  box-shadow: 0 10px 24px rgba(10, 112, 162, 0.4);
}

#inicio .hb-actions .btn-wa:hover {
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.4);
}

/* 3. CARRUSEL INFINITO DE MARCAS (Brands Slider) */
.brands-section {
  background: #0b121b !important; /* Fondo ultra oscuro con tono azul de base */
  border-bottom: 1px solid rgba(10, 112, 162, 0.12) !important;
  padding: 45px 0 !important;
  text-align: center;
}

.brands-title-top {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  color: #76889e !important;
  font-weight: 700;
  margin-bottom: 30px;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  font-size: 0.76rem !important;
}

.brands-title-top::before,
.brands-title-top::after {
  content: '';
  display: inline-block;
  width: 45px;
  height: 1.5px;
  background: linear-gradient(to right, transparent, rgba(10, 112, 162, 0.3), transparent);
}

.brands-slider-container {
  overflow: hidden;
  width: 100%;
  position: relative;
  padding: 10px 0;
  mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}

.brands-marquee {
  display: flex;
  width: max-content;
  animation: brandsMarqueeLoop 30s linear infinite;
  gap: 60px;
}

@keyframes brandsMarqueeLoop {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.brands-marquee:hover {
  animation-play-state: paused;
}

.brand-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 160px;
  height: 52px;
  transition: all 0.3s ease;
}

.brand-slide img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: brightness(0) invert(1) opacity(0.65);
  transition: all 0.3s ease;
}

.brand-slide:hover img {
  filter: brightness(0) invert(1) opacity(1);
  transform: scale(1.06);
}

/* 4. CONSOLA DE CONFIGURACIÓN DEL COMPUTO (Workstation Estimator) */
.estimator-section {
  background: linear-gradient(180deg, #f8fbfd 0%, #ffffff 100%);
  padding: 90px 0;
  position: relative;
}

.estimator-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 45px;
  margin-top: 45px;
  align-items: stretch;
}

@media (max-width: 1023px) {
  .estimator-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }
}

/* Tarjeta del Estimador */
.estimator-card {
  background: #ffffff;
  border: 1px solid rgba(10, 112, 162, 0.08);
  border-radius: 28px;
  padding: 40px;
  box-shadow: 0 20px 50px rgba(10, 112, 162, 0.04);
  display: flex;
  flex-direction: column;
  position: relative;
}

@media (max-width: 768px) {
  .estimator-card {
    padding: 25px 20px;
    border-radius: 20px;
  }
}

/* Barra de progreso y pasos */
.estimator-progress {
  margin-bottom: 35px;
}

.progress-bar-container {
  height: 6px;
  background: rgba(10, 112, 162, 0.08);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 24px;
}

.progress-bar-fill {
  height: 100%;
  width: 25%;
  background: linear-gradient(90deg, var(--brand-office), var(--brand-office-light));
  border-radius: 10px;
  transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.step-indicators {
  display: flex;
  justify-content: space-between;
  position: relative;
}

.step-indicator {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #ffffff;
  border: 2.5px solid rgba(10, 112, 162, 0.12);
  color: #64748b;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  z-index: 2;
  transition: all 0.3s ease;
  cursor: pointer;
}

.step-indicator.active {
  border-color: var(--brand-office);
  color: var(--brand-office);
  background: #ffffff;
  box-shadow: 0 0 15px var(--brand-office-glow);
  transform: scale(1.08);
}

.step-indicator.completed {
  border-color: var(--brand-office-light);
  background: var(--brand-office-light);
  color: #ffffff;
}

/* Contenido del Paso */
.estimator-step-content {
  flex: 1;
  display: none;
}

.estimator-step-content.active {
  display: block;
  animation: stepFadeIn 0.4s ease-out forwards;
}

@keyframes stepFadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

.step-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.45rem;
  font-weight: 700;
  color: #0a101d;
  margin-bottom: 8px;
}

.step-subtitle {
  color: #64748b;
  font-size: 0.9rem;
  margin-bottom: 28px;
  line-height: 1.5;
}

/* Opciones de Selección (Cards) */
.workstation-options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

@media (max-width: 640px) {
  .workstation-options {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

.workstation-card {
  border: 2px solid rgba(10, 112, 162, 0.08);
  border-radius: 20px;
  padding: 22px;
  background: #ffffff;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  align-items: flex-start;
  gap: 14px;
  position: relative;
  user-select: none;
}

.workstation-card:hover {
  border-color: var(--brand-office-light);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(10, 112, 162, 0.03);
}

.workstation-card.selected {
  border-color: var(--brand-office);
  background: var(--brand-office-pale);
  box-shadow: 0 8px 24px rgba(10, 112, 162, 0.06);
}

.workstation-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(10, 112, 162, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-office);
  flex-shrink: 0;
  font-size: 1.15rem;
  transition: all 0.3s ease;
}

.workstation-card.selected .workstation-card-icon {
  background: var(--brand-office);
  color: #ffffff;
}

.workstation-card-info {
  flex: 1;
}

.workstation-card-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: #0a101d;
  margin-bottom: 4px;
  line-height: 1.3;
}

.workstation-card-desc {
  font-size: 0.78rem;
  color: #76889e;
  line-height: 1.4;
}

.workstation-card-checkbox {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid rgba(10, 112, 162, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
}

.workstation-card.selected .workstation-card-checkbox {
  border-color: var(--brand-office);
  background: var(--brand-office);
}

.workstation-card-checkbox::after {
  content: '';
  width: 6px;
  height: 6px;
  background: #ffffff;
  border-radius: 50%;
  opacity: 0;
  transform: scale(0.6);
  transition: all 0.25s ease;
}

.workstation-card.selected .workstation-card-checkbox::after {
  opacity: 1;
  transform: scale(1);
}

/* Botones de navegación del Wizard */
.estimator-actions {
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
  padding-top: 25px;
  border-top: 1px solid rgba(10, 112, 162, 0.08);
}

.estimator-actions .btn {
  min-height: 48px;
  border-radius: 14px;
}

/* 5. SIMULADOR CONSOLA HUD (OSD Screen Panel) */
.simulator-panel {
  background: var(--bg-hud);
  border: 1px solid rgba(10, 112, 162, 0.35);
  border-radius: 28px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3), inset 0 0 30px rgba(10, 112, 162, 0.2);
  color: #fff;
  position: sticky;
  top: 100px;
}

@media (max-width: 1023px) {
  .simulator-panel {
    position: relative;
    top: 0;
    margin-top: 20px;
  }
}

.simulator-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1.5px solid rgba(10, 112, 162, 0.25);
  padding-bottom: 14px;
  margin-bottom: 20px;
}

.simulator-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  color: var(--brand-office-light);
  display: flex;
  align-items: center;
  gap: 8px;
}

.simulator-pulse {
  width: 8px;
  height: 8px;
  background-color: #38bdf8;
  border-radius: 50%;
  box-shadow: 0 0 8px #38bdf8;
  animation: cyberPulseAnim 1.6s infinite alternate;
}

@keyframes cyberPulseAnim {
  0% { transform: scale(0.9); opacity: 0.5; }
  100% { transform: scale(1.1); opacity: 1; box-shadow: 0 0 14px #38bdf8; }
}

.simulator-time-osd {
  font-family: monospace;
  font-size: 0.72rem;
  color: #64748b;
}

.simulator-screen {
  background: #040911;
  border: 1px solid rgba(10, 112, 162, 0.2);
  border-radius: 18px;
  padding: 16px;
  overflow: hidden;
  position: relative;
  margin-bottom: 22px;
  box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.9);
}

/* Efecto Scanlines de Pantalla CRT */
.simulator-screen::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.25) 50%), linear-gradient(90deg, rgba(255, 0, 0, 0.06), rgba(0, 255, 0, 0.02), rgba(0, 0, 255, 0.06));
  background-size: 100% 4px, 6px 100%;
  z-index: 10;
  pointer-events: none;
}

.simulator-image-container {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  background: #010408;
  border: 1px solid rgba(255, 255, 255, 0.03);
}

.simulator-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
  transition: opacity 0.25s ease-in-out;
}

/* HUD Overlay */
.simulator-hud-overlay {
  position: absolute;
  inset: 12px;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  z-index: 5;
}

.osd-tag-mode {
  background: rgba(10, 112, 162, 0.85);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border: 1px solid rgba(56, 189, 248, 0.4);
  padding: 4px 10px;
  border-radius: 6px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: #fff;
  align-self: flex-start;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: all 0.25s ease;
}

.osd-hud-specs {
  background: rgba(4, 9, 17, 0.85);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border: 1.5px solid rgba(10, 112, 162, 0.3);
  border-radius: 8px;
  padding: 8px 12px;
  font-family: monospace;
  font-size: 0.68rem;
  color: #38bdf8;
  letter-spacing: 0.5px;
  line-height: 1.4;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
}

.simulator-desc {
  font-size: 0.82rem;
  color: #94a3b8;
  line-height: 1.55;
  margin: 0;
  font-weight: 500;
}

/* Tabla de desgloses */
.simulator-details-box {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 20px;
  margin-top: 22px;
}

.osd-specs-table {
  width: 100%;
  border-collapse: collapse;
}

.osd-specs-table tr {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.osd-specs-table tr:last-child {
  border-bottom: none;
}

.osd-specs-table td {
  padding: 8px 0;
  font-size: 0.82rem;
}

.osd-specs-table td.spec-name {
  color: #64748b;
  font-weight: 600;
}

.osd-specs-table td.spec-val {
  text-align: right;
  color: #ffffff;
  font-family: monospace;
  font-weight: 700;
}

.budget-total-box {
  margin-top: 20px;
  background: rgba(10, 112, 162, 0.12);
  border: 1.5px solid rgba(10, 112, 162, 0.3);
  border-radius: 14px;
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.budget-label {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--brand-office-light);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.budget-price {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.55rem;
  font-weight: 700;
  color: #ffffff;
  text-shadow: 0 0 10px rgba(56, 189, 248, 0.25);
}

/* 6. RESPONSIVE Y MEJORAS DE DETALLE */
.request-card {
  border: 1px solid rgba(10, 112, 162, 0.08) !important;
  box-shadow: 0 20px 48px rgba(10, 112, 162, 0.05) !important;
}

.request-form-input:focus {
  border-color: var(--brand-office) !important;
  box-shadow: 0 0 0 3px rgba(10, 112, 162, 0.1) !important;
}

.request-btn-submit {
  background: linear-gradient(135deg, var(--brand-office) 0%, var(--brand-office-dark) 100%) !important;
  box-shadow: 0 6px 18px rgba(10, 112, 162, 0.2) !important;
}

.request-btn-submit:hover {
  box-shadow: 0 8px 24px rgba(10, 112, 162, 0.32) !important;
}

/* Acordeón FAQ */
.faqs-container .faq-item:hover {
  border-color: var(--brand-office-light) !important;
  box-shadow: 0 10px 24px rgba(10, 112, 162, 0.02) !important;
}

.faqs-container .faq-item.open {
  border-color: var(--brand-office) !important;
  box-shadow: 0 12px 28px rgba(10, 112, 162, 0.04) !important;
}

.faq-trigger:hover {
  color: var(--brand-office) !important;
}

.faq-item.open .faq-trigger {
  color: var(--brand-office) !important;
}

.faq-item.open .faq-trigger i {
  transform: rotate(180deg);
  color: var(--brand-office) !important;
}

/* Pills de filtros */
.subcategory-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 35px;
}

.subcategory-filters .filter-btn {
  background: #ffffff;
  border: 1.5px solid rgba(10, 112, 162, 0.08);
  color: #64748b;
  padding: 8px 20px;
  border-radius: 50px;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.25s ease;
}

.subcategory-filters .filter-btn:hover {
  border-color: var(--brand-office-light);
  color: var(--brand-office-light);
  background: var(--brand-office-pale);
}

.subcategory-filters .filter-btn.active {
  background: var(--brand-office) !important;
  color: #ffffff !important;
  border-color: var(--brand-office) !important;
  box-shadow: 0 4px 12px rgba(10, 112, 162, 0.22);
}

/* 7. LAYOUTS DE SECCIONES CON IMÁGENES (Alternating layout) */
.about-card.card-img-container {
  padding: 0;
  overflow: hidden;
  border: none !important;
  box-shadow: 0 16px 40px rgba(15, 25, 35, 0.08);
  border-radius: 24px;
}

.about-card.card-img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  aspect-ratio: 4/3;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1), filter 0.5s ease;
}

.about-card.card-img-container:hover img {
  transform: scale(1.04);
}

.about-card.dark-highlight {
  background: linear-gradient(135deg, #050d18 0%, #0e1e33 100%) !important;
  color: white;
  border: 1px solid rgba(10, 112, 162, 0.25) !important;
  box-shadow: 0 20px 50px rgba(7, 21, 38, 0.28);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px 30px;
  border-radius: 24px;
}

.btn-glow {
  align-self: flex-start;
  border-radius: 50px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--brand-office) 0%, var(--brand-office-dark) 100%);
  box-shadow: 0 8px 24px rgba(10, 112, 162, 0.3);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  color: white !important;
  text-decoration: none;
  padding: 14px 28px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: none;
  cursor: pointer;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.9rem;
}

.btn-glow:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(10, 112, 162, 0.5);
  opacity: 0.95;
  color: white !important;
}

.about-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 24px;
}

@media (max-width: 640px) {
  .about-info-grid {
    grid-template-columns: 1fr;
  }
}

.about-info-item {
  padding: 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-info-item:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(10, 112, 162, 0.25);
}

.about-info-item label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 6px;
  color: #ffffff;
}

.about-info-item label i {
  color: var(--brand-office-light);
}

.about-info-item span {
  font-size: 0.82rem;
  line-height: 1.4;
  display: block;
  color: #cbd5e1;
}

/* 8. ESCAPARATES DE PRODUCTOS DESTACADOS (Featured Showcases) */
.section-featured-products {
  margin-top: 40px;
  width: 100%;
  animation: stepFadeIn 0.5s ease-out forwards;
}

.featured-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 24px;
}

@media (max-width: 640px) {
  .featured-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

.product-mini-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(10, 112, 162, 0.08);
  border-radius: 20px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(10, 112, 162, 0.02);
}

.product-mini-card:hover {
  transform: translateY(-5px);
  border-color: rgba(10, 112, 162, 0.35);
  box-shadow: 0 15px 35px rgba(10, 112, 162, 0.06), 0 0 20px rgba(10, 112, 162, 0.05);
  background: rgba(255, 255, 255, 0.9);
}

.mini-card-img {
  width: 100%;
  height: 160px;
  border-radius: 12px;
  overflow: hidden;
  background: #f8fafc;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  border: 1px solid rgba(10, 112, 162, 0.04);
}

.mini-card-img img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 8px;
}

.product-mini-card:hover .mini-card-img img {
  transform: scale(1.05);
}

.mini-card-brand {
  font-size: 0.72rem;
  font-weight: 750;
  color: var(--brand-office);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 6px;
  display: block;
}

.mini-card-title {
  font-family: 'Outfit', sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  color: #0f172a;
  margin: 0 0 12px 0;
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 2.9em;
}

.mini-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid rgba(10, 112, 162, 0.06);
}

.mini-card-price {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.05rem;
  font-weight: 750;
  color: #0f172a;
}

.btn-add-mini {
  background: linear-gradient(135deg, var(--brand-office) 0%, var(--brand-office-dark) 100%);
  color: white;
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 4px 10px rgba(10, 112, 162, 0.25);
}

.btn-add-mini:hover {
  background: linear-gradient(135deg, var(--brand-office-light) 0%, var(--brand-office) 100%);
  transform: scale(1.1);
  box-shadow: 0 6px 14px rgba(10, 112, 162, 0.4);
}

.btn-add-mini i {
  font-size: 0.85rem;
}

