/* =========================================
   PÁGINA "SERVICIOS" - MODO DIOS
========================================= */

/* --- HERO CON RADAR --- */
.hero-servicios {
    min-height: 45vh;
    background-color: #0a0f14;
    overflow: hidden;
}

.radar-bg {
    position: absolute; width: 100%; height: 100%; top: 0; left: 0;
    background-image: 
        radial-gradient(circle at 50% 150%, rgba(255,107,0,0.1) 0%, transparent 40%),
        repeating-radial-gradient(circle at 50% 150%, rgba(255,255,255,0.03) 0, rgba(255,255,255,0.03) 1px, transparent 1px, transparent 40px);
}

.overlay-hero {
    position: absolute; width: 100%; height: 100%; top: 0; left: 0;
    background: linear-gradient(0deg, #0a0f14 0%, transparent 100%);
}

.badge-elite {
    display: inline-block; padding: 6px 15px; background: rgba(255,107,0,0.15);
    color: var(--color-primario, #FF6B00); font-weight: 900; font-size: 0.75rem; letter-spacing: 2px;
    border-radius: 4px; border-left: 3px solid var(--color-primario, #FF6B00);
}

/* --- TARJETAS TECNOLÓGICAS --- */
.card-servicio-tech {
    background: #121a22;
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.card-servicio-tech:hover {
    transform: translateY(-10px);
    border-color: rgba(255,107,0,0.4);
    box-shadow: 0 20px 40px rgba(255,107,0,0.15);
}

.num-flotante {
    position: absolute;
    top: 15px; right: 15px;
    font-size: 2.5rem;
    font-weight: 900;
    color: rgba(255,255,255,0.05);
    z-index: 10;
    transition: color 0.4s;
    line-height: 1;
}

.card-servicio-tech:hover .num-flotante {
    color: rgba(255,107,0,0.2);
}

/* --- IMAGEN Y ESCÁNER LiDAR --- */
.img-tech-box {
    width: 100%;
    height: 220px;
    position: relative;
    overflow: hidden;
    background: #000;
}

.img-tech-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
    transition: transform 0.6s ease, opacity 0.4s ease;
}

.overlay-naranja {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: var(--color-primario, #FF6B00);
    opacity: 0; mix-blend-mode: color; transition: opacity 0.4s; z-index: 2;
}

.card-servicio-tech:hover .img-tech-box img {
    transform: scale(1.05);
    opacity: 1;
}

.card-servicio-tech:hover .overlay-naranja {
    opacity: 0.3;
}

/* La línea láser roja/naranja */
.lidar-scanner {
    position: absolute;
    top: -10px; left: 0; width: 100%; height: 3px;
    background: #FF3E3E;
    box-shadow: 0 0 15px 3px #FF3E3E;
    z-index: 5;
    opacity: 0;
}

.card-servicio-tech:hover .lidar-scanner {
    opacity: 1;
    animation: escaner-baja 2s infinite linear;
}

@keyframes escaner-baja {
    0% { top: 0; opacity: 1; }
    50% { opacity: 0.8; }
    100% { top: 100%; opacity: 0; }
}

/* --- CUERPO DE LA TARJETA --- */
.card-tech-body {
    padding: 2rem;
    height: calc(100% - 220px); /* Ajusta al resto del espacio */
}

.linea-energia {
    width: 40px; height: 3px; background: rgba(255,255,255,0.1);
    transition: width 0.4s, background 0.4s;
}

.card-servicio-tech:hover .linea-energia {
    width: 80px;
    background: var(--color-primario, #FF6B00);
}

.text-naranja-hover {
    color: #cbd5e1; transition: color 0.3s;
}
.card-servicio-tech:hover .text-naranja-hover {
    color: var(--color-primario, #FF6B00);
}

/* Botón Circular */
.btn-circular-cotizar {
    width: 45px; height: 45px; border-radius: 50%;
    background: rgba(255,255,255,0.05); color: white;
    display: flex; align-items: center; justify-content: center;
    text-decoration: none; transition: all 0.3s ease; border: 1px solid transparent;
}

.btn-circular-cotizar:hover {
    background: var(--color-primario, #FF6B00);
    box-shadow: 0 5px 15px rgba(255,107,0,0.4);
    transform: translateX(5px);
    color: white;
}