.circ-spec-container {
    width: 100%;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    overflow: hidden;
}

.circ-spec-header {
    text-align: center;
    max-width: 600px;
    margin-bottom: 20px;
    z-index: 2;
}

.circ-spec-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.circ-spec-subtitle {
    font-size: 1.1rem;
    line-height: 1.6;
}

.circ-spec-wrapper {
    position: relative;
    width: 480px;
    height: 480px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    transform-origin: center center;
    transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.circ-spec-orbit-line {
    position: absolute;
    width: 380px;
    height: 380px;
    border: 1px dashed rgba(235, 182, 61, 0.3);
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
}

.circ-spec-orbit {
    position: absolute;
    width: 100%;
    height: 100%;
    animation: circRotate 30s linear infinite;
    z-index: 2;
    transition: transform 0.5s ease;
}

.circ-spec-node {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100px;
    height: 100px;
    margin-top: -50px;
    margin-left: -50px;
    transform: rotate(var(--angle)) translate(190px) rotate(calc(-1 * var(--angle)));
    transform-origin: center center;
    animation: circCounterRotate 30s linear infinite;
}

.circ-spec-node-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    height: 100%;
    position: relative;
    cursor: pointer;
}

.circ-spec-node-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid #EBB63D;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #EBB63D;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.circ-spec-node-icon svg {
    width: 24px;
    height: 24px;
    fill: #EBB63D;
}

.circ-spec-node-title {
    font-size: 0.85rem;
    font-weight: 600;
    color: #EBB63D;
    margin-top: 8px;
    white-space: nowrap;
    text-shadow: 0 2px 4px rgba(0,0,0,0.4);
}

/* Tooltip / Descripción Flotante */
.circ-spec-node-tooltip {
    position: absolute;
    bottom: 110%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background-color: #133620;
    color: #ffffff;
    border: 1px solid #EBB63D;
    padding: 10px 14px;
    border-radius: 6px;
    font-size: 0.8rem;
    width: 180px;
    text-align: center;
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 99;
    pointer-events: none;
    box-shadow: 0 8px 24px rgba(0,0,0,0.5);
    white-space: normal;
    line-height: 1.4;
}

/* Flecha del Tooltip */
.circ-spec-node-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-width: 6px;
    border-style: solid;
    border-color: #EBB63D transparent transparent transparent;
}

/* Efectos al pasar el cursor (Hover) */
.circ-spec-node-content:hover .circ-spec-node-tooltip {
    visibility: visible;
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.circ-spec-node-content:hover .circ-spec-node-icon {
    transform: scale(1.1);
    box-shadow: 0 0 15px #EBB63D;
}

/* Pausar rotación en hover */
.circ-spec-wrapper:hover .circ-spec-orbit,
.circ-spec-wrapper:hover .circ-spec-node {
    animation-play-state: paused;
}

.circ-spec-center {
    position: absolute;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    pointer-events: none;
}

.circ-spec-logo {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: drop-shadow(0px 4px 10px rgba(0,0,0,0.3));
}

@keyframes circRotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes circCounterRotate {
    from {
        transform: rotate(var(--angle)) translate(190px) rotate(calc(-1 * var(--angle) - 0deg));
    }
    to {
        transform: rotate(var(--angle)) translate(190px) rotate(calc(-1 * var(--angle) - 360deg));
    }
}

/* Responsiveness */
@media (max-width: 550px) {
    .circ-spec-wrapper {
        width: 320px;
        height: 320px;
    }
    .circ-spec-orbit-line {
        width: 240px;
        height: 240px;
    }
    .circ-spec-node {
        width: 80px;
        height: 80px;
        margin-top: -40px;
        margin-left: -40px;
    }
    .circ-spec-node-icon {
        width: 48px;
        height: 48px;
        font-size: 1.2rem;
    }
    .circ-spec-node-icon svg {
        width: 18px;
        height: 18px;
    }
    .circ-spec-center {
        width: 110px;
        height: 110px;
    }
    .circ-spec-node-title {
        font-size: 0.75rem;
    }
    .circ-spec-node-tooltip {
        width: 140px;
        font-size: 0.75rem;
        padding: 8px;
    }
    
    @keyframes circCounterRotate {
        from {
            transform: rotate(var(--angle)) translate(120px) rotate(calc(-1 * var(--angle) - 0deg));
        }
        to {
            transform: rotate(var(--angle)) translate(120px) rotate(calc(-1 * var(--angle) - 360deg));
        }
    }
}
