/* ══ SERVICIOS / TARJETAS ══ */
.srv-section {
  padding: 14px 20px;
  background: var(--forest);
  position: relative;
  overflow: hidden;
  margin-top: -1px;
  z-index: 5;
}
.srv-section::before{
  content:'';position:absolute;top:-120px;right:-80px;
  width:400px;height:400px;border-radius:50%;
  background:rgba(143,180,154,.08);pointer-events:none;
}
.srv-top{display:flex;flex-direction:column;gap:4px;margin-bottom:10px;}
.srv-eyebrow{display:flex;align-items:center;gap:10px;font-size:10px;font-weight:700;letter-spacing:.16em;text-transform:uppercase;color:var(--sage);white-space:nowrap;}
.srv-eyebrow::after{content:'';flex:1;height:1px;background:rgba(255,255,255,.12);}
.srv-desc{font-size:11.5px;color:rgba(255,255,255,.5);line-height:1.4;}
.srv-grid{
  display:grid;
  grid-template-columns:1.4fr 1fr 1fr;
  grid-template-rows:auto auto;
  gap:10px;
}
.sc{
  border-radius:12px;padding:16px 18px;
  display:flex;flex-direction:column;gap:3px;
  position:relative;overflow:hidden;
  transition:transform .25s,box-shadow .25s;
  cursor:default;
}
.sc:hover{transform:translateY(-4px);}
.sc.featured{
  grid-row:span 1;
  align-self:start;
  background:var(--gold);
}
.sc.featured .sc-icon{background:rgba(255,255,255,.2);}
.sc.featured h3,.sc.featured p,.sc.featured .sc-tag{color:#fff;}
.sc.featured .sc-tag{background:rgba(255,255,255,.15);color:#fff;}
.sc.green{background:var(--sage-lt);}
.sc.dark{background:rgba(255,255,255,.05);border:1px solid rgba(255,255,255,.08);}
.sc.dark h3{color:#fff;} .sc.dark p{color:rgba(255,255,255,.5);}
.sc.dark .sc-tag{background:rgba(255,255,255,.1);color:rgba(255,255,255,.7);}
.sc.terra{background:#F5E8E0;}
.sc.light{background:var(--sand);}
.sc-icon{
  border-radius:8px;
  display:grid;place-items:center;font-size:18px;
  background:rgba(44,62,53,.08);
  width:fit-content;padding:7px;
}
.sc h3{
  font-size:16px;
  font-weight:700;
  color:var(--forest);
  line-height:1.15;
  letter-spacing:0.01em;
  display:block;
  padding-left:10px;
  border-left:2.5px solid var(--gold);
  margin-bottom:0;
  transition:border-color 0.3s ease;
}
.sc:hover h3{
  border-left-color:var(--forest);
}
.sc.dark h3{
  border-left-color:var(--gold);
  color:#fff;
}
.sc.dark:hover h3{
  border-left-color:#fff;
}
.sc.featured h3{
  border-left-color:#fff;
  color:#fff;
  font-size:22px;
}
.sc p{font-size:12px;color:var(--muted);line-height:1.45;margin:0;}
.sc-tag{
  display:inline-flex;align-items:center;gap:6px;
  background:rgba(44,62,53,.07);
  border-radius:100px;padding:5px 12px;
  font-size:11px;font-weight:600;color:var(--forest);
  width:fit-content;margin-top:2px;
  transition:background .2s;
}
.sc-tag:hover{background:var(--forest);color:#fff;}
.sc-tag svg{width:13px;height:13px;}

/* RESPONSIVE SERVICIOS */
@media(max-width:960px){
  .srv-grid{grid-template-columns:1fr 1fr;}
  .sc.featured{grid-row:auto;}
  .srv-section{padding:14px 16px;}
}
@media(max-width:640px){
  .srv-grid{grid-template-columns:1fr;}
}
/* ===== TARJETA PRO ===== */
.custom-card{
  background: linear-gradient(135deg,#d79a10,#b67c08);
  padding:18px 20px 10px;
  border-radius:14px;
}

/* TITULO */
/* TITULO PRO SOBRIO */
.custom-card h3{
  font-size:28px;
  font-weight:700;
  color:#fff;
  letter-spacing:-0.01em;
  
  /* ESTILO LIMPIO */
  display:block;
  padding-left:14px;
  border-left:4px solid #fff;
  margin-bottom:10px;
  line-height:1.1;
}

/* TEXTO */
.custom-card p{
  font-size:15px;
  color:rgba(255,255,255,.9);
  max-width:420px;
}

/* CONTENEDOR IMÁGENES */
.sc-devices{
  display:flex;
  justify-content:center;
  align-items:flex-end;
  gap:0px;
  margin:0;
}

/* IMÁGENES */
.sc-devices img{
  height:76px;
  object-fit:contain;
  filter: drop-shadow(0 8px 12px rgba(0,0,0,.25));
  transition:.3s ease;
  margin: 0 -16px;
}

/* ALL IN ONE MÁS GRANDE */
.sc-devices img:nth-child(2){
  height:92px;
}

/* PC GAMER UN POCO MÁS GRANDE */
.sc-devices img:nth-child(3){
  height:88px;
}

/* HOVER PRO */
.custom-card:hover .sc-devices img{
  transform:translateY(-6px) scale(1.05);
}

/* BOTÓN */
.custom-card .sc-tag{
  margin-top:20px;
  padding:12px 22px;
  font-size:14px;
  border-radius:999px;
  background:#2e6b55;
  color:#fff;
}

.custom-card .flip-front{
  justify-content:flex-start;
  gap:3px;
}
#card1 .flip-card,
#card1 .flip-inner{
  height:auto;
  min-height:0;
}
#card1 .flip-front{
  position:relative;
  height:auto;
}

.custom-card .sc-tag:hover{
  background:#1f4e3e;
}

/* ===== FLIP CARD ===== */
.flip-card{
  perspective: 1200px;
}

.flip-inner{
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform .7s;
  transform-style: preserve-3d;
}

.flip-card.flip-x .flip-inner{
  transform: rotateY(180deg);
}

.flip-card.flip-y .flip-inner{
  transform: rotateX(180deg);
}

.flip-front,
.flip-back{
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  top:0;
  left:0;
  display:flex;
  flex-direction:column;
  justify-content:flex-start;
}

.flip-back{
  transform: rotateY(180deg);
  align-items:center;
  text-align:center;
  padding:20px;
}

/* ===== CONTENIDO DINÁMICO ===== */
.back-content{
  display:none;
}

.flip-x .back-x{
  display:block;
}

.flip-y .back-y{
  display:block;
}

/* ===== BOTONES ===== */
.card-buttons{
  display:flex;
  gap:10px;
  margin-top:15px;
}

.card-buttons button{
  flex:1;
  padding:10px;
  border:none;
  border-radius:999px;
  background:#2e6b55;
  color:#fff;
  font-size:13px;
  cursor:pointer;
  transition:.2s;
}

.card-buttons button:hover{
  background:#1f4e3e;
}

/* ===== BOTÓN WHATSAPP PRO ===== */
/* ===== BOTÓN WHATSAPP ELEGANTE ===== */
/* ===== BOTÓN WHATSAPP MINIMAL ===== */
.btn-wa{
  margin-top:4px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:7px;
  padding:8px 16px;
  border-radius:12px;
  
  /* ESTILO FROSTED GLASS (CRISTAL ESMERILADO) */
  background:rgba(44,62,53,0.08); /* Fondo muy sutil para dar cuerpo */
  backdrop-filter:blur(10px);
  -webkit-backdrop-filter:blur(10px);
  color:var(--forest);
  border:1.5px solid rgba(44,62,53,0.15);
  
  font-weight:700;
  text-decoration:none;
  font-size:13px;
  text-transform:uppercase;
  letter-spacing:0.04em;
  
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}


/* Si la card es oscura, el boton es cristal blanco */
.sc.dark .btn-wa,
.sc.featured .btn-wa{
  background:rgba(255,255,255,0.12);
  border-color:rgba(255,255,255,0.25);
  color:#fff;
}

/* ICONO */
.btn-wa img{
  width:18px;
  height:18px;
  opacity:1; /* Recuperamos visibilidad */
}
.sc.dark .btn-wa img,
.sc.featured .btn-wa img{
  filter: none; /* Recuperamos el color original */
}

/* HOVER ELEGANTE */
.btn-wa:hover{
  background:rgba(44,62,53,0.15);
  border-color:var(--forest);
  transform:translateY(-2px);
  box-shadow:0 8px 20px rgba(0,0,0,0.08);
}
.sc.dark .btn-wa:hover,
.sc.featured .btn-wa:hover{
  background:rgba(255,255,255,0.2);
  border-color:#fff;
  box-shadow:0 8px 30px rgba(0,0,0,0.3);
}

/* EFECTO AL HACER CLICK */
.btn-wa:active{
  transform: scale(0.97);
}

.btn-wa:hover img{
  filter: drop-shadow(0 0 4px rgba(37, 211, 102, 0.6));
}

.flip-card{
  perspective: 1200px;
  height: 100%;
}

.flip-inner{
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 320px;
  transition: transform .7s;
  transform-style: preserve-3d;
}

.btn-back{
  margin-top:20px;
  padding:10px 16px;
  border:none;
  border-radius:999px;
  background:#fff;
  color:#333;
  font-size:13px;
  cursor:pointer;
  transition:.2s;
}

.btn-back:hover{
  background:#eee;
}

/* CONTENEDOR */
.brands-box{
  margin-top:6px;
  padding:8px 14px;

  background:rgba(255, 255, 255, 0.39);
  backdrop-filter:blur(14px);
  -webkit-backdrop-filter:blur(14px);

   border:1px solid rgba(255,255,255,0.4);
  border-radius:18px;
  
  box-shadow:
    0 8px 25px rgba(0,0,0,0.15),
    inset 0 1px 0 rgba(255,255,255,0.5);
}

.brands-box::before{
  position:absolute;
  top:0;
  left:-50%;
  width:200%;
  height:100%;

  background:linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,0.4),
    transparent
  );

  opacity:.4;
  pointer-events:none;
}

/* FILA SUPERIOR (texto + 3 logos) */
.brands-top{
  display:flex;
  align-items:center;
  gap:12px;
  margin-bottom:8px;
}

.brands-top span{
  font-size:11px;
  font-weight:700;
  letter-spacing:.1em;
  text-transform:uppercase;
  color:#1a1a1a;
  white-space:nowrap;
}

/* FILAS */
.brands-row{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}

/* ITEM (logo + nombre) */
.brand-item{
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:2px;
  min-width:40px;
}

/* LOGOS */
.brand-item img{
  height:18px;
  max-width:40px;
  object-fit:contain;

  filter: brightness(0) invert(1);
  opacity:.9;

  transition:.25s ease;
}

/* TEXTO DE MARCA */
.brand-item small{
  font-size:9px;
  color:rgba(0,0,0,.65);
  letter-spacing:.05em;
}

/* HOVER */
.brand-item:hover img{
  transform:scale(1.15);
  opacity:1;
}

.brand-item:hover small{
  color:#fff;
}

/* FILA PRINCIPAL (arriba) */
.brands-main .brand-item img{
  height:16px;
}

/* FILA SECUNDARIA (abajo) */
.brands-secondary{
  margin-top:6px;
}

.brands-secondary .brand-item img{
  height:14px;
  opacity:.85;
}

/* 📱 RESPONSIVE */
@media(max-width:640px){

  .brands-box{
    padding:10px;
  }

  .brands-top{
    flex-wrap:wrap;
    gap:8px;
  }

  .brands-row{
    gap:10px;
  }

  .brand-item{
    min-width:32px;
  }

  .brand-item img{
    height:14px;
    max-width:32px;
  }

  .brand-item small{
    font-size:8px;
  }
}

.badge-hot{
  position:absolute;
  top:0;
  right:0;

  padding:5px 13px;
  font-size:11px;
  font-weight:700;
  letter-spacing:.05em;

  color:#fff;

  background:linear-gradient(135deg,#ff7a00,#ff3c00);
  border-radius:0 14px 0 10px;

  box-shadow:0 4px 12px rgba(0,0,0,.25);

  z-index:10;

  animation: firePulse 1.8s infinite;
}

@keyframes firePulse{
  0%{
    box-shadow:0 0 0 rgba(255,120,0,0.0);
    transform:scale(1);
  }
  50%{
    box-shadow:0 0 12px rgba(255,120,0,0.8),
               0 0 24px rgba(255,60,0,0.6);
    transform:scale(1.05);
  }
  100%{
    box-shadow:0 0 0 rgba(255,120,0,0.0);
    transform:scale(1);
  }
}

.custom-card{
  position:relative;
  overflow:hidden;
  z-index:1;
}

.custom-card::after{
  content:"";
  position:absolute;
  inset:-2px;

  background:linear-gradient(
    120deg,
    transparent,
    rgba(255,140,0,0.15),
    rgba(255,60,0,0.25),
    transparent
  );

  opacity:.6;
  filter:blur(18px);

  animation: fireMove 4s linear infinite;

  pointer-events:none;
}

@keyframes fireMove{
  0%{transform:translateX(-20%) rotate(0deg);}
  50%{transform:translateX(20%) rotate(2deg);}
  100%{transform:translateX(-20%) rotate(0deg);}
}

.custom-card::before{
  content:"";
  position:absolute;
  inset:-6px; /* sale un poco fuera del borde */

  background:
    radial-gradient(circle at 20% 100%, rgba(255,120,0,.9), transparent 40%),
    radial-gradient(circle at 80% 100%, rgba(255,60,0,.8), transparent 40%),
    radial-gradient(circle at 50% 100%, rgba(255,180,0,.7), transparent 50%);

  filter:blur(12px);
  opacity:.8;

  z-index:-1;

  animation: fireEdge 2.5s infinite ease-in-out;
}

@keyframes fireEdge{
  0%{
    transform:translateY(0) scale(1);
    opacity:.7;
  }
  50%{
    transform:translateY(-6px) scale(1.1);
    opacity:1;
  }
  100%{
    transform:translateY(0) scale(1);
    opacity:.7;
  }
}

.custom-card::after{
  content:"";
  position:absolute;
  inset:-10px;

  background:linear-gradient(
    180deg,
    transparent,
    rgba(255,120,0,.2),
    rgba(255,60,0,.3)
  );

  filter:blur(20px);
  z-index:-2;

  animation: fireGlow 3s infinite linear;
}

@keyframes fireGlow{
  0%{opacity:.4;}
  50%{opacity:.9;}
  100%{opacity:.4;}
}

/* CONTENEDOR */
.consolas{
  margin:14px 0;
}

.consolas-hero{
  width:100%;
  border-radius:12px;
  object-fit:cover;
  display:block;
}

/* ══ FOOTER: COSTO + CONSULTAR EN LÍNEA ══ */
.sc-footer{
  display:flex;
  align-items:center;
  gap:8px;
  width:100%;
  margin-top:0;
  padding-top:6px;
  border-top:1px solid rgba(44,62,53,.13);
}
.sc-footer .sc-price{
  flex:0 0 auto;
  width:auto;
  border-top:none;
  margin:0;
  padding:0;
}
.sc-footer .btn-wa{
  margin-top:0;
  flex:1 1 auto;
  padding:7px 10px;
  font-size:11px;
  gap:5px;
}
.sc-footer .btn-wa img{
  width:14px;
  height:14px;
}
.sc.dark .sc-footer,
.sc.featured .sc-footer{
  border-top-color:rgba(255,255,255,.12);
}

/* ══ PRECIO ══ */
.sc-price{
  width:100%;
  margin:4px 0 0;
  padding-top:6px;
  border-top:1px solid rgba(44,62,53,.13);
  display:flex;
  align-items:center;
  justify-content:space-between;
}
.sc-price-label{
  font-size:10px;
  font-weight:500;
  text-transform:uppercase;
  letter-spacing:.2em;
  color:var(--muted);
}
.sc-price-main{
  display:flex;
  align-items:baseline;
  gap:2px;
}
.sc-price-sym{
  font-size:13px;
  font-weight:600;
  color:var(--gold);
}
.sc-price-num{
  font-size:18px;
  font-weight:700;
  color:var(--gold);
  letter-spacing:-.3px;
}
.sc-price-cur{
  font-size:10px;
  font-weight:500;
  color:var(--gold);
  opacity:.55;
  letter-spacing:.12em;
  padding-left:3px;
}

/* Tarjetas oscuras / featured */
.sc.dark .sc-price,
.sc.featured .sc-price{
  border-top-color:rgba(255,255,255,.12);
}
.sc.dark .sc-price-label,
.sc.featured .sc-price-label{
  color:rgba(255,255,255,.4);
}
.sc.dark .sc-price-sym,
.sc.dark .sc-price-num,
.sc.dark .sc-price-cur{
  color:#FFD166;
}
.sc.featured .sc-price-sym,
.sc.featured .sc-price-num,
.sc.featured .sc-price-cur{
  color:#fff;
}

/* IMAGEN SISTEMAS OPERATIVOS */
.os-img {
  width: 100%;
  border-radius: 8px;
  display: block;
  margin: 4px 0 2px;
  object-fit: cover;
}

/* ══ FORMATEOS: BARRA DE PROGRESO ══ */
.format-visual {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
  margin: 4px 0;
}

.format-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 7px 10px 7px 12px;
  background: #0078d4;
  border-bottom: 1px solid rgba(0,0,0,0.2);
}

.format-title-bar {
  font-size: 11px;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.02em;
  font-family: 'Segoe UI', sans-serif;
}

.format-win-controls {
  display: flex;
  gap: 0;
}

.format-win-controls span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 22px;
  font-size: 11px;
  color: rgba(255,255,255,0.85);
  cursor: default;
  transition: background 0.15s;
}

.fwc-min:hover, .fwc-max:hover { background: rgba(255,255,255,0.2); }
.fwc-close:hover                { background: #e81123; color: #fff; }

.format-body {
  padding: 14px 14px 12px;
  background: #f0f0f0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.format-label {
  font-size: 12px;
  font-weight: 600;
  color: #222;
  letter-spacing: 0.05em;
}

.format-dots::after {
  content: '...';
  animation: dotPulse 1.5s ease-in-out infinite;
}

@keyframes dotPulse {
  0%, 100% { opacity: 0.2; }
  50%       { opacity: 1; }
}

.format-bar-wrap {
  height: 7px;
  background: rgba(0,0,0,0.12);
  border-radius: 999px;
  overflow: hidden;
}

.format-bar {
  height: 100%;
  width: 100%;
  border-radius: 999px;
  background: #0078d4;
  box-shadow: 0 0 10px rgba(0,120,212,0.4);
  transform: scaleX(0);
  transform-origin: left;
  animation: formatLoad 3.5s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes formatLoad {
  0%   { transform: scaleX(0); opacity: 1; }
  75%  { transform: scaleX(1); opacity: 1; }
  90%  { transform: scaleX(1); opacity: 0.5; }
  100% { transform: scaleX(0); opacity: 0; }
}

.format-steps {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.format-step {
  font-size: 10px;
  padding: 3px 8px;
  border-radius: 999px;
  background: rgba(0,0,0,0.05);
  border: 1px solid rgba(0,0,0,0.1);
  color: rgba(0,0,0,0.35);
  letter-spacing: 0.04em;
}

.format-step.fst-done {
  color: #1a8a2e;
  border-color: rgba(26,138,46,0.3);
  background: rgba(26,138,46,0.08);
}

.format-step.fst-active {
  color: #0078d4;
  border-color: rgba(0,120,212,0.3);
  background: rgba(0,120,212,0.08);
  animation: stepPulse 1.5s ease-in-out infinite;
}

@keyframes stepPulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.5; }
}

/* ══ OPTIMIZACIÓN: ANTES / DESPUÉS ══ */
.optim-visual {
  margin: 4px 0;
  padding: 13px 14px;
  background: rgba(44,62,53,0.06);
  border-radius: 10px;
  border: 1px solid rgba(44,62,53,0.1);
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.optim-row {
  display: flex;
  align-items: center;
  gap: 9px;
}

.optim-lbl {
  font-size: 10px;
  font-weight: 700;
  color: var(--muted);
  width: 44px;
  flex-shrink: 0;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.optim-track {
  flex: 1;
  height: 7px;
  background: rgba(44,62,53,0.1);
  border-radius: 999px;
  overflow: hidden;
}

.optim-fill {
  height: 100%;
  border-radius: 999px;
}

.optim-before {
  width: 24%;
  background: #d0604a;
  opacity: 0.65;
}

.optim-after {
  width: 96%;
  background: linear-gradient(90deg, var(--forest), #4caf80);
  box-shadow: 0 0 8px rgba(44,100,70,0.25);
}

.optim-pct {
  font-size: 11px;
  font-weight: 700;
  color: var(--muted);
  width: 30px;
  text-align: right;
  flex-shrink: 0;
}

.optim-pct.fast { color: var(--forest); }

.optim-caption {
  font-size: 10px;
  color: var(--muted);
  letter-spacing: 0.04em;
  margin-top: 1px;
}

/* ══ UPGRADE VISUAL: HDD→SSD + RAM ══ */
.upgrade-visual {
  margin: 2px 0;
  padding: 8px 10px 7px;
  background: rgba(44,62,53,0.06);
  border-radius: 10px;
  border: 1px solid rgba(44,62,53,0.12);
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.uv-swap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4px;
}

.uv-device {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  flex: 1;
}

.uv-hdd { color: #a0a5a2; }
.uv-ssd { color: var(--forest); }

.uv-hw {
  width: 52px;
  height: 38px;
  display: block;
}

.uv-lbl {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.07em;
  color: inherit;
}

.uv-spd {
  font-size: 9px;
  font-weight: 600;
}

.uv-slow { color: var(--muted); }
.uv-fast { color: var(--forest); }
.uv-ram  { color: #7b5ea7; }

.uv-arr {
  font-size: 15px;
  color: rgba(44,62,53,0.28);
  flex-shrink: 0;
  line-height: 1;
  margin: 0 2px;
}

.uv-sep {
  height: 1px;
  background: rgba(44,62,53,0.1);
}

/* RAM DIMM sticks */
.uv-ram-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  flex: 1;
}

.uv-sticks {
  display: flex;
  gap: 5px;
  align-items: flex-end;
}

.uv-dimm {
  width: 12px;
  height: 42px;
  border-radius: 2px 2px 1px 1px;
  border: 1.5px solid;
  position: relative;
  box-sizing: border-box;
}

.uv-dimm.on {
  border-color: var(--forest);
  color: var(--forest);
  background: linear-gradient(180deg, rgba(44,100,70,0.22) 0%, rgba(44,100,70,0.04) 100%);
  border-bottom-color: #b8935a;
}

.uv-dimm.on.new {
  border-color: #7b5ea7;
  color: #7b5ea7;
  background: linear-gradient(180deg, rgba(123,94,167,0.22) 0%, rgba(123,94,167,0.04) 100%);
  border-bottom-color: #a07cc5;
}

.uv-dimm.off {
  border-color: rgba(44,62,53,0.18);
  border-style: dashed;
}

.uv-dimm.on::before {
  content: '';
  position: absolute;
  top: 5px;
  left: 1px;
  right: 1px;
  height: 3px;
  border-radius: 1px;
  background: currentColor;
  opacity: 0.45;
  box-shadow: 0 7px 0 currentColor, 0 14px 0 currentColor, 0 21px 0 currentColor;
}

/* ══ OPTIMIZACIÓN: VELOCÍMETRO ══ */
.speed-visual {
  margin: 2px 0;
  padding: 6px 10px 4px;
  background: rgba(44,62,53,0.05);
  border-radius: 10px;
  border: 1px solid rgba(44,62,53,0.1);
  text-align: center;
}

.speed-svg {
  width: 100%;
  max-width: 120px;
  display: block;
  margin: 0 auto;
}

.speed-needle {
  transform-box: fill-box;
  transform-origin: 50% 100%;
  animation: needleSpin 3.8s ease-in-out infinite;
}

@keyframes needleSpin {
  0%   { transform: rotate(-85deg); }
  60%  { transform: rotate(78deg);  }
  78%  { transform: rotate(72deg);  }
  90%  { transform: rotate(72deg);  }
  100% { transform: rotate(-85deg); }
}

.speed-tag {
  font-size: 10px;
  font-weight: 600;
  color: var(--forest);
  letter-spacing: 0.04em;
  margin: 0 0 4px;
}

/* ══ PÁGINAS WEB & SISTEMAS ══ */
.web-img {
  width: 100%;
  border-radius: 10px;
  display: block;
  margin: 4px 0 2px;
  object-fit: cover;
}

/* ══ PÁGINAS WEB & SISTEMAS — MOCKUP BROWSER ══ */
.wmock {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.12);
  margin: 4px 0;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.wmock-chrome {
  background: #3c3c3c;
  padding: 6px 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.wmock-dots {
  display: flex;
  gap: 4px;
  flex-shrink: 0;
}

.wmock-dots span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
}

.wmock-dots span:nth-child(1) { background: #ff5f57; }
.wmock-dots span:nth-child(2) { background: #febc2e; }
.wmock-dots span:nth-child(3) { background: #28c840; }

.wmock-addr {
  flex: 1;
  background: rgba(255,255,255,0.12);
  border-radius: 5px;
  padding: 2px 8px;
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 9px;
  color: rgba(255,255,255,0.7);
}

.wmock-lock { font-size: 8px; }

.wmock-page {
  background: #fff;
  display: flex;
  flex-direction: column;
}

.wmock-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5px 10px;
  background: #fff;
  border-bottom: 1px solid #f0f0f0;
}

.wmock-logo-bar {
  font-size: 9px;
  font-weight: 800;
  color: #1a1a2e;
  letter-spacing: -0.02em;
}

.wmock-nav-links {
  display: flex;
  gap: 8px;
}

.wmock-nav-links span {
  font-size: 8px;
  color: #666;
}

.wmock-hero {
  background: linear-gradient(135deg, #1a73e8 0%, #0d47a1 55%, #34a853 100%);
  padding: 10px 12px 9px;
  position: relative;
  overflow: hidden;
}

.wmock-hero::before {
  content: '';
  position: absolute;
  top: -18px; right: -18px;
  width: 55px; height: 55px;
  border-radius: 50%;
  background: rgba(255,255,255,0.07);
  pointer-events: none;
}

.wmock-hero::after {
  content: '';
  position: absolute;
  bottom: -14px; left: -8px;
  width: 45px; height: 45px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  pointer-events: none;
}

.wmock-h1 {
  font-size: 11px;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  position: relative;
  z-index: 1;
}

.wmock-sub {
  font-size: 8px;
  color: rgba(255,255,255,0.78);
  margin-top: 3px;
  position: relative;
  z-index: 1;
}

.wmock-cta {
  display: inline-block;
  margin-top: 6px;
  background: #fff;
  color: #1a73e8;
  font-size: 8px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 999px;
  position: relative;
  z-index: 1;
  animation: ctaPulse 2.5s ease-in-out infinite;
}

@keyframes ctaPulse {
  0%, 100% { box-shadow: 0 0 0 rgba(255,255,255,0); }
  50%       { box-shadow: 0 0 10px rgba(255,255,255,0.55); }
}

.wmock-strip {
  display: flex;
  background: #f8f9fa;
  border-top: 1px solid #ececec;
}

.wmock-info-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 5px 2px;
  gap: 1px;
  border-right: 1px solid #ececec;
}

.wmock-info-item:last-child { border-right: none; }

.wmock-info-item span:first-child {
  font-size: 10px;
  line-height: 1;
}

.wmock-info-item span:last-child {
  font-size: 7.5px;
  color: #777;
  font-weight: 600;
}

/* ══ DESKTOP — SIN SCROLL ══ */
@media(min-width:961px){
  /* Servicios: columna derecha, ocupa todo el espacio disponible */
  .srv-section{
    flex:1;min-height:0;overflow:hidden;
    display:flex;flex-direction:column;
    padding:6px 14px 6px;
  }
  .srv-top{flex-shrink:0;margin-bottom:3px;gap:2px;}
  .srv-desc{font-size:10px;}

  /* Grid: 4 columnas, 2 filas exactas (8 tarjetas × 1 col cada una) */
  .srv-grid{
    flex:1;min-height:0;overflow:hidden;
    grid-template-columns:repeat(4,1fr);
    grid-template-rows:1fr 1fr;
    align-content:stretch;
    gap:5px;
  }
  .sc.featured{grid-column:span 1;}
  .sc{padding:6px 9px;gap:1px;min-height:0;overflow:hidden;}
  .sc h3{font-size:11px;}
  .sc.featured h3{font-size:14px;}
  .custom-card h3{font-size:14px;margin-bottom:2px;}
  .sc p{font-size:9px;line-height:1.3;}
  .custom-card p{font-size:10px;}
  .sc-devices img{height:44px;margin:0 -10px;}
  .sc-devices img:nth-child(2){height:54px;}
  .sc-devices img:nth-child(3){height:50px;}
  .consolas{margin:2px 0;}
  .consolas-hero{max-height:56px;object-fit:contain;}
  .os-img{max-height:64px;margin:1px 0;object-fit:contain;}
  .format-visual{margin:1px 0;}
  .format-header{padding:3px 8px;}
  .format-body{padding:4px 8px;gap:3px;}
  .speed-visual{padding:2px 4px 1px;}
  .speed-svg{max-width:70px;}
  .upgrade-visual{padding:3px 6px;gap:4px;}
  .uv-hw{width:30px;height:20px;}
  .uv-dimm{height:26px;}
  .sc-footer{padding-top:3px;}
  .sc-price-num{font-size:13px;}
  .btn-wa{padding:4px 8px;font-size:9.5px;}
  .badge-hot{padding:3px 8px;font-size:9px;}
  .flip-inner{min-height:0;}

  /* website mockup desktop */
  .wmock{margin:1px 0;}
  .wmock-chrome{padding:3px 7px;gap:5px;}
  .wmock-dots span{width:5px;height:5px;}
  .wmock-addr{font-size:7.5px;padding:1px 6px;}
  .wmock-nav{padding:3px 7px;}
  .wmock-logo-bar{font-size:7.5px;}
  .wmock-nav-links{gap:5px;}
  .wmock-nav-links span{font-size:7px;}
  .wmock-hero{padding:6px 8px 5px;}
  .wmock-h1{font-size:9px;}
  .wmock-sub{font-size:6.5px;margin-top:2px;}
  .wmock-cta{font-size:7px;padding:2px 7px;margin-top:4px;}
  .wmock-info-item{padding:3px 1px;}
  .wmock-info-item span:first-child{font-size:8px;}
  .wmock-info-item span:last-child{font-size:6px;}
}
